Skip to content

Instantly share code, notes, and snippets.

@steveyen
Created August 24, 2016 19:15
Show Gist options
  • Save steveyen/094719dac42efdb6147877566c2e9139 to your computer and use it in GitHub Desktop.
Save steveyen/094719dac42efdb6147877566c2e9139 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Generated by graphviz version 2.38.0 (20140413.2041)
-->
<!-- Title: bleve&#45;query Pages: 1 -->
<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<script type="text/ecmascript"><![CDATA[
/**
* SVGPan library 1.2.1
* ======================
*
* Given an unique existing element with id "viewport" (or when missing, the first g
* element), including the the library into any SVG adds the following capabilities:
*
* - Mouse panning
* - Mouse zooming (using the wheel)
* - Object dragging
*
* You can configure the behaviour of the pan/zoom/drag with the variables
* listed in the CONFIGURATION section of this file.
*
* Known issues:
*
* - Zooming (while panning) on Safari has still some issues
*
* Releases:
*
* 1.2.1, Mon Jul 4 00:33:18 CEST 2011, Andrea Leofreddi
* - Fixed a regression with mouse wheel (now working on Firefox 5)
* - Working with viewBox attribute (#4)
* - Added "use strict;" and fixed resulting warnings (#5)
* - Added configuration variables, dragging is disabled by default (#3)
*
* 1.2, Sat Mar 20 08:42:50 GMT 2010, Zeng Xiaohui
* Fixed a bug with browser mouse handler interaction
*
* 1.1, Wed Feb 3 17:39:33 GMT 2010, Zeng Xiaohui
* Updated the zoom code to support the mouse wheel on Safari/Chrome
*
* 1.0, Andrea Leofreddi
* First release
*
* This code is licensed under the following BSD license:
*
* Copyright 2009-2010 Andrea Leofreddi <[email protected]>. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY Andrea Leofreddi ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Andrea Leofreddi OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Andrea Leofreddi.
*/
"use strict";
/// CONFIGURATION
/// ====>
var enablePan = 1; // 1 or 0: enable or disable panning (default enabled)
var enableZoom = 1; // 1 or 0: enable or disable zooming (default enabled)
var enableDrag = 0; // 1 or 0: enable or disable dragging (default disabled)
/// <====
/// END OF CONFIGURATION
var root = document.documentElement;
var state = 'none', svgRoot, stateTarget, stateOrigin, stateTf;
setupHandlers(root);
/**
* Register handlers
*/
function setupHandlers(root){
setAttributes(root, {
"onmouseup" : "handleMouseUp(evt)",
"onmousedown" : "handleMouseDown(evt)",
"onmousemove" : "handleMouseMove(evt)",
//"onmouseout" : "handleMouseUp(evt)", // Decomment this to stop the pan functionality when dragging out of the SVG element
});
if(navigator.userAgent.toLowerCase().indexOf('webkit') >= 0)
window.addEventListener('mousewheel', handleMouseWheel, false); // Chrome/Safari
else
window.addEventListener('DOMMouseScroll', handleMouseWheel, false); // Others
}
/**
* Retrieves the root element for SVG manipulation. The element is then cached into the svgRoot global variable.
*/
function getRoot(root) {
if(typeof(svgRoot) == "undefined") {
var g = null;
g = root.getElementById("viewport");
if(g == null)
g = root.getElementsByTagName('g')[0];
if(g == null)
alert('Unable to obtain SVG root element');
setCTM(g, g.getCTM());
g.removeAttribute("viewBox");
svgRoot = g;
}
return svgRoot;
}
/**
* Instance an SVGPoint object with given event coordinates.
*/
function getEventPoint(evt) {
var p = root.createSVGPoint();
p.x = evt.clientX;
p.y = evt.clientY;
return p;
}
/**
* Sets the current transform matrix of an element.
*/
function setCTM(element, matrix) {
var s = "matrix(" + matrix.a + "," + matrix.b + "," + matrix.c + "," + matrix.d + "," + matrix.e + "," + matrix.f + ")";
element.setAttribute("transform", s);
}
/**
* Dumps a matrix to a string (useful for debug).
*/
function dumpMatrix(matrix) {
var s = "[ " + matrix.a + ", " + matrix.c + ", " + matrix.e + "\n " + matrix.b + ", " + matrix.d + ", " + matrix.f + "\n 0, 0, 1 ]";
return s;
}
/**
* Sets attributes of an element.
*/
function setAttributes(element, attributes){
for (var i in attributes)
element.setAttributeNS(null, i, attributes[i]);
}
/**
* Handle mouse wheel event.
*/
function handleMouseWheel(evt) {
if(!enableZoom)
return;
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var delta;
if(evt.wheelDelta)
delta = evt.wheelDelta / 3600; // Chrome/Safari
else
delta = evt.detail / -90; // Mozilla
var z = 1 + delta; // Zoom factor: 0.9/1.1
var g = getRoot(svgDoc);
var p = getEventPoint(evt);
p = p.matrixTransform(g.getCTM().inverse());
// Compute new scale matrix in current mouse position
var k = root.createSVGMatrix().translate(p.x, p.y).scale(z).translate(-p.x, -p.y);
setCTM(g, g.getCTM().multiply(k));
if(typeof(stateTf) == "undefined")
stateTf = g.getCTM().inverse();
stateTf = stateTf.multiply(k.inverse());
}
/**
* Handle mouse move event.
*/
function handleMouseMove(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = getRoot(svgDoc);
if(state == 'pan' && enablePan) {
// Pan mode
var p = getEventPoint(evt).matrixTransform(stateTf);
setCTM(g, stateTf.inverse().translate(p.x - stateOrigin.x, p.y - stateOrigin.y));
} else if(state == 'drag' && enableDrag) {
// Drag mode
var p = getEventPoint(evt).matrixTransform(g.getCTM().inverse());
setCTM(stateTarget, root.createSVGMatrix().translate(p.x - stateOrigin.x, p.y - stateOrigin.y).multiply(g.getCTM().inverse()).multiply(stateTarget.getCTM()));
stateOrigin = p;
}
}
/**
* Handle click event.
*/
function handleMouseDown(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
var g = getRoot(svgDoc);
if(
evt.target.tagName == "svg"
|| !enableDrag // Pan anyway when drag is disabled and the user clicked on an element
) {
// Pan mode
state = 'pan';
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
} else {
// Drag mode
state = 'drag';
stateTarget = evt.target;
stateTf = g.getCTM().inverse();
stateOrigin = getEventPoint(evt).matrixTransform(stateTf);
}
}
/**
* Handle mouse button release event.
*/
function handleMouseUp(evt) {
if(evt.preventDefault)
evt.preventDefault();
evt.returnValue = false;
var svgDoc = evt.target.ownerDocument;
if(state == 'pan' || state == 'drag') {
// Quit pan mode
state = '';
}
}
]]></script><g id="viewport" transform="scale(0.5,0.5) translate(0,0)"><g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 2147)">
<title>bleve&#45;query</title>
<polygon fill="white" stroke="none" points="-4,4 -4,-2147 4649.56,-2147 4649.56,4 -4,4"/>
<g id="clust1" class="cluster"><title>cluster_L</title>
<polygon fill="none" stroke="black" points="1024.66,-1983 1024.66,-2135 1512.66,-2135 1512.66,-1983 1024.66,-1983"/>
</g>
<!-- L -->
<g id="node1" class="node"><title>L</title>
<polygon fill="#f8f8f8" stroke="black" points="1504.24,-2127 1033.08,-2127 1033.08,-1991 1504.24,-1991 1504.24,-2127"/>
<text text-anchor="start" x="1040.87" y="-2097.4" font-family="Times,serif" font-size="32.00">File: bleve&#45;query</text>
<text text-anchor="start" x="1040.87" y="-2065.4" font-family="Times,serif" font-size="32.00">Type: cpu</text>
<text text-anchor="start" x="1040.87" y="-2033.4" font-family="Times,serif" font-size="32.00">51.95s of 54.24s total (95.78%)</text>
<text text-anchor="start" x="1040.87" y="-2001.4" font-family="Times,serif" font-size="32.00">Dropped 177 nodes (cum &lt;= 0.27s)</text>
</g>
<!-- N1 -->
<g id="node2" class="node"><title>N1</title>
<g id="a_node2"><a xlink:title="runtime.mallocgc (11.83s)">
<polygon fill="#f8f8f8" stroke="black" points="1465.09,-795 1270.23,-795 1270.23,-715 1465.09,-715 1465.09,-795"/>
<text text-anchor="middle" x="1367.66" y="-771.8" font-family="Times,serif" font-size="24.00">runtime.mallocgc</text>
<text text-anchor="middle" x="1367.66" y="-747.8" font-family="Times,serif" font-size="24.00">5.26s(9.70%)</text>
<text text-anchor="middle" x="1367.66" y="-723.8" font-family="Times,serif" font-size="24.00">of 11.83s(21.81%)</text>
</a>
</g>
</g>
<!-- N21 -->
<g id="node22" class="node"><title>N21</title>
<g id="a_node22"><a xlink:title="runtime.prefetchnta (0.95s)">
<polygon fill="#f8f8f8" stroke="black" points="1625.52,-665 1491.8,-665 1491.8,-627 1625.52,-627 1625.52,-665"/>
<text text-anchor="middle" x="1558.66" y="-649" font-family="Times,serif" font-size="15.00">runtime.prefetchnta</text>
<text text-anchor="middle" x="1558.66" y="-634" font-family="Times,serif" font-size="15.00">0.95s(1.75%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N21 -->
<g id="edge42" class="edge"><title>N1&#45;&gt;N21</title>
<g id="a_edge42"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.prefetchnta (0.95s)">
<path fill="none" stroke="black" d="M1437.43,-714.916C1464.33,-699.843 1494.18,-683.12 1517.53,-670.04"/>
<polygon fill="black" stroke="black" points="1519.45,-672.977 1526.46,-665.036 1516.03,-666.87 1519.45,-672.977"/>
</a>
</g>
<g id="a_edge42&#45;label"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.prefetchnta (0.95s)">
<text text-anchor="middle" x="1508.38" y="-685.8" font-family="Times,serif" font-size="14.00"> 0.95s</text>
</a>
</g>
</g>
<!-- N28 -->
<g id="node29" class="node"><title>N28</title>
<g id="a_node29"><a xlink:title="runtime.heapBitsSetType (0.63s)">
<polygon fill="#f8f8f8" stroke="black" points="1312.38,-664 1154.94,-664 1154.94,-628 1312.38,-628 1312.38,-664"/>
<text text-anchor="middle" x="1233.66" y="-648.8" font-family="Times,serif" font-size="14.00">runtime.heapBitsSetType</text>
<text text-anchor="middle" x="1233.66" y="-634.8" font-family="Times,serif" font-size="14.00">0.63s(1.16%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N28 -->
<g id="edge53" class="edge"><title>N1&#45;&gt;N28</title>
<g id="a_edge53"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.heapBitsSetType (0.63s)">
<path fill="none" stroke="black" d="M1318.52,-714.765C1299.95,-699.934 1279.4,-683.525 1263.18,-670.569"/>
<polygon fill="black" stroke="black" points="1265.12,-667.641 1255.12,-664.136 1260.75,-673.111 1265.12,-667.641"/>
</a>
</g>
<g id="a_edge53&#45;label"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.heapBitsSetType (0.63s)">
<text text-anchor="middle" x="1309.38" y="-685.8" font-family="Times,serif" font-size="14.00"> 0.63s</text>
</a>
</g>
</g>
<!-- N61 -->
<g id="node62" class="node"><title>N61</title>
<g id="a_node62"><a xlink:title="runtime.gcStart (3.45s)">
<polygon fill="#f8f8f8" stroke="black" points="1404.43,-664 1330.89,-664 1330.89,-628 1404.43,-628 1404.43,-664"/>
<text text-anchor="middle" x="1367.66" y="-647.6" font-family="Times,serif" font-size="8.00">runtime.gcStart</text>
<text text-anchor="middle" x="1367.66" y="-639.6" font-family="Times,serif" font-size="8.00">0 of 3.45s(6.36%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N61 -->
<g id="edge22" class="edge"><title>N1&#45;&gt;N61</title>
<g id="a_edge22"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.gcStart (3.45s)">
<path fill="none" stroke="black" d="M1367.66,-714.765C1367.66,-701.294 1367.66,-686.523 1367.66,-674.219"/>
<polygon fill="black" stroke="black" points="1371.16,-674.136 1367.66,-664.136 1364.16,-674.136 1371.16,-674.136"/>
</a>
</g>
<g id="a_edge22&#45;label"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.gcStart (3.45s)">
<text text-anchor="middle" x="1384.38" y="-685.8" font-family="Times,serif" font-size="14.00"> 3.45s</text>
</a>
</g>
</g>
<!-- N79 -->
<g id="node80" class="node"><title>N79</title>
<g id="a_node80"><a xlink:title="runtime.systemstack (5.87s)">
<polygon fill="#f8f8f8" stroke="black" points="1408.2,-577 1327.12,-577 1327.12,-541 1408.2,-541 1408.2,-577"/>
<text text-anchor="middle" x="1367.66" y="-560.6" font-family="Times,serif" font-size="8.00">runtime.systemstack</text>
<text text-anchor="middle" x="1367.66" y="-552.6" font-family="Times,serif" font-size="8.00">0 of 5.87s(10.82%)</text>
</a>
</g>
</g>
<!-- N1&#45;&gt;N79 -->
<g id="edge36" class="edge"><title>N1&#45;&gt;N79</title>
<g id="a_edge36"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.systemstack (1.44s)">
<path fill="none" stroke="black" d="M1395.32,-714.696C1398.75,-708.914 1401.98,-702.912 1404.66,-697 1410.75,-683.54 1411.64,-679.635 1413.66,-665 1417.95,-633.927 1420.89,-621.845 1404.66,-595 1402.45,-591.339 1399.75,-587.812 1396.83,-584.499"/>
<polygon fill="black" stroke="black" points="1399.21,-581.929 1389.73,-577.195 1394.19,-586.807 1399.21,-581.929"/>
</a>
</g>
<g id="a_edge36&#45;label"><a xlink:title="runtime.mallocgc &#45;&gt; runtime.systemstack (1.44s)">
<text text-anchor="middle" x="1434.38" y="-641.8" font-family="Times,serif" font-size="14.00"> 1.44s</text>
</a>
</g>
</g>
<!-- N2 -->
<g id="node3" class="node"><title>N2</title>
<g id="a_node3"><a xlink:title="runtime.makeslice (14.76s)">
<polygon fill="#f8f8f8" stroke="black" points="1461.5,-1037 1273.82,-1037 1273.82,-960 1461.5,-960 1461.5,-1037"/>
<text text-anchor="middle" x="1367.66" y="-1014.6" font-family="Times,serif" font-size="23.00">runtime.makeslice</text>
<text text-anchor="middle" x="1367.66" y="-991.6" font-family="Times,serif" font-size="23.00">4.59s(8.46%)</text>
<text text-anchor="middle" x="1367.66" y="-968.6" font-family="Times,serif" font-size="23.00">of 14.76s(27.21%)</text>
</a>
</g>
</g>
<!-- N5 -->
<g id="node6" class="node"><title>N5</title>
<g id="a_node6"><a xlink:title="runtime.newarray (10.17s)">
<polygon fill="#f8f8f8" stroke="black" points="1446.61,-910 1288.71,-910 1288.71,-845 1446.61,-845 1446.61,-910"/>
<text text-anchor="middle" x="1367.66" y="-890.8" font-family="Times,serif" font-size="19.00">runtime.newarray</text>
<text text-anchor="middle" x="1367.66" y="-871.8" font-family="Times,serif" font-size="19.00">2.32s(4.28%)</text>
<text text-anchor="middle" x="1367.66" y="-852.8" font-family="Times,serif" font-size="19.00">of 10.17s(18.75%)</text>
</a>
</g>
</g>
<!-- N2&#45;&gt;N5 -->
<g id="edge11" class="edge"><title>N2&#45;&gt;N5</title>
<g id="a_edge11"><a xlink:title="runtime.makeslice &#45;&gt; runtime.newarray (10.17s)">
<path fill="none" stroke="black" d="M1367.66,-959.848C1367.66,-947.275 1367.66,-933.191 1367.66,-920.321"/>
<polygon fill="black" stroke="black" points="1371.16,-920.312 1367.66,-910.312 1364.16,-920.312 1371.16,-920.312"/>
</a>
</g>
<g id="a_edge11&#45;label"><a xlink:title="runtime.makeslice &#45;&gt; runtime.newarray (10.17s)">
<text text-anchor="middle" x="1387.88" y="-930.8" font-family="Times,serif" font-size="14.00"> 10.17s</text>
</a>
</g>
</g>
<!-- N3 -->
<g id="node4" class="node"><title>N3</title>
<g id="a_node4"><a xlink:title="runtime.kevent (3.41s)">
<polygon fill="#f8f8f8" stroke="black" points="1438.7,-319 1296.62,-319 1296.62,-269 1438.7,-269 1438.7,-319"/>
<text text-anchor="middle" x="1367.66" y="-298.2" font-family="Times,serif" font-size="21.00">runtime.kevent</text>
<text text-anchor="middle" x="1367.66" y="-277.2" font-family="Times,serif" font-size="21.00">3.41s(6.29%)</text>
</a>
</g>
</g>
<!-- N4 -->
<g id="node5" class="node"><title>N4</title>
<g id="a_node5"><a xlink:title="github.com/couchbase/moss.(*iterator).Next (5.08s)">
<polygon fill="#f8f8f8" stroke="black" points="4217.88,-1152 3863.45,-1152 3863.45,-1087 4217.88,-1087 4217.88,-1152"/>
<text text-anchor="middle" x="4040.66" y="-1132.8" font-family="Times,serif" font-size="19.00">github.com/couchbase/moss.(*iterator).Next</text>
<text text-anchor="middle" x="4040.66" y="-1113.8" font-family="Times,serif" font-size="19.00">2.37s(4.37%)</text>
<text text-anchor="middle" x="4040.66" y="-1094.8" font-family="Times,serif" font-size="19.00">of 5.08s(9.37%)</text>
</a>
</g>
</g>
<!-- N11 -->
<g id="node12" class="node"><title>N11</title>
<g id="a_node12"><a xlink:title="github.com/couchbase/moss.(*segment).GetOperationKeyVal (1.50s)">
<polygon fill="#f8f8f8" stroke="black" points="3892.8,-1019.5 3456.52,-1019.5 3456.52,-977.5 3892.8,-977.5 3892.8,-1019.5"/>
<text text-anchor="middle" x="3674.66" y="-1001.9" font-family="Times,serif" font-size="17.00">github.com/couchbase/moss.(*segment).GetOperationKeyVal</text>
<text text-anchor="middle" x="3674.66" y="-984.9" font-family="Times,serif" font-size="17.00">1.50s(2.77%)</text>
</a>
</g>
</g>
<!-- N4&#45;&gt;N11 -->
<g id="edge35" class="edge"><title>N4&#45;&gt;N11</title>
<g id="a_edge35"><a xlink:title="github.com/couchbase/moss.(*iterator).Next &#45;&gt; github.com/couchbase/moss.(*segment).GetOperationKeyVal (1.50s)">
<path fill="none" stroke="black" d="M3943.54,-1086.92C3881.38,-1066.71 3802.12,-1040.94 3745.8,-1022.63"/>
<polygon fill="black" stroke="black" points="3746.86,-1019.29 3736.26,-1019.53 3744.69,-1025.95 3746.86,-1019.29"/>
</a>
</g>
<g id="a_edge35&#45;label"><a xlink:title="github.com/couchbase/moss.(*iterator).Next &#45;&gt; github.com/couchbase/moss.(*segment).GetOperationKeyVal (1.50s)">
<text text-anchor="middle" x="3895.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 1.50s</text>
</a>
</g>
</g>
<!-- N18 -->
<g id="node19" class="node"><title>N18</title>
<g id="a_node19"><a xlink:title="github.com/couchbase/moss.iteratorBytesEqual (1.21s)">
<polygon fill="#f8f8f8" stroke="black" points="4231.98,-1018.5 3911.34,-1018.5 3911.34,-978.5 4231.98,-978.5 4231.98,-1018.5"/>
<text text-anchor="middle" x="4071.66" y="-1001.7" font-family="Times,serif" font-size="16.00">github.com/couchbase/moss.iteratorBytesEqual</text>
<text text-anchor="middle" x="4071.66" y="-985.7" font-family="Times,serif" font-size="16.00">1.21s(2.23%)</text>
</a>
</g>
</g>
<!-- N4&#45;&gt;N18 -->
<g id="edge37" class="edge"><title>N4&#45;&gt;N18</title>
<g id="a_edge37"><a xlink:title="github.com/couchbase/moss.(*iterator).Next &#45;&gt; github.com/couchbase/moss.iteratorBytesEqual (1.21s)">
<path fill="none" stroke="black" d="M4048.89,-1086.92C4053.62,-1068.73 4059.54,-1046.04 4064.15,-1028.34"/>
<polygon fill="black" stroke="black" points="4067.56,-1029.12 4066.7,-1018.56 4060.79,-1027.35 4067.56,-1029.12"/>
</a>
</g>
<g id="a_edge37&#45;label"><a xlink:title="github.com/couchbase/moss.(*iterator).Next &#45;&gt; github.com/couchbase/moss.iteratorBytesEqual (1.21s)">
<text text-anchor="middle" x="4073.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 1.21s</text>
</a>
</g>
</g>
<!-- N5&#45;&gt;N1 -->
<g id="edge13" class="edge"><title>N5&#45;&gt;N1</title>
<g id="a_edge13"><a xlink:title="runtime.newarray &#45;&gt; runtime.mallocgc (7.85s)">
<path fill="none" stroke="black" d="M1367.66,-844.84C1367.66,-832.727 1367.66,-818.606 1367.66,-805.234"/>
<polygon fill="black" stroke="black" points="1371.16,-805.201 1367.66,-795.201 1364.16,-805.201 1371.16,-805.201"/>
</a>
</g>
<g id="a_edge13&#45;label"><a xlink:title="runtime.newarray &#45;&gt; runtime.mallocgc (7.85s)">
<text text-anchor="middle" x="1384.38" y="-815.8" font-family="Times,serif" font-size="14.00"> 7.85s</text>
</a>
</g>
</g>
<!-- N6 -->
<g id="node7" class="node"><title>N6</title>
<g id="a_node7"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (15.70s)">
<polygon fill="#f8f8f8" stroke="black" points="3164.78,-1373 2416.54,-1373 2416.54,-1308 3164.78,-1308 3164.78,-1373"/>
<text text-anchor="middle" x="2790.66" y="-1353.8" font-family="Times,serif" font-size="19.00">github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next</text>
<text text-anchor="middle" x="2790.66" y="-1334.8" font-family="Times,serif" font-size="19.00">2.08s(3.83%)</text>
<text text-anchor="middle" x="2790.66" y="-1315.8" font-family="Times,serif" font-size="19.00">of 15.70s(28.95%)</text>
</a>
</g>
</g>
<!-- N12 -->
<g id="node13" class="node"><title>N12</title>
<g id="a_node13"><a xlink:title="runtime.memmove (1.39s)">
<polygon fill="#f8f8f8" stroke="black" points="2364.05,-1019.5 2219.27,-1019.5 2219.27,-977.5 2364.05,-977.5 2364.05,-1019.5"/>
<text text-anchor="middle" x="2291.66" y="-1001.9" font-family="Times,serif" font-size="17.00">runtime.memmove</text>
<text text-anchor="middle" x="2291.66" y="-984.9" font-family="Times,serif" font-size="17.00">1.39s(2.56%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N12 -->
<g id="edge71" class="edge"><title>N6&#45;&gt;N12</title>
<g id="a_edge71"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; runtime.memmove (0.47s)">
<path fill="none" stroke="black" d="M2508.75,-1307.98C2445.66,-1295.89 2390.38,-1279.62 2366.66,-1258 2358.01,-1250.12 2316.99,-1096.34 2299.54,-1029.78"/>
<polygon fill="black" stroke="black" points="2302.87,-1028.67 2296.95,-1019.88 2296.1,-1030.44 2302.87,-1028.67"/>
</a>
</g>
<g id="a_edge71&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; runtime.memmove (0.47s)">
<text text-anchor="middle" x="2357.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 0.47s</text>
</a>
</g>
</g>
<!-- N16 -->
<g id="node17" class="node"><title>N16</title>
<g id="a_node17"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (3.07s)">
<polygon fill="#f8f8f8" stroke="black" points="2915.67,-1258 2375.65,-1258 2375.65,-1202 2915.67,-1202 2915.67,-1258"/>
<text text-anchor="middle" x="2645.66" y="-1241.2" font-family="Times,serif" font-size="16.00">github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV</text>
<text text-anchor="middle" x="2645.66" y="-1225.2" font-family="Times,serif" font-size="16.00">1.27s(2.34%)</text>
<text text-anchor="middle" x="2645.66" y="-1209.2" font-family="Times,serif" font-size="16.00">of 3.07s(5.66%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N16 -->
<g id="edge27" class="edge"><title>N6&#45;&gt;N16</title>
<g id="a_edge27"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (3.07s)">
<path fill="none" stroke="black" d="M2748.33,-1307.83C2729.98,-1294.1 2708.49,-1278.02 2689.93,-1264.13"/>
<polygon fill="black" stroke="black" points="2692.01,-1261.31 2681.9,-1258.12 2687.81,-1266.91 2692.01,-1261.31"/>
</a>
</g>
<g id="a_edge27&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV (3.07s)">
<text text-anchor="middle" x="2738.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 3.07s</text>
</a>
</g>
</g>
<!-- N24 -->
<g id="node25" class="node"><title>N24</title>
<g id="a_node25"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (2.91s)">
<polygon fill="#f8f8f8" stroke="black" points="3847.88,-1256.5 3315.44,-1256.5 3315.44,-1203.5 3847.88,-1203.5 3847.88,-1256.5"/>
<text text-anchor="middle" x="3581.66" y="-1240.5" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc</text>
<text text-anchor="middle" x="3581.66" y="-1225.5" font-family="Times,serif" font-size="15.00">0.76s(1.40%)</text>
<text text-anchor="middle" x="3581.66" y="-1210.5" font-family="Times,serif" font-size="15.00">of 2.91s(5.37%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N24 -->
<g id="edge28" class="edge"><title>N6&#45;&gt;N24</title>
<g id="a_edge28"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (2.91s)">
<path fill="none" stroke="black" d="M3020.51,-1307.97C3136.19,-1292.1 3274.94,-1273.07 3385.53,-1257.9"/>
<polygon fill="black" stroke="black" points="3386.03,-1261.37 3395.46,-1256.54 3385.08,-1254.43 3386.03,-1261.37"/>
</a>
</g>
<g id="a_edge28&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc (2.91s)">
<text text-anchor="middle" x="3249.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 2.91s</text>
</a>
</g>
</g>
<!-- N35 -->
<g id="node36" class="node"><title>N35</title>
<g id="a_node36"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (7.37s)">
<polygon fill="#f8f8f8" stroke="black" points="4215.14,-1253.5 3866.18,-1253.5 3866.18,-1206.5 4215.14,-1206.5 4215.14,-1253.5"/>
<text text-anchor="middle" x="4040.66" y="-1239.1" font-family="Times,serif" font-size="13.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next</text>
<text text-anchor="middle" x="4040.66" y="-1226.1" font-family="Times,serif" font-size="13.00">0.47s(0.87%)</text>
<text text-anchor="middle" x="4040.66" y="-1213.1" font-family="Times,serif" font-size="13.00">of 7.37s(13.59%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N35 -->
<g id="edge15" class="edge"><title>N6&#45;&gt;N35</title>
<g id="a_edge15"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (6.82s)">
<path fill="none" stroke="black" d="M3164.96,-1317.26C3369.63,-1303.49 3627.46,-1283.55 3856.66,-1258 3865.5,-1257.02 3874.56,-1255.93 3883.7,-1254.78"/>
<polygon fill="black" stroke="black" points="3884.17,-1258.25 3893.65,-1253.5 3883.28,-1251.3 3884.17,-1258.25"/>
</a>
</g>
<g id="a_edge15&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (6.82s)">
<text text-anchor="middle" x="3669.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 6.82s</text>
</a>
</g>
</g>
<!-- N38 -->
<g id="node39" class="node"><title>N38</title>
<g id="a_node39"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.35s)">
<polygon fill="#f8f8f8" stroke="black" points="3297.08,-1248 2934.24,-1248 2934.24,-1212 3297.08,-1212 3297.08,-1248"/>
<text text-anchor="middle" x="3115.66" y="-1232.6" font-family="Times,serif" font-size="13.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current</text>
<text text-anchor="middle" x="3115.66" y="-1219.6" font-family="Times,serif" font-size="13.00">0.35s(0.65%)</text>
</a>
</g>
</g>
<!-- N6&#45;&gt;N38 -->
<g id="edge78" class="edge"><title>N6&#45;&gt;N38</title>
<g id="a_edge78"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.35s)">
<path fill="none" stroke="black" d="M2885.1,-1307.97C2939.81,-1289.71 3007.07,-1267.25 3054.8,-1251.32"/>
<polygon fill="black" stroke="black" points="3055.99,-1254.61 3064.37,-1248.12 3053.78,-1247.97 3055.99,-1254.61"/>
</a>
</g>
<g id="a_edge78&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Current (0.35s)">
<text text-anchor="middle" x="2988.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 0.35s</text>
</a>
</g>
</g>
<!-- N7 -->
<g id="node8" class="node"><title>N7</title>
<g id="a_node8"><a xlink:title="runtime.indexbytebody (2.04s)">
<polygon fill="#f8f8f8" stroke="black" points="3673.63,-1141.5 3489.69,-1141.5 3489.69,-1097.5 3673.63,-1097.5 3673.63,-1141.5"/>
<text text-anchor="middle" x="3581.66" y="-1123.1" font-family="Times,serif" font-size="18.00">runtime.indexbytebody</text>
<text text-anchor="middle" x="3581.66" y="-1105.1" font-family="Times,serif" font-size="18.00">2.04s(3.76%)</text>
</a>
</g>
</g>
<!-- N8 -->
<g id="node9" class="node"><title>N8</title>
<g id="a_node9"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle (29.64s)">
<polygon fill="#f8f8f8" stroke="black" points="1856.94,-1485 1270.38,-1485 1270.38,-1423 1856.94,-1423 1856.94,-1485"/>
<text text-anchor="middle" x="1563.66" y="-1466.6" font-family="Times,serif" font-size="18.00">github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle</text>
<text text-anchor="middle" x="1563.66" y="-1448.6" font-family="Times,serif" font-size="18.00">2s(3.69%)</text>
<text text-anchor="middle" x="1563.66" y="-1430.6" font-family="Times,serif" font-size="18.00">of 29.64s(54.65%)</text>
</a>
</g>
</g>
<!-- N15 -->
<g id="node16" class="node"><title>N15</title>
<g id="a_node16"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.RequiredFields (1.60s)">
<polygon fill="#f8f8f8" stroke="black" points="584.324,-1368.5 162.996,-1368.5 162.996,-1312.5 584.324,-1312.5 584.324,-1368.5"/>
<text text-anchor="middle" x="373.66" y="-1351.7" font-family="Times,serif" font-size="16.00">github.com/blevesearch/bleve/search.SortOrder.RequiredFields</text>
<text text-anchor="middle" x="373.66" y="-1335.7" font-family="Times,serif" font-size="16.00">1.31s(2.42%)</text>
<text text-anchor="middle" x="373.66" y="-1319.7" font-family="Times,serif" font-size="16.00">of 1.60s(2.95%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N15 -->
<g id="edge34" class="edge"><title>N8&#45;&gt;N15</title>
<g id="a_edge34"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.RequiredFields (1.60s)">
<path fill="none" stroke="black" d="M1270.33,-1433.4C1077.69,-1419.4 820.34,-1398.55 593.66,-1373 584.72,-1371.99 575.584,-1370.91 566.361,-1369.77"/>
<polygon fill="black" stroke="black" points="566.682,-1366.28 556.325,-1368.51 565.811,-1373.22 566.682,-1366.28"/>
</a>
</g>
<g id="a_edge34&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.RequiredFields (1.60s)">
<text text-anchor="middle" x="930.384" y="-1393.8" font-family="Times,serif" font-size="14.00"> 1.60s</text>
</a>
</g>
</g>
<!-- N17 -->
<g id="node18" class="node"><title>N17</title>
<g id="a_node18"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Compare (2.12s)">
<polygon fill="#f8f8f8" stroke="black" points="984.707,-1368.5 602.613,-1368.5 602.613,-1312.5 984.707,-1312.5 984.707,-1368.5"/>
<text text-anchor="middle" x="793.66" y="-1351.7" font-family="Times,serif" font-size="16.00">github.com/blevesearch/bleve/search.SortOrder.Compare</text>
<text text-anchor="middle" x="793.66" y="-1335.7" font-family="Times,serif" font-size="16.00">1.22s(2.25%)</text>
<text text-anchor="middle" x="793.66" y="-1319.7" font-family="Times,serif" font-size="16.00">of 2.12s(3.91%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N17 -->
<g id="edge30" class="edge"><title>N8&#45;&gt;N17</title>
<g id="a_edge30"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.Compare (2.12s)">
<path fill="none" stroke="black" d="M1343.61,-1422.99C1237.75,-1408.33 1109.05,-1390.18 993.66,-1373 987.12,-1372.03 980.46,-1371.03 973.735,-1370.01"/>
<polygon fill="black" stroke="black" points="974.253,-1366.55 963.841,-1368.5 973.201,-1373.47 974.253,-1366.55"/>
</a>
</g>
<g id="a_edge30&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.Compare (2.12s)">
<text text-anchor="middle" x="1230.38" y="-1393.8" font-family="Times,serif" font-size="14.00"> 2.12s</text>
</a>
</g>
</g>
<!-- N23 -->
<g id="node24" class="node"><title>N23</title>
<g id="a_node24"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Value (23.06s)">
<polygon fill="#f8f8f8" stroke="black" points="1732.97,-1367 1394.35,-1367 1394.35,-1314 1732.97,-1314 1732.97,-1367"/>
<text text-anchor="middle" x="1563.66" y="-1351" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/search.SortOrder.Value</text>
<text text-anchor="middle" x="1563.66" y="-1336" font-family="Times,serif" font-size="15.00">0.77s(1.42%)</text>
<text text-anchor="middle" x="1563.66" y="-1321" font-family="Times,serif" font-size="15.00">of 23.06s(42.51%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N23 -->
<g id="edge7" class="edge"><title>N8&#45;&gt;N23</title>
<g id="a_edge7"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.Value (23.06s)">
<path fill="none" stroke="black" stroke-width="3" d="M1563.66,-1422.83C1563.66,-1408.81 1563.66,-1392.05 1563.66,-1377.39"/>
<polygon fill="black" stroke="black" stroke-width="3" points="1567.16,-1377.16 1563.66,-1367.16 1560.16,-1377.16 1567.16,-1377.16"/>
</a>
</g>
<g id="a_edge7&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.Value (23.06s)">
<text text-anchor="middle" x="1583.88" y="-1393.8" font-family="Times,serif" font-size="14.00"> 23.06s</text>
</a>
</g>
</g>
<!-- N26 -->
<g id="node27" class="node"><title>N26</title>
<g id="a_node27"><a xlink:title="runtime.duffzero (0.74s)">
<polygon fill="#f8f8f8" stroke="black" points="1877.1,-1249 1760.22,-1249 1760.22,-1211 1877.1,-1211 1877.1,-1249"/>
<text text-anchor="middle" x="1818.66" y="-1233" font-family="Times,serif" font-size="15.00">runtime.duffzero</text>
<text text-anchor="middle" x="1818.66" y="-1218" font-family="Times,serif" font-size="15.00">0.74s(1.36%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N26 -->
<g id="edge86" class="edge"><title>N8&#45;&gt;N26</title>
<g id="a_edge86"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; runtime.duffzero (0.13s)">
<path fill="none" stroke="black" d="M1660.63,-1422.88C1689.08,-1410.68 1718.69,-1394.32 1741.66,-1373 1750.95,-1364.38 1785.48,-1297.19 1805,-1258.4"/>
<polygon fill="black" stroke="black" points="1808.26,-1259.71 1809.61,-1249.2 1802,-1256.57 1808.26,-1259.71"/>
</a>
</g>
<g id="a_edge86&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; runtime.duffzero (0.13s)">
<text text-anchor="middle" x="1796.38" y="-1336.3" font-family="Times,serif" font-size="14.00"> 0.13s</text>
</a>
</g>
</g>
<!-- N29 -->
<g id="node30" class="node"><title>N29</title>
<g id="a_node30"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.RequiresDocID (0.68s)">
<polygon fill="#f8f8f8" stroke="black" points="1376.43,-1365.5 1002.89,-1365.5 1002.89,-1315.5 1376.43,-1315.5 1376.43,-1365.5"/>
<text text-anchor="middle" x="1189.66" y="-1350.3" font-family="Times,serif" font-size="14.00">github.com/blevesearch/bleve/search.SortOrder.RequiresDocID</text>
<text text-anchor="middle" x="1189.66" y="-1336.3" font-family="Times,serif" font-size="14.00">0.62s(1.14%)</text>
<text text-anchor="middle" x="1189.66" y="-1322.3" font-family="Times,serif" font-size="14.00">of 0.68s(1.25%)</text>
</a>
</g>
</g>
<!-- N8&#45;&gt;N29 -->
<g id="edge50" class="edge"><title>N8&#45;&gt;N29</title>
<g id="a_edge50"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.RequiresDocID (0.68s)">
<path fill="none" stroke="black" d="M1462.94,-1422.97C1406,-1406 1335.38,-1384.94 1280.2,-1368.49"/>
<polygon fill="black" stroke="black" points="1281.02,-1365.08 1270.43,-1365.58 1279.02,-1371.79 1281.02,-1365.08"/>
</a>
</g>
<g id="a_edge50&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle &#45;&gt; github.com/blevesearch/bleve/search.SortOrder.RequiresDocID (0.68s)">
<text text-anchor="middle" x="1416.38" y="-1393.8" font-family="Times,serif" font-size="14.00"> 0.68s</text>
</a>
</g>
</g>
<!-- N9 -->
<g id="node10" class="node"><title>N9</title>
<g id="a_node10"><a xlink:title="encoding/binary.Uvarint (1.80s)">
<polygon fill="#f8f8f8" stroke="black" points="2741.44,-1141.5 2549.88,-1141.5 2549.88,-1097.5 2741.44,-1097.5 2741.44,-1141.5"/>
<text text-anchor="middle" x="2645.66" y="-1123.1" font-family="Times,serif" font-size="18.00">encoding/binary.Uvarint</text>
<text text-anchor="middle" x="2645.66" y="-1105.1" font-family="Times,serif" font-size="18.00">1.80s(3.32%)</text>
</a>
</g>
</g>
<!-- N10 -->
<g id="node11" class="node"><title>N10</title>
<g id="a_node11"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (2.76s)">
<polygon fill="#f8f8f8" stroke="black" points="2398.62,-1370 1888.7,-1370 1888.7,-1311 2398.62,-1311 2398.62,-1370"/>
<text text-anchor="middle" x="2143.66" y="-1352.4" font-family="Times,serif" font-size="17.00">github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score</text>
<text text-anchor="middle" x="2143.66" y="-1335.4" font-family="Times,serif" font-size="17.00">1.54s(2.84%)</text>
<text text-anchor="middle" x="2143.66" y="-1318.4" font-family="Times,serif" font-size="17.00">of 2.76s(5.09%)</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N12 -->
<g id="edge80" class="edge"><title>N10&#45;&gt;N12</title>
<g id="a_edge80"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; runtime.memmove (0.33s)">
<path fill="none" stroke="black" d="M2229.75,-1310.86C2253.66,-1298.5 2276.84,-1281.36 2290.66,-1258 2292.1,-1255.57 2291.89,-1097.23 2291.74,-1029.6"/>
<polygon fill="black" stroke="black" points="2295.24,-1029.55 2291.72,-1019.56 2288.24,-1029.57 2295.24,-1029.55"/>
</a>
</g>
<g id="a_edge80&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; runtime.memmove (0.33s)">
<text text-anchor="middle" x="2308.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 0.33s</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N26 -->
<g id="edge79" class="edge"><title>N10&#45;&gt;N26</title>
<g id="a_edge79"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; runtime.duffzero (0.35s)">
<path fill="none" stroke="black" d="M2047.92,-1310.91C1999.34,-1295.95 1939.57,-1276.87 1886.66,-1258 1881.92,-1256.31 1877.02,-1254.5 1872.12,-1252.64"/>
<polygon fill="black" stroke="black" points="1873.34,-1249.36 1862.75,-1249.03 1870.82,-1255.89 1873.34,-1249.36"/>
</a>
</g>
<g id="a_edge79&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; runtime.duffzero (0.35s)">
<text text-anchor="middle" x="1995.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 0.35s</text>
</a>
</g>
</g>
<!-- N32 -->
<g id="node33" class="node"><title>N32</title>
<g id="a_node33"><a xlink:title="github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.53s)">
<polygon fill="#f8f8f8" stroke="black" points="2282.15,-1255 1895.17,-1255 1895.17,-1205 2282.15,-1205 2282.15,-1255"/>
<text text-anchor="middle" x="2088.66" y="-1239.8" font-family="Times,serif" font-size="14.00">github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get</text>
<text text-anchor="middle" x="2088.66" y="-1225.8" font-family="Times,serif" font-size="14.00">0.52s(0.96%)</text>
<text text-anchor="middle" x="2088.66" y="-1211.8" font-family="Times,serif" font-size="14.00">of 0.53s(0.98%)</text>
</a>
</g>
</g>
<!-- N10&#45;&gt;N32 -->
<g id="edge69" class="edge"><title>N10&#45;&gt;N32</title>
<g id="a_edge69"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.53s)">
<path fill="none" stroke="black" d="M2129.21,-1310.99C2121.94,-1296.64 2113.07,-1279.16 2105.49,-1264.21"/>
<polygon fill="black" stroke="black" points="2108.61,-1262.61 2100.96,-1255.27 2102.36,-1265.78 2108.61,-1262.61"/>
</a>
</g>
<g id="a_edge69&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score &#45;&gt; github.com/blevesearch/bleve/search.(*DocumentMatchPool).Get (0.53s)">
<text text-anchor="middle" x="2135.38" y="-1278.8" font-family="Times,serif" font-size="14.00"> 0.53s</text>
</a>
</g>
</g>
<!-- N13 -->
<g id="node14" class="node"><title>N13</title>
<g id="a_node14"><a xlink:title="github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64 (7.76s)">
<polygon fill="#f8f8f8" stroke="black" points="1797.94,-1149 1329.38,-1149 1329.38,-1090 1797.94,-1090 1797.94,-1149"/>
<text text-anchor="middle" x="1563.66" y="-1131.4" font-family="Times,serif" font-size="17.00">github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64</text>
<text text-anchor="middle" x="1563.66" y="-1114.4" font-family="Times,serif" font-size="17.00">1.35s(2.49%)</text>
<text text-anchor="middle" x="1563.66" y="-1097.4" font-family="Times,serif" font-size="17.00">of 7.76s(14.31%)</text>
</a>
</g>
</g>
<!-- N13&#45;&gt;N2 -->
<g id="edge16" class="edge"><title>N13&#45;&gt;N2</title>
<g id="a_edge16"><a xlink:title="github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64 &#45;&gt; runtime.makeslice (6.41s)">
<path fill="none" stroke="black" d="M1516.71,-1090C1493.21,-1075.73 1464.27,-1058.16 1438.16,-1042.3"/>
<polygon fill="black" stroke="black" points="1439.79,-1039.2 1429.43,-1037 1436.16,-1045.18 1439.79,-1039.2"/>
</a>
</g>
<g id="a_edge16&#45;label"><a xlink:title="github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64 &#45;&gt; runtime.makeslice (6.41s)">
<text text-anchor="middle" x="1494.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 6.41s</text>
</a>
</g>
</g>
<!-- N14 -->
<g id="node15" class="node"><title>N14</title>
<g id="a_node15"><a xlink:title="runtime.usleep (1.35s)">
<polygon fill="#f8f8f8" stroke="black" points="1966.72,-1769 1850.6,-1769 1850.6,-1727 1966.72,-1727 1966.72,-1769"/>
<text text-anchor="middle" x="1908.66" y="-1751.4" font-family="Times,serif" font-size="17.00">runtime.usleep</text>
<text text-anchor="middle" x="1908.66" y="-1734.4" font-family="Times,serif" font-size="17.00">1.35s(2.49%)</text>
</a>
</g>
</g>
<!-- N16&#45;&gt;N9 -->
<g id="edge33" class="edge"><title>N16&#45;&gt;N9</title>
<g id="a_edge33"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV &#45;&gt; encoding/binary.Uvarint (1.80s)">
<path fill="none" stroke="black" d="M2645.66,-1201.9C2645.66,-1186.81 2645.66,-1167.93 2645.66,-1152.16"/>
<polygon fill="black" stroke="black" points="2649.16,-1151.82 2645.66,-1141.82 2642.16,-1151.82 2649.16,-1151.82"/>
</a>
</g>
<g id="a_edge33&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseV &#45;&gt; encoding/binary.Uvarint (1.80s)">
<text text-anchor="middle" x="2662.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 1.80s</text>
</a>
</g>
</g>
<!-- N34 -->
<g id="node35" class="node"><title>N34</title>
<g id="a_node35"><a xlink:title="runtime.cmpbody (0.48s)">
<polygon fill="#f8f8f8" stroke="black" points="847.727,-1248 739.594,-1248 739.594,-1212 847.727,-1212 847.727,-1248"/>
<text text-anchor="middle" x="793.66" y="-1232.6" font-family="Times,serif" font-size="13.00">runtime.cmpbody</text>
<text text-anchor="middle" x="793.66" y="-1219.6" font-family="Times,serif" font-size="13.00">0.48s(0.88%)</text>
</a>
</g>
</g>
<!-- N17&#45;&gt;N34 -->
<g id="edge74" class="edge"><title>N17&#45;&gt;N34</title>
<g id="a_edge74"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Compare &#45;&gt; runtime.cmpbody (0.45s)">
<path fill="none" stroke="black" d="M793.66,-1312.4C793.66,-1295.92 793.66,-1274.95 793.66,-1258.41"/>
<polygon fill="black" stroke="black" points="797.16,-1258.28 793.66,-1248.28 790.16,-1258.28 797.16,-1258.28"/>
</a>
</g>
<g id="a_edge74&#45;label"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Compare &#45;&gt; runtime.cmpbody (0.45s)">
<text text-anchor="middle" x="810.384" y="-1278.8" font-family="Times,serif" font-size="14.00"> 0.45s</text>
</a>
</g>
</g>
<!-- N19 -->
<g id="node20" class="node"><title>N19</title>
<g id="a_node20"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect (50.33s)">
<polygon fill="#f8f8f8" stroke="black" points="1806.25,-1591 1321.07,-1591 1321.07,-1535 1806.25,-1535 1806.25,-1591"/>
<text text-anchor="middle" x="1563.66" y="-1574.2" font-family="Times,serif" font-size="16.00">github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect</text>
<text text-anchor="middle" x="1563.66" y="-1558.2" font-family="Times,serif" font-size="16.00">1.15s(2.12%)</text>
<text text-anchor="middle" x="1563.66" y="-1542.2" font-family="Times,serif" font-size="16.00">of 50.33s(92.79%)</text>
</a>
</g>
</g>
<!-- N19&#45;&gt;N8 -->
<g id="edge6" class="edge"><title>N19&#45;&gt;N8</title>
<g id="a_edge6"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect &#45;&gt; github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle (29.64s)">
<path fill="none" stroke="black" stroke-width="3" d="M1563.66,-1535C1563.66,-1522.98 1563.66,-1508.58 1563.66,-1495.32"/>
<polygon fill="black" stroke="black" stroke-width="3" points="1567.16,-1495.01 1563.66,-1485.01 1560.16,-1495.01 1567.16,-1495.01"/>
</a>
</g>
<g id="a_edge6&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect &#45;&gt; github.com/blevesearch/bleve/search/collectors.(*HeapCollector).collectSingle (29.64s)">
<text text-anchor="middle" x="1583.88" y="-1505.8" font-family="Times,serif" font-size="14.00"> 29.64s</text>
</a>
</g>
</g>
<!-- N25 -->
<g id="node26" class="node"><title>N25</title>
<g id="a_node26"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (19.48s)">
<polygon fill="#f8f8f8" stroke="black" points="2310.66,-1480.5 1874.66,-1480.5 1874.66,-1427.5 2310.66,-1427.5 2310.66,-1480.5"/>
<text text-anchor="middle" x="2092.66" y="-1464.5" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next</text>
<text text-anchor="middle" x="2092.66" y="-1449.5" font-family="Times,serif" font-size="15.00">0.76s(1.40%)</text>
<text text-anchor="middle" x="2092.66" y="-1434.5" font-family="Times,serif" font-size="15.00">of 19.48s(35.91%)</text>
</a>
</g>
</g>
<!-- N19&#45;&gt;N25 -->
<g id="edge8" class="edge"><title>N19&#45;&gt;N25</title>
<g id="a_edge8"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect &#45;&gt; github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (19.48s)">
<path fill="none" stroke="black" stroke-width="2" d="M1697.15,-1535C1776.4,-1518.97 1876.65,-1498.69 1956.38,-1482.56"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1957.39,-1485.93 1966.5,-1480.52 1956,-1479.07 1957.39,-1485.93"/>
</a>
</g>
<g id="a_edge8&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect &#45;&gt; github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next (19.48s)">
<text text-anchor="middle" x="1864.88" y="-1505.8" font-family="Times,serif" font-size="14.00"> 19.48s</text>
</a>
</g>
</g>
<!-- N20 -->
<g id="node21" class="node"><title>N20</title>
<g id="a_node21"><a xlink:title="github.com/couchbase/moss.(*iterator).Current (1.13s)">
<polygon fill="#f8f8f8" stroke="black" points="4599.75,-1018.5 4281.57,-1018.5 4281.57,-978.5 4599.75,-978.5 4599.75,-1018.5"/>
<text text-anchor="middle" x="4440.66" y="-1001.7" font-family="Times,serif" font-size="16.00">github.com/couchbase/moss.(*iterator).Current</text>
<text text-anchor="middle" x="4440.66" y="-985.7" font-family="Times,serif" font-size="16.00">1.13s(2.08%)</text>
</a>
</g>
</g>
<!-- N22 -->
<g id="node23" class="node"><title>N22</title>
<g id="a_node23"><a xlink:title="github.com/blevesearch/bleve/search.(*SortScore).Value (13.97s)">
<polygon fill="#f8f8f8" stroke="black" points="1741.95,-1256.5 1385.37,-1256.5 1385.37,-1203.5 1741.95,-1203.5 1741.95,-1256.5"/>
<text text-anchor="middle" x="1563.66" y="-1240.5" font-family="Times,serif" font-size="15.00">github.com/blevesearch/bleve/search.(*SortScore).Value</text>
<text text-anchor="middle" x="1563.66" y="-1225.5" font-family="Times,serif" font-size="15.00">0.77s(1.42%)</text>
<text text-anchor="middle" x="1563.66" y="-1210.5" font-family="Times,serif" font-size="15.00">of 13.97s(25.76%)</text>
</a>
</g>
</g>
<!-- N22&#45;&gt;N13 -->
<g id="edge14" class="edge"><title>N22&#45;&gt;N13</title>
<g id="a_edge14"><a xlink:title="github.com/blevesearch/bleve/search.(*SortScore).Value &#45;&gt; github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64 (7.76s)">
<path fill="none" stroke="black" d="M1563.66,-1203.29C1563.66,-1190.18 1563.66,-1173.96 1563.66,-1159.36"/>
<polygon fill="black" stroke="black" points="1567.16,-1159.08 1563.66,-1149.08 1560.16,-1159.08 1567.16,-1159.08"/>
</a>
</g>
<g id="a_edge14&#45;label"><a xlink:title="github.com/blevesearch/bleve/search.(*SortScore).Value &#45;&gt; github.com/blevesearch/bleve/numeric_util.NewPrefixCodedInt64 (7.76s)">
<text text-anchor="middle" x="1580.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 7.76s</text>
</a>
</g>
</g>
<!-- N33 -->
<g id="node34" class="node"><title>N33</title>
<g id="a_node34"><a xlink:title="runtime.slicebytetostring (5.44s)">
<polygon fill="#f8f8f8" stroke="black" points="1961.27,-1143 1816.05,-1143 1816.05,-1096 1961.27,-1096 1961.27,-1143"/>
<text text-anchor="middle" x="1888.66" y="-1128.6" font-family="Times,serif" font-size="13.00">runtime.slicebytetostring</text>
<text text-anchor="middle" x="1888.66" y="-1115.6" font-family="Times,serif" font-size="13.00">0.49s(0.9%)</text>
<text text-anchor="middle" x="1888.66" y="-1102.6" font-family="Times,serif" font-size="13.00">of 5.44s(10.03%)</text>
</a>
</g>
</g>
<!-- N22&#45;&gt;N33 -->
<g id="edge17" class="edge"><title>N22&#45;&gt;N33</title>
<g id="a_edge17"><a xlink:title="github.com/blevesearch/bleve/search.(*SortScore).Value &#45;&gt; runtime.slicebytetostring (5.44s)">
<path fill="none" stroke="black" d="M1648.7,-1203.42C1695.53,-1188.99 1754.55,-1170.25 1806.66,-1152 1811.48,-1150.31 1816.45,-1148.52 1821.44,-1146.69"/>
<polygon fill="black" stroke="black" points="1822.87,-1149.9 1831.03,-1143.14 1820.44,-1143.33 1822.87,-1149.9"/>
</a>
</g>
<g id="a_edge17&#45;label"><a xlink:title="github.com/blevesearch/bleve/search.(*SortScore).Value &#45;&gt; runtime.slicebytetostring (5.44s)">
<text text-anchor="middle" x="1764.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 5.44s</text>
</a>
</g>
</g>
<!-- N23&#45;&gt;N2 -->
<g id="edge12" class="edge"><title>N23&#45;&gt;N2</title>
<g id="a_edge12"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Value &#45;&gt; runtime.makeslice (8.32s)">
<path fill="none" stroke="black" d="M1472.73,-1313.92C1439.59,-1301.2 1403.66,-1283.05 1376.66,-1258 1318.03,-1203.61 1301.15,-1164.56 1320.66,-1087 1324.18,-1073.01 1330.42,-1058.81 1337.23,-1046.04"/>
<polygon fill="black" stroke="black" points="1340.45,-1047.46 1342.26,-1037.02 1334.33,-1044.05 1340.45,-1047.46"/>
</a>
</g>
<g id="a_edge12&#45;label"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Value &#45;&gt; runtime.makeslice (8.32s)">
<text text-anchor="middle" x="1337.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 8.32s</text>
</a>
</g>
</g>
<!-- N23&#45;&gt;N22 -->
<g id="edge10" class="edge"><title>N23&#45;&gt;N22</title>
<g id="a_edge10"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Value &#45;&gt; github.com/blevesearch/bleve/search.(*SortScore).Value (13.97s)">
<path fill="none" stroke="black" stroke-width="2" d="M1563.66,-1313.79C1563.66,-1299.73 1563.66,-1282.11 1563.66,-1266.74"/>
<polygon fill="black" stroke="black" stroke-width="2" points="1567.16,-1266.53 1563.66,-1256.53 1560.16,-1266.53 1567.16,-1266.53"/>
</a>
</g>
<g id="a_edge10&#45;label"><a xlink:title="github.com/blevesearch/bleve/search.SortOrder.Value &#45;&gt; github.com/blevesearch/bleve/search.(*SortScore).Value (13.97s)">
<text text-anchor="middle" x="1583.88" y="-1278.8" font-family="Times,serif" font-size="14.00"> 13.97s</text>
</a>
</g>
</g>
<!-- N24&#45;&gt;N7 -->
<g id="edge31" class="edge"><title>N24&#45;&gt;N7</title>
<g id="a_edge31"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc &#45;&gt; runtime.indexbytebody (2.04s)">
<path fill="none" stroke="black" d="M3581.66,-1203.29C3581.66,-1187.87 3581.66,-1168.14 3581.66,-1151.82"/>
<polygon fill="black" stroke="black" points="3585.16,-1151.66 3581.66,-1141.66 3578.16,-1151.66 3585.16,-1151.66"/>
</a>
</g>
<g id="a_edge31&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*TermFrequencyRow).parseKDoc &#45;&gt; runtime.indexbytebody (2.04s)">
<text text-anchor="middle" x="3598.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 2.04s</text>
</a>
</g>
</g>
<!-- N25&#45;&gt;N6 -->
<g id="edge9" class="edge"><title>N25&#45;&gt;N6</title>
<g id="a_edge9"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (15.70s)">
<path fill="none" stroke="black" stroke-width="2" d="M2252.36,-1427.49C2350.5,-1411.81 2477.28,-1391.56 2583.16,-1374.65"/>
<polygon fill="black" stroke="black" stroke-width="2" points="2584.01,-1378.06 2593.33,-1373.02 2582.91,-1371.14 2584.01,-1378.06"/>
</a>
</g>
<g id="a_edge9&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouchTermFieldReader).Next (15.70s)">
<text text-anchor="middle" x="2481.88" y="-1393.8" font-family="Times,serif" font-size="14.00"> 15.70s</text>
</a>
</g>
</g>
<!-- N25&#45;&gt;N10 -->
<g id="edge29" class="edge"><title>N25&#45;&gt;N10</title>
<g id="a_edge29"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (2.76s)">
<path fill="none" stroke="black" d="M2104.36,-1427.42C2110.84,-1413.26 2119.02,-1395.38 2126.23,-1379.6"/>
<polygon fill="black" stroke="black" points="2129.6,-1380.65 2130.58,-1370.1 2123.24,-1377.74 2129.6,-1380.65"/>
</a>
</g>
<g id="a_edge29&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; github.com/blevesearch/bleve/search/scorers.(*TermQueryScorer).Score (2.76s)">
<text text-anchor="middle" x="2137.38" y="-1393.8" font-family="Times,serif" font-size="14.00"> 2.76s</text>
</a>
</g>
</g>
<!-- N25&#45;&gt;N26 -->
<g id="edge84" class="edge"><title>N25&#45;&gt;N26</title>
<g id="a_edge84"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; runtime.duffzero (0.26s)">
<path fill="none" stroke="black" d="M1930.8,-1427.47C1898.98,-1415.6 1868.57,-1398.27 1846.21,-1373 1818.53,-1341.71 1815.19,-1291.11 1816.25,-1259.52"/>
<polygon fill="black" stroke="black" points="1819.76,-1259.36 1816.77,-1249.2 1812.77,-1259.01 1819.76,-1259.36"/>
</a>
</g>
<g id="a_edge84&#45;label"><a xlink:title="github.com/blevesearch/bleve/search/searchers.(*TermSearcher).Next &#45;&gt; runtime.duffzero (0.26s)">
<text text-anchor="middle" x="1863.38" y="-1336.3" font-family="Times,serif" font-size="14.00"> 0.26s</text>
</a>
</g>
</g>
<!-- N27 -->
<g id="node28" class="node"><title>N27</title>
<g id="a_node28"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (1.82s)">
<polygon fill="#f8f8f8" stroke="black" points="4645.46,-1144.5 4235.86,-1144.5 4235.86,-1094.5 4645.46,-1094.5 4645.46,-1144.5"/>
<text text-anchor="middle" x="4440.66" y="-1129.3" font-family="Times,serif" font-size="14.00">github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone</text>
<text text-anchor="middle" x="4440.66" y="-1115.3" font-family="Times,serif" font-size="14.00">0.69s(1.27%)</text>
<text text-anchor="middle" x="4440.66" y="-1101.3" font-family="Times,serif" font-size="14.00">of 1.82s(3.36%)</text>
</a>
</g>
</g>
<!-- N27&#45;&gt;N20 -->
<g id="edge38" class="edge"><title>N27&#45;&gt;N20</title>
<g id="a_edge38"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone &#45;&gt; github.com/couchbase/moss.(*iterator).Current (1.13s)">
<path fill="none" stroke="black" d="M4440.66,-1094.42C4440.66,-1075.54 4440.66,-1049.17 4440.66,-1029.02"/>
<polygon fill="black" stroke="black" points="4444.16,-1028.83 4440.66,-1018.83 4437.16,-1028.83 4444.16,-1028.83"/>
</a>
</g>
<g id="a_edge38&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone &#45;&gt; github.com/couchbase/moss.(*iterator).Current (1.13s)">
<text text-anchor="middle" x="4457.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 1.13s</text>
</a>
</g>
</g>
<!-- N30 -->
<g id="node31" class="node"><title>N30</title>
<g id="a_node31"><a xlink:title="runtime.mach_semaphore_wait (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="1278.77,-312 1086.55,-312 1086.55,-276 1278.77,-276 1278.77,-312"/>
<text text-anchor="middle" x="1182.66" y="-296.8" font-family="Times,serif" font-size="14.00">runtime.mach_semaphore_wait</text>
<text text-anchor="middle" x="1182.66" y="-282.8" font-family="Times,serif" font-size="14.00">0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N31 -->
<g id="node32" class="node"><title>N31</title>
<g id="a_node32"><a xlink:title="runtime.rawstring (4.22s)">
<polygon fill="#f8f8f8" stroke="black" points="1946.58,-902.5 1830.74,-902.5 1830.74,-852.5 1946.58,-852.5 1946.58,-902.5"/>
<text text-anchor="middle" x="1888.66" y="-887.3" font-family="Times,serif" font-size="14.00">runtime.rawstring</text>
<text text-anchor="middle" x="1888.66" y="-873.3" font-family="Times,serif" font-size="14.00">0.55s(1.01%)</text>
<text text-anchor="middle" x="1888.66" y="-859.3" font-family="Times,serif" font-size="14.00">of 4.22s(7.78%)</text>
</a>
</g>
</g>
<!-- N31&#45;&gt;N1 -->
<g id="edge21" class="edge"><title>N31&#45;&gt;N1</title>
<g id="a_edge21"><a xlink:title="runtime.rawstring &#45;&gt; runtime.mallocgc (3.66s)">
<path fill="none" stroke="black" d="M1830.66,-863.086C1744.88,-843.247 1582.74,-805.745 1474.93,-780.81"/>
<polygon fill="black" stroke="black" points="1475.53,-777.355 1464.99,-778.512 1473.95,-784.175 1475.53,-777.355"/>
</a>
</g>
<g id="a_edge21&#45;label"><a xlink:title="runtime.rawstring &#45;&gt; runtime.mallocgc (3.66s)">
<text text-anchor="middle" x="1676.38" y="-815.8" font-family="Times,serif" font-size="14.00"> 3.66s</text>
</a>
</g>
</g>
<!-- N33&#45;&gt;N12 -->
<g id="edge73" class="edge"><title>N33&#45;&gt;N12</title>
<g id="a_edge73"><a xlink:title="runtime.slicebytetostring &#45;&gt; runtime.memmove (0.47s)">
<path fill="none" stroke="black" d="M1961.64,-1096.95C2033.06,-1075.86 2141.45,-1043.86 2214.32,-1022.34"/>
<polygon fill="black" stroke="black" points="2215.32,-1025.69 2223.92,-1019.5 2213.34,-1018.98 2215.32,-1025.69"/>
</a>
</g>
<g id="a_edge73&#45;label"><a xlink:title="runtime.slicebytetostring &#45;&gt; runtime.memmove (0.47s)">
<text text-anchor="middle" x="2119.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 0.47s</text>
</a>
</g>
</g>
<!-- N40 -->
<g id="node41" class="node"><title>N40</title>
<g id="a_node41"><a xlink:title="runtime.rawstringtmp (4.48s)">
<polygon fill="#f8f8f8" stroke="black" points="1948.98,-1020.5 1828.35,-1020.5 1828.35,-976.5 1948.98,-976.5 1948.98,-1020.5"/>
<text text-anchor="middle" x="1888.66" y="-1006.9" font-family="Times,serif" font-size="12.00">runtime.rawstringtmp</text>
<text text-anchor="middle" x="1888.66" y="-994.9" font-family="Times,serif" font-size="12.00">0.26s(0.48%)</text>
<text text-anchor="middle" x="1888.66" y="-982.9" font-family="Times,serif" font-size="12.00">of 4.48s(8.26%)</text>
</a>
</g>
</g>
<!-- N33&#45;&gt;N40 -->
<g id="edge19" class="edge"><title>N33&#45;&gt;N40</title>
<g id="a_edge19"><a xlink:title="runtime.slicebytetostring &#45;&gt; runtime.rawstringtmp (4.48s)">
<path fill="none" stroke="black" d="M1888.66,-1095.84C1888.66,-1077.46 1888.66,-1051.36 1888.66,-1030.96"/>
<polygon fill="black" stroke="black" points="1892.16,-1030.88 1888.66,-1020.88 1885.16,-1030.88 1892.16,-1030.88"/>
</a>
</g>
<g id="a_edge19&#45;label"><a xlink:title="runtime.slicebytetostring &#45;&gt; runtime.rawstringtmp (4.48s)">
<text text-anchor="middle" x="1905.38" y="-1057.8" font-family="Times,serif" font-size="14.00"> 4.48s</text>
</a>
</g>
</g>
<!-- N35&#45;&gt;N4 -->
<g id="edge18" class="edge"><title>N35&#45;&gt;N4</title>
<g id="a_edge18"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next &#45;&gt; github.com/couchbase/moss.(*iterator).Next (5.08s)">
<path fill="none" stroke="black" d="M4040.66,-1206.25C4040.66,-1193.53 4040.66,-1177.27 4040.66,-1162.34"/>
<polygon fill="black" stroke="black" points="4044.16,-1162.27 4040.66,-1152.27 4037.16,-1162.27 4044.16,-1162.27"/>
</a>
</g>
<g id="a_edge18&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next &#45;&gt; github.com/couchbase/moss.(*iterator).Next (5.08s)">
<text text-anchor="middle" x="4057.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 5.08s</text>
</a>
</g>
</g>
<!-- N35&#45;&gt;N27 -->
<g id="edge32" class="edge"><title>N35&#45;&gt;N27</title>
<g id="a_edge32"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (1.82s)">
<path fill="none" stroke="black" d="M4124.03,-1206.39C4187.53,-1189.16 4275.15,-1165.39 4342.12,-1147.23"/>
<polygon fill="black" stroke="black" points="4343.11,-1150.59 4351.85,-1144.59 4341.28,-1143.83 4343.11,-1150.59"/>
</a>
</g>
<g id="a_edge32&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).checkDone (1.82s)">
<text text-anchor="middle" x="4268.38" y="-1172.8" font-family="Times,serif" font-size="14.00"> 1.82s</text>
</a>
</g>
</g>
<!-- N36 -->
<g id="node37" class="node"><title>N36</title>
<g id="a_node37"><a xlink:title="runtime.memclr (0.43s)">
<polygon fill="#f8f8f8" stroke="black" points="1060.55,-36 960.77,-36 960.77,-0 1060.55,-0 1060.55,-36"/>
<text text-anchor="middle" x="1010.66" y="-20.6" font-family="Times,serif" font-size="13.00">runtime.memclr</text>
<text text-anchor="middle" x="1010.66" y="-7.6" font-family="Times,serif" font-size="13.00">0.43s(0.79%)</text>
</a>
</g>
</g>
<!-- N37 -->
<g id="node38" class="node"><title>N37</title>
<g id="a_node38"><a xlink:title="runtime.(*mspan).sweep.func1 (0.36s)">
<polygon fill="#f8f8f8" stroke="black" points="934.531,-122 756.79,-122 756.79,-86 934.531,-86 934.531,-122"/>
<text text-anchor="middle" x="845.66" y="-106.6" font-family="Times,serif" font-size="13.00">runtime.(*mspan).sweep.func1</text>
<text text-anchor="middle" x="845.66" y="-93.6" font-family="Times,serif" font-size="13.00">0.36s(0.66%)</text>
</a>
</g>
</g>
<!-- N39 -->
<g id="node40" class="node"><title>N39</title>
<g id="a_node40"><a xlink:title="runtime.(*mcentral).grow (0.75s)">
<polygon fill="#f8f8f8" stroke="black" points="1085.95,-219 935.375,-219 935.375,-172 1085.95,-172 1085.95,-219"/>
<text text-anchor="middle" x="1010.66" y="-204.6" font-family="Times,serif" font-size="13.00">runtime.(*mcentral).grow</text>
<text text-anchor="middle" x="1010.66" y="-191.6" font-family="Times,serif" font-size="13.00">0.35s(0.65%)</text>
<text text-anchor="middle" x="1010.66" y="-178.6" font-family="Times,serif" font-size="13.00">of 0.75s(1.38%)</text>
</a>
</g>
</g>
<!-- N56 -->
<g id="node57" class="node"><title>N56</title>
<g id="a_node57"><a xlink:title="runtime.(*mheap).alloc (0.39s)">
<polygon fill="#f8f8f8" stroke="black" points="1056.24,-122 965.078,-122 965.078,-86 1056.24,-86 1056.24,-122"/>
<text text-anchor="middle" x="1010.66" y="-105.6" font-family="Times,serif" font-size="8.00">runtime.(*mheap).alloc</text>
<text text-anchor="middle" x="1010.66" y="-97.6" font-family="Times,serif" font-size="8.00">0 of 0.39s(0.72%)</text>
</a>
</g>
</g>
<!-- N39&#45;&gt;N56 -->
<g id="edge75" class="edge"><title>N39&#45;&gt;N56</title>
<g id="a_edge75"><a xlink:title="runtime.(*mcentral).grow &#45;&gt; runtime.(*mheap).alloc (0.39s)">
<path fill="none" stroke="black" d="M1010.66,-171.915C1010.66,-159.859 1010.66,-144.932 1010.66,-132.237"/>
<polygon fill="black" stroke="black" points="1014.16,-132.21 1010.66,-122.21 1007.16,-132.21 1014.16,-132.21"/>
</a>
</g>
<g id="a_edge75&#45;label"><a xlink:title="runtime.(*mcentral).grow &#45;&gt; runtime.(*mheap).alloc (0.39s)">
<text text-anchor="middle" x="1027.38" y="-142.8" font-family="Times,serif" font-size="14.00"> 0.39s</text>
</a>
</g>
</g>
<!-- N40&#45;&gt;N31 -->
<g id="edge20" class="edge"><title>N40&#45;&gt;N31</title>
<g id="a_edge20"><a xlink:title="runtime.rawstringtmp &#45;&gt; runtime.rawstring (4.22s)">
<path fill="none" stroke="black" d="M1888.66,-976.499C1888.66,-958.885 1888.66,-933.383 1888.66,-912.809"/>
<polygon fill="black" stroke="black" points="1892.16,-912.567 1888.66,-902.567 1885.16,-912.567 1892.16,-912.567"/>
</a>
</g>
<g id="a_edge20&#45;label"><a xlink:title="runtime.rawstringtmp &#45;&gt; runtime.rawstring (4.22s)">
<text text-anchor="middle" x="1905.38" y="-930.8" font-family="Times,serif" font-size="14.00"> 4.22s</text>
</a>
</g>
</g>
<!-- N41 -->
<g id="node42" class="node"><title>N41</title>
<g id="a_node42"><a xlink:title="runtime.heapBitsSweepSpan (0.47s)">
<polygon fill="#f8f8f8" stroke="black" points="916.945,-216 774.375,-216 774.375,-175 916.945,-175 916.945,-216"/>
<text text-anchor="middle" x="845.66" y="-203.2" font-family="Times,serif" font-size="11.00">runtime.heapBitsSweepSpan</text>
<text text-anchor="middle" x="845.66" y="-192.2" font-family="Times,serif" font-size="11.00">0.11s(0.2%)</text>
<text text-anchor="middle" x="845.66" y="-181.2" font-family="Times,serif" font-size="11.00">of 0.47s(0.87%)</text>
</a>
</g>
</g>
<!-- N41&#45;&gt;N37 -->
<g id="edge77" class="edge"><title>N41&#45;&gt;N37</title>
<g id="a_edge77"><a xlink:title="runtime.heapBitsSweepSpan &#45;&gt; runtime.(*mspan).sweep.func1 (0.36s)">
<path fill="none" stroke="black" d="M845.66,-174.637C845.66,-162.202 845.66,-146.009 845.66,-132.367"/>
<polygon fill="black" stroke="black" points="849.16,-132.094 845.66,-122.094 842.16,-132.094 849.16,-132.094"/>
</a>
</g>
<g id="a_edge77&#45;label"><a xlink:title="runtime.heapBitsSweepSpan &#45;&gt; runtime.(*mspan).sweep.func1 (0.36s)">
<text text-anchor="middle" x="862.384" y="-142.8" font-family="Times,serif" font-size="14.00"> 0.36s</text>
</a>
</g>
</g>
<!-- N42 -->
<g id="node43" class="node"><title>N42</title>
<g id="a_node43"><a xlink:title="runtime.(*mcache).refill (0.82s)">
<polygon fill="#f8f8f8" stroke="black" points="1175.63,-405 1071.69,-405 1071.69,-369 1175.63,-369 1175.63,-405"/>
<text text-anchor="middle" x="1123.66" y="-393.3" font-family="Times,serif" font-size="9.00">runtime.(*mcache).refill</text>
<text text-anchor="middle" x="1123.66" y="-384.3" font-family="Times,serif" font-size="9.00">0.01s(0.018%)</text>
<text text-anchor="middle" x="1123.66" y="-375.3" font-family="Times,serif" font-size="9.00">of 0.82s(1.51%)</text>
</a>
</g>
</g>
<!-- N55 -->
<g id="node56" class="node"><title>N55</title>
<g id="a_node56"><a xlink:title="runtime.(*mcentral).cacheSpan (0.81s)">
<polygon fill="#f8f8f8" stroke="black" points="1069.06,-312 952.261,-312 952.261,-276 1069.06,-276 1069.06,-312"/>
<text text-anchor="middle" x="1010.66" y="-295.6" font-family="Times,serif" font-size="8.00">runtime.(*mcentral).cacheSpan</text>
<text text-anchor="middle" x="1010.66" y="-287.6" font-family="Times,serif" font-size="8.00">0 of 0.81s(1.49%)</text>
</a>
</g>
</g>
<!-- N42&#45;&gt;N55 -->
<g id="edge46" class="edge"><title>N42&#45;&gt;N55</title>
<g id="a_edge46"><a xlink:title="runtime.(*mcache).refill &#45;&gt; runtime.(*mcentral).cacheSpan (0.81s)">
<path fill="none" stroke="black" d="M1102.41,-368.884C1084.73,-354.648 1059.39,-334.24 1039.81,-318.479"/>
<polygon fill="black" stroke="black" points="1041.8,-315.586 1031.82,-312.04 1037.41,-321.038 1041.8,-315.586"/>
</a>
</g>
<g id="a_edge46&#45;label"><a xlink:title="runtime.(*mcache).refill &#45;&gt; runtime.(*mcentral).cacheSpan (0.81s)">
<text text-anchor="middle" x="1094.38" y="-339.8" font-family="Times,serif" font-size="14.00"> 0.81s</text>
</a>
</g>
</g>
<!-- N43 -->
<g id="node44" class="node"><title>N43</title>
<g id="a_node44"><a xlink:title="runtime.gosweepone.func1 (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="1064.63,-491 950.688,-491 950.688,-455 1064.63,-455 1064.63,-491"/>
<text text-anchor="middle" x="1007.66" y="-479.3" font-family="Times,serif" font-size="9.00">runtime.gosweepone.func1</text>
<text text-anchor="middle" x="1007.66" y="-470.3" font-family="Times,serif" font-size="9.00">0.01s(0.018%)</text>
<text text-anchor="middle" x="1007.66" y="-461.3" font-family="Times,serif" font-size="9.00">of 0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N45 -->
<g id="node46" class="node"><title>N45</title>
<g id="a_node46"><a xlink:title="runtime.sweepone (0.55s)">
<polygon fill="#f8f8f8" stroke="black" points="1048.39,-405 966.931,-405 966.931,-369 1048.39,-369 1048.39,-405"/>
<text text-anchor="middle" x="1007.66" y="-393.3" font-family="Times,serif" font-size="9.00">runtime.sweepone</text>
<text text-anchor="middle" x="1007.66" y="-384.3" font-family="Times,serif" font-size="9.00">0.01s(0.018%)</text>
<text text-anchor="middle" x="1007.66" y="-375.3" font-family="Times,serif" font-size="9.00">of 0.55s(1.01%)</text>
</a>
</g>
</g>
<!-- N43&#45;&gt;N45 -->
<g id="edge68" class="edge"><title>N43&#45;&gt;N45</title>
<g id="a_edge68"><a xlink:title="runtime.gosweepone.func1 &#45;&gt; runtime.sweepone (0.55s)">
<path fill="none" stroke="black" d="M1007.66,-454.595C1007.66,-443.257 1007.66,-428.227 1007.66,-415.315"/>
<polygon fill="black" stroke="black" points="1011.16,-415.095 1007.66,-405.095 1004.16,-415.095 1011.16,-415.095"/>
</a>
</g>
<g id="a_edge68&#45;label"><a xlink:title="runtime.gosweepone.func1 &#45;&gt; runtime.sweepone (0.55s)">
<text text-anchor="middle" x="1024.38" y="-425.8" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N44 -->
<g id="node45" class="node"><title>N44</title>
<g id="a_node45"><a xlink:title="runtime.newobject (0.31s)">
<polygon fill="#f8f8f8" stroke="black" points="475.388,-1855 391.932,-1855 391.932,-1819 475.388,-1819 475.388,-1855"/>
<text text-anchor="middle" x="433.66" y="-1843.3" font-family="Times,serif" font-size="9.00">runtime.newobject</text>
<text text-anchor="middle" x="433.66" y="-1834.3" font-family="Times,serif" font-size="9.00">0.01s(0.018%)</text>
<text text-anchor="middle" x="433.66" y="-1825.3" font-family="Times,serif" font-size="9.00">of 0.31s(0.57%)</text>
</a>
</g>
</g>
<!-- N44&#45;&gt;N1 -->
<g id="edge83" class="edge"><title>N44&#45;&gt;N1</title>
<g id="a_edge83"><a xlink:title="runtime.newobject &#45;&gt; runtime.mallocgc (0.30s)">
<path fill="none" stroke="black" d="M391.894,-1833.48C304.769,-1827.07 111.66,-1806.4 111.66,-1749 111.66,-1749 111.66,-1749 111.66,-876.5 111.66,-761.535 956.26,-754.089 1260.26,-755.133"/>
<polygon fill="black" stroke="black" points="1260.4,-758.633 1270.41,-755.172 1260.42,-751.633 1260.4,-758.633"/>
</a>
</g>
<g id="a_edge83&#45;label"><a xlink:title="runtime.newobject &#45;&gt; runtime.mallocgc (0.30s)">
<text text-anchor="middle" x="128.384" y="-1336.3" font-family="Times,serif" font-size="14.00"> 0.30s</text>
</a>
</g>
</g>
<!-- N57 -->
<g id="node58" class="node"><title>N57</title>
<g id="a_node58"><a xlink:title="runtime.(*mspan).sweep (0.53s)">
<polygon fill="#f8f8f8" stroke="black" points="923.25,-312 828.07,-312 828.07,-276 923.25,-276 923.25,-312"/>
<text text-anchor="middle" x="875.66" y="-295.6" font-family="Times,serif" font-size="8.00">runtime.(*mspan).sweep</text>
<text text-anchor="middle" x="875.66" y="-287.6" font-family="Times,serif" font-size="8.00">0 of 0.53s(0.98%)</text>
</a>
</g>
</g>
<!-- N45&#45;&gt;N57 -->
<g id="edge70" class="edge"><title>N45&#45;&gt;N57</title>
<g id="a_edge70"><a xlink:title="runtime.sweepone &#45;&gt; runtime.(*mspan).sweep (0.53s)">
<path fill="none" stroke="black" d="M982.832,-368.884C961.906,-354.457 931.786,-333.693 908.802,-317.848"/>
<polygon fill="black" stroke="black" points="910.597,-314.834 900.377,-312.04 906.624,-320.597 910.597,-314.834"/>
</a>
</g>
<g id="a_edge70&#45;label"><a xlink:title="runtime.sweepone &#45;&gt; runtime.(*mspan).sweep (0.53s)">
<text text-anchor="middle" x="970.384" y="-339.8" font-family="Times,serif" font-size="14.00"> 0.53s</text>
</a>
</g>
</g>
<!-- N46 -->
<g id="node47" class="node"><title>N46</title>
<g id="a_node47"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search (50.61s)">
<polygon fill="#f8f8f8" stroke="black" points="1653.38,-1766 1473.94,-1766 1473.94,-1730 1653.38,-1730 1653.38,-1766"/>
<text text-anchor="middle" x="1563.66" y="-1749.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.(*indexImpl).Search</text>
<text text-anchor="middle" x="1563.66" y="-1741.6" font-family="Times,serif" font-size="8.00">0 of 50.61s(93.31%)</text>
</a>
</g>
</g>
<!-- N47 -->
<g id="node48" class="node"><title>N47</title>
<g id="a_node48"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext (50.61s)">
<polygon fill="#f8f8f8" stroke="black" points="1669.38,-1677 1457.95,-1677 1457.95,-1641 1669.38,-1641 1669.38,-1677"/>
<text text-anchor="middle" x="1563.66" y="-1660.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.(*indexImpl).SearchInContext</text>
<text text-anchor="middle" x="1563.66" y="-1652.6" font-family="Times,serif" font-size="8.00">0 of 50.61s(93.31%)</text>
</a>
</g>
</g>
<!-- N46&#45;&gt;N47 -->
<g id="edge1" class="edge"><title>N46&#45;&gt;N47</title>
<g id="a_edge1"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search &#45;&gt; github.com/blevesearch/bleve.(*indexImpl).SearchInContext (50.61s)">
<path fill="none" stroke="black" stroke-width="5" d="M1563.66,-1729.81C1563.66,-1717.66 1563.66,-1701.11 1563.66,-1687.18"/>
<polygon fill="black" stroke="black" stroke-width="5" points="1568.04,-1687.15 1563.66,-1677.15 1559.29,-1687.15 1568.04,-1687.15"/>
</a>
</g>
<g id="a_edge1&#45;label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).Search &#45;&gt; github.com/blevesearch/bleve.(*indexImpl).SearchInContext (50.61s)">
<text text-anchor="middle" x="1583.88" y="-1697.8" font-family="Times,serif" font-size="14.00"> 50.61s</text>
</a>
</g>
</g>
<!-- N47&#45;&gt;N19 -->
<g id="edge5" class="edge"><title>N47&#45;&gt;N19</title>
<g id="a_edge5"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext &#45;&gt; github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect (50.33s)">
<path fill="none" stroke="black" stroke-width="5" d="M1563.66,-1640.76C1563.66,-1629.69 1563.66,-1614.89 1563.66,-1601.23"/>
<polygon fill="black" stroke="black" stroke-width="5" points="1568.04,-1601.1 1563.66,-1591.1 1559.29,-1601.1 1568.04,-1601.1"/>
</a>
</g>
<g id="a_edge5&#45;label"><a xlink:title="github.com/blevesearch/bleve.(*indexImpl).SearchInContext &#45;&gt; github.com/blevesearch/bleve/search/collectors.(*HeapCollector).Collect (50.33s)">
<text text-anchor="middle" x="1583.88" y="-1611.8" font-family="Times,serif" font-size="14.00"> 50.33s</text>
</a>
</g>
</g>
<!-- N48 -->
<g id="node49" class="node"><title>N48</title>
<g id="a_node49"><a xlink:title="github.com/blevesearch/bleve.Open (0.55s)">
<polygon fill="#f8f8f8" stroke="black" points="1819.23,-1766 1688.09,-1766 1688.09,-1730 1819.23,-1730 1819.23,-1766"/>
<text text-anchor="middle" x="1753.66" y="-1749.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.Open</text>
<text text-anchor="middle" x="1753.66" y="-1741.6" font-family="Times,serif" font-size="8.00">0 of 0.55s(1.01%)</text>
</a>
</g>
</g>
<!-- N49 -->
<g id="node50" class="node"><title>N49</title>
<g id="a_node50"><a xlink:title="github.com/blevesearch/bleve.openIndexUsing (0.55s)">
<polygon fill="#f8f8f8" stroke="black" points="1947.78,-1677 1781.54,-1677 1781.54,-1641 1947.78,-1641 1947.78,-1677"/>
<text text-anchor="middle" x="1864.66" y="-1660.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve.openIndexUsing</text>
<text text-anchor="middle" x="1864.66" y="-1652.6" font-family="Times,serif" font-size="8.00">0 of 0.55s(1.01%)</text>
</a>
</g>
</g>
<!-- N48&#45;&gt;N49 -->
<g id="edge63" class="edge"><title>N48&#45;&gt;N49</title>
<g id="a_edge63"><a xlink:title="github.com/blevesearch/bleve.Open &#45;&gt; github.com/blevesearch/bleve.openIndexUsing (0.55s)">
<path fill="none" stroke="black" d="M1775.59,-1729.81C1792.54,-1716.53 1816.19,-1697.99 1834.85,-1683.36"/>
<polygon fill="black" stroke="black" points="1837.06,-1686.08 1842.78,-1677.15 1832.75,-1680.57 1837.06,-1686.08"/>
</a>
</g>
<g id="a_edge63&#45;label"><a xlink:title="github.com/blevesearch/bleve.Open &#45;&gt; github.com/blevesearch/bleve.openIndexUsing (0.55s)">
<text text-anchor="middle" x="1836.38" y="-1697.8" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N50 -->
<g id="node51" class="node"><title>N50</title>
<g id="a_node51"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open (0.55s)">
<polygon fill="#f8f8f8" stroke="black" points="2193.05,-1581 1922.27,-1581 1922.27,-1545 2193.05,-1545 2193.05,-1581"/>
<text text-anchor="middle" x="2057.66" y="-1564.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open</text>
<text text-anchor="middle" x="2057.66" y="-1556.6" font-family="Times,serif" font-size="8.00">0 of 0.55s(1.01%)</text>
</a>
</g>
</g>
<!-- N49&#45;&gt;N50 -->
<g id="edge64" class="edge"><title>N49&#45;&gt;N50</title>
<g id="a_edge64"><a xlink:title="github.com/blevesearch/bleve.openIndexUsing &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open (0.55s)">
<path fill="none" stroke="black" d="M1899.61,-1640.98C1931.48,-1625.45 1978.73,-1602.44 2013.26,-1585.62"/>
<polygon fill="black" stroke="black" points="2015.19,-1588.58 2022.64,-1581.05 2012.12,-1582.29 2015.19,-1588.58"/>
</a>
</g>
<g id="a_edge64&#45;label"><a xlink:title="github.com/blevesearch/bleve.openIndexUsing &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open (0.55s)">
<text text-anchor="middle" x="1978.38" y="-1611.8" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N51 -->
<g id="node52" class="node"><title>N51</title>
<g id="a_node52"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs (0.55s)">
<polygon fill="#f8f8f8" stroke="black" points="3643.43,-1472 3355.89,-1472 3355.89,-1436 3643.43,-1436 3643.43,-1472"/>
<text text-anchor="middle" x="3499.66" y="-1455.6" font-family="Times,serif" font-size="8.00">github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs</text>
<text text-anchor="middle" x="3499.66" y="-1447.6" font-family="Times,serif" font-size="8.00">0 of 0.55s(1.01%)</text>
</a>
</g>
</g>
<!-- N50&#45;&gt;N51 -->
<g id="edge65" class="edge"><title>N50&#45;&gt;N51</title>
<g id="a_edge65"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs (0.55s)">
<path fill="none" stroke="black" d="M2193,-1551.96C2461.87,-1532.01 3061.76,-1487.49 3345.4,-1466.45"/>
<polygon fill="black" stroke="black" points="3346.06,-1469.91 3355.77,-1465.68 3345.54,-1462.93 3346.06,-1469.91"/>
</a>
</g>
<g id="a_edge65&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).Open &#45;&gt; github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs (0.55s)">
<text text-anchor="middle" x="2838.38" y="-1505.8" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N51&#45;&gt;N35 -->
<g id="edge66" class="edge"><title>N51&#45;&gt;N35</title>
<g id="a_edge66"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (0.55s)">
<path fill="none" stroke="black" d="M3541.21,-1435.95C3634.98,-1397.47 3863.55,-1303.68 3976.01,-1257.53"/>
<polygon fill="black" stroke="black" points="3977.62,-1260.65 3985.54,-1253.62 3974.96,-1254.18 3977.62,-1260.65"/>
</a>
</g>
<g id="a_edge66&#45;label"><a xlink:title="github.com/blevesearch/bleve/index/upside_down.(*UpsideDownCouch).countDocs &#45;&gt; github.com/blevesearch/bleve/index/store/moss.(*Iterator).Next (0.55s)">
<text text-anchor="middle" x="3866.38" y="-1336.3" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N52 -->
<g id="node53" class="node"><title>N52</title>
<g id="a_node53"><a xlink:title="main.main (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="1757.43,-1855 1683.89,-1855 1683.89,-1819 1757.43,-1819 1757.43,-1855"/>
<text text-anchor="middle" x="1720.66" y="-1838.6" font-family="Times,serif" font-size="8.00">main.main</text>
<text text-anchor="middle" x="1720.66" y="-1830.6" font-family="Times,serif" font-size="8.00">0 of 0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N52&#45;&gt;N48 -->
<g id="edge67" class="edge"><title>N52&#45;&gt;N48</title>
<g id="a_edge67"><a xlink:title="main.main &#45;&gt; github.com/blevesearch/bleve.Open (0.55s)">
<path fill="none" stroke="black" d="M1727.18,-1818.81C1731.84,-1806.54 1738.19,-1789.79 1743.51,-1775.77"/>
<polygon fill="black" stroke="black" points="1746.88,-1776.74 1747.15,-1766.15 1740.33,-1774.26 1746.88,-1776.74"/>
</a>
</g>
<g id="a_edge67&#45;label"><a xlink:title="main.main &#45;&gt; github.com/blevesearch/bleve.Open (0.55s)">
<text text-anchor="middle" x="1756.38" y="-1789.8" font-family="Times,serif" font-size="14.00"> 0.55s</text>
</a>
</g>
</g>
<!-- N53 -->
<g id="node54" class="node"><title>N53</title>
<g id="a_node54"><a xlink:title="main.main.func2 (50.61s)">
<polygon fill="#f8f8f8" stroke="black" points="1604.43,-1941 1522.89,-1941 1522.89,-1905 1604.43,-1905 1604.43,-1941"/>
<text text-anchor="middle" x="1563.66" y="-1924.6" font-family="Times,serif" font-size="8.00">main.main.func2</text>
<text text-anchor="middle" x="1563.66" y="-1916.6" font-family="Times,serif" font-size="8.00">0 of 50.61s(93.31%)</text>
</a>
</g>
</g>
<!-- N54 -->
<g id="node55" class="node"><title>N54</title>
<g id="a_node55"><a xlink:title="main.queryClient (50.61s)">
<polygon fill="#f8f8f8" stroke="black" points="1604.43,-1855 1522.89,-1855 1522.89,-1819 1604.43,-1819 1604.43,-1855"/>
<text text-anchor="middle" x="1563.66" y="-1838.6" font-family="Times,serif" font-size="8.00">main.queryClient</text>
<text text-anchor="middle" x="1563.66" y="-1830.6" font-family="Times,serif" font-size="8.00">0 of 50.61s(93.31%)</text>
</a>
</g>
</g>
<!-- N53&#45;&gt;N54 -->
<g id="edge2" class="edge"><title>N53&#45;&gt;N54</title>
<g id="a_edge2"><a xlink:title="main.main.func2 &#45;&gt; main.queryClient (50.61s)">
<path fill="none" stroke="black" stroke-width="5" d="M1563.66,-1904.6C1563.66,-1893.26 1563.66,-1878.23 1563.66,-1865.32"/>
<polygon fill="black" stroke="black" stroke-width="5" points="1568.04,-1865.1 1563.66,-1855.1 1559.29,-1865.1 1568.04,-1865.1"/>
</a>
</g>
<g id="a_edge2&#45;label"><a xlink:title="main.main.func2 &#45;&gt; main.queryClient (50.61s)">
<text text-anchor="middle" x="1583.88" y="-1875.8" font-family="Times,serif" font-size="14.00"> 50.61s</text>
</a>
</g>
</g>
<!-- N54&#45;&gt;N46 -->
<g id="edge3" class="edge"><title>N54&#45;&gt;N46</title>
<g id="a_edge3"><a xlink:title="main.queryClient &#45;&gt; github.com/blevesearch/bleve.(*indexImpl).Search (50.61s)">
<path fill="none" stroke="black" stroke-width="5" d="M1563.66,-1818.81C1563.66,-1806.66 1563.66,-1790.11 1563.66,-1776.18"/>
<polygon fill="black" stroke="black" stroke-width="5" points="1568.04,-1776.15 1563.66,-1766.15 1559.29,-1776.15 1568.04,-1776.15"/>
</a>
</g>
<g id="a_edge3&#45;label"><a xlink:title="main.queryClient &#45;&gt; github.com/blevesearch/bleve.(*indexImpl).Search (50.61s)">
<text text-anchor="middle" x="1583.88" y="-1789.8" font-family="Times,serif" font-size="14.00"> 50.61s</text>
</a>
</g>
</g>
<!-- N55&#45;&gt;N39 -->
<g id="edge48" class="edge"><title>N55&#45;&gt;N39</title>
<g id="a_edge48"><a xlink:title="runtime.(*mcentral).cacheSpan &#45;&gt; runtime.(*mcentral).grow (0.75s)">
<path fill="none" stroke="black" d="M1010.66,-275.748C1010.66,-262.886 1010.66,-244.928 1010.66,-229.358"/>
<polygon fill="black" stroke="black" points="1014.16,-229.053 1010.66,-219.053 1007.16,-229.053 1014.16,-229.053"/>
</a>
</g>
<g id="a_edge48&#45;label"><a xlink:title="runtime.(*mcentral).cacheSpan &#45;&gt; runtime.(*mcentral).grow (0.75s)">
<text text-anchor="middle" x="1027.38" y="-239.8" font-family="Times,serif" font-size="14.00"> 0.75s</text>
</a>
</g>
</g>
<!-- N56&#45;&gt;N36 -->
<g id="edge76" class="edge"><title>N56&#45;&gt;N36</title>
<g id="a_edge76"><a xlink:title="runtime.(*mheap).alloc &#45;&gt; runtime.memclr (0.39s)">
<path fill="none" stroke="black" d="M1010.66,-85.5951C1010.66,-74.2572 1010.66,-59.2271 1010.66,-46.3153"/>
<polygon fill="black" stroke="black" points="1014.16,-46.0951 1010.66,-36.0952 1007.16,-46.0952 1014.16,-46.0951"/>
</a>
</g>
<g id="a_edge76&#45;label"><a xlink:title="runtime.(*mheap).alloc &#45;&gt; runtime.memclr (0.39s)">
<text text-anchor="middle" x="1027.38" y="-56.8" font-family="Times,serif" font-size="14.00"> 0.39s</text>
</a>
</g>
</g>
<!-- N57&#45;&gt;N41 -->
<g id="edge72" class="edge"><title>N57&#45;&gt;N41</title>
<g id="a_edge72"><a xlink:title="runtime.(*mspan).sweep &#45;&gt; runtime.heapBitsSweepSpan (0.47s)">
<path fill="none" stroke="black" d="M870.297,-275.748C865.998,-261.92 859.868,-242.202 854.798,-225.895"/>
<polygon fill="black" stroke="black" points="858.116,-224.775 851.805,-216.265 851.431,-226.853 858.116,-224.775"/>
</a>
</g>
<g id="a_edge72&#45;label"><a xlink:title="runtime.(*mspan).sweep &#45;&gt; runtime.heapBitsSweepSpan (0.47s)">
<text text-anchor="middle" x="879.384" y="-239.8" font-family="Times,serif" font-size="14.00"> 0.47s</text>
</a>
</g>
</g>
<!-- N58 -->
<g id="node59" class="node"><title>N58</title>
<g id="a_node59"><a xlink:title="runtime.findrunnable (0.82s)">
<polygon fill="#f8f8f8" stroke="black" points="83.4811,-1016.5 -0.160774,-1016.5 -0.160774,-980.5 83.4811,-980.5 83.4811,-1016.5"/>
<text text-anchor="middle" x="41.6602" y="-1000.1" font-family="Times,serif" font-size="8.00">runtime.findrunnable</text>
<text text-anchor="middle" x="41.6602" y="-992.1" font-family="Times,serif" font-size="8.00">0 of 0.82s(1.51%)</text>
</a>
</g>
</g>
<!-- N77 -->
<g id="node78" class="node"><title>N77</title>
<g id="a_node78"><a xlink:title="runtime.stopm (0.82s)">
<polygon fill="#f8f8f8" stroke="black" points="81.43,-895.5 7.89027,-895.5 7.89027,-859.5 81.43,-859.5 81.43,-895.5"/>
<text text-anchor="middle" x="44.6602" y="-879.1" font-family="Times,serif" font-size="8.00">runtime.stopm</text>
<text text-anchor="middle" x="44.6602" y="-871.1" font-family="Times,serif" font-size="8.00">0 of 0.82s(1.51%)</text>
</a>
</g>
</g>
<!-- N58&#45;&gt;N77 -->
<g id="edge47" class="edge"><title>N58&#45;&gt;N77</title>
<g id="a_edge47"><a xlink:title="runtime.findrunnable &#45;&gt; runtime.stopm (0.76s)">
<path fill="none" stroke="black" d="M42.09,-980.45C42.5823,-960.921 43.3956,-928.661 43.9754,-905.662"/>
<polygon fill="black" stroke="black" points="47.4779,-905.603 44.2311,-895.518 40.4801,-905.427 47.4779,-905.603"/>
</a>
</g>
<g id="a_edge47&#45;label"><a xlink:title="runtime.findrunnable &#45;&gt; runtime.stopm (0.76s)">
<text text-anchor="middle" x="60.3843" y="-930.8" font-family="Times,serif" font-size="14.00"> 0.76s</text>
</a>
</g>
</g>
<!-- N59 -->
<g id="node60" class="node"><title>N59</title>
<g id="a_node60"><a xlink:title="runtime.gcBgMarkWorker (0.74s)">
<polygon fill="#f8f8f8" stroke="black" points="1505.05,-1941 1404.27,-1941 1404.27,-1905 1505.05,-1905 1505.05,-1941"/>
<text text-anchor="middle" x="1454.66" y="-1924.6" font-family="Times,serif" font-size="8.00">runtime.gcBgMarkWorker</text>
<text text-anchor="middle" x="1454.66" y="-1916.6" font-family="Times,serif" font-size="8.00">0 of 0.74s(1.36%)</text>
</a>
</g>
</g>
<!-- N59&#45;&gt;N44 -->
<g id="edge85" class="edge"><title>N59&#45;&gt;N44</title>
<g id="a_edge85"><a xlink:title="runtime.gcBgMarkWorker &#45;&gt; runtime.newobject (0.25s)">
<path fill="none" stroke="black" d="M1404.03,-1917.83C1230.44,-1903.55 660.459,-1856.66 485.318,-1842.25"/>
<polygon fill="black" stroke="black" points="485.581,-1838.76 475.328,-1841.43 485.007,-1845.74 485.581,-1838.76"/>
</a>
</g>
<g id="a_edge85&#45;label"><a xlink:title="runtime.gcBgMarkWorker &#45;&gt; runtime.newobject (0.25s)">
<text text-anchor="middle" x="1022.38" y="-1875.8" font-family="Times,serif" font-size="14.00"> 0.25s</text>
</a>
</g>
</g>
<!-- N60 -->
<g id="node61" class="node"><title>N60</title>
<g id="a_node61"><a xlink:title="runtime.gcDrain (0.58s)">
<polygon fill="#f8f8f8" stroke="black" points="1491.43,-1855 1417.89,-1855 1417.89,-1819 1491.43,-1819 1491.43,-1855"/>
<text text-anchor="middle" x="1454.66" y="-1838.6" font-family="Times,serif" font-size="8.00">runtime.gcDrain</text>
<text text-anchor="middle" x="1454.66" y="-1830.6" font-family="Times,serif" font-size="8.00">0 of 0.58s(1.07%)</text>
</a>
</g>
</g>
<!-- N59&#45;&gt;N60 -->
<g id="edge82" class="edge"><title>N59&#45;&gt;N60</title>
<g id="a_edge82"><a xlink:title="runtime.gcBgMarkWorker &#45;&gt; runtime.gcDrain (0.32s)">
<path fill="none" stroke="black" d="M1454.66,-1904.6C1454.66,-1893.26 1454.66,-1878.23 1454.66,-1865.32"/>
<polygon fill="black" stroke="black" points="1458.16,-1865.1 1454.66,-1855.1 1451.16,-1865.1 1458.16,-1865.1"/>
</a>
</g>
<g id="a_edge82&#45;label"><a xlink:title="runtime.gcBgMarkWorker &#45;&gt; runtime.gcDrain (0.32s)">
<text text-anchor="middle" x="1471.38" y="-1875.8" font-family="Times,serif" font-size="14.00"> 0.32s</text>
</a>
</g>
</g>
<!-- N61&#45;&gt;N79 -->
<g id="edge26" class="edge"><title>N61&#45;&gt;N79</title>
<g id="a_edge26"><a xlink:title="runtime.gcStart &#45;&gt; runtime.systemstack (3.39s)">
<path fill="none" stroke="black" d="M1367.66,-627.799C1367.66,-616.163 1367.66,-600.548 1367.66,-587.237"/>
<polygon fill="black" stroke="black" points="1371.16,-587.175 1367.66,-577.175 1364.16,-587.175 1371.16,-587.175"/>
</a>
</g>
<g id="a_edge26&#45;label"><a xlink:title="runtime.gcStart &#45;&gt; runtime.systemstack (3.39s)">
<text text-anchor="middle" x="1384.38" y="-597.8" font-family="Times,serif" font-size="14.00"> 3.39s</text>
</a>
</g>
</g>
<!-- N62 -->
<g id="node63" class="node"><title>N62</title>
<g id="a_node63"><a xlink:title="runtime.goexit (52.09s)">
<polygon fill="#f8f8f8" stroke="black" points="1604.43,-2077 1522.89,-2077 1522.89,-2041 1604.43,-2041 1604.43,-2077"/>
<text text-anchor="middle" x="1563.66" y="-2060.6" font-family="Times,serif" font-size="8.00">runtime.goexit</text>
<text text-anchor="middle" x="1563.66" y="-2052.6" font-family="Times,serif" font-size="8.00">0 of 52.09s(96.04%)</text>
</a>
</g>
</g>
<!-- N62&#45;&gt;N53 -->
<g id="edge4" class="edge"><title>N62&#45;&gt;N53</title>
<g id="a_edge4"><a xlink:title="runtime.goexit &#45;&gt; main.main.func2 (50.61s)">
<path fill="none" stroke="black" stroke-width="5" d="M1563.66,-2040.76C1563.66,-2018.14 1563.66,-1978.2 1563.66,-1951.42"/>
<polygon fill="black" stroke="black" stroke-width="5" points="1568.04,-1951.18 1563.66,-1941.18 1559.29,-1951.18 1568.04,-1951.18"/>
</a>
</g>
<g id="a_edge4&#45;label"><a xlink:title="runtime.goexit &#45;&gt; main.main.func2 (50.61s)">
<text text-anchor="middle" x="1583.88" y="-1961.8" font-family="Times,serif" font-size="14.00"> 50.61s</text>
</a>
</g>
</g>
<!-- N62&#45;&gt;N59 -->
<g id="edge49" class="edge"><title>N62&#45;&gt;N59</title>
<g id="a_edge49"><a xlink:title="runtime.goexit &#45;&gt; runtime.gcBgMarkWorker (0.74s)">
<path fill="none" stroke="black" d="M1554.52,-2040.8C1545.78,-2025.05 1531.73,-2001.45 1516.66,-1983 1506.5,-1970.57 1493.87,-1958.12 1482.67,-1947.88"/>
<polygon fill="black" stroke="black" points="1484.97,-1945.24 1475.19,-1941.17 1480.3,-1950.45 1484.97,-1945.24"/>
</a>
</g>
<g id="a_edge49&#45;label"><a xlink:title="runtime.goexit &#45;&gt; runtime.gcBgMarkWorker (0.74s)">
<text text-anchor="middle" x="1524.38" y="-1961.8" font-family="Times,serif" font-size="14.00"> 0.74s</text>
</a>
</g>
</g>
<!-- N63 -->
<g id="node64" class="node"><title>N63</title>
<g id="a_node64"><a xlink:title="runtime.main (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="1732.43,-1941 1658.89,-1941 1658.89,-1905 1732.43,-1905 1732.43,-1941"/>
<text text-anchor="middle" x="1695.66" y="-1924.6" font-family="Times,serif" font-size="8.00">runtime.main</text>
<text text-anchor="middle" x="1695.66" y="-1916.6" font-family="Times,serif" font-size="8.00">0 of 0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N62&#45;&gt;N63 -->
<g id="edge56" class="edge"><title>N62&#45;&gt;N63</title>
<g id="a_edge56"><a xlink:title="runtime.goexit &#45;&gt; runtime.main (0.56s)">
<path fill="none" stroke="black" d="M1580.65,-2040.76C1603.72,-2017.34 1645.09,-1975.34 1671.41,-1948.61"/>
<polygon fill="black" stroke="black" points="1674.21,-1950.76 1678.74,-1941.18 1669.23,-1945.85 1674.21,-1950.76"/>
</a>
</g>
<g id="a_edge56&#45;label"><a xlink:title="runtime.goexit &#45;&gt; runtime.main (0.56s)">
<text text-anchor="middle" x="1677.38" y="-1961.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N63&#45;&gt;N52 -->
<g id="edge57" class="edge"><title>N63&#45;&gt;N52</title>
<g id="a_edge57"><a xlink:title="runtime.main &#45;&gt; main.main (0.56s)">
<path fill="none" stroke="black" d="M1700.84,-1904.6C1704.25,-1893.14 1708.78,-1877.93 1712.65,-1864.93"/>
<polygon fill="black" stroke="black" points="1716.07,-1865.68 1715.57,-1855.1 1709.37,-1863.68 1716.07,-1865.68"/>
</a>
</g>
<g id="a_edge57&#45;label"><a xlink:title="runtime.main &#45;&gt; main.main (0.56s)">
<text text-anchor="middle" x="1726.38" y="-1875.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N64 -->
<g id="node65" class="node"><title>N64</title>
<g id="a_node65"><a xlink:title="runtime.mallocgc.func1 (0.57s)">
<polygon fill="#f8f8f8" stroke="black" points="1175.08,-491 1082.24,-491 1082.24,-455 1175.08,-455 1175.08,-491"/>
<text text-anchor="middle" x="1128.66" y="-474.6" font-family="Times,serif" font-size="8.00">runtime.mallocgc.func1</text>
<text text-anchor="middle" x="1128.66" y="-466.6" font-family="Times,serif" font-size="8.00">0 of 0.57s(1.05%)</text>
</a>
</g>
</g>
<!-- N64&#45;&gt;N42 -->
<g id="edge54" class="edge"><title>N64&#45;&gt;N42</title>
<g id="a_edge54"><a xlink:title="runtime.mallocgc.func1 &#45;&gt; runtime.(*mcache).refill (0.57s)">
<path fill="none" stroke="black" d="M1127.62,-454.595C1126.95,-443.257 1126.05,-428.227 1125.29,-415.315"/>
<polygon fill="black" stroke="black" points="1128.77,-414.869 1124.68,-405.095 1121.78,-415.285 1128.77,-414.869"/>
</a>
</g>
<g id="a_edge54&#45;label"><a xlink:title="runtime.mallocgc.func1 &#45;&gt; runtime.(*mcache).refill (0.57s)">
<text text-anchor="middle" x="1143.38" y="-425.8" font-family="Times,serif" font-size="14.00"> 0.57s</text>
</a>
</g>
</g>
<!-- N65 -->
<g id="node66" class="node"><title>N65</title>
<g id="a_node66"><a xlink:title="runtime.mcall (0.89s)">
<polygon fill="#f8f8f8" stroke="black" points="75.43,-1358.5 1.89027,-1358.5 1.89027,-1322.5 75.43,-1322.5 75.43,-1358.5"/>
<text text-anchor="middle" x="38.6602" y="-1342.1" font-family="Times,serif" font-size="8.00">runtime.mcall</text>
<text text-anchor="middle" x="38.6602" y="-1334.1" font-family="Times,serif" font-size="8.00">0 of 0.89s(1.64%)</text>
</a>
</g>
</g>
<!-- N71 -->
<g id="node72" class="node"><title>N71</title>
<g id="a_node72"><a xlink:title="runtime.park_m (0.89s)">
<polygon fill="#f8f8f8" stroke="black" points="76.43,-1248 2.89027,-1248 2.89027,-1212 76.43,-1212 76.43,-1248"/>
<text text-anchor="middle" x="39.6602" y="-1231.6" font-family="Times,serif" font-size="8.00">runtime.park_m</text>
<text text-anchor="middle" x="39.6602" y="-1223.6" font-family="Times,serif" font-size="8.00">0 of 0.89s(1.64%)</text>
</a>
</g>
</g>
<!-- N65&#45;&gt;N71 -->
<g id="edge43" class="edge"><title>N65&#45;&gt;N71</title>
<g id="a_edge43"><a xlink:title="runtime.mcall &#45;&gt; runtime.park_m (0.89s)">
<path fill="none" stroke="black" d="M38.8208,-1322.07C38.9799,-1304.8 39.2259,-1278.12 39.4105,-1258.09"/>
<polygon fill="black" stroke="black" points="42.9108,-1258.06 39.5032,-1248.03 35.9111,-1258 42.9108,-1258.06"/>
</a>
</g>
<g id="a_edge43&#45;label"><a xlink:title="runtime.mcall &#45;&gt; runtime.park_m (0.89s)">
<text text-anchor="middle" x="56.3843" y="-1278.8" font-family="Times,serif" font-size="14.00"> 0.89s</text>
</a>
</g>
</g>
<!-- N66 -->
<g id="node67" class="node"><title>N66</title>
<g id="a_node67"><a xlink:title="runtime.mstart (0.99s)">
<polygon fill="#f8f8f8" stroke="black" points="1945.43,-2077 1871.89,-2077 1871.89,-2041 1945.43,-2041 1945.43,-2077"/>
<text text-anchor="middle" x="1908.66" y="-2060.6" font-family="Times,serif" font-size="8.00">runtime.mstart</text>
<text text-anchor="middle" x="1908.66" y="-2052.6" font-family="Times,serif" font-size="8.00">0 of 0.99s(1.83%)</text>
</a>
</g>
</g>
<!-- N67 -->
<g id="node68" class="node"><title>N67</title>
<g id="a_node68"><a xlink:title="runtime.mstart1 (0.99s)">
<polygon fill="#f8f8f8" stroke="black" points="1945.43,-1941 1871.89,-1941 1871.89,-1905 1945.43,-1905 1945.43,-1941"/>
<text text-anchor="middle" x="1908.66" y="-1924.6" font-family="Times,serif" font-size="8.00">runtime.mstart1</text>
<text text-anchor="middle" x="1908.66" y="-1916.6" font-family="Times,serif" font-size="8.00">0 of 0.99s(1.83%)</text>
</a>
</g>
</g>
<!-- N66&#45;&gt;N67 -->
<g id="edge39" class="edge"><title>N66&#45;&gt;N67</title>
<g id="a_edge39"><a xlink:title="runtime.mstart &#45;&gt; runtime.mstart1 (0.99s)">
<path fill="none" stroke="black" d="M1908.66,-2040.76C1908.66,-2018.14 1908.66,-1978.2 1908.66,-1951.42"/>
<polygon fill="black" stroke="black" points="1912.16,-1951.18 1908.66,-1941.18 1905.16,-1951.18 1912.16,-1951.18"/>
</a>
</g>
<g id="a_edge39&#45;label"><a xlink:title="runtime.mstart &#45;&gt; runtime.mstart1 (0.99s)">
<text text-anchor="middle" x="1925.38" y="-1961.8" font-family="Times,serif" font-size="14.00"> 0.99s</text>
</a>
</g>
</g>
<!-- N78 -->
<g id="node79" class="node"><title>N78</title>
<g id="a_node79"><a xlink:title="runtime.sysmon (0.99s)">
<polygon fill="#f8f8f8" stroke="black" points="1945.43,-1855 1871.89,-1855 1871.89,-1819 1945.43,-1819 1945.43,-1855"/>
<text text-anchor="middle" x="1908.66" y="-1838.6" font-family="Times,serif" font-size="8.00">runtime.sysmon</text>
<text text-anchor="middle" x="1908.66" y="-1830.6" font-family="Times,serif" font-size="8.00">0 of 0.99s(1.83%)</text>
</a>
</g>
</g>
<!-- N67&#45;&gt;N78 -->
<g id="edge40" class="edge"><title>N67&#45;&gt;N78</title>
<g id="a_edge40"><a xlink:title="runtime.mstart1 &#45;&gt; runtime.sysmon (0.99s)">
<path fill="none" stroke="black" d="M1908.66,-1904.6C1908.66,-1893.26 1908.66,-1878.23 1908.66,-1865.32"/>
<polygon fill="black" stroke="black" points="1912.16,-1865.1 1908.66,-1855.1 1905.16,-1865.1 1912.16,-1865.1"/>
</a>
</g>
<g id="a_edge40&#45;label"><a xlink:title="runtime.mstart1 &#45;&gt; runtime.sysmon (0.99s)">
<text text-anchor="middle" x="1925.38" y="-1875.8" font-family="Times,serif" font-size="14.00"> 0.99s</text>
</a>
</g>
</g>
<!-- N68 -->
<g id="node69" class="node"><title>N68</title>
<g id="a_node69"><a xlink:title="runtime.netpoll (3.41s)">
<polygon fill="#f8f8f8" stroke="black" points="1404.43,-405 1330.89,-405 1330.89,-369 1404.43,-369 1404.43,-405"/>
<text text-anchor="middle" x="1367.66" y="-388.6" font-family="Times,serif" font-size="8.00">runtime.netpoll</text>
<text text-anchor="middle" x="1367.66" y="-380.6" font-family="Times,serif" font-size="8.00">0 of 3.41s(6.29%)</text>
</a>
</g>
</g>
<!-- N68&#45;&gt;N3 -->
<g id="edge23" class="edge"><title>N68&#45;&gt;N3</title>
<g id="a_edge23"><a xlink:title="runtime.netpoll &#45;&gt; runtime.kevent (3.41s)">
<path fill="none" stroke="black" d="M1367.66,-368.884C1367.66,-357.834 1367.66,-343.065 1367.66,-329.637"/>
<polygon fill="black" stroke="black" points="1371.16,-329.252 1367.66,-319.252 1364.16,-329.252 1371.16,-329.252"/>
</a>
</g>
<g id="a_edge23&#45;label"><a xlink:title="runtime.netpoll &#45;&gt; runtime.kevent (3.41s)">
<text text-anchor="middle" x="1384.38" y="-339.8" font-family="Times,serif" font-size="14.00"> 3.41s</text>
</a>
</g>
</g>
<!-- N69 -->
<g id="node70" class="node"><title>N69</title>
<g id="a_node70"><a xlink:title="runtime.notesleep (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="222.43,-773 148.89,-773 148.89,-737 222.43,-737 222.43,-773"/>
<text text-anchor="middle" x="185.66" y="-756.6" font-family="Times,serif" font-size="8.00">runtime.notesleep</text>
<text text-anchor="middle" x="185.66" y="-748.6" font-family="Times,serif" font-size="8.00">0 of 0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N73 -->
<g id="node74" class="node"><title>N73</title>
<g id="a_node74"><a xlink:title="runtime.semasleep (0.56s)">
<polygon fill="#f8f8f8" stroke="black" points="1006.42,-664 930.902,-664 930.902,-628 1006.42,-628 1006.42,-664"/>
<text text-anchor="middle" x="968.66" y="-647.6" font-family="Times,serif" font-size="8.00">runtime.semasleep</text>
<text text-anchor="middle" x="968.66" y="-639.6" font-family="Times,serif" font-size="8.00">0 of 0.56s(1.03%)</text>
</a>
</g>
</g>
<!-- N69&#45;&gt;N73 -->
<g id="edge58" class="edge"><title>N69&#45;&gt;N73</title>
<g id="a_edge58"><a xlink:title="runtime.notesleep &#45;&gt; runtime.semasleep (0.56s)">
<path fill="none" stroke="black" d="M222.637,-748.947C350.838,-731.428 776.253,-673.293 920.409,-653.594"/>
<polygon fill="black" stroke="black" points="921.26,-657.01 930.694,-652.188 920.312,-650.074 921.26,-657.01"/>
</a>
</g>
<g id="a_edge58&#45;label"><a xlink:title="runtime.notesleep &#45;&gt; runtime.semasleep (0.56s)">
<text text-anchor="middle" x="710.384" y="-685.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N70 -->
<g id="node71" class="node"><title>N70</title>
<g id="a_node71"><a xlink:title="runtime.osyield (0.33s)">
<polygon fill="#f8f8f8" stroke="black" points="1853.43,-1855 1779.89,-1855 1779.89,-1819 1853.43,-1819 1853.43,-1855"/>
<text text-anchor="middle" x="1816.66" y="-1838.6" font-family="Times,serif" font-size="8.00">runtime.osyield</text>
<text text-anchor="middle" x="1816.66" y="-1830.6" font-family="Times,serif" font-size="8.00">0 of 0.33s(0.61%)</text>
</a>
</g>
</g>
<!-- N70&#45;&gt;N14 -->
<g id="edge81" class="edge"><title>N70&#45;&gt;N14</title>
<g id="a_edge81"><a xlink:title="runtime.osyield &#45;&gt; runtime.usleep (0.33s)">
<path fill="none" stroke="black" d="M1834.84,-1818.81C1847.68,-1806.67 1865.16,-1790.14 1879.88,-1776.21"/>
<polygon fill="black" stroke="black" points="1882.43,-1778.62 1887.29,-1769.21 1877.62,-1773.53 1882.43,-1778.62"/>
</a>
</g>
<g id="a_edge81&#45;label"><a xlink:title="runtime.osyield &#45;&gt; runtime.usleep (0.33s)">
<text text-anchor="middle" x="1885.38" y="-1789.8" font-family="Times,serif" font-size="14.00"> 0.33s</text>
</a>
</g>
</g>
<!-- N72 -->
<g id="node73" class="node"><title>N72</title>
<g id="a_node73"><a xlink:title="runtime.schedule (1.11s)">
<polygon fill="#f8f8f8" stroke="black" points="77.6383,-1137.5 3.68204,-1137.5 3.68204,-1101.5 77.6383,-1101.5 77.6383,-1137.5"/>
<text text-anchor="middle" x="40.6602" y="-1121.1" font-family="Times,serif" font-size="8.00">runtime.schedule</text>
<text text-anchor="middle" x="40.6602" y="-1113.1" font-family="Times,serif" font-size="8.00">0 of 1.11s(2.05%)</text>
</a>
</g>
</g>
<!-- N71&#45;&gt;N72 -->
<g id="edge44" class="edge"><title>N71&#45;&gt;N72</title>
<g id="a_edge44"><a xlink:title="runtime.park_m &#45;&gt; runtime.schedule (0.89s)">
<path fill="none" stroke="black" d="M39.8208,-1211.57C39.9799,-1194.3 40.2259,-1167.62 40.4105,-1147.59"/>
<polygon fill="black" stroke="black" points="43.9108,-1147.56 40.5032,-1137.53 36.9111,-1147.5 43.9108,-1147.56"/>
</a>
</g>
<g id="a_edge44&#45;label"><a xlink:title="runtime.park_m &#45;&gt; runtime.schedule (0.89s)">
<text text-anchor="middle" x="57.3843" y="-1172.8" font-family="Times,serif" font-size="14.00"> 0.89s</text>
</a>
</g>
</g>
<!-- N72&#45;&gt;N58 -->
<g id="edge45" class="edge"><title>N72&#45;&gt;N58</title>
<g id="a_edge45"><a xlink:title="runtime.schedule &#45;&gt; runtime.findrunnable (0.82s)">
<path fill="none" stroke="black" d="M40.8034,-1101.45C40.9675,-1081.92 41.2386,-1049.66 41.4319,-1026.66"/>
<polygon fill="black" stroke="black" points="44.9329,-1026.55 41.5171,-1016.52 37.9331,-1026.49 44.9329,-1026.55"/>
</a>
</g>
<g id="a_edge45&#45;label"><a xlink:title="runtime.schedule &#45;&gt; runtime.findrunnable (0.82s)">
<text text-anchor="middle" x="58.3843" y="-1057.8" font-family="Times,serif" font-size="14.00"> 0.82s</text>
</a>
</g>
</g>
<!-- N73&#45;&gt;N79 -->
<g id="edge59" class="edge"><title>N73&#45;&gt;N79</title>
<g id="a_edge59"><a xlink:title="runtime.semasleep &#45;&gt; runtime.systemstack (0.56s)">
<path fill="none" stroke="black" d="M1006.56,-636.927C1078.75,-621.547 1236.01,-588.045 1317.09,-570.773"/>
<polygon fill="black" stroke="black" points="1318.01,-574.156 1327.06,-568.649 1316.55,-567.309 1318.01,-574.156"/>
</a>
</g>
<g id="a_edge59&#45;label"><a xlink:title="runtime.semasleep &#45;&gt; runtime.systemstack (0.56s)">
<text text-anchor="middle" x="1209.38" y="-597.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N74 -->
<g id="node75" class="node"><title>N74</title>
<g id="a_node75"><a xlink:title="runtime.semasleep.func1 (0.67s)">
<polygon fill="#f8f8f8" stroke="black" points="1288.63,-491 1192.69,-491 1192.69,-455 1288.63,-455 1288.63,-491"/>
<text text-anchor="middle" x="1240.66" y="-474.6" font-family="Times,serif" font-size="8.00">runtime.semasleep.func1</text>
<text text-anchor="middle" x="1240.66" y="-466.6" font-family="Times,serif" font-size="8.00">0 of 0.67s(1.24%)</text>
</a>
</g>
</g>
<!-- N75 -->
<g id="node76" class="node"><title>N75</title>
<g id="a_node76"><a xlink:title="runtime.semasleep1 (0.67s)">
<polygon fill="#f8f8f8" stroke="black" points="1276.42,-405 1196.9,-405 1196.9,-369 1276.42,-369 1276.42,-405"/>
<text text-anchor="middle" x="1236.66" y="-388.6" font-family="Times,serif" font-size="8.00">runtime.semasleep1</text>
<text text-anchor="middle" x="1236.66" y="-380.6" font-family="Times,serif" font-size="8.00">0 of 0.67s(1.24%)</text>
</a>
</g>
</g>
<!-- N74&#45;&gt;N75 -->
<g id="edge51" class="edge"><title>N74&#45;&gt;N75</title>
<g id="a_edge51"><a xlink:title="runtime.semasleep.func1 &#45;&gt; runtime.semasleep1 (0.67s)">
<path fill="none" stroke="black" d="M1239.83,-454.595C1239.29,-443.257 1238.58,-428.227 1237.96,-415.315"/>
<polygon fill="black" stroke="black" points="1241.45,-414.917 1237.47,-405.095 1234.45,-415.25 1241.45,-414.917"/>
</a>
</g>
<g id="a_edge51&#45;label"><a xlink:title="runtime.semasleep.func1 &#45;&gt; runtime.semasleep1 (0.67s)">
<text text-anchor="middle" x="1256.38" y="-425.8" font-family="Times,serif" font-size="14.00"> 0.67s</text>
</a>
</g>
</g>
<!-- N75&#45;&gt;N30 -->
<g id="edge60" class="edge"><title>N75&#45;&gt;N30</title>
<g id="a_edge60"><a xlink:title="runtime.semasleep1 &#45;&gt; runtime.mach_semaphore_wait (0.56s)">
<path fill="none" stroke="black" d="M1226.5,-368.884C1218.51,-355.411 1207.23,-336.409 1198.12,-321.05"/>
<polygon fill="black" stroke="black" points="1200.88,-318.853 1192.77,-312.04 1194.86,-322.426 1200.88,-318.853"/>
</a>
</g>
<g id="a_edge60&#45;label"><a xlink:title="runtime.semasleep1 &#45;&gt; runtime.mach_semaphore_wait (0.56s)">
<text text-anchor="middle" x="1231.38" y="-339.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N76 -->
<g id="node77" class="node"><title>N76</title>
<g id="a_node77"><a xlink:title="runtime.startTheWorldWithSema (3.41s)">
<polygon fill="#f8f8f8" stroke="black" points="1429.01,-491 1306.31,-491 1306.31,-455 1429.01,-455 1429.01,-491"/>
<text text-anchor="middle" x="1367.66" y="-474.6" font-family="Times,serif" font-size="8.00">runtime.startTheWorldWithSema</text>
<text text-anchor="middle" x="1367.66" y="-466.6" font-family="Times,serif" font-size="8.00">0 of 3.41s(6.29%)</text>
</a>
</g>
</g>
<!-- N76&#45;&gt;N68 -->
<g id="edge24" class="edge"><title>N76&#45;&gt;N68</title>
<g id="a_edge24"><a xlink:title="runtime.startTheWorldWithSema &#45;&gt; runtime.netpoll (3.41s)">
<path fill="none" stroke="black" d="M1367.66,-454.595C1367.66,-443.257 1367.66,-428.227 1367.66,-415.315"/>
<polygon fill="black" stroke="black" points="1371.16,-415.095 1367.66,-405.095 1364.16,-415.095 1371.16,-415.095"/>
</a>
</g>
<g id="a_edge24&#45;label"><a xlink:title="runtime.startTheWorldWithSema &#45;&gt; runtime.netpoll (3.41s)">
<text text-anchor="middle" x="1384.38" y="-425.8" font-family="Times,serif" font-size="14.00"> 3.41s</text>
</a>
</g>
</g>
<!-- N77&#45;&gt;N69 -->
<g id="edge61" class="edge"><title>N77&#45;&gt;N69</title>
<g id="a_edge61"><a xlink:title="runtime.stopm &#45;&gt; runtime.notesleep (0.56s)">
<path fill="none" stroke="black" d="M46.1439,-859.293C48.1654,-845.357 52.9393,-825.974 64.2119,-813 83.5644,-790.726 113.504,-776.539 138.814,-767.889"/>
<polygon fill="black" stroke="black" points="140.168,-771.13 148.612,-764.731 138.021,-764.467 140.168,-771.13"/>
</a>
</g>
<g id="a_edge61&#45;label"><a xlink:title="runtime.stopm &#45;&gt; runtime.notesleep (0.56s)">
<text text-anchor="middle" x="81.3843" y="-815.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N78&#45;&gt;N14 -->
<g id="edge41" class="edge"><title>N78&#45;&gt;N14</title>
<g id="a_edge41"><a xlink:title="runtime.sysmon &#45;&gt; runtime.usleep (0.98s)">
<path fill="none" stroke="black" d="M1908.66,-1818.81C1908.66,-1807.56 1908.66,-1792.54 1908.66,-1779.32"/>
<polygon fill="black" stroke="black" points="1912.16,-1779.21 1908.66,-1769.21 1905.16,-1779.21 1912.16,-1779.21"/>
</a>
</g>
<g id="a_edge41&#45;label"><a xlink:title="runtime.sysmon &#45;&gt; runtime.usleep (0.98s)">
<text text-anchor="middle" x="1925.38" y="-1789.8" font-family="Times,serif" font-size="14.00"> 0.98s</text>
</a>
</g>
</g>
<!-- N79&#45;&gt;N43 -->
<g id="edge62" class="edge"><title>N79&#45;&gt;N43</title>
<g id="a_edge62"><a xlink:title="runtime.systemstack &#45;&gt; runtime.gosweepone.func1 (0.56s)">
<path fill="none" stroke="black" d="M1327.11,-551.105C1290.22,-544.61 1234.33,-534.225 1186.21,-523 1148.89,-514.293 1107.6,-503.067 1074.14,-493.558"/>
<polygon fill="black" stroke="black" points="1075.04,-490.177 1064.47,-490.796 1073.12,-496.908 1075.04,-490.177"/>
</a>
</g>
<g id="a_edge62&#45;label"><a xlink:title="runtime.systemstack &#45;&gt; runtime.gosweepone.func1 (0.56s)">
<text text-anchor="middle" x="1203.38" y="-511.8" font-family="Times,serif" font-size="14.00"> 0.56s</text>
</a>
</g>
</g>
<!-- N79&#45;&gt;N64 -->
<g id="edge55" class="edge"><title>N79&#45;&gt;N64</title>
<g id="a_edge55"><a xlink:title="runtime.systemstack &#45;&gt; runtime.mallocgc.func1 (0.57s)">
<path fill="none" stroke="black" d="M1327.08,-545.401C1306.65,-538.93 1281.53,-530.787 1259.21,-523 1233.7,-514.1 1205.61,-503.646 1182.05,-494.684"/>
<polygon fill="black" stroke="black" points="1183.18,-491.368 1172.59,-491.073 1180.68,-497.909 1183.18,-491.368"/>
</a>
</g>
<g id="a_edge55&#45;label"><a xlink:title="runtime.systemstack &#45;&gt; runtime.mallocgc.func1 (0.57s)">
<text text-anchor="middle" x="1276.38" y="-511.8" font-family="Times,serif" font-size="14.00"> 0.57s</text>
</a>
</g>
</g>
<!-- N79&#45;&gt;N74 -->
<g id="edge52" class="edge"><title>N79&#45;&gt;N74</title>
<g id="a_edge52"><a xlink:title="runtime.systemstack &#45;&gt; runtime.semasleep.func1 (0.67s)">
<path fill="none" stroke="black" d="M1341.65,-540.799C1322.48,-528.115 1296.19,-510.73 1275.25,-496.876"/>
<polygon fill="black" stroke="black" points="1276.9,-493.776 1266.63,-491.178 1273.04,-499.614 1276.9,-493.776"/>
</a>
</g>
<g id="a_edge52&#45;label"><a xlink:title="runtime.systemstack &#45;&gt; runtime.semasleep.func1 (0.67s)">
<text text-anchor="middle" x="1329.38" y="-511.8" font-family="Times,serif" font-size="14.00"> 0.67s</text>
</a>
</g>
</g>
<!-- N79&#45;&gt;N76 -->
<g id="edge25" class="edge"><title>N79&#45;&gt;N76</title>
<g id="a_edge25"><a xlink:title="runtime.systemstack &#45;&gt; runtime.startTheWorldWithSema (3.41s)">
<path fill="none" stroke="black" d="M1367.66,-540.595C1367.66,-529.257 1367.66,-514.227 1367.66,-501.315"/>
<polygon fill="black" stroke="black" points="1371.16,-501.095 1367.66,-491.095 1364.16,-501.095 1371.16,-501.095"/>
</a>
</g>
<g id="a_edge25&#45;label"><a xlink:title="runtime.systemstack &#45;&gt; runtime.startTheWorldWithSema (3.41s)">
<text text-anchor="middle" x="1384.38" y="-511.8" font-family="Times,serif" font-size="14.00"> 3.41s</text>
</a>
</g>
</g>
</g>
</g></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment