quantum_queries/recursive_vm_flamegraph.svg

491 lines
399 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2070" onload="init(evt)" viewBox="0 0 1200 2070" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="2070" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="2053.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="2053.00"> </text><svg id="frames" x="10" width="1180" total_samples="438155"><g><title>ntdll`RtlImpersonateSelfEx (47 samples, 0.01%)</title><rect x="0.0242%" y="1941" width="0.0107%" height="15" fill="rgb(227,0,7)" fg:x="106" fg:w="47"/><text x="0.2742%" y="1951.50"></text></g><g><title>ntdll`EtwLogTraceEvent (158 samples, 0.04%)</title><rect x="0.0002%" y="1973" width="0.0361%" height="15" fill="rgb(217,0,24)" fg:x="1" fg:w="158"/><text x="0.2502%" y="1983.50"></text></g><g><title>ntdll`EtwLogTraceEvent (158 samples, 0.04%)</title><rect x="0.0002%" y="1957" width="0.0361%" height="15" fill="rgb(221,193,54)" fg:x="1" fg:w="158"/><text x="0.2502%" y="1967.50"></text></g><g><title>ntdll`LdrInitializeThunk (166 samples, 0.04%)</title><rect x="0.0002%" y="1989" width="0.0379%" height="15" fill="rgb(248,212,6)" fg:x="1" fg:w="166"/><text x="0.2502%" y="1999.50"></text></g><g><title>ntdll`LdrInitializeThunk (168 samples, 0.04%)</title><rect x="0.0000%" y="2005" width="0.0383%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="168"/><text x="0.2500%" y="2015.50"></text></g><g><title>python310`PyInterpreterState_Enable (54 samples, 0.01%)</title><rect x="0.0498%" y="1781" width="0.0123%" height="15" fill="rgb(232,128,0)" fg:x="218" fg:w="54"/><text x="0.2998%" y="1791.50"></text></g><g><title>python310`Py_InitializeFromConfig (60 samples, 0.01%)</title><rect x="0.0498%" y="1797" width="0.0137%" height="15" fill="rgb(207,160,47)" fg:x="218" fg:w="60"/><text x="0.2998%" y="1807.50"></text></g><g><title>python310`PyEval_GetGlobals (51 samples, 0.01%)</title><rect x="0.0671%" y="1717" width="0.0116%" height="15" fill="rgb(228,23,34)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1727.50"></text></g><g><title>python310`PyImport_ImportModule (51 samples, 0.01%)</title><rect x="0.0671%" y="1701" width="0.0116%" height="15" fill="rgb(218,30,26)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1711.50"></text></g><g><title>python310`PyImport_Import (51 samples, 0.01%)</title><rect x="0.0671%" y="1685" width="0.0116%" height="15" fill="rgb(220,122,19)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1695.50"></text></g><g><title>python310`PyObject_CallFunction (51 samples, 0.01%)</title><rect x="0.0671%" y="1669" width="0.0116%" height="15" fill="rgb(250,228,42)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1679.50"></text></g><g><title>python310`PyLong_FromDouble (51 samples, 0.01%)</title><rect x="0.0671%" y="1653" width="0.0116%" height="15" fill="rgb(240,193,28)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1663.50"></text></g><g><title>python310`PyBuffer_Release (51 samples, 0.01%)</title><rect x="0.0671%" y="1637" width="0.0116%" height="15" fill="rgb(216,20,37)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1647.50"></text></g><g><title>python310`PyType_IsSubtype (51 samples, 0.01%)</title><rect x="0.0671%" y="1621" width="0.0116%" height="15" fill="rgb(206,188,39)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1631.50"></text></g><g><title>python310`PyMapping_Size (51 samples, 0.01%)</title><rect x="0.0671%" y="1605" width="0.0116%" height="15" fill="rgb(217,207,13)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1615.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (51 samples, 0.01%)</title><rect x="0.0671%" y="1589" width="0.0116%" height="15" fill="rgb(231,73,38)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1599.50"></text></g><g><title>python310`PyThread_free_lock (51 samples, 0.01%)</title><rect x="0.0671%" y="1573" width="0.0116%" height="15" fill="rgb(225,20,46)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1583.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.0671%" y="1557" width="0.0116%" height="15" fill="rgb(210,31,41)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1567.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (51 samples, 0.01%)</title><rect x="0.0671%" y="1541" width="0.0116%" height="15" fill="rgb(221,200,47)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1551.50"></text></g><g><title>python310`PyBuffer_Release (51 samples, 0.01%)</title><rect x="0.0671%" y="1525" width="0.0116%" height="15" fill="rgb(226,26,5)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1535.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0671%" y="1509" width="0.0116%" height="15" fill="rgb(249,33,26)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1519.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0671%" y="1493" width="0.0116%" height="15" fill="rgb(235,183,28)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1503.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0671%" y="1477" width="0.0116%" height="15" fill="rgb(221,5,38)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1487.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0671%" y="1461" width="0.0116%" height="15" fill="rgb(247,18,42)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1471.50"></text></g><g><title>python310`PyFunction_Vectorcall (51 samples, 0.01%)</title><rect x="0.0671%" y="1445" width="0.0116%" height="15" fill="rgb(241,131,45)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1455.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (51 samples, 0.01%)</title><rect x="0.0671%" y="1429" width="0.0116%" height="15" fill="rgb(249,31,29)" fg:x="294" fg:w="51"/><text x="0.3171%" y="1439.50"></text></g><g><title>python310`PyList_SetItem (66 samples, 0.02%)</title><rect x="0.0671%" y="1749" width="0.0151%" height="15" fill="rgb(225,111,53)" fg:x="294" fg:w="66"/><text x="0.3171%" y="1759.50"></text></g><g><title>python310`PyCodec_Lookup (66 samples, 0.02%)</title><rect x="0.0671%" y="1733" width="0.0151%" height="15" fill="rgb(238,160,17)" fg:x="294" fg:w="66"/><text x="0.3171%" y="1743.50"></text></g><g><title>python310`PyList_Insert (94 samples, 0.02%)</title><rect x="0.0634%" y="1765" width="0.0215%" height="15" fill="rgb(214,148,48)" fg:x="278" fg:w="94"/><text x="0.3134%" y="1775.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (56 samples, 0.01%)</title><rect x="0.0972%" y="37" width="0.0128%" height="15" fill="rgb(232,36,49)" fg:x="426" fg:w="56"/><text x="0.3472%" y="47.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (77 samples, 0.02%)</title><rect x="0.0947%" y="421" width="0.0176%" height="15" fill="rgb(209,103,24)" fg:x="415" fg:w="77"/><text x="0.3447%" y="431.50"></text></g><g><title>python310`PyFunction_Vectorcall (70 samples, 0.02%)</title><rect x="0.0963%" y="405" width="0.0160%" height="15" fill="rgb(229,88,8)" fg:x="422" fg:w="70"/><text x="0.3463%" y="415.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (70 samples, 0.02%)</title><rect x="0.0963%" y="389" width="0.0160%" height="15" fill="rgb(213,181,19)" fg:x="422" fg:w="70"/><text x="0.3463%" y="399.50"></text></g><g><title>python310`PyObject_Call (70 samples, 0.02%)</title><rect x="0.0963%" y="373" width="0.0160%" height="15" fill="rgb(254,191,54)" fg:x="422" fg:w="70"/><text x="0.3463%" y="383.50"></text></g><g><title>python310`PyObject_Call (70 samples, 0.02%)</title><rect x="0.0963%" y="357" width="0.0160%" height="15" fill="rgb(241,83,37)" fg:x="422" fg:w="70"/><text x="0.3463%" y="367.50"></text></g><g><title>python310`PyVectorcall_Call (70 samples, 0.02%)</title><rect x="0.0963%" y="341" width="0.0160%" height="15" fill="rgb(233,36,39)" fg:x="422" fg:w="70"/><text x="0.3463%" y="351.50"></text></g><g><title>python310`Py_HashPointer (70 samples, 0.02%)</title><rect x="0.0963%" y="325" width="0.0160%" height="15" fill="rgb(226,3,54)" fg:x="422" fg:w="70"/><text x="0.3463%" y="335.50"></text></g><g><title>python310`PyErr_Restore (70 samples, 0.02%)</title><rect x="0.0963%" y="309" width="0.0160%" height="15" fill="rgb(245,192,40)" fg:x="422" fg:w="70"/><text x="0.3463%" y="319.50"></text></g><g><title>python310`PyErr_Restore (70 samples, 0.02%)</title><rect x="0.0963%" y="293" width="0.0160%" height="15" fill="rgb(238,167,29)" fg:x="422" fg:w="70"/><text x="0.3463%" y="303.50"></text></g><g><title>python310`PyEval_EvalCode (70 samples, 0.02%)</title><rect x="0.0963%" y="277" width="0.0160%" height="15" fill="rgb(232,182,51)" fg:x="422" fg:w="70"/><text x="0.3463%" y="287.50"></text></g><g><title>python310`PyEval_EvalCode (70 samples, 0.02%)</title><rect x="0.0963%" y="261" width="0.0160%" height="15" fill="rgb(231,60,39)" fg:x="422" fg:w="70"/><text x="0.3463%" y="271.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (70 samples, 0.02%)</title><rect x="0.0963%" y="245" width="0.0160%" height="15" fill="rgb(208,69,12)" fg:x="422" fg:w="70"/><text x="0.3463%" y="255.50"></text></g><g><title>python310`PySys_GetSizeOf (67 samples, 0.02%)</title><rect x="0.0970%" y="229" width="0.0153%" height="15" fill="rgb(235,93,37)" fg:x="425" fg:w="67"/><text x="0.3470%" y="239.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (67 samples, 0.02%)</title><rect x="0.0970%" y="213" width="0.0153%" height="15" fill="rgb(213,116,39)" fg:x="425" fg:w="67"/><text x="0.3470%" y="223.50"></text></g><g><title>python310`PyThread_free_lock (66 samples, 0.02%)</title><rect x="0.0972%" y="197" width="0.0151%" height="15" fill="rgb(222,207,29)" fg:x="426" fg:w="66"/><text x="0.3472%" y="207.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (66 samples, 0.02%)</title><rect x="0.0972%" y="181" width="0.0151%" height="15" fill="rgb(206,96,30)" fg:x="426" fg:w="66"/><text x="0.3472%" y="191.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (66 samples, 0.02%)</title><rect x="0.0972%" y="165" width="0.0151%" height="15" fill="rgb(218,138,4)" fg:x="426" fg:w="66"/><text x="0.3472%" y="175.50"></text></g><g><title>python310`PyBuffer_Release (66 samples, 0.02%)</title><rect x="0.0972%" y="149" width="0.0151%" height="15" fill="rgb(250,191,14)" fg:x="426" fg:w="66"/><text x="0.3472%" y="159.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.0972%" y="133" width="0.0151%" height="15" fill="rgb(239,60,40)" fg:x="426" fg:w="66"/><text x="0.3472%" y="143.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.0972%" y="117" width="0.0151%" height="15" fill="rgb(206,27,48)" fg:x="426" fg:w="66"/><text x="0.3472%" y="127.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.0972%" y="101" width="0.0151%" height="15" fill="rgb(225,35,8)" fg:x="426" fg:w="66"/><text x="0.3472%" y="111.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.0972%" y="85" width="0.0151%" height="15" fill="rgb(250,213,24)" fg:x="426" fg:w="66"/><text x="0.3472%" y="95.50"></text></g><g><title>python310`PyFunction_Vectorcall (66 samples, 0.02%)</title><rect x="0.0972%" y="69" width="0.0151%" height="15" fill="rgb(247,123,22)" fg:x="426" fg:w="66"/><text x="0.3472%" y="79.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.0972%" y="53" width="0.0151%" height="15" fill="rgb(231,138,38)" fg:x="426" fg:w="66"/><text x="0.3472%" y="63.50"></text></g><g><title>python310`PyFunction_Vectorcall (83 samples, 0.02%)</title><rect x="0.0947%" y="485" width="0.0189%" height="15" fill="rgb(231,145,46)" fg:x="415" fg:w="83"/><text x="0.3447%" y="495.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (83 samples, 0.02%)</title><rect x="0.0947%" y="469" width="0.0189%" height="15" fill="rgb(251,118,11)" fg:x="415" fg:w="83"/><text x="0.3447%" y="479.50"></text></g><g><title>python310`PyFunction_Vectorcall (83 samples, 0.02%)</title><rect x="0.0947%" y="453" width="0.0189%" height="15" fill="rgb(217,147,25)" fg:x="415" fg:w="83"/><text x="0.3447%" y="463.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (83 samples, 0.02%)</title><rect x="0.0947%" y="437" width="0.0189%" height="15" fill="rgb(247,81,37)" fg:x="415" fg:w="83"/><text x="0.3447%" y="447.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (98 samples, 0.02%)</title><rect x="0.0915%" y="805" width="0.0224%" height="15" fill="rgb(209,12,38)" fg:x="401" fg:w="98"/><text x="0.3415%" y="815.50"></text></g><g><title>python310`PyFunction_Vectorcall (87 samples, 0.02%)</title><rect x="0.0940%" y="789" width="0.0199%" height="15" fill="rgb(227,1,9)" fg:x="412" fg:w="87"/><text x="0.3440%" y="799.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (87 samples, 0.02%)</title><rect x="0.0940%" y="773" width="0.0199%" height="15" fill="rgb(248,47,43)" fg:x="412" fg:w="87"/><text x="0.3440%" y="783.50"></text></g><g><title>python310`PyObject_Call (87 samples, 0.02%)</title><rect x="0.0940%" y="757" width="0.0199%" height="15" fill="rgb(221,10,30)" fg:x="412" fg:w="87"/><text x="0.3440%" y="767.50"></text></g><g><title>python310`PyObject_Call (87 samples, 0.02%)</title><rect x="0.0940%" y="741" width="0.0199%" height="15" fill="rgb(210,229,1)" fg:x="412" fg:w="87"/><text x="0.3440%" y="751.50"></text></g><g><title>python310`PyVectorcall_Call (87 samples, 0.02%)</title><rect x="0.0940%" y="725" width="0.0199%" height="15" fill="rgb(222,148,37)" fg:x="412" fg:w="87"/><text x="0.3440%" y="735.50"></text></g><g><title>python310`Py_HashPointer (87 samples, 0.02%)</title><rect x="0.0940%" y="709" width="0.0199%" height="15" fill="rgb(234,67,33)" fg:x="412" fg:w="87"/><text x="0.3440%" y="719.50"></text></g><g><title>python310`PyErr_Restore (87 samples, 0.02%)</title><rect x="0.0940%" y="693" width="0.0199%" height="15" fill="rgb(247,98,35)" fg:x="412" fg:w="87"/><text x="0.3440%" y="703.50"></text></g><g><title>python310`PyErr_Restore (87 samples, 0.02%)</title><rect x="0.0940%" y="677" width="0.0199%" height="15" fill="rgb(247,138,52)" fg:x="412" fg:w="87"/><text x="0.3440%" y="687.50"></text></g><g><title>python310`PyEval_EvalCode (87 samples, 0.02%)</title><rect x="0.0940%" y="661" width="0.0199%" height="15" fill="rgb(213,79,30)" fg:x="412" fg:w="87"/><text x="0.3440%" y="671.50"></text></g><g><title>python310`PyEval_EvalCode (87 samples, 0.02%)</title><rect x="0.0940%" y="645" width="0.0199%" height="15" fill="rgb(246,177,23)" fg:x="412" fg:w="87"/><text x="0.3440%" y="655.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (87 samples, 0.02%)</title><rect x="0.0940%" y="629" width="0.0199%" height="15" fill="rgb(230,62,27)" fg:x="412" fg:w="87"/><text x="0.3440%" y="639.50"></text></g><g><title>python310`PySys_GetSizeOf (85 samples, 0.02%)</title><rect x="0.0945%" y="613" width="0.0194%" height="15" fill="rgb(216,154,8)" fg:x="414" fg:w="85"/><text x="0.3445%" y="623.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (85 samples, 0.02%)</title><rect x="0.0945%" y="597" width="0.0194%" height="15" fill="rgb(244,35,45)" fg:x="414" fg:w="85"/><text x="0.3445%" y="607.50"></text></g><g><title>python310`PyThread_free_lock (84 samples, 0.02%)</title><rect x="0.0947%" y="581" width="0.0192%" height="15" fill="rgb(251,115,12)" fg:x="415" fg:w="84"/><text x="0.3447%" y="591.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (84 samples, 0.02%)</title><rect x="0.0947%" y="565" width="0.0192%" height="15" fill="rgb(240,54,50)" fg:x="415" fg:w="84"/><text x="0.3447%" y="575.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (84 samples, 0.02%)</title><rect x="0.0947%" y="549" width="0.0192%" height="15" fill="rgb(233,84,52)" fg:x="415" fg:w="84"/><text x="0.3447%" y="559.50"></text></g><g><title>python310`PyBuffer_Release (84 samples, 0.02%)</title><rect x="0.0947%" y="533" width="0.0192%" height="15" fill="rgb(207,117,47)" fg:x="415" fg:w="84"/><text x="0.3447%" y="543.50"></text></g><g><title>python310`PyFunction_Vectorcall (84 samples, 0.02%)</title><rect x="0.0947%" y="517" width="0.0192%" height="15" fill="rgb(249,43,39)" fg:x="415" fg:w="84"/><text x="0.3447%" y="527.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (84 samples, 0.02%)</title><rect x="0.0947%" y="501" width="0.0192%" height="15" fill="rgb(209,38,44)" fg:x="415" fg:w="84"/><text x="0.3447%" y="511.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (47 samples, 0.01%)</title><rect x="0.1178%" y="741" width="0.0107%" height="15" fill="rgb(236,212,23)" fg:x="516" fg:w="47"/><text x="0.3678%" y="751.50"></text></g><g><title>python310`PyObject_Hash (65 samples, 0.01%)</title><rect x="0.1178%" y="773" width="0.0148%" height="15" fill="rgb(242,79,21)" fg:x="516" fg:w="65"/><text x="0.3678%" y="783.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (65 samples, 0.01%)</title><rect x="0.1178%" y="757" width="0.0148%" height="15" fill="rgb(211,96,35)" fg:x="516" fg:w="65"/><text x="0.3678%" y="767.50"></text></g><g><title>python310`PyArena_Free (196 samples, 0.04%)</title><rect x="0.0881%" y="1093" width="0.0447%" height="15" fill="rgb(253,215,40)" fg:x="386" fg:w="196"/><text x="0.3381%" y="1103.50"></text></g><g><title>python310`PyArena_Free (195 samples, 0.04%)</title><rect x="0.0883%" y="1077" width="0.0445%" height="15" fill="rgb(211,81,21)" fg:x="387" fg:w="195"/><text x="0.3383%" y="1087.50"></text></g><g><title>python310`PyEval_EvalCode (195 samples, 0.04%)</title><rect x="0.0883%" y="1061" width="0.0445%" height="15" fill="rgb(208,190,38)" fg:x="387" fg:w="195"/><text x="0.3383%" y="1071.50"></text></g><g><title>python310`PyEval_EvalCode (195 samples, 0.04%)</title><rect x="0.0883%" y="1045" width="0.0445%" height="15" fill="rgb(235,213,38)" fg:x="387" fg:w="195"/><text x="0.3383%" y="1055.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (195 samples, 0.04%)</title><rect x="0.0883%" y="1029" width="0.0445%" height="15" fill="rgb(237,122,38)" fg:x="387" fg:w="195"/><text x="0.3383%" y="1039.50"></text></g><g><title>python310`PyType_IsSubtype (181 samples, 0.04%)</title><rect x="0.0915%" y="1013" width="0.0413%" height="15" fill="rgb(244,218,35)" fg:x="401" fg:w="181"/><text x="0.3415%" y="1023.50"></text></g><g><title>python310`PyMapping_Size (181 samples, 0.04%)</title><rect x="0.0915%" y="997" width="0.0413%" height="15" fill="rgb(240,68,47)" fg:x="401" fg:w="181"/><text x="0.3415%" y="1007.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (181 samples, 0.04%)</title><rect x="0.0915%" y="981" width="0.0413%" height="15" fill="rgb(210,16,53)" fg:x="401" fg:w="181"/><text x="0.3415%" y="991.50"></text></g><g><title>python310`PyThread_free_lock (181 samples, 0.04%)</title><rect x="0.0915%" y="965" width="0.0413%" height="15" fill="rgb(235,124,12)" fg:x="401" fg:w="181"/><text x="0.3415%" y="975.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (181 samples, 0.04%)</title><rect x="0.0915%" y="949" width="0.0413%" height="15" fill="rgb(224,169,11)" fg:x="401" fg:w="181"/><text x="0.3415%" y="959.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (181 samples, 0.04%)</title><rect x="0.0915%" y="933" width="0.0413%" height="15" fill="rgb(250,166,2)" fg:x="401" fg:w="181"/><text x="0.3415%" y="943.50"></text></g><g><title>python310`PyBuffer_Release (181 samples, 0.04%)</title><rect x="0.0915%" y="917" width="0.0413%" height="15" fill="rgb(242,216,29)" fg:x="401" fg:w="181"/><text x="0.3415%" y="927.50"></text></g><g><title>python310`PyFunction_Vectorcall (181 samples, 0.04%)</title><rect x="0.0915%" y="901" width="0.0413%" height="15" fill="rgb(230,116,27)" fg:x="401" fg:w="181"/><text x="0.3415%" y="911.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (181 samples, 0.04%)</title><rect x="0.0915%" y="885" width="0.0413%" height="15" fill="rgb(228,99,48)" fg:x="401" fg:w="181"/><text x="0.3415%" y="895.50"></text></g><g><title>python310`PyFunction_Vectorcall (181 samples, 0.04%)</title><rect x="0.0915%" y="869" width="0.0413%" height="15" fill="rgb(253,11,6)" fg:x="401" fg:w="181"/><text x="0.3415%" y="879.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (181 samples, 0.04%)</title><rect x="0.0915%" y="853" width="0.0413%" height="15" fill="rgb(247,143,39)" fg:x="401" fg:w="181"/><text x="0.3415%" y="863.50"></text></g><g><title>python310`PyFunction_Vectorcall (181 samples, 0.04%)</title><rect x="0.0915%" y="837" width="0.0413%" height="15" fill="rgb(236,97,10)" fg:x="401" fg:w="181"/><text x="0.3415%" y="847.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (181 samples, 0.04%)</title><rect x="0.0915%" y="821" width="0.0413%" height="15" fill="rgb(233,208,19)" fg:x="401" fg:w="181"/><text x="0.3415%" y="831.50"></text></g><g><title>python310`PyObject_Hash (66 samples, 0.02%)</title><rect x="0.1178%" y="805" width="0.0151%" height="15" fill="rgb(216,164,2)" fg:x="516" fg:w="66"/><text x="0.3678%" y="815.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (66 samples, 0.02%)</title><rect x="0.1178%" y="789" width="0.0151%" height="15" fill="rgb(220,129,5)" fg:x="516" fg:w="66"/><text x="0.3678%" y="799.50"></text></g><g><title>python310`PyErr_Restore (200 samples, 0.05%)</title><rect x="0.0881%" y="1141" width="0.0456%" height="15" fill="rgb(242,17,10)" fg:x="386" fg:w="200"/><text x="0.3381%" y="1151.50"></text></g><g><title>python310`PyErr_Restore (200 samples, 0.05%)</title><rect x="0.0881%" y="1125" width="0.0456%" height="15" fill="rgb(242,107,0)" fg:x="386" fg:w="200"/><text x="0.3381%" y="1135.50"></text></g><g><title>python310`PyRun_StringFlags (200 samples, 0.05%)</title><rect x="0.0881%" y="1109" width="0.0456%" height="15" fill="rgb(251,28,31)" fg:x="386" fg:w="200"/><text x="0.3381%" y="1119.50"></text></g><g><title>python310`PyFunction_Vectorcall (218 samples, 0.05%)</title><rect x="0.0858%" y="1205" width="0.0498%" height="15" fill="rgb(233,223,10)" fg:x="376" fg:w="218"/><text x="0.3358%" y="1215.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (218 samples, 0.05%)</title><rect x="0.0858%" y="1189" width="0.0498%" height="15" fill="rgb(215,21,27)" fg:x="376" fg:w="218"/><text x="0.3358%" y="1199.50"></text></g><g><title>python310`PyFunction_Vectorcall (212 samples, 0.05%)</title><rect x="0.0872%" y="1173" width="0.0484%" height="15" fill="rgb(232,23,21)" fg:x="382" fg:w="212"/><text x="0.3372%" y="1183.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (212 samples, 0.05%)</title><rect x="0.0872%" y="1157" width="0.0484%" height="15" fill="rgb(244,5,23)" fg:x="382" fg:w="212"/><text x="0.3372%" y="1167.50"></text></g><g><title>python310`PyFunction_Vectorcall (234 samples, 0.05%)</title><rect x="0.0858%" y="1269" width="0.0534%" height="15" fill="rgb(226,81,46)" fg:x="376" fg:w="234"/><text x="0.3358%" y="1279.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (234 samples, 0.05%)</title><rect x="0.0858%" y="1253" width="0.0534%" height="15" fill="rgb(247,70,30)" fg:x="376" fg:w="234"/><text x="0.3358%" y="1263.50"></text></g><g><title>python310`PyFunction_Vectorcall (234 samples, 0.05%)</title><rect x="0.0858%" y="1237" width="0.0534%" height="15" fill="rgb(212,68,19)" fg:x="376" fg:w="234"/><text x="0.3358%" y="1247.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (234 samples, 0.05%)</title><rect x="0.0858%" y="1221" width="0.0534%" height="15" fill="rgb(240,187,13)" fg:x="376" fg:w="234"/><text x="0.3358%" y="1231.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (62 samples, 0.01%)</title><rect x="0.1392%" y="1077" width="0.0142%" height="15" fill="rgb(223,113,26)" fg:x="610" fg:w="62"/><text x="0.3892%" y="1087.50"></text></g><g><title>python310`PyFunction_Vectorcall (52 samples, 0.01%)</title><rect x="0.1415%" y="1061" width="0.0119%" height="15" fill="rgb(206,192,2)" fg:x="620" fg:w="52"/><text x="0.3915%" y="1071.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (52 samples, 0.01%)</title><rect x="0.1415%" y="1045" width="0.0119%" height="15" fill="rgb(241,108,4)" fg:x="620" fg:w="52"/><text x="0.3915%" y="1055.50"></text></g><g><title>python310`PyObject_Call (52 samples, 0.01%)</title><rect x="0.1415%" y="1029" width="0.0119%" height="15" fill="rgb(247,173,49)" fg:x="620" fg:w="52"/><text x="0.3915%" y="1039.50"></text></g><g><title>python310`PyObject_Call (52 samples, 0.01%)</title><rect x="0.1415%" y="1013" width="0.0119%" height="15" fill="rgb(224,114,35)" fg:x="620" fg:w="52"/><text x="0.3915%" y="1023.50"></text></g><g><title>python310`PyVectorcall_Call (52 samples, 0.01%)</title><rect x="0.1415%" y="997" width="0.0119%" height="15" fill="rgb(245,159,27)" fg:x="620" fg:w="52"/><text x="0.3915%" y="1007.50"></text></g><g><title>python310`Py_HashPointer (52 samples, 0.01%)</title><rect x="0.1415%" y="981" width="0.0119%" height="15" fill="rgb(245,172,44)" fg:x="620" fg:w="52"/><text x="0.3915%" y="991.50"></text></g><g><title>python310`PyErr_Restore (52 samples, 0.01%)</title><rect x="0.1415%" y="965" width="0.0119%" height="15" fill="rgb(236,23,11)" fg:x="620" fg:w="52"/><text x="0.3915%" y="975.50"></text></g><g><title>python310`PyErr_Restore (52 samples, 0.01%)</title><rect x="0.1415%" y="949" width="0.0119%" height="15" fill="rgb(205,117,38)" fg:x="620" fg:w="52"/><text x="0.3915%" y="959.50"></text></g><g><title>python310`PyEval_EvalCode (52 samples, 0.01%)</title><rect x="0.1415%" y="933" width="0.0119%" height="15" fill="rgb(237,72,25)" fg:x="620" fg:w="52"/><text x="0.3915%" y="943.50"></text></g><g><title>python310`PyEval_EvalCode (52 samples, 0.01%)</title><rect x="0.1415%" y="917" width="0.0119%" height="15" fill="rgb(244,70,9)" fg:x="620" fg:w="52"/><text x="0.3915%" y="927.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (52 samples, 0.01%)</title><rect x="0.1415%" y="901" width="0.0119%" height="15" fill="rgb(217,125,39)" fg:x="620" fg:w="52"/><text x="0.3915%" y="911.50"></text></g><g><title>python310`PySys_GetSizeOf (50 samples, 0.01%)</title><rect x="0.1420%" y="885" width="0.0114%" height="15" fill="rgb(235,36,10)" fg:x="622" fg:w="50"/><text x="0.3920%" y="895.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (50 samples, 0.01%)</title><rect x="0.1420%" y="869" width="0.0114%" height="15" fill="rgb(251,123,47)" fg:x="622" fg:w="50"/><text x="0.3920%" y="879.50"></text></g><g><title>python310`PyThread_free_lock (50 samples, 0.01%)</title><rect x="0.1420%" y="853" width="0.0114%" height="15" fill="rgb(221,13,13)" fg:x="622" fg:w="50"/><text x="0.3920%" y="863.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (50 samples, 0.01%)</title><rect x="0.1420%" y="837" width="0.0114%" height="15" fill="rgb(238,131,9)" fg:x="622" fg:w="50"/><text x="0.3920%" y="847.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (50 samples, 0.01%)</title><rect x="0.1420%" y="821" width="0.0114%" height="15" fill="rgb(211,50,8)" fg:x="622" fg:w="50"/><text x="0.3920%" y="831.50"></text></g><g><title>python310`PyBuffer_Release (50 samples, 0.01%)</title><rect x="0.1420%" y="805" width="0.0114%" height="15" fill="rgb(245,182,24)" fg:x="622" fg:w="50"/><text x="0.3920%" y="815.50"></text></g><g><title>python310`PyFunction_Vectorcall (50 samples, 0.01%)</title><rect x="0.1420%" y="789" width="0.0114%" height="15" fill="rgb(242,14,37)" fg:x="622" fg:w="50"/><text x="0.3920%" y="799.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (50 samples, 0.01%)</title><rect x="0.1420%" y="773" width="0.0114%" height="15" fill="rgb(246,228,12)" fg:x="622" fg:w="50"/><text x="0.3920%" y="783.50"></text></g><g><title>python310`PyFunction_Vectorcall (50 samples, 0.01%)</title><rect x="0.1420%" y="757" width="0.0114%" height="15" fill="rgb(213,55,15)" fg:x="622" fg:w="50"/><text x="0.3920%" y="767.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (50 samples, 0.01%)</title><rect x="0.1420%" y="741" width="0.0114%" height="15" fill="rgb(209,9,3)" fg:x="622" fg:w="50"/><text x="0.3920%" y="751.50"></text></g><g><title>python310`PyFunction_Vectorcall (50 samples, 0.01%)</title><rect x="0.1420%" y="725" width="0.0114%" height="15" fill="rgb(230,59,30)" fg:x="622" fg:w="50"/><text x="0.3920%" y="735.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (50 samples, 0.01%)</title><rect x="0.1420%" y="709" width="0.0114%" height="15" fill="rgb(209,121,21)" fg:x="622" fg:w="50"/><text x="0.3920%" y="719.50"></text></g><g><title>python310`PyFunction_Vectorcall (68 samples, 0.02%)</title><rect x="0.1392%" y="1141" width="0.0155%" height="15" fill="rgb(220,109,13)" fg:x="610" fg:w="68"/><text x="0.3892%" y="1151.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (68 samples, 0.02%)</title><rect x="0.1392%" y="1125" width="0.0155%" height="15" fill="rgb(232,18,1)" fg:x="610" fg:w="68"/><text x="0.3892%" y="1135.50"></text></g><g><title>python310`PyFunction_Vectorcall (68 samples, 0.02%)</title><rect x="0.1392%" y="1109" width="0.0155%" height="15" fill="rgb(215,41,42)" fg:x="610" fg:w="68"/><text x="0.3892%" y="1119.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (68 samples, 0.02%)</title><rect x="0.1392%" y="1093" width="0.0155%" height="15" fill="rgb(224,123,36)" fg:x="610" fg:w="68"/><text x="0.3892%" y="1103.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (307 samples, 0.07%)</title><rect x="0.0849%" y="1461" width="0.0701%" height="15" fill="rgb(240,125,3)" fg:x="372" fg:w="307"/><text x="0.3349%" y="1471.50"></text></g><g><title>python310`PyFunction_Vectorcall (303 samples, 0.07%)</title><rect x="0.0858%" y="1445" width="0.0692%" height="15" fill="rgb(205,98,50)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1455.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (303 samples, 0.07%)</title><rect x="0.0858%" y="1429" width="0.0692%" height="15" fill="rgb(205,185,37)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1439.50"></text></g><g><title>python310`PyObject_Call (303 samples, 0.07%)</title><rect x="0.0858%" y="1413" width="0.0692%" height="15" fill="rgb(238,207,15)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1423.50"></text></g><g><title>python310`PyObject_Call (303 samples, 0.07%)</title><rect x="0.0858%" y="1397" width="0.0692%" height="15" fill="rgb(213,199,42)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1407.50"></text></g><g><title>python310`PyVectorcall_Call (303 samples, 0.07%)</title><rect x="0.0858%" y="1381" width="0.0692%" height="15" fill="rgb(235,201,11)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1391.50"></text></g><g><title>python310`Py_HashPointer (303 samples, 0.07%)</title><rect x="0.0858%" y="1365" width="0.0692%" height="15" fill="rgb(207,46,11)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1375.50"></text></g><g><title>python310`PyErr_Restore (303 samples, 0.07%)</title><rect x="0.0858%" y="1349" width="0.0692%" height="15" fill="rgb(241,35,35)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1359.50"></text></g><g><title>python310`PyErr_Restore (303 samples, 0.07%)</title><rect x="0.0858%" y="1333" width="0.0692%" height="15" fill="rgb(243,32,47)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1343.50"></text></g><g><title>python310`PyEval_EvalCode (303 samples, 0.07%)</title><rect x="0.0858%" y="1317" width="0.0692%" height="15" fill="rgb(247,202,23)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1327.50"></text></g><g><title>python310`PyEval_EvalCode (303 samples, 0.07%)</title><rect x="0.0858%" y="1301" width="0.0692%" height="15" fill="rgb(219,102,11)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1311.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (303 samples, 0.07%)</title><rect x="0.0858%" y="1285" width="0.0692%" height="15" fill="rgb(243,110,44)" fg:x="376" fg:w="303"/><text x="0.3358%" y="1295.50"></text></g><g><title>python310`PySys_GetSizeOf (69 samples, 0.02%)</title><rect x="0.1392%" y="1269" width="0.0157%" height="15" fill="rgb(222,74,54)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1279.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (69 samples, 0.02%)</title><rect x="0.1392%" y="1253" width="0.0157%" height="15" fill="rgb(216,99,12)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1263.50"></text></g><g><title>python310`PyThread_free_lock (69 samples, 0.02%)</title><rect x="0.1392%" y="1237" width="0.0157%" height="15" fill="rgb(226,22,26)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1247.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (69 samples, 0.02%)</title><rect x="0.1392%" y="1221" width="0.0157%" height="15" fill="rgb(217,163,10)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1231.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (69 samples, 0.02%)</title><rect x="0.1392%" y="1205" width="0.0157%" height="15" fill="rgb(213,25,53)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1215.50"></text></g><g><title>python310`PyBuffer_Release (69 samples, 0.02%)</title><rect x="0.1392%" y="1189" width="0.0157%" height="15" fill="rgb(252,105,26)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1199.50"></text></g><g><title>python310`PyFunction_Vectorcall (69 samples, 0.02%)</title><rect x="0.1392%" y="1173" width="0.0157%" height="15" fill="rgb(220,39,43)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1183.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (69 samples, 0.02%)</title><rect x="0.1392%" y="1157" width="0.0157%" height="15" fill="rgb(229,68,48)" fg:x="610" fg:w="69"/><text x="0.3892%" y="1167.50"></text></g><g><title>python310`PyLong_FormatBytesWriter (310 samples, 0.07%)</title><rect x="0.0849%" y="1765" width="0.0708%" height="15" fill="rgb(252,8,32)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1775.50"></text></g><g><title>python310`PyImport_ImportModule (310 samples, 0.07%)</title><rect x="0.0849%" y="1749" width="0.0708%" height="15" fill="rgb(223,20,43)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1759.50"></text></g><g><title>python310`PyImport_Import (310 samples, 0.07%)</title><rect x="0.0849%" y="1733" width="0.0708%" height="15" fill="rgb(229,81,49)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1743.50"></text></g><g><title>python310`PyObject_CallFunction (310 samples, 0.07%)</title><rect x="0.0849%" y="1717" width="0.0708%" height="15" fill="rgb(236,28,36)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1727.50"></text></g><g><title>python310`PyLong_FromDouble (310 samples, 0.07%)</title><rect x="0.0849%" y="1701" width="0.0708%" height="15" fill="rgb(249,185,26)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1711.50"></text></g><g><title>python310`PyBuffer_Release (310 samples, 0.07%)</title><rect x="0.0849%" y="1685" width="0.0708%" height="15" fill="rgb(249,174,33)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1695.50"></text></g><g><title>python310`PyType_IsSubtype (310 samples, 0.07%)</title><rect x="0.0849%" y="1669" width="0.0708%" height="15" fill="rgb(233,201,37)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1679.50"></text></g><g><title>python310`PyMapping_Size (310 samples, 0.07%)</title><rect x="0.0849%" y="1653" width="0.0708%" height="15" fill="rgb(221,78,26)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1663.50"></text></g><g><title>python310`PyImport_ImportModuleLevelObject (310 samples, 0.07%)</title><rect x="0.0849%" y="1637" width="0.0708%" height="15" fill="rgb(250,127,30)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1647.50"></text></g><g><title>python310`PyThread_free_lock (310 samples, 0.07%)</title><rect x="0.0849%" y="1621" width="0.0708%" height="15" fill="rgb(230,49,44)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1631.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (310 samples, 0.07%)</title><rect x="0.0849%" y="1605" width="0.0708%" height="15" fill="rgb(229,67,23)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1615.50"></text></g><g><title>python310`PyObject_CallMethodIdObjArgs (310 samples, 0.07%)</title><rect x="0.0849%" y="1589" width="0.0708%" height="15" fill="rgb(249,83,47)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1599.50"></text></g><g><title>python310`PyBuffer_Release (310 samples, 0.07%)</title><rect x="0.0849%" y="1573" width="0.0708%" height="15" fill="rgb(215,43,3)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1583.50"></text></g><g><title>python310`PyFunction_Vectorcall (310 samples, 0.07%)</title><rect x="0.0849%" y="1557" width="0.0708%" height="15" fill="rgb(238,154,13)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1567.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (310 samples, 0.07%)</title><rect x="0.0849%" y="1541" width="0.0708%" height="15" fill="rgb(219,56,2)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1551.50"></text></g><g><title>python310`PyFunction_Vectorcall (310 samples, 0.07%)</title><rect x="0.0849%" y="1525" width="0.0708%" height="15" fill="rgb(233,0,4)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1535.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (310 samples, 0.07%)</title><rect x="0.0849%" y="1509" width="0.0708%" height="15" fill="rgb(235,30,7)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1519.50"></text></g><g><title>python310`PyFunction_Vectorcall (310 samples, 0.07%)</title><rect x="0.0849%" y="1493" width="0.0708%" height="15" fill="rgb(250,79,13)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1503.50"></text></g><g><title>python310`PyEval_EvalFrameDefault (310 samples, 0.07%)</title><rect x="0.0849%" y="1477" width="0.0708%" height="15" fill="rgb(211,146,34)" fg:x="372" fg:w="310"/><text x="0.3349%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4pyo33gil27prepare_freethreaded_python17h7b7be3062133f399E (496 samples, 0.11%)</title><rect x="0.0495%" y="1877" width="0.1132%" height="15" fill="rgb(228,22,38)" fg:x="217" fg:w="496"/><text x="0.2995%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN11parking_lot4once4Once14call_once_slow17h9880eb8f0d7c2dd9E (496 samples, 0.11%)</title><rect x="0.0495%" y="1861" width="0.1132%" height="15" fill="rgb(235,168,5)" fg:x="217" fg:w="496"/><text x="0.2995%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN11parking_lot4once4Once15call_once_force28_$u7b$$u7b$closure$u7d$$u7d$17h6530e0d5609add85E.llvm.7393249865436353925 (495 samples, 0.11%)</title><rect x="0.0498%" y="1845" width="0.1130%" height="15" fill="rgb(221,155,16)" fg:x="218" fg:w="495"/><text x="0.2998%" y="1855.50"></text></g><g><title>python310`Py_InitializeEx (495 samples, 0.11%)</title><rect x="0.0498%" y="1829" width="0.1130%" height="15" fill="rgb(215,215,53)" fg:x="218" fg:w="495"/><text x="0.2998%" y="1839.50"></text></g><g><title>python310`Py_InitializeFromConfig (495 samples, 0.11%)</title><rect x="0.0498%" y="1813" width="0.1130%" height="15" fill="rgb(223,4,10)" fg:x="218" fg:w="495"/><text x="0.2998%" y="1823.50"></text></g><g><title>python310`Py_NewInterpreter (435 samples, 0.10%)</title><rect x="0.0634%" y="1797" width="0.0993%" height="15" fill="rgb(234,103,6)" fg:x="278" fg:w="435"/><text x="0.3134%" y="1807.50"></text></g><g><title>python310`PyList_Insert (435 samples, 0.10%)</title><rect x="0.0634%" y="1781" width="0.0993%" height="15" fill="rgb(227,97,0)" fg:x="278" fg:w="435"/><text x="0.3134%" y="1791.50"></text></g><g><title>KERNEL32`CreateProcessW (57 samples, 0.01%)</title><rect x="0.1664%" y="1797" width="0.0130%" height="15" fill="rgb(234,150,53)" fg:x="729" fg:w="57"/><text x="0.4164%" y="1807.50"></text></g><g><title>KERNELBASE`CreateProcessW (57 samples, 0.01%)</title><rect x="0.1664%" y="1781" width="0.0130%" height="15" fill="rgb(228,201,54)" fg:x="729" fg:w="57"/><text x="0.4164%" y="1791.50"></text></g><g><title>KERNELBASE`CreateProcessInternalW (57 samples, 0.01%)</title><rect x="0.1664%" y="1765" width="0.0130%" height="15" fill="rgb(222,22,37)" fg:x="729" fg:w="57"/><text x="0.4164%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN63_$LT$criterion..Criterion$u20$as$u20$core..default..Default$GT$7default17h692a1e2aa0164b29E (85 samples, 0.02%)</title><rect x="0.1627%" y="1877" width="0.0194%" height="15" fill="rgb(237,53,32)" fg:x="713" fg:w="85"/><text x="0.4127%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`std::sys_common::once::generic::Once::call (84 samples, 0.02%)</title><rect x="0.1630%" y="1861" width="0.0192%" height="15" fill="rgb(233,25,53)" fg:x="714" fg:w="84"/><text x="0.4130%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std4sync4once4Once9call_once28_$u7b$$u7b$closure$u7d$$u7d$17h7b302eee9b3bb97bE.llvm.18229423596412294872 (84 samples, 0.02%)</title><rect x="0.1630%" y="1845" width="0.0192%" height="15" fill="rgb(210,40,34)" fg:x="714" fg:w="84"/><text x="0.4130%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`std::process::Command::output (75 samples, 0.02%)</title><rect x="0.1650%" y="1829" width="0.0171%" height="15" fill="rgb(241,220,44)" fg:x="723" fg:w="75"/><text x="0.4150%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`std::sys::windows::process::Command::spawn (69 samples, 0.02%)</title><rect x="0.1664%" y="1813" width="0.0157%" height="15" fill="rgb(235,28,35)" fg:x="729" fg:w="69"/><text x="0.4164%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN99_$LT$$RF$mut$u20$adversary..CachedSetIterator$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hb6dd05cafb7e4c63E (3,664 samples, 0.84%)</title><rect x="0.7401%" y="1765" width="0.8362%" height="15" fill="rgb(210,56,17)" fg:x="3243" fg:w="3664"/><text x="0.9901%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$criterion..routine..Function$LT$M$C$F$C$T$GT$$u20$as$u20$criterion..routine..Routine$LT$M$C$T$GT$$GT$7warm_up17h57ace45e58215862E (37,293 samples, 8.51%)</title><rect x="0.1890%" y="1813" width="8.5114%" height="15" fill="rgb(224,130,29)" fg:x="828" fg:w="37293"/><text x="0.4390%" y="1823.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E (37,293 samples, 8.51%)</title><rect x="0.1890%" y="1797" width="8.5114%" height="15" fill="rgb(235,212,8)" fg:x="828" fg:w="37293"/><text x="0.4390%" y="1807.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E (37,293 samples, 8.51%)</title><rect x="0.1890%" y="1781" width="8.5114%" height="15" fill="rgb(223,33,50)" fg:x="828" fg:w="37293"/><text x="0.4390%" y="1791.50">search-10075..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (31,214 samples, 7.12%)</title><rect x="1.5764%" y="1765" width="7.1240%" height="15" fill="rgb(219,149,13)" fg:x="6907" fg:w="31214"/><text x="1.8264%" y="1775.50">search-100..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (24,608 samples, 5.62%)</title><rect x="3.0841%" y="1749" width="5.6163%" height="15" fill="rgb(250,156,29)" fg:x="13513" fg:w="24608"/><text x="3.3341%" y="1759.50">search-..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (12,434 samples, 2.84%)</title><rect x="5.8625%" y="1733" width="2.8378%" height="15" fill="rgb(216,193,19)" fg:x="25687" fg:w="12434"/><text x="6.1125%" y="1743.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (8,156 samples, 1.86%)</title><rect x="6.8389%" y="1717" width="1.8614%" height="15" fill="rgb(216,135,14)" fg:x="29965" fg:w="8156"/><text x="7.0889%" y="1727.50">s..</text></g><g><title>search-10075cbc4ecf36f7`ZN99_$LT$$RF$mut$u20$adversary..CachedSetIterator$u20$as$u20$core..iter..traits..iterator..Iterator$GT$4next17hb6dd05cafb7e4c63E (34,643 samples, 7.91%)</title><rect x="14.2450%" y="1765" width="7.9066%" height="15" fill="rgb(241,47,5)" fg:x="62415" fg:w="34643"/><text x="14.4950%" y="1775.50">search-1007..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (48 samples, 0.01%)</title><rect x="22.1406%" y="1749" width="0.0110%" height="15" fill="rgb(233,42,35)" fg:x="97010" fg:w="48"/><text x="22.3906%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E (387,080 samples, 88.34%)</title><rect x="8.7017%" y="1781" width="88.3432%" height="15" fill="rgb(231,13,6)" fg:x="38127" fg:w="387080"/><text x="8.9517%" y="1791.50">search-10075cbc4ecf36f7`ZN9adversary6Prover11find_bounds17he2edb4c6d4984ee6E</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (328,149 samples, 74.89%)</title><rect x="22.1515%" y="1765" width="74.8934%" height="15" fill="rgb(207,181,40)" fg:x="97058" fg:w="328149"/><text x="22.4015%" y="1775.50">search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (262,807 samples, 59.98%)</title><rect x="37.0645%" y="1749" width="59.9804%" height="15" fill="rgb(254,173,49)" fg:x="162400" fg:w="262807"/><text x="37.3145%" y="1759.50">search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.ll..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (144,001 samples, 32.87%)</title><rect x="64.1796%" y="1733" width="32.8653%" height="15" fill="rgb(221,1,38)" fg:x="281206" fg:w="144001"/><text x="64.4296%" y="1743.50">search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b..</text></g><g><title>search-10075cbc4ecf36f7`ZN9adversary2vm2Vm3run28_$u7b$$u7b$closure$u7d$$u7d$17h15cab4b0b2e446b6E.llvm.12128628131615447224 (100,664 samples, 22.97%)</title><rect x="74.0704%" y="1717" width="22.9745%" height="15" fill="rgb(206,124,46)" fg:x="324543" fg:w="100664"/><text x="74.3204%" y="1727.50">search-10075cbc4ecf36f7`ZN9adversary..</text></g><g><title>search-10075cbc4ecf36f7`ZN98_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..spec_from_iter..SpecFromIter$LT$T$C$I$GT$$GT$9from_iter17h14c40b78f6e63287E (387,084 samples, 88.34%)</title><rect x="8.7010%" y="1813" width="88.3441%" height="15" fill="rgb(249,21,11)" fg:x="38124" fg:w="387084"/><text x="8.9510%" y="1823.50">search-10075cbc4ecf36f7`ZN98_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..spec_from_iter..SpecFromIter$LT$T$C$I$GT$$GT$9from_iter17h14c40b78..</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E (387,084 samples, 88.34%)</title><rect x="8.7010%" y="1797" width="88.3441%" height="15" fill="rgb(222,201,40)" fg:x="38124" fg:w="387084"/><text x="8.9510%" y="1807.50">search-10075cbc4ecf36f7`ZN9criterion7bencher16Bencher$LT$M$GT$4iter17h1120b7833b0838c7E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion7routine7Routine6sample17h08fb9941e571c98cE (424,381 samples, 96.86%)</title><rect x="0.1890%" y="1829" width="96.8564%" height="15" fill="rgb(235,61,29)" fg:x="828" fg:w="424381"/><text x="0.4390%" y="1839.50">search-10075cbc4ecf36f7`ZN9criterion7routine7Routine6sample17h08fb9941e571c98cE</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis6common17hc3141c7002cfe06dE (424,536 samples, 96.89%)</title><rect x="0.1824%" y="1845" width="96.8917%" height="15" fill="rgb(219,207,3)" fg:x="799" fg:w="424536"/><text x="0.4324%" y="1855.50">search-10075cbc4ecf36f7`ZN9criterion8analysis6common17hc3141c7002cfe06dE</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates17h1a116b55d7a2f84bE (52 samples, 0.01%)</title><rect x="97.0622%" y="1829" width="0.0119%" height="15" fill="rgb(222,56,46)" fg:x="425283" fg:w="52"/><text x="97.3122%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion18Criterion$LT$M$GT$14bench_function17hc32bc2f721233753E (424,537 samples, 96.89%)</title><rect x="0.1824%" y="1877" width="96.8920%" height="15" fill="rgb(239,76,54)" fg:x="799" fg:w="424537"/><text x="0.4324%" y="1887.50">search-10075cbc4ecf36f7`ZN9criterion18Criterion$LT$M$GT$14bench_function17hc32bc2f721233753E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion15benchmark_group23BenchmarkGroup$LT$M$GT$14bench_function17h33f0346a6c22a4e8E (424,537 samples, 96.89%)</title><rect x="0.1824%" y="1861" width="96.8920%" height="15" fill="rgb(231,124,27)" fg:x="799" fg:w="424537"/><text x="0.4324%" y="1871.50">search-10075cbc4ecf36f7`ZN9criterion15benchmark_group23BenchmarkGroup$LT$M$GT$14bench_function17h33f0346a6c22a4e8E</text></g><g><title>search-10075cbc4ecf36f7`ZN174_$LT$criterion..estimate.._..$LT$impl$u20$serde..de..Deserialize$u20$for$u20$criterion..estimate..Estimates$GT$..deserialize..__FieldVisitor$u20$as$u20$serde..de..Visitor$GT$9visit_str17h5452485218708b2aE (425,124 samples, 97.03%)</title><rect x="0.0495%" y="1925" width="97.0259%" height="15" fill="rgb(249,195,6)" fg:x="217" fg:w="425124"/><text x="0.2995%" y="1935.50">search-10075cbc4ecf36f7`ZN174_$LT$criterion..estimate.._..$LT$impl$u20$serde..de..Deserialize$u20$for$u20$criterion..estimate..Estimates$GT$..deserialize..__Field..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h6a2aacb0ff006398E (425,124 samples, 97.03%)</title><rect x="0.0495%" y="1909" width="97.0259%" height="15" fill="rgb(237,174,47)" fg:x="217" fg:w="425124"/><text x="0.2995%" y="1919.50">search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h6a2aacb0ff006398E</text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8estimate1_91_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$criterion..estimate..ConfidenceInterval$GT$9serialize17h7f8083dfeb99b27bE (425,124 samples, 97.03%)</title><rect x="0.0495%" y="1893" width="97.0259%" height="15" fill="rgb(206,201,31)" fg:x="217" fg:w="425124"/><text x="0.2995%" y="1903.50">search-10075cbc4ecf36f7`ZN9criterion8estimate1_91_$LT$impl$u20$serde..ser..Serialize$u20$for$u20$criterion..estimate..ConfidenceInterval$GT$9serialize17h7f8083dfe..</text></g><g><title>search-10075cbc4ecf36f7`main (425,125 samples, 97.03%)</title><rect x="0.0495%" y="1957" width="97.0262%" height="15" fill="rgb(231,57,52)" fg:x="217" fg:w="425125"/><text x="0.2995%" y="1967.50">search-10075cbc4ecf36f7`main</text></g><g><title>search-10075cbc4ecf36f7`std::rt::lang_start_internal (425,125 samples, 97.03%)</title><rect x="0.0495%" y="1941" width="97.0262%" height="15" fill="rgb(248,177,22)" fg:x="217" fg:w="425125"/><text x="0.2995%" y="1951.50">search-10075cbc4ecf36f7`std::rt::lang_start_internal</text></g><g><title>search-10075cbc4ecf36f7`__scrt_common_main_seh (425,135 samples, 97.03%)</title><rect x="0.0495%" y="1973" width="97.0284%" height="15" fill="rgb(215,211,37)" fg:x="217" fg:w="425135"/><text x="0.2995%" y="1983.50">search-10075cbc4ecf36f7`__scrt_common_main_seh</text></g><g><title>KERNELBASE`SwitchToThread (57 samples, 0.01%)</title><rect x="97.0793%" y="1893" width="0.0130%" height="15" fill="rgb(241,128,51)" fg:x="425358" fg:w="57"/><text x="97.3293%" y="1903.50"></text></g><g><title>ntdll`RtlDelayExecution (57 samples, 0.01%)</title><rect x="97.0793%" y="1877" width="0.0130%" height="15" fill="rgb(227,165,31)" fg:x="425358" fg:w="57"/><text x="97.3293%" y="1887.50"></text></g><g><title>ntdll`NtDelayExecution (51 samples, 0.01%)</title><rect x="97.0807%" y="1861" width="0.0116%" height="15" fill="rgb(228,167,24)" fg:x="425364" fg:w="51"/><text x="97.3307%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (101 samples, 0.02%)</title><rect x="97.1065%" y="1717" width="0.0231%" height="15" fill="rgb(228,143,12)" fg:x="425477" fg:w="101"/><text x="97.3565%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (101 samples, 0.02%)</title><rect x="97.1065%" y="1701" width="0.0231%" height="15" fill="rgb(249,149,8)" fg:x="425477" fg:w="101"/><text x="97.3565%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (101 samples, 0.02%)</title><rect x="97.1065%" y="1685" width="0.0231%" height="15" fill="rgb(243,35,44)" fg:x="425477" fg:w="101"/><text x="97.3565%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (101 samples, 0.02%)</title><rect x="97.1065%" y="1669" width="0.0231%" height="15" fill="rgb(246,89,9)" fg:x="425477" fg:w="101"/><text x="97.3565%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (58 samples, 0.01%)</title><rect x="97.1163%" y="1653" width="0.0132%" height="15" fill="rgb(233,213,13)" fg:x="425520" fg:w="58"/><text x="97.3663%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (58 samples, 0.01%)</title><rect x="97.1163%" y="1637" width="0.0132%" height="15" fill="rgb(233,141,41)" fg:x="425520" fg:w="58"/><text x="97.3663%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (58 samples, 0.01%)</title><rect x="97.1163%" y="1621" width="0.0132%" height="15" fill="rgb(239,167,4)" fg:x="425520" fg:w="58"/><text x="97.3663%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h1bb215923262e413E.llvm.15725695388440039465 (164 samples, 0.04%)</title><rect x="97.1026%" y="1893" width="0.0374%" height="15" fill="rgb(209,217,16)" fg:x="425460" fg:w="164"/><text x="97.3526%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17h556d70c4c0088690E (164 samples, 0.04%)</title><rect x="97.1026%" y="1877" width="0.0374%" height="15" fill="rgb(219,88,35)" fg:x="425460" fg:w="164"/><text x="97.3526%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (164 samples, 0.04%)</title><rect x="97.1026%" y="1861" width="0.0374%" height="15" fill="rgb(220,193,23)" fg:x="425460" fg:w="164"/><text x="97.3526%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (164 samples, 0.04%)</title><rect x="97.1026%" y="1845" width="0.0374%" height="15" fill="rgb(230,90,52)" fg:x="425460" fg:w="164"/><text x="97.3526%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (154 samples, 0.04%)</title><rect x="97.1049%" y="1829" width="0.0351%" height="15" fill="rgb(252,106,19)" fg:x="425470" fg:w="154"/><text x="97.3549%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (154 samples, 0.04%)</title><rect x="97.1049%" y="1813" width="0.0351%" height="15" fill="rgb(206,74,20)" fg:x="425470" fg:w="154"/><text x="97.3549%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (154 samples, 0.04%)</title><rect x="97.1049%" y="1797" width="0.0351%" height="15" fill="rgb(230,138,44)" fg:x="425470" fg:w="154"/><text x="97.3549%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (150 samples, 0.03%)</title><rect x="97.1058%" y="1781" width="0.0342%" height="15" fill="rgb(235,182,43)" fg:x="425474" fg:w="150"/><text x="97.3558%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (150 samples, 0.03%)</title><rect x="97.1058%" y="1765" width="0.0342%" height="15" fill="rgb(242,16,51)" fg:x="425474" fg:w="150"/><text x="97.3558%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (150 samples, 0.03%)</title><rect x="97.1058%" y="1749" width="0.0342%" height="15" fill="rgb(248,9,4)" fg:x="425474" fg:w="150"/><text x="97.3558%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (147 samples, 0.03%)</title><rect x="97.1065%" y="1733" width="0.0335%" height="15" fill="rgb(210,31,22)" fg:x="425477" fg:w="147"/><text x="97.3565%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="97.1296%" y="1717" width="0.0105%" height="15" fill="rgb(239,54,39)" fg:x="425578" fg:w="46"/><text x="97.3796%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="97.1296%" y="1701" width="0.0105%" height="15" fill="rgb(230,99,41)" fg:x="425578" fg:w="46"/><text x="97.3796%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="97.1296%" y="1685" width="0.0105%" height="15" fill="rgb(253,106,12)" fg:x="425578" fg:w="46"/><text x="97.3796%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="97.1296%" y="1669" width="0.0105%" height="15" fill="rgb(213,46,41)" fg:x="425578" fg:w="46"/><text x="97.3796%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="97.1296%" y="1653" width="0.0105%" height="15" fill="rgb(215,133,35)" fg:x="425578" fg:w="46"/><text x="97.3796%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="97.1298%" y="1637" width="0.0103%" height="15" fill="rgb(213,28,5)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="97.1298%" y="1621" width="0.0103%" height="15" fill="rgb(215,77,49)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="97.1298%" y="1605" width="0.0103%" height="15" fill="rgb(248,100,22)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="97.1298%" y="1589" width="0.0103%" height="15" fill="rgb(208,67,9)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="97.1298%" y="1573" width="0.0103%" height="15" fill="rgb(219,133,21)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="97.1298%" y="1557" width="0.0103%" height="15" fill="rgb(246,46,29)" fg:x="425579" fg:w="45"/><text x="97.3798%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (44 samples, 0.01%)</title><rect x="97.1300%" y="1541" width="0.0100%" height="15" fill="rgb(246,185,52)" fg:x="425580" fg:w="44"/><text x="97.3800%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (44 samples, 0.01%)</title><rect x="97.1300%" y="1525" width="0.0100%" height="15" fill="rgb(252,136,11)" fg:x="425580" fg:w="44"/><text x="97.3800%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (52 samples, 0.01%)</title><rect x="97.1405%" y="1797" width="0.0119%" height="15" fill="rgb(219,138,53)" fg:x="425626" fg:w="52"/><text x="97.3905%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="97.1405%" y="1781" width="0.0119%" height="15" fill="rgb(211,51,23)" fg:x="425626" fg:w="52"/><text x="97.3905%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="97.1405%" y="1765" width="0.0119%" height="15" fill="rgb(247,221,28)" fg:x="425626" fg:w="52"/><text x="97.3905%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (97 samples, 0.02%)</title><rect x="97.1526%" y="1685" width="0.0221%" height="15" fill="rgb(251,222,45)" fg:x="425679" fg:w="97"/><text x="97.4026%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (97 samples, 0.02%)</title><rect x="97.1526%" y="1669" width="0.0221%" height="15" fill="rgb(217,162,53)" fg:x="425679" fg:w="97"/><text x="97.4026%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (97 samples, 0.02%)</title><rect x="97.1526%" y="1653" width="0.0221%" height="15" fill="rgb(229,93,14)" fg:x="425679" fg:w="97"/><text x="97.4026%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (48 samples, 0.01%)</title><rect x="97.1638%" y="1637" width="0.0110%" height="15" fill="rgb(209,67,49)" fg:x="425728" fg:w="48"/><text x="97.4138%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (48 samples, 0.01%)</title><rect x="97.1638%" y="1621" width="0.0110%" height="15" fill="rgb(213,87,29)" fg:x="425728" fg:w="48"/><text x="97.4138%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (48 samples, 0.01%)</title><rect x="97.1638%" y="1605" width="0.0110%" height="15" fill="rgb(205,151,52)" fg:x="425728" fg:w="48"/><text x="97.4138%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (50 samples, 0.01%)</title><rect x="97.1747%" y="1637" width="0.0114%" height="15" fill="rgb(253,215,39)" fg:x="425776" fg:w="50"/><text x="97.4247%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (50 samples, 0.01%)</title><rect x="97.1747%" y="1621" width="0.0114%" height="15" fill="rgb(221,220,41)" fg:x="425776" fg:w="50"/><text x="97.4247%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (50 samples, 0.01%)</title><rect x="97.1747%" y="1605" width="0.0114%" height="15" fill="rgb(218,133,21)" fg:x="425776" fg:w="50"/><text x="97.4247%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (196 samples, 0.04%)</title><rect x="97.1524%" y="1797" width="0.0447%" height="15" fill="rgb(221,193,43)" fg:x="425678" fg:w="196"/><text x="97.4024%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (196 samples, 0.04%)</title><rect x="97.1524%" y="1781" width="0.0447%" height="15" fill="rgb(240,128,52)" fg:x="425678" fg:w="196"/><text x="97.4024%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (196 samples, 0.04%)</title><rect x="97.1524%" y="1765" width="0.0447%" height="15" fill="rgb(253,114,12)" fg:x="425678" fg:w="196"/><text x="97.4024%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (195 samples, 0.04%)</title><rect x="97.1526%" y="1749" width="0.0445%" height="15" fill="rgb(215,223,47)" fg:x="425679" fg:w="195"/><text x="97.4026%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (195 samples, 0.04%)</title><rect x="97.1526%" y="1733" width="0.0445%" height="15" fill="rgb(248,225,23)" fg:x="425679" fg:w="195"/><text x="97.4026%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (195 samples, 0.04%)</title><rect x="97.1526%" y="1717" width="0.0445%" height="15" fill="rgb(250,108,0)" fg:x="425679" fg:w="195"/><text x="97.4026%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (195 samples, 0.04%)</title><rect x="97.1526%" y="1701" width="0.0445%" height="15" fill="rgb(228,208,7)" fg:x="425679" fg:w="195"/><text x="97.4026%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (98 samples, 0.02%)</title><rect x="97.1747%" y="1685" width="0.0224%" height="15" fill="rgb(244,45,10)" fg:x="425776" fg:w="98"/><text x="97.4247%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (98 samples, 0.02%)</title><rect x="97.1747%" y="1669" width="0.0224%" height="15" fill="rgb(207,125,25)" fg:x="425776" fg:w="98"/><text x="97.4247%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (98 samples, 0.02%)</title><rect x="97.1747%" y="1653" width="0.0224%" height="15" fill="rgb(210,195,18)" fg:x="425776" fg:w="98"/><text x="97.4247%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (48 samples, 0.01%)</title><rect x="97.1862%" y="1637" width="0.0110%" height="15" fill="rgb(249,80,12)" fg:x="425826" fg:w="48"/><text x="97.4362%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (48 samples, 0.01%)</title><rect x="97.1862%" y="1621" width="0.0110%" height="15" fill="rgb(221,65,9)" fg:x="425826" fg:w="48"/><text x="97.4362%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (48 samples, 0.01%)</title><rect x="97.1862%" y="1605" width="0.0110%" height="15" fill="rgb(235,49,36)" fg:x="425826" fg:w="48"/><text x="97.4362%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (57 samples, 0.01%)</title><rect x="97.1971%" y="1749" width="0.0130%" height="15" fill="rgb(225,32,20)" fg:x="425874" fg:w="57"/><text x="97.4471%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (57 samples, 0.01%)</title><rect x="97.1971%" y="1733" width="0.0130%" height="15" fill="rgb(215,141,46)" fg:x="425874" fg:w="57"/><text x="97.4471%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (57 samples, 0.01%)</title><rect x="97.1971%" y="1717" width="0.0130%" height="15" fill="rgb(250,160,47)" fg:x="425874" fg:w="57"/><text x="97.4471%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (363 samples, 0.08%)</title><rect x="97.1405%" y="1845" width="0.0828%" height="15" fill="rgb(216,222,40)" fg:x="425626" fg:w="363"/><text x="97.3905%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (363 samples, 0.08%)</title><rect x="97.1405%" y="1829" width="0.0828%" height="15" fill="rgb(234,217,39)" fg:x="425626" fg:w="363"/><text x="97.3905%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (363 samples, 0.08%)</title><rect x="97.1405%" y="1813" width="0.0828%" height="15" fill="rgb(207,178,40)" fg:x="425626" fg:w="363"/><text x="97.3905%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (115 samples, 0.03%)</title><rect x="97.1971%" y="1797" width="0.0262%" height="15" fill="rgb(221,136,13)" fg:x="425874" fg:w="115"/><text x="97.4471%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (115 samples, 0.03%)</title><rect x="97.1971%" y="1781" width="0.0262%" height="15" fill="rgb(249,199,10)" fg:x="425874" fg:w="115"/><text x="97.4471%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (115 samples, 0.03%)</title><rect x="97.1971%" y="1765" width="0.0262%" height="15" fill="rgb(249,222,13)" fg:x="425874" fg:w="115"/><text x="97.4471%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (58 samples, 0.01%)</title><rect x="97.2101%" y="1749" width="0.0132%" height="15" fill="rgb(244,185,38)" fg:x="425931" fg:w="58"/><text x="97.4601%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (58 samples, 0.01%)</title><rect x="97.2101%" y="1733" width="0.0132%" height="15" fill="rgb(236,202,9)" fg:x="425931" fg:w="58"/><text x="97.4601%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (58 samples, 0.01%)</title><rect x="97.2101%" y="1717" width="0.0132%" height="15" fill="rgb(250,229,37)" fg:x="425931" fg:w="58"/><text x="97.4601%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (44 samples, 0.01%)</title><rect x="97.2270%" y="1685" width="0.0100%" height="15" fill="rgb(206,174,23)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (44 samples, 0.01%)</title><rect x="97.2270%" y="1669" width="0.0100%" height="15" fill="rgb(211,33,43)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="97.2270%" y="1653" width="0.0100%" height="15" fill="rgb(245,58,50)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="97.2270%" y="1637" width="0.0100%" height="15" fill="rgb(244,68,36)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (44 samples, 0.01%)</title><rect x="97.2270%" y="1621" width="0.0100%" height="15" fill="rgb(232,229,15)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (44 samples, 0.01%)</title><rect x="97.2270%" y="1605" width="0.0100%" height="15" fill="rgb(254,30,23)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (44 samples, 0.01%)</title><rect x="97.2270%" y="1589" width="0.0100%" height="15" fill="rgb(235,160,14)" fg:x="426005" fg:w="44"/><text x="97.4770%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (84 samples, 0.02%)</title><rect x="97.2259%" y="1733" width="0.0192%" height="15" fill="rgb(212,155,44)" fg:x="426000" fg:w="84"/><text x="97.4759%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (84 samples, 0.02%)</title><rect x="97.2259%" y="1717" width="0.0192%" height="15" fill="rgb(226,2,50)" fg:x="426000" fg:w="84"/><text x="97.4759%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (84 samples, 0.02%)</title><rect x="97.2259%" y="1701" width="0.0192%" height="15" fill="rgb(234,177,6)" fg:x="426000" fg:w="84"/><text x="97.4759%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (50 samples, 0.01%)</title><rect x="97.2539%" y="1637" width="0.0114%" height="15" fill="rgb(217,24,9)" fg:x="426123" fg:w="50"/><text x="97.5039%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (50 samples, 0.01%)</title><rect x="97.2539%" y="1621" width="0.0114%" height="15" fill="rgb(220,13,46)" fg:x="426123" fg:w="50"/><text x="97.5039%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (50 samples, 0.01%)</title><rect x="97.2539%" y="1605" width="0.0114%" height="15" fill="rgb(239,221,27)" fg:x="426123" fg:w="50"/><text x="97.5039%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (100 samples, 0.02%)</title><rect x="97.2539%" y="1685" width="0.0228%" height="15" fill="rgb(222,198,25)" fg:x="426123" fg:w="100"/><text x="97.5039%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (100 samples, 0.02%)</title><rect x="97.2539%" y="1669" width="0.0228%" height="15" fill="rgb(211,99,13)" fg:x="426123" fg:w="100"/><text x="97.5039%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (100 samples, 0.02%)</title><rect x="97.2539%" y="1653" width="0.0228%" height="15" fill="rgb(232,111,31)" fg:x="426123" fg:w="100"/><text x="97.5039%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (50 samples, 0.01%)</title><rect x="97.2654%" y="1637" width="0.0114%" height="15" fill="rgb(245,82,37)" fg:x="426173" fg:w="50"/><text x="97.5154%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (50 samples, 0.01%)</title><rect x="97.2654%" y="1621" width="0.0114%" height="15" fill="rgb(227,149,46)" fg:x="426173" fg:w="50"/><text x="97.5154%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (50 samples, 0.01%)</title><rect x="97.2654%" y="1605" width="0.0114%" height="15" fill="rgb(218,36,50)" fg:x="426173" fg:w="50"/><text x="97.5154%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (49 samples, 0.01%)</title><rect x="97.2768%" y="1637" width="0.0112%" height="15" fill="rgb(226,80,48)" fg:x="426223" fg:w="49"/><text x="97.5268%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (49 samples, 0.01%)</title><rect x="97.2768%" y="1621" width="0.0112%" height="15" fill="rgb(238,224,15)" fg:x="426223" fg:w="49"/><text x="97.5268%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (49 samples, 0.01%)</title><rect x="97.2768%" y="1605" width="0.0112%" height="15" fill="rgb(241,136,10)" fg:x="426223" fg:w="49"/><text x="97.5268%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (322 samples, 0.07%)</title><rect x="97.2259%" y="1749" width="0.0735%" height="15" fill="rgb(208,32,45)" fg:x="426000" fg:w="322"/><text x="97.4759%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (199 samples, 0.05%)</title><rect x="97.2539%" y="1733" width="0.0454%" height="15" fill="rgb(207,135,9)" fg:x="426123" fg:w="199"/><text x="97.5039%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (199 samples, 0.05%)</title><rect x="97.2539%" y="1717" width="0.0454%" height="15" fill="rgb(206,86,44)" fg:x="426123" fg:w="199"/><text x="97.5039%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (199 samples, 0.05%)</title><rect x="97.2539%" y="1701" width="0.0454%" height="15" fill="rgb(245,177,15)" fg:x="426123" fg:w="199"/><text x="97.5039%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (99 samples, 0.02%)</title><rect x="97.2768%" y="1685" width="0.0226%" height="15" fill="rgb(206,64,50)" fg:x="426223" fg:w="99"/><text x="97.5268%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (99 samples, 0.02%)</title><rect x="97.2768%" y="1669" width="0.0226%" height="15" fill="rgb(234,36,40)" fg:x="426223" fg:w="99"/><text x="97.5268%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (99 samples, 0.02%)</title><rect x="97.2768%" y="1653" width="0.0226%" height="15" fill="rgb(213,64,8)" fg:x="426223" fg:w="99"/><text x="97.5268%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (50 samples, 0.01%)</title><rect x="97.2879%" y="1637" width="0.0114%" height="15" fill="rgb(210,75,36)" fg:x="426272" fg:w="50"/><text x="97.5379%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (50 samples, 0.01%)</title><rect x="97.2879%" y="1621" width="0.0114%" height="15" fill="rgb(229,88,21)" fg:x="426272" fg:w="50"/><text x="97.5379%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (50 samples, 0.01%)</title><rect x="97.2879%" y="1605" width="0.0114%" height="15" fill="rgb(252,204,47)" fg:x="426272" fg:w="50"/><text x="97.5379%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (332 samples, 0.08%)</title><rect x="97.2238%" y="1797" width="0.0758%" height="15" fill="rgb(208,77,27)" fg:x="425991" fg:w="332"/><text x="97.4738%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (323 samples, 0.07%)</title><rect x="97.2259%" y="1781" width="0.0737%" height="15" fill="rgb(221,76,26)" fg:x="426000" fg:w="323"/><text x="97.4759%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (323 samples, 0.07%)</title><rect x="97.2259%" y="1765" width="0.0737%" height="15" fill="rgb(225,139,18)" fg:x="426000" fg:w="323"/><text x="97.4759%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (335 samples, 0.08%)</title><rect x="97.2234%" y="1845" width="0.0765%" height="15" fill="rgb(230,137,11)" fg:x="425989" fg:w="335"/><text x="97.4734%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (334 samples, 0.08%)</title><rect x="97.2236%" y="1829" width="0.0762%" height="15" fill="rgb(212,28,1)" fg:x="425990" fg:w="334"/><text x="97.4736%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (334 samples, 0.08%)</title><rect x="97.2236%" y="1813" width="0.0762%" height="15" fill="rgb(248,164,17)" fg:x="425990" fg:w="334"/><text x="97.4736%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (53 samples, 0.01%)</title><rect x="97.3003%" y="1701" width="0.0121%" height="15" fill="rgb(222,171,42)" fg:x="426326" fg:w="53"/><text x="97.5503%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (53 samples, 0.01%)</title><rect x="97.3003%" y="1685" width="0.0121%" height="15" fill="rgb(243,84,45)" fg:x="426326" fg:w="53"/><text x="97.5503%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (53 samples, 0.01%)</title><rect x="97.3003%" y="1669" width="0.0121%" height="15" fill="rgb(252,49,23)" fg:x="426326" fg:w="53"/><text x="97.5503%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (105 samples, 0.02%)</title><rect x="97.3003%" y="1749" width="0.0240%" height="15" fill="rgb(215,19,7)" fg:x="426326" fg:w="105"/><text x="97.5503%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (105 samples, 0.02%)</title><rect x="97.3003%" y="1733" width="0.0240%" height="15" fill="rgb(238,81,41)" fg:x="426326" fg:w="105"/><text x="97.5503%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (105 samples, 0.02%)</title><rect x="97.3003%" y="1717" width="0.0240%" height="15" fill="rgb(210,199,37)" fg:x="426326" fg:w="105"/><text x="97.5503%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (52 samples, 0.01%)</title><rect x="97.3124%" y="1701" width="0.0119%" height="15" fill="rgb(244,192,49)" fg:x="426379" fg:w="52"/><text x="97.5624%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="97.3124%" y="1685" width="0.0119%" height="15" fill="rgb(226,211,11)" fg:x="426379" fg:w="52"/><text x="97.5624%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="97.3124%" y="1669" width="0.0119%" height="15" fill="rgb(236,162,54)" fg:x="426379" fg:w="52"/><text x="97.5624%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (60 samples, 0.01%)</title><rect x="97.3242%" y="1413" width="0.0137%" height="15" fill="rgb(220,229,9)" fg:x="426431" fg:w="60"/><text x="97.5742%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (60 samples, 0.01%)</title><rect x="97.3242%" y="1397" width="0.0137%" height="15" fill="rgb(250,87,22)" fg:x="426431" fg:w="60"/><text x="97.5742%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (60 samples, 0.01%)</title><rect x="97.3242%" y="1381" width="0.0137%" height="15" fill="rgb(239,43,17)" fg:x="426431" fg:w="60"/><text x="97.5742%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (60 samples, 0.01%)</title><rect x="97.3242%" y="1365" width="0.0137%" height="15" fill="rgb(231,177,25)" fg:x="426431" fg:w="60"/><text x="97.5742%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (126 samples, 0.03%)</title><rect x="97.3242%" y="1477" width="0.0288%" height="15" fill="rgb(219,179,1)" fg:x="426431" fg:w="126"/><text x="97.5742%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (126 samples, 0.03%)</title><rect x="97.3242%" y="1461" width="0.0288%" height="15" fill="rgb(238,219,53)" fg:x="426431" fg:w="126"/><text x="97.5742%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (126 samples, 0.03%)</title><rect x="97.3242%" y="1445" width="0.0288%" height="15" fill="rgb(232,167,36)" fg:x="426431" fg:w="126"/><text x="97.5742%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (126 samples, 0.03%)</title><rect x="97.3242%" y="1429" width="0.0288%" height="15" fill="rgb(244,19,51)" fg:x="426431" fg:w="126"/><text x="97.5742%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (66 samples, 0.02%)</title><rect x="97.3379%" y="1413" width="0.0151%" height="15" fill="rgb(224,6,22)" fg:x="426491" fg:w="66"/><text x="97.5879%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (66 samples, 0.02%)</title><rect x="97.3379%" y="1397" width="0.0151%" height="15" fill="rgb(224,145,5)" fg:x="426491" fg:w="66"/><text x="97.5879%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (66 samples, 0.02%)</title><rect x="97.3379%" y="1381" width="0.0151%" height="15" fill="rgb(234,130,49)" fg:x="426491" fg:w="66"/><text x="97.5879%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (135 samples, 0.03%)</title><rect x="97.3242%" y="1541" width="0.0308%" height="15" fill="rgb(254,6,2)" fg:x="426431" fg:w="135"/><text x="97.5742%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (135 samples, 0.03%)</title><rect x="97.3242%" y="1525" width="0.0308%" height="15" fill="rgb(208,96,46)" fg:x="426431" fg:w="135"/><text x="97.5742%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (135 samples, 0.03%)</title><rect x="97.3242%" y="1509" width="0.0308%" height="15" fill="rgb(239,3,39)" fg:x="426431" fg:w="135"/><text x="97.5742%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (135 samples, 0.03%)</title><rect x="97.3242%" y="1493" width="0.0308%" height="15" fill="rgb(233,210,1)" fg:x="426431" fg:w="135"/><text x="97.5742%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (143 samples, 0.03%)</title><rect x="97.3242%" y="1637" width="0.0326%" height="15" fill="rgb(244,137,37)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (143 samples, 0.03%)</title><rect x="97.3242%" y="1621" width="0.0326%" height="15" fill="rgb(240,136,2)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (143 samples, 0.03%)</title><rect x="97.3242%" y="1605" width="0.0326%" height="15" fill="rgb(239,18,37)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (143 samples, 0.03%)</title><rect x="97.3242%" y="1589" width="0.0326%" height="15" fill="rgb(218,185,22)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (143 samples, 0.03%)</title><rect x="97.3242%" y="1573" width="0.0326%" height="15" fill="rgb(225,218,4)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (143 samples, 0.03%)</title><rect x="97.3242%" y="1557" width="0.0326%" height="15" fill="rgb(230,182,32)" fg:x="426431" fg:w="143"/><text x="97.5742%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (175 samples, 0.04%)</title><rect x="97.3242%" y="1749" width="0.0399%" height="15" fill="rgb(242,56,43)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (175 samples, 0.04%)</title><rect x="97.3242%" y="1733" width="0.0399%" height="15" fill="rgb(233,99,24)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (175 samples, 0.04%)</title><rect x="97.3242%" y="1717" width="0.0399%" height="15" fill="rgb(234,209,42)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (175 samples, 0.04%)</title><rect x="97.3242%" y="1701" width="0.0399%" height="15" fill="rgb(227,7,12)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (175 samples, 0.04%)</title><rect x="97.3242%" y="1685" width="0.0399%" height="15" fill="rgb(245,203,43)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (175 samples, 0.04%)</title><rect x="97.3242%" y="1669" width="0.0399%" height="15" fill="rgb(238,205,33)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (175 samples, 0.04%)</title><rect x="97.3242%" y="1653" width="0.0399%" height="15" fill="rgb(231,56,7)" fg:x="426431" fg:w="175"/><text x="97.5742%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (58 samples, 0.01%)</title><rect x="97.3642%" y="1701" width="0.0132%" height="15" fill="rgb(244,186,29)" fg:x="426606" fg:w="58"/><text x="97.6142%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (58 samples, 0.01%)</title><rect x="97.3642%" y="1685" width="0.0132%" height="15" fill="rgb(234,111,31)" fg:x="426606" fg:w="58"/><text x="97.6142%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (58 samples, 0.01%)</title><rect x="97.3642%" y="1669" width="0.0132%" height="15" fill="rgb(241,149,10)" fg:x="426606" fg:w="58"/><text x="97.6142%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (393 samples, 0.09%)</title><rect x="97.3003%" y="1797" width="0.0897%" height="15" fill="rgb(249,206,44)" fg:x="426326" fg:w="393"/><text x="97.5503%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (393 samples, 0.09%)</title><rect x="97.3003%" y="1781" width="0.0897%" height="15" fill="rgb(251,153,30)" fg:x="426326" fg:w="393"/><text x="97.5503%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (393 samples, 0.09%)</title><rect x="97.3003%" y="1765" width="0.0897%" height="15" fill="rgb(239,152,38)" fg:x="426326" fg:w="393"/><text x="97.5503%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (113 samples, 0.03%)</title><rect x="97.3642%" y="1749" width="0.0258%" height="15" fill="rgb(249,139,47)" fg:x="426606" fg:w="113"/><text x="97.6142%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (113 samples, 0.03%)</title><rect x="97.3642%" y="1733" width="0.0258%" height="15" fill="rgb(244,64,35)" fg:x="426606" fg:w="113"/><text x="97.6142%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (113 samples, 0.03%)</title><rect x="97.3642%" y="1717" width="0.0258%" height="15" fill="rgb(216,46,15)" fg:x="426606" fg:w="113"/><text x="97.6142%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (55 samples, 0.01%)</title><rect x="97.3774%" y="1701" width="0.0126%" height="15" fill="rgb(250,74,19)" fg:x="426664" fg:w="55"/><text x="97.6274%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (55 samples, 0.01%)</title><rect x="97.3774%" y="1685" width="0.0126%" height="15" fill="rgb(249,42,33)" fg:x="426664" fg:w="55"/><text x="97.6274%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (55 samples, 0.01%)</title><rect x="97.3774%" y="1669" width="0.0126%" height="15" fill="rgb(242,149,17)" fg:x="426664" fg:w="55"/><text x="97.6274%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (66 samples, 0.02%)</title><rect x="97.3964%" y="1685" width="0.0151%" height="15" fill="rgb(244,29,21)" fg:x="426747" fg:w="66"/><text x="97.6464%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (66 samples, 0.02%)</title><rect x="97.3964%" y="1669" width="0.0151%" height="15" fill="rgb(220,130,37)" fg:x="426747" fg:w="66"/><text x="97.6464%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (66 samples, 0.02%)</title><rect x="97.3964%" y="1653" width="0.0151%" height="15" fill="rgb(211,67,2)" fg:x="426747" fg:w="66"/><text x="97.6464%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (140 samples, 0.03%)</title><rect x="97.3902%" y="1749" width="0.0320%" height="15" fill="rgb(235,68,52)" fg:x="426720" fg:w="140"/><text x="97.6402%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (113 samples, 0.03%)</title><rect x="97.3964%" y="1733" width="0.0258%" height="15" fill="rgb(246,142,3)" fg:x="426747" fg:w="113"/><text x="97.6464%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (113 samples, 0.03%)</title><rect x="97.3964%" y="1717" width="0.0258%" height="15" fill="rgb(241,25,7)" fg:x="426747" fg:w="113"/><text x="97.6464%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (113 samples, 0.03%)</title><rect x="97.3964%" y="1701" width="0.0258%" height="15" fill="rgb(242,119,39)" fg:x="426747" fg:w="113"/><text x="97.6464%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (47 samples, 0.01%)</title><rect x="97.4114%" y="1685" width="0.0107%" height="15" fill="rgb(241,98,45)" fg:x="426813" fg:w="47"/><text x="97.6614%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (47 samples, 0.01%)</title><rect x="97.4114%" y="1669" width="0.0107%" height="15" fill="rgb(254,28,30)" fg:x="426813" fg:w="47"/><text x="97.6614%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (47 samples, 0.01%)</title><rect x="97.4114%" y="1653" width="0.0107%" height="15" fill="rgb(241,142,54)" fg:x="426813" fg:w="47"/><text x="97.6614%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (142 samples, 0.03%)</title><rect x="97.3900%" y="1797" width="0.0324%" height="15" fill="rgb(222,85,15)" fg:x="426719" fg:w="142"/><text x="97.6400%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (141 samples, 0.03%)</title><rect x="97.3902%" y="1781" width="0.0322%" height="15" fill="rgb(210,85,47)" fg:x="426720" fg:w="141"/><text x="97.6402%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (141 samples, 0.03%)</title><rect x="97.3902%" y="1765" width="0.0322%" height="15" fill="rgb(224,206,25)" fg:x="426720" fg:w="141"/><text x="97.6402%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (77 samples, 0.02%)</title><rect x="97.4228%" y="1653" width="0.0176%" height="15" fill="rgb(243,201,19)" fg:x="426863" fg:w="77"/><text x="97.6728%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (77 samples, 0.02%)</title><rect x="97.4228%" y="1637" width="0.0176%" height="15" fill="rgb(236,59,4)" fg:x="426863" fg:w="77"/><text x="97.6728%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (77 samples, 0.02%)</title><rect x="97.4228%" y="1621" width="0.0176%" height="15" fill="rgb(254,179,45)" fg:x="426863" fg:w="77"/><text x="97.6728%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (153 samples, 0.03%)</title><rect x="97.4228%" y="1701" width="0.0349%" height="15" fill="rgb(226,14,10)" fg:x="426863" fg:w="153"/><text x="97.6728%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (153 samples, 0.03%)</title><rect x="97.4228%" y="1685" width="0.0349%" height="15" fill="rgb(244,27,41)" fg:x="426863" fg:w="153"/><text x="97.6728%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (153 samples, 0.03%)</title><rect x="97.4228%" y="1669" width="0.0349%" height="15" fill="rgb(235,35,32)" fg:x="426863" fg:w="153"/><text x="97.6728%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (76 samples, 0.02%)</title><rect x="97.4404%" y="1653" width="0.0173%" height="15" fill="rgb(218,68,31)" fg:x="426940" fg:w="76"/><text x="97.6904%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (76 samples, 0.02%)</title><rect x="97.4404%" y="1637" width="0.0173%" height="15" fill="rgb(207,120,37)" fg:x="426940" fg:w="76"/><text x="97.6904%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (76 samples, 0.02%)</title><rect x="97.4404%" y="1621" width="0.0173%" height="15" fill="rgb(227,98,0)" fg:x="426940" fg:w="76"/><text x="97.6904%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (73 samples, 0.02%)</title><rect x="97.4577%" y="1653" width="0.0167%" height="15" fill="rgb(207,7,3)" fg:x="427016" fg:w="73"/><text x="97.7077%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (73 samples, 0.02%)</title><rect x="97.4577%" y="1637" width="0.0167%" height="15" fill="rgb(206,98,19)" fg:x="427016" fg:w="73"/><text x="97.7077%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (73 samples, 0.02%)</title><rect x="97.4577%" y="1621" width="0.0167%" height="15" fill="rgb(217,5,26)" fg:x="427016" fg:w="73"/><text x="97.7077%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (302 samples, 0.07%)</title><rect x="97.4226%" y="1749" width="0.0689%" height="15" fill="rgb(235,190,38)" fg:x="426862" fg:w="302"/><text x="97.6726%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (302 samples, 0.07%)</title><rect x="97.4226%" y="1733" width="0.0689%" height="15" fill="rgb(247,86,24)" fg:x="426862" fg:w="302"/><text x="97.6726%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (301 samples, 0.07%)</title><rect x="97.4228%" y="1717" width="0.0687%" height="15" fill="rgb(205,101,16)" fg:x="426863" fg:w="301"/><text x="97.6728%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (148 samples, 0.03%)</title><rect x="97.4577%" y="1701" width="0.0338%" height="15" fill="rgb(246,168,33)" fg:x="427016" fg:w="148"/><text x="97.7077%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (148 samples, 0.03%)</title><rect x="97.4577%" y="1685" width="0.0338%" height="15" fill="rgb(231,114,1)" fg:x="427016" fg:w="148"/><text x="97.7077%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (148 samples, 0.03%)</title><rect x="97.4577%" y="1669" width="0.0338%" height="15" fill="rgb(207,184,53)" fg:x="427016" fg:w="148"/><text x="97.7077%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (75 samples, 0.02%)</title><rect x="97.4744%" y="1653" width="0.0171%" height="15" fill="rgb(224,95,51)" fg:x="427089" fg:w="75"/><text x="97.7244%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (75 samples, 0.02%)</title><rect x="97.4744%" y="1637" width="0.0171%" height="15" fill="rgb(212,188,45)" fg:x="427089" fg:w="75"/><text x="97.7244%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (75 samples, 0.02%)</title><rect x="97.4744%" y="1621" width="0.0171%" height="15" fill="rgb(223,154,38)" fg:x="427089" fg:w="75"/><text x="97.7244%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (77 samples, 0.02%)</title><rect x="97.4915%" y="1653" width="0.0176%" height="15" fill="rgb(251,22,52)" fg:x="427164" fg:w="77"/><text x="97.7415%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (77 samples, 0.02%)</title><rect x="97.4915%" y="1637" width="0.0176%" height="15" fill="rgb(229,209,22)" fg:x="427164" fg:w="77"/><text x="97.7415%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (77 samples, 0.02%)</title><rect x="97.4915%" y="1621" width="0.0176%" height="15" fill="rgb(234,138,34)" fg:x="427164" fg:w="77"/><text x="97.7415%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (153 samples, 0.03%)</title><rect x="97.4915%" y="1701" width="0.0349%" height="15" fill="rgb(212,95,11)" fg:x="427164" fg:w="153"/><text x="97.7415%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (153 samples, 0.03%)</title><rect x="97.4915%" y="1685" width="0.0349%" height="15" fill="rgb(240,179,47)" fg:x="427164" fg:w="153"/><text x="97.7415%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (153 samples, 0.03%)</title><rect x="97.4915%" y="1669" width="0.0349%" height="15" fill="rgb(240,163,11)" fg:x="427164" fg:w="153"/><text x="97.7415%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (76 samples, 0.02%)</title><rect x="97.5091%" y="1653" width="0.0173%" height="15" fill="rgb(236,37,12)" fg:x="427241" fg:w="76"/><text x="97.7591%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (76 samples, 0.02%)</title><rect x="97.5091%" y="1637" width="0.0173%" height="15" fill="rgb(232,164,16)" fg:x="427241" fg:w="76"/><text x="97.7591%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (76 samples, 0.02%)</title><rect x="97.5091%" y="1621" width="0.0173%" height="15" fill="rgb(244,205,15)" fg:x="427241" fg:w="76"/><text x="97.7591%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (82 samples, 0.02%)</title><rect x="97.5267%" y="1653" width="0.0187%" height="15" fill="rgb(223,117,47)" fg:x="427318" fg:w="82"/><text x="97.7767%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (82 samples, 0.02%)</title><rect x="97.5267%" y="1637" width="0.0187%" height="15" fill="rgb(244,107,35)" fg:x="427318" fg:w="82"/><text x="97.7767%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (82 samples, 0.02%)</title><rect x="97.5267%" y="1621" width="0.0187%" height="15" fill="rgb(205,140,8)" fg:x="427318" fg:w="82"/><text x="97.7767%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (83 samples, 0.02%)</title><rect x="97.5454%" y="1621" width="0.0189%" height="15" fill="rgb(228,84,46)" fg:x="427400" fg:w="83"/><text x="97.7954%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (320 samples, 0.07%)</title><rect x="97.4915%" y="1717" width="0.0730%" height="15" fill="rgb(254,188,9)" fg:x="427164" fg:w="320"/><text x="97.7415%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (166 samples, 0.04%)</title><rect x="97.5267%" y="1701" width="0.0379%" height="15" fill="rgb(206,112,54)" fg:x="427318" fg:w="166"/><text x="97.7767%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (166 samples, 0.04%)</title><rect x="97.5267%" y="1685" width="0.0379%" height="15" fill="rgb(216,84,49)" fg:x="427318" fg:w="166"/><text x="97.7767%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (166 samples, 0.04%)</title><rect x="97.5267%" y="1669" width="0.0379%" height="15" fill="rgb(214,194,35)" fg:x="427318" fg:w="166"/><text x="97.7767%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (84 samples, 0.02%)</title><rect x="97.5454%" y="1653" width="0.0192%" height="15" fill="rgb(249,28,3)" fg:x="427400" fg:w="84"/><text x="97.7954%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (84 samples, 0.02%)</title><rect x="97.5454%" y="1637" width="0.0192%" height="15" fill="rgb(222,56,52)" fg:x="427400" fg:w="84"/><text x="97.7954%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (623 samples, 0.14%)</title><rect x="97.4226%" y="1765" width="0.1422%" height="15" fill="rgb(245,217,50)" fg:x="426862" fg:w="623"/><text x="97.6726%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (321 samples, 0.07%)</title><rect x="97.4915%" y="1749" width="0.0733%" height="15" fill="rgb(213,201,24)" fg:x="427164" fg:w="321"/><text x="97.7415%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (321 samples, 0.07%)</title><rect x="97.4915%" y="1733" width="0.0733%" height="15" fill="rgb(248,116,28)" fg:x="427164" fg:w="321"/><text x="97.7415%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (1,161 samples, 0.26%)</title><rect x="97.3003%" y="1813" width="0.2650%" height="15" fill="rgb(219,72,43)" fg:x="426326" fg:w="1161"/><text x="97.5503%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (626 samples, 0.14%)</title><rect x="97.4224%" y="1797" width="0.1429%" height="15" fill="rgb(209,138,14)" fg:x="426861" fg:w="626"/><text x="97.6724%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (626 samples, 0.14%)</title><rect x="97.4224%" y="1781" width="0.1429%" height="15" fill="rgb(222,18,33)" fg:x="426861" fg:w="626"/><text x="97.6724%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (1,862 samples, 0.42%)</title><rect x="97.1405%" y="1861" width="0.4250%" height="15" fill="rgb(213,199,7)" fg:x="425626" fg:w="1862"/><text x="97.3905%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (1,164 samples, 0.27%)</title><rect x="97.2998%" y="1845" width="0.2657%" height="15" fill="rgb(250,110,10)" fg:x="426324" fg:w="1164"/><text x="97.5498%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (1,164 samples, 0.27%)</title><rect x="97.2998%" y="1829" width="0.2657%" height="15" fill="rgb(248,123,6)" fg:x="426324" fg:w="1164"/><text x="97.5498%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (1,865 samples, 0.43%)</title><rect x="97.1401%" y="1893" width="0.4256%" height="15" fill="rgb(206,91,31)" fg:x="425624" fg:w="1865"/><text x="97.3901%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (1,865 samples, 0.43%)</title><rect x="97.1401%" y="1877" width="0.4256%" height="15" fill="rgb(211,154,13)" fg:x="425624" fg:w="1865"/><text x="97.3901%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h41fca737885e3443E (72 samples, 0.02%)</title><rect x="97.5828%" y="1829" width="0.0164%" height="15" fill="rgb(225,148,7)" fg:x="427564" fg:w="72"/><text x="97.8328%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h41fca737885e3443E (143 samples, 0.03%)</title><rect x="97.5694%" y="1861" width="0.0326%" height="15" fill="rgb(220,160,43)" fg:x="427505" fg:w="143"/><text x="97.8194%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (92 samples, 0.02%)</title><rect x="97.5810%" y="1845" width="0.0210%" height="15" fill="rgb(213,52,39)" fg:x="427556" fg:w="92"/><text x="97.8310%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h4e48c89854c4261dE.llvm.15725695388440039465 (172 samples, 0.04%)</title><rect x="97.5657%" y="1893" width="0.0393%" height="15" fill="rgb(243,137,7)" fg:x="427489" fg:w="172"/><text x="97.8157%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (171 samples, 0.04%)</title><rect x="97.5659%" y="1877" width="0.0390%" height="15" fill="rgb(230,79,13)" fg:x="427490" fg:w="171"/><text x="97.8159%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (75 samples, 0.02%)</title><rect x="97.6054%" y="1477" width="0.0171%" height="15" fill="rgb(247,105,23)" fg:x="427663" fg:w="75"/><text x="97.8554%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (75 samples, 0.02%)</title><rect x="97.6054%" y="1461" width="0.0171%" height="15" fill="rgb(223,179,41)" fg:x="427663" fg:w="75"/><text x="97.8554%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (75 samples, 0.02%)</title><rect x="97.6054%" y="1445" width="0.0171%" height="15" fill="rgb(218,9,34)" fg:x="427663" fg:w="75"/><text x="97.8554%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="97.6123%" y="1429" width="0.0103%" height="15" fill="rgb(222,106,8)" fg:x="427693" fg:w="45"/><text x="97.8623%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (45 samples, 0.01%)</title><rect x="97.6123%" y="1413" width="0.0103%" height="15" fill="rgb(211,220,0)" fg:x="427693" fg:w="45"/><text x="97.8623%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (107 samples, 0.02%)</title><rect x="97.6052%" y="1557" width="0.0244%" height="15" fill="rgb(229,52,16)" fg:x="427662" fg:w="107"/><text x="97.8552%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (106 samples, 0.02%)</title><rect x="97.6054%" y="1541" width="0.0242%" height="15" fill="rgb(212,155,18)" fg:x="427663" fg:w="106"/><text x="97.8554%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (106 samples, 0.02%)</title><rect x="97.6054%" y="1525" width="0.0242%" height="15" fill="rgb(242,21,14)" fg:x="427663" fg:w="106"/><text x="97.8554%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (106 samples, 0.02%)</title><rect x="97.6054%" y="1509" width="0.0242%" height="15" fill="rgb(222,19,48)" fg:x="427663" fg:w="106"/><text x="97.8554%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (106 samples, 0.02%)</title><rect x="97.6054%" y="1493" width="0.0242%" height="15" fill="rgb(232,45,27)" fg:x="427663" fg:w="106"/><text x="97.8554%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (141 samples, 0.03%)</title><rect x="97.6050%" y="1717" width="0.0322%" height="15" fill="rgb(249,103,42)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (141 samples, 0.03%)</title><rect x="97.6050%" y="1701" width="0.0322%" height="15" fill="rgb(246,81,33)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (141 samples, 0.03%)</title><rect x="97.6050%" y="1685" width="0.0322%" height="15" fill="rgb(252,33,42)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (141 samples, 0.03%)</title><rect x="97.6050%" y="1669" width="0.0322%" height="15" fill="rgb(209,212,41)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (141 samples, 0.03%)</title><rect x="97.6050%" y="1653" width="0.0322%" height="15" fill="rgb(207,154,6)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (141 samples, 0.03%)</title><rect x="97.6050%" y="1637" width="0.0322%" height="15" fill="rgb(223,64,47)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (141 samples, 0.03%)</title><rect x="97.6050%" y="1621" width="0.0322%" height="15" fill="rgb(211,161,38)" fg:x="427661" fg:w="141"/><text x="97.8550%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (140 samples, 0.03%)</title><rect x="97.6052%" y="1605" width="0.0320%" height="15" fill="rgb(219,138,40)" fg:x="427662" fg:w="140"/><text x="97.8552%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (140 samples, 0.03%)</title><rect x="97.6052%" y="1589" width="0.0320%" height="15" fill="rgb(241,228,46)" fg:x="427662" fg:w="140"/><text x="97.8552%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (140 samples, 0.03%)</title><rect x="97.6052%" y="1573" width="0.0320%" height="15" fill="rgb(223,209,38)" fg:x="427662" fg:w="140"/><text x="97.8552%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (142 samples, 0.03%)</title><rect x="97.6050%" y="1765" width="0.0324%" height="15" fill="rgb(236,164,45)" fg:x="427661" fg:w="142"/><text x="97.8550%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (142 samples, 0.03%)</title><rect x="97.6050%" y="1749" width="0.0324%" height="15" fill="rgb(231,15,5)" fg:x="427661" fg:w="142"/><text x="97.8550%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (142 samples, 0.03%)</title><rect x="97.6050%" y="1733" width="0.0324%" height="15" fill="rgb(252,35,15)" fg:x="427661" fg:w="142"/><text x="97.8550%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (143 samples, 0.03%)</title><rect x="97.6050%" y="1813" width="0.0326%" height="15" fill="rgb(248,181,18)" fg:x="427661" fg:w="143"/><text x="97.8550%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (143 samples, 0.03%)</title><rect x="97.6050%" y="1797" width="0.0326%" height="15" fill="rgb(233,39,42)" fg:x="427661" fg:w="143"/><text x="97.8550%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (143 samples, 0.03%)</title><rect x="97.6050%" y="1781" width="0.0326%" height="15" fill="rgb(238,110,33)" fg:x="427661" fg:w="143"/><text x="97.8550%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h9b1b8dbe16bb67a7E.llvm.4035488946159976951 (145 samples, 0.03%)</title><rect x="97.6050%" y="1893" width="0.0331%" height="15" fill="rgb(233,195,10)" fg:x="427661" fg:w="145"/><text x="97.8550%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h27f97fbe1f349ffeE (145 samples, 0.03%)</title><rect x="97.6050%" y="1877" width="0.0331%" height="15" fill="rgb(254,105,3)" fg:x="427661" fg:w="145"/><text x="97.8550%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17h10fa78565fd769c2E (145 samples, 0.03%)</title><rect x="97.6050%" y="1861" width="0.0331%" height="15" fill="rgb(221,225,9)" fg:x="427661" fg:w="145"/><text x="97.8550%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (145 samples, 0.03%)</title><rect x="97.6050%" y="1845" width="0.0331%" height="15" fill="rgb(224,227,45)" fg:x="427661" fg:w="145"/><text x="97.8550%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (145 samples, 0.03%)</title><rect x="97.6050%" y="1829" width="0.0331%" height="15" fill="rgb(229,198,43)" fg:x="427661" fg:w="145"/><text x="97.8550%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (48 samples, 0.01%)</title><rect x="97.6456%" y="1749" width="0.0110%" height="15" fill="rgb(206,209,35)" fg:x="427839" fg:w="48"/><text x="97.8956%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (46 samples, 0.01%)</title><rect x="97.6460%" y="1733" width="0.0105%" height="15" fill="rgb(245,195,53)" fg:x="427841" fg:w="46"/><text x="97.8960%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (46 samples, 0.01%)</title><rect x="97.6460%" y="1717" width="0.0105%" height="15" fill="rgb(240,92,26)" fg:x="427841" fg:w="46"/><text x="97.8960%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (46 samples, 0.01%)</title><rect x="97.6460%" y="1701" width="0.0105%" height="15" fill="rgb(207,40,23)" fg:x="427841" fg:w="46"/><text x="97.8960%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="97.6460%" y="1685" width="0.0105%" height="15" fill="rgb(223,111,35)" fg:x="427841" fg:w="46"/><text x="97.8960%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (92 samples, 0.02%)</title><rect x="97.6565%" y="1621" width="0.0210%" height="15" fill="rgb(229,147,28)" fg:x="427887" fg:w="92"/><text x="97.9065%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (53 samples, 0.01%)</title><rect x="97.6654%" y="1605" width="0.0121%" height="15" fill="rgb(211,29,28)" fg:x="427926" fg:w="53"/><text x="97.9154%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (120 samples, 0.03%)</title><rect x="97.6565%" y="1653" width="0.0274%" height="15" fill="rgb(228,72,33)" fg:x="427887" fg:w="120"/><text x="97.9065%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (120 samples, 0.03%)</title><rect x="97.6565%" y="1637" width="0.0274%" height="15" fill="rgb(205,214,31)" fg:x="427887" fg:w="120"/><text x="97.9065%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (110 samples, 0.03%)</title><rect x="97.6839%" y="1637" width="0.0251%" height="15" fill="rgb(224,111,15)" fg:x="428007" fg:w="110"/><text x="97.9339%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (69 samples, 0.02%)</title><rect x="97.6933%" y="1621" width="0.0157%" height="15" fill="rgb(253,21,26)" fg:x="428048" fg:w="69"/><text x="97.9433%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (69 samples, 0.02%)</title><rect x="97.6933%" y="1605" width="0.0157%" height="15" fill="rgb(245,139,43)" fg:x="428048" fg:w="69"/><text x="97.9433%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (260 samples, 0.06%)</title><rect x="97.6565%" y="1669" width="0.0593%" height="15" fill="rgb(252,170,7)" fg:x="427887" fg:w="260"/><text x="97.9065%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (140 samples, 0.03%)</title><rect x="97.6839%" y="1653" width="0.0320%" height="15" fill="rgb(231,118,14)" fg:x="428007" fg:w="140"/><text x="97.9339%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (287 samples, 0.07%)</title><rect x="97.6565%" y="1701" width="0.0655%" height="15" fill="rgb(238,83,0)" fg:x="427887" fg:w="287"/><text x="97.9065%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (287 samples, 0.07%)</title><rect x="97.6565%" y="1685" width="0.0655%" height="15" fill="rgb(221,39,39)" fg:x="427887" fg:w="287"/><text x="97.9065%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (59 samples, 0.01%)</title><rect x="97.7223%" y="1669" width="0.0135%" height="15" fill="rgb(222,119,46)" fg:x="428175" fg:w="59"/><text x="97.9723%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (59 samples, 0.01%)</title><rect x="97.7223%" y="1653" width="0.0135%" height="15" fill="rgb(222,165,49)" fg:x="428175" fg:w="59"/><text x="97.9723%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (59 samples, 0.01%)</title><rect x="97.7223%" y="1637" width="0.0135%" height="15" fill="rgb(219,113,52)" fg:x="428175" fg:w="59"/><text x="97.9723%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (59 samples, 0.01%)</title><rect x="97.7223%" y="1621" width="0.0135%" height="15" fill="rgb(214,7,15)" fg:x="428175" fg:w="59"/><text x="97.9723%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (59 samples, 0.01%)</title><rect x="97.7223%" y="1605" width="0.0135%" height="15" fill="rgb(235,32,4)" fg:x="428175" fg:w="59"/><text x="97.9723%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="97.7257%" y="1589" width="0.0100%" height="15" fill="rgb(238,90,54)" fg:x="428190" fg:w="44"/><text x="97.9757%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="97.7257%" y="1573" width="0.0100%" height="15" fill="rgb(213,208,19)" fg:x="428190" fg:w="44"/><text x="97.9757%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (95 samples, 0.02%)</title><rect x="97.7357%" y="1637" width="0.0217%" height="15" fill="rgb(233,156,4)" fg:x="428234" fg:w="95"/><text x="97.9857%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (55 samples, 0.01%)</title><rect x="97.7449%" y="1621" width="0.0126%" height="15" fill="rgb(207,194,5)" fg:x="428274" fg:w="55"/><text x="97.9949%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (125 samples, 0.03%)</title><rect x="97.7357%" y="1669" width="0.0285%" height="15" fill="rgb(206,111,30)" fg:x="428234" fg:w="125"/><text x="97.9857%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (125 samples, 0.03%)</title><rect x="97.7357%" y="1653" width="0.0285%" height="15" fill="rgb(243,70,54)" fg:x="428234" fg:w="125"/><text x="97.9857%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (254 samples, 0.06%)</title><rect x="97.7223%" y="1685" width="0.0580%" height="15" fill="rgb(242,28,8)" fg:x="428175" fg:w="254"/><text x="97.9723%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (70 samples, 0.02%)</title><rect x="97.7643%" y="1669" width="0.0160%" height="15" fill="rgb(219,106,18)" fg:x="428359" fg:w="70"/><text x="98.0143%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (70 samples, 0.02%)</title><rect x="97.7643%" y="1653" width="0.0160%" height="15" fill="rgb(244,222,10)" fg:x="428359" fg:w="70"/><text x="98.0143%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (569 samples, 0.13%)</title><rect x="97.6565%" y="1717" width="0.1299%" height="15" fill="rgb(236,179,52)" fg:x="427887" fg:w="569"/><text x="97.9065%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (282 samples, 0.06%)</title><rect x="97.7220%" y="1701" width="0.0644%" height="15" fill="rgb(213,23,39)" fg:x="428174" fg:w="282"/><text x="97.9720%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (70 samples, 0.02%)</title><rect x="97.7864%" y="1717" width="0.0160%" height="15" fill="rgb(238,48,10)" fg:x="428456" fg:w="70"/><text x="98.0364%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (70 samples, 0.02%)</title><rect x="97.7864%" y="1701" width="0.0160%" height="15" fill="rgb(251,196,23)" fg:x="428456" fg:w="70"/><text x="98.0364%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (59 samples, 0.01%)</title><rect x="97.7889%" y="1685" width="0.0135%" height="15" fill="rgb(250,152,24)" fg:x="428467" fg:w="59"/><text x="98.0389%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (53 samples, 0.01%)</title><rect x="97.7903%" y="1669" width="0.0121%" height="15" fill="rgb(209,150,17)" fg:x="428473" fg:w="53"/><text x="98.0403%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (47 samples, 0.01%)</title><rect x="97.7916%" y="1653" width="0.0107%" height="15" fill="rgb(234,202,34)" fg:x="428479" fg:w="47"/><text x="98.0416%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (640 samples, 0.15%)</title><rect x="97.6565%" y="1749" width="0.1461%" height="15" fill="rgb(253,148,53)" fg:x="427887" fg:w="640"/><text x="97.9065%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (640 samples, 0.15%)</title><rect x="97.6565%" y="1733" width="0.1461%" height="15" fill="rgb(218,129,16)" fg:x="427887" fg:w="640"/><text x="97.9065%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (71 samples, 0.02%)</title><rect x="97.8026%" y="1685" width="0.0162%" height="15" fill="rgb(216,85,19)" fg:x="428527" fg:w="71"/><text x="98.0526%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (128 samples, 0.03%)</title><rect x="97.8026%" y="1717" width="0.0292%" height="15" fill="rgb(235,228,7)" fg:x="428527" fg:w="128"/><text x="98.0526%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (128 samples, 0.03%)</title><rect x="97.8026%" y="1701" width="0.0292%" height="15" fill="rgb(245,175,0)" fg:x="428527" fg:w="128"/><text x="98.0526%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (57 samples, 0.01%)</title><rect x="97.8188%" y="1685" width="0.0130%" height="15" fill="rgb(208,168,36)" fg:x="428598" fg:w="57"/><text x="98.0688%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (57 samples, 0.01%)</title><rect x="97.8188%" y="1669" width="0.0130%" height="15" fill="rgb(246,171,24)" fg:x="428598" fg:w="57"/><text x="98.0688%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (47 samples, 0.01%)</title><rect x="97.8211%" y="1653" width="0.0107%" height="15" fill="rgb(215,142,24)" fg:x="428608" fg:w="47"/><text x="98.0711%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (57 samples, 0.01%)</title><rect x="97.8318%" y="1701" width="0.0130%" height="15" fill="rgb(250,187,7)" fg:x="428655" fg:w="57"/><text x="98.0818%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (213 samples, 0.05%)</title><rect x="97.8026%" y="1733" width="0.0486%" height="15" fill="rgb(228,66,33)" fg:x="428527" fg:w="213"/><text x="98.0526%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (85 samples, 0.02%)</title><rect x="97.8318%" y="1717" width="0.0194%" height="15" fill="rgb(234,215,21)" fg:x="428655" fg:w="85"/><text x="98.0818%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (931 samples, 0.21%)</title><rect x="97.6456%" y="1765" width="0.2125%" height="15" fill="rgb(222,191,20)" fg:x="427839" fg:w="931"/><text x="97.8956%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (243 samples, 0.06%)</title><rect x="97.8026%" y="1749" width="0.0555%" height="15" fill="rgb(245,79,54)" fg:x="428527" fg:w="243"/><text x="98.0526%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (947 samples, 0.22%)</title><rect x="97.6451%" y="1829" width="0.2161%" height="15" fill="rgb(240,10,37)" fg:x="427837" fg:w="947"/><text x="97.8951%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (945 samples, 0.22%)</title><rect x="97.6456%" y="1813" width="0.2157%" height="15" fill="rgb(214,192,32)" fg:x="427839" fg:w="945"/><text x="97.8956%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (945 samples, 0.22%)</title><rect x="97.6456%" y="1797" width="0.2157%" height="15" fill="rgb(209,36,54)" fg:x="427839" fg:w="945"/><text x="97.8956%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (945 samples, 0.22%)</title><rect x="97.6456%" y="1781" width="0.2157%" height="15" fill="rgb(220,10,11)" fg:x="427839" fg:w="945"/><text x="97.8956%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (67 samples, 0.02%)</title><rect x="97.8649%" y="1605" width="0.0153%" height="15" fill="rgb(221,106,17)" fg:x="428800" fg:w="67"/><text x="98.1149%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (67 samples, 0.02%)</title><rect x="97.8649%" y="1589" width="0.0153%" height="15" fill="rgb(251,142,44)" fg:x="428800" fg:w="67"/><text x="98.1149%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (67 samples, 0.02%)</title><rect x="97.8649%" y="1573" width="0.0153%" height="15" fill="rgb(238,13,15)" fg:x="428800" fg:w="67"/><text x="98.1149%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (134 samples, 0.03%)</title><rect x="97.8649%" y="1621" width="0.0306%" height="15" fill="rgb(208,107,27)" fg:x="428800" fg:w="134"/><text x="98.1149%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (67 samples, 0.02%)</title><rect x="97.8802%" y="1605" width="0.0153%" height="15" fill="rgb(205,136,37)" fg:x="428867" fg:w="67"/><text x="98.1302%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (67 samples, 0.02%)</title><rect x="97.8802%" y="1589" width="0.0153%" height="15" fill="rgb(250,205,27)" fg:x="428867" fg:w="67"/><text x="98.1302%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (149 samples, 0.03%)</title><rect x="97.8649%" y="1653" width="0.0340%" height="15" fill="rgb(210,80,43)" fg:x="428800" fg:w="149"/><text x="98.1149%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (149 samples, 0.03%)</title><rect x="97.8649%" y="1637" width="0.0340%" height="15" fill="rgb(247,160,36)" fg:x="428800" fg:w="149"/><text x="98.1149%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (69 samples, 0.02%)</title><rect x="97.8989%" y="1621" width="0.0157%" height="15" fill="rgb(234,13,49)" fg:x="428949" fg:w="69"/><text x="98.1489%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (69 samples, 0.02%)</title><rect x="97.8989%" y="1605" width="0.0157%" height="15" fill="rgb(234,122,0)" fg:x="428949" fg:w="69"/><text x="98.1489%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (69 samples, 0.02%)</title><rect x="97.8989%" y="1589" width="0.0157%" height="15" fill="rgb(207,146,38)" fg:x="428949" fg:w="69"/><text x="98.1489%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (61 samples, 0.01%)</title><rect x="97.9147%" y="1429" width="0.0139%" height="15" fill="rgb(207,177,25)" fg:x="429018" fg:w="61"/><text x="98.1647%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (61 samples, 0.01%)</title><rect x="97.9147%" y="1413" width="0.0139%" height="15" fill="rgb(211,178,42)" fg:x="429018" fg:w="61"/><text x="98.1647%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (61 samples, 0.01%)</title><rect x="97.9147%" y="1397" width="0.0139%" height="15" fill="rgb(230,69,54)" fg:x="429018" fg:w="61"/><text x="98.1647%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (61 samples, 0.01%)</title><rect x="97.9147%" y="1381" width="0.0139%" height="15" fill="rgb(214,135,41)" fg:x="429018" fg:w="61"/><text x="98.1647%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (44 samples, 0.01%)</title><rect x="97.9286%" y="1429" width="0.0100%" height="15" fill="rgb(237,67,25)" fg:x="429079" fg:w="44"/><text x="98.1786%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="97.9286%" y="1413" width="0.0100%" height="15" fill="rgb(222,189,50)" fg:x="429079" fg:w="44"/><text x="98.1786%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (120 samples, 0.03%)</title><rect x="97.9147%" y="1509" width="0.0274%" height="15" fill="rgb(245,148,34)" fg:x="429018" fg:w="120"/><text x="98.1647%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (120 samples, 0.03%)</title><rect x="97.9147%" y="1493" width="0.0274%" height="15" fill="rgb(222,29,6)" fg:x="429018" fg:w="120"/><text x="98.1647%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (120 samples, 0.03%)</title><rect x="97.9147%" y="1477" width="0.0274%" height="15" fill="rgb(221,189,43)" fg:x="429018" fg:w="120"/><text x="98.1647%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (120 samples, 0.03%)</title><rect x="97.9147%" y="1461" width="0.0274%" height="15" fill="rgb(207,36,27)" fg:x="429018" fg:w="120"/><text x="98.1647%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (120 samples, 0.03%)</title><rect x="97.9147%" y="1445" width="0.0274%" height="15" fill="rgb(217,90,24)" fg:x="429018" fg:w="120"/><text x="98.1647%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (148 samples, 0.03%)</title><rect x="97.9147%" y="1589" width="0.0338%" height="15" fill="rgb(224,66,35)" fg:x="429018" fg:w="148"/><text x="98.1647%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (148 samples, 0.03%)</title><rect x="97.9147%" y="1573" width="0.0338%" height="15" fill="rgb(221,13,50)" fg:x="429018" fg:w="148"/><text x="98.1647%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (148 samples, 0.03%)</title><rect x="97.9147%" y="1557" width="0.0338%" height="15" fill="rgb(236,68,49)" fg:x="429018" fg:w="148"/><text x="98.1647%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (148 samples, 0.03%)</title><rect x="97.9147%" y="1541" width="0.0338%" height="15" fill="rgb(229,146,28)" fg:x="429018" fg:w="148"/><text x="98.1647%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (148 samples, 0.03%)</title><rect x="97.9147%" y="1525" width="0.0338%" height="15" fill="rgb(225,31,38)" fg:x="429018" fg:w="148"/><text x="98.1647%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (245 samples, 0.06%)</title><rect x="97.8989%" y="1637" width="0.0559%" height="15" fill="rgb(250,208,3)" fg:x="428949" fg:w="245"/><text x="98.1489%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (176 samples, 0.04%)</title><rect x="97.9147%" y="1621" width="0.0402%" height="15" fill="rgb(246,54,23)" fg:x="429018" fg:w="176"/><text x="98.1647%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (176 samples, 0.04%)</title><rect x="97.9147%" y="1605" width="0.0402%" height="15" fill="rgb(243,76,11)" fg:x="429018" fg:w="176"/><text x="98.1647%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (408 samples, 0.09%)</title><rect x="97.8649%" y="1669" width="0.0931%" height="15" fill="rgb(245,21,50)" fg:x="428800" fg:w="408"/><text x="98.1149%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (259 samples, 0.06%)</title><rect x="97.8989%" y="1653" width="0.0591%" height="15" fill="rgb(228,9,43)" fg:x="428949" fg:w="259"/><text x="98.1489%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (421 samples, 0.10%)</title><rect x="97.8649%" y="1701" width="0.0961%" height="15" fill="rgb(208,100,47)" fg:x="428800" fg:w="421"/><text x="98.1149%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (421 samples, 0.10%)</title><rect x="97.8649%" y="1685" width="0.0961%" height="15" fill="rgb(232,26,8)" fg:x="428800" fg:w="421"/><text x="98.1149%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (463 samples, 0.11%)</title><rect x="97.8613%" y="1717" width="0.1057%" height="15" fill="rgb(216,166,38)" fg:x="428784" fg:w="463"/><text x="98.1113%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (464 samples, 0.11%)</title><rect x="97.8613%" y="1781" width="0.1059%" height="15" fill="rgb(251,202,51)" fg:x="428784" fg:w="464"/><text x="98.1113%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (464 samples, 0.11%)</title><rect x="97.8613%" y="1765" width="0.1059%" height="15" fill="rgb(254,216,34)" fg:x="428784" fg:w="464"/><text x="98.1113%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (464 samples, 0.11%)</title><rect x="97.8613%" y="1749" width="0.1059%" height="15" fill="rgb(251,32,27)" fg:x="428784" fg:w="464"/><text x="98.1113%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (464 samples, 0.11%)</title><rect x="97.8613%" y="1733" width="0.1059%" height="15" fill="rgb(208,127,28)" fg:x="428784" fg:w="464"/><text x="98.1113%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="97.9672%" y="1621" width="0.0105%" height="15" fill="rgb(224,137,22)" fg:x="429248" fg:w="46"/><text x="98.2172%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (61 samples, 0.01%)</title><rect x="97.9672%" y="1653" width="0.0139%" height="15" fill="rgb(254,70,32)" fg:x="429248" fg:w="61"/><text x="98.2172%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (61 samples, 0.01%)</title><rect x="97.9672%" y="1637" width="0.0139%" height="15" fill="rgb(229,75,37)" fg:x="429248" fg:w="61"/><text x="98.2172%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (88 samples, 0.02%)</title><rect x="97.9672%" y="1733" width="0.0201%" height="15" fill="rgb(252,64,23)" fg:x="429248" fg:w="88"/><text x="98.2172%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (88 samples, 0.02%)</title><rect x="97.9672%" y="1717" width="0.0201%" height="15" fill="rgb(232,162,48)" fg:x="429248" fg:w="88"/><text x="98.2172%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (88 samples, 0.02%)</title><rect x="97.9672%" y="1701" width="0.0201%" height="15" fill="rgb(246,160,12)" fg:x="429248" fg:w="88"/><text x="98.2172%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (88 samples, 0.02%)</title><rect x="97.9672%" y="1685" width="0.0201%" height="15" fill="rgb(247,166,0)" fg:x="429248" fg:w="88"/><text x="98.2172%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (88 samples, 0.02%)</title><rect x="97.9672%" y="1669" width="0.0201%" height="15" fill="rgb(249,219,21)" fg:x="429248" fg:w="88"/><text x="98.2172%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (61 samples, 0.01%)</title><rect x="97.9872%" y="1589" width="0.0139%" height="15" fill="rgb(205,209,3)" fg:x="429336" fg:w="61"/><text x="98.2372%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (61 samples, 0.01%)</title><rect x="97.9872%" y="1573" width="0.0139%" height="15" fill="rgb(243,44,1)" fg:x="429336" fg:w="61"/><text x="98.2372%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (61 samples, 0.01%)</title><rect x="97.9872%" y="1557" width="0.0139%" height="15" fill="rgb(206,159,16)" fg:x="429336" fg:w="61"/><text x="98.2372%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (61 samples, 0.01%)</title><rect x="97.9872%" y="1541" width="0.0139%" height="15" fill="rgb(244,77,30)" fg:x="429336" fg:w="61"/><text x="98.2372%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (46 samples, 0.01%)</title><rect x="97.9907%" y="1525" width="0.0105%" height="15" fill="rgb(218,69,12)" fg:x="429351" fg:w="46"/><text x="98.2407%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (117 samples, 0.03%)</title><rect x="97.9872%" y="1605" width="0.0267%" height="15" fill="rgb(212,87,7)" fg:x="429336" fg:w="117"/><text x="98.2372%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (56 samples, 0.01%)</title><rect x="98.0012%" y="1589" width="0.0128%" height="15" fill="rgb(245,114,25)" fg:x="429397" fg:w="56"/><text x="98.2512%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (56 samples, 0.01%)</title><rect x="98.0012%" y="1573" width="0.0128%" height="15" fill="rgb(210,61,42)" fg:x="429397" fg:w="56"/><text x="98.2512%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (56 samples, 0.01%)</title><rect x="98.0012%" y="1557" width="0.0128%" height="15" fill="rgb(211,52,33)" fg:x="429397" fg:w="56"/><text x="98.2512%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (48 samples, 0.01%)</title><rect x="98.0030%" y="1541" width="0.0110%" height="15" fill="rgb(234,58,33)" fg:x="429405" fg:w="48"/><text x="98.2530%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (46 samples, 0.01%)</title><rect x="98.0034%" y="1525" width="0.0105%" height="15" fill="rgb(220,115,36)" fg:x="429407" fg:w="46"/><text x="98.2534%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (145 samples, 0.03%)</title><rect x="97.9872%" y="1637" width="0.0331%" height="15" fill="rgb(243,153,54)" fg:x="429336" fg:w="145"/><text x="98.2372%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (145 samples, 0.03%)</title><rect x="97.9872%" y="1621" width="0.0331%" height="15" fill="rgb(251,47,18)" fg:x="429336" fg:w="145"/><text x="98.2372%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (57 samples, 0.01%)</title><rect x="98.0203%" y="1557" width="0.0130%" height="15" fill="rgb(242,102,42)" fg:x="429481" fg:w="57"/><text x="98.2703%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (46 samples, 0.01%)</title><rect x="98.0228%" y="1541" width="0.0105%" height="15" fill="rgb(234,31,38)" fg:x="429492" fg:w="46"/><text x="98.2728%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (58 samples, 0.01%)</title><rect x="98.0203%" y="1605" width="0.0132%" height="15" fill="rgb(221,117,51)" fg:x="429481" fg:w="58"/><text x="98.2703%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (58 samples, 0.01%)</title><rect x="98.0203%" y="1589" width="0.0132%" height="15" fill="rgb(212,20,18)" fg:x="429481" fg:w="58"/><text x="98.2703%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (58 samples, 0.01%)</title><rect x="98.0203%" y="1573" width="0.0132%" height="15" fill="rgb(245,133,36)" fg:x="429481" fg:w="58"/><text x="98.2703%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (141 samples, 0.03%)</title><rect x="98.0203%" y="1621" width="0.0322%" height="15" fill="rgb(212,6,19)" fg:x="429481" fg:w="141"/><text x="98.2703%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (83 samples, 0.02%)</title><rect x="98.0336%" y="1605" width="0.0189%" height="15" fill="rgb(218,1,36)" fg:x="429539" fg:w="83"/><text x="98.2836%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (83 samples, 0.02%)</title><rect x="98.0336%" y="1589" width="0.0189%" height="15" fill="rgb(246,84,54)" fg:x="429539" fg:w="83"/><text x="98.2836%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (83 samples, 0.02%)</title><rect x="98.0336%" y="1573" width="0.0189%" height="15" fill="rgb(242,110,6)" fg:x="429539" fg:w="83"/><text x="98.2836%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (69 samples, 0.02%)</title><rect x="98.0368%" y="1557" width="0.0157%" height="15" fill="rgb(214,47,5)" fg:x="429553" fg:w="69"/><text x="98.2868%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (57 samples, 0.01%)</title><rect x="98.0395%" y="1541" width="0.0130%" height="15" fill="rgb(218,159,25)" fg:x="429565" fg:w="57"/><text x="98.2895%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (52 samples, 0.01%)</title><rect x="98.0406%" y="1525" width="0.0119%" height="15" fill="rgb(215,211,28)" fg:x="429570" fg:w="52"/><text x="98.2906%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (299 samples, 0.07%)</title><rect x="97.9872%" y="1653" width="0.0682%" height="15" fill="rgb(238,59,32)" fg:x="429336" fg:w="299"/><text x="98.2372%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (154 samples, 0.04%)</title><rect x="98.0203%" y="1637" width="0.0351%" height="15" fill="rgb(226,82,3)" fg:x="429481" fg:w="154"/><text x="98.2703%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (60 samples, 0.01%)</title><rect x="98.0555%" y="1653" width="0.0137%" height="15" fill="rgb(240,164,32)" fg:x="429635" fg:w="60"/><text x="98.3055%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (60 samples, 0.01%)</title><rect x="98.0555%" y="1637" width="0.0137%" height="15" fill="rgb(232,46,7)" fg:x="429635" fg:w="60"/><text x="98.3055%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (51 samples, 0.01%)</title><rect x="98.0575%" y="1621" width="0.0116%" height="15" fill="rgb(229,129,53)" fg:x="429644" fg:w="51"/><text x="98.3075%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (46 samples, 0.01%)</title><rect x="98.0587%" y="1605" width="0.0105%" height="15" fill="rgb(234,188,29)" fg:x="429649" fg:w="46"/><text x="98.3087%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (44 samples, 0.01%)</title><rect x="98.0591%" y="1589" width="0.0100%" height="15" fill="rgb(246,141,4)" fg:x="429651" fg:w="44"/><text x="98.3091%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (360 samples, 0.08%)</title><rect x="97.9872%" y="1685" width="0.0822%" height="15" fill="rgb(229,23,39)" fg:x="429336" fg:w="360"/><text x="98.2372%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (360 samples, 0.08%)</title><rect x="97.9872%" y="1669" width="0.0822%" height="15" fill="rgb(206,12,3)" fg:x="429336" fg:w="360"/><text x="98.2372%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (55 samples, 0.01%)</title><rect x="98.0694%" y="1605" width="0.0126%" height="15" fill="rgb(252,226,20)" fg:x="429696" fg:w="55"/><text x="98.3194%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (55 samples, 0.01%)</title><rect x="98.0694%" y="1589" width="0.0126%" height="15" fill="rgb(216,123,35)" fg:x="429696" fg:w="55"/><text x="98.3194%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (55 samples, 0.01%)</title><rect x="98.0694%" y="1573" width="0.0126%" height="15" fill="rgb(212,68,40)" fg:x="429696" fg:w="55"/><text x="98.3194%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (55 samples, 0.01%)</title><rect x="98.0694%" y="1557" width="0.0126%" height="15" fill="rgb(254,125,32)" fg:x="429696" fg:w="55"/><text x="98.3194%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (48 samples, 0.01%)</title><rect x="98.0710%" y="1541" width="0.0110%" height="15" fill="rgb(253,97,22)" fg:x="429703" fg:w="48"/><text x="98.3210%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (46 samples, 0.01%)</title><rect x="98.0715%" y="1525" width="0.0105%" height="15" fill="rgb(241,101,14)" fg:x="429705" fg:w="46"/><text x="98.3215%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (127 samples, 0.03%)</title><rect x="98.0694%" y="1621" width="0.0290%" height="15" fill="rgb(238,103,29)" fg:x="429696" fg:w="127"/><text x="98.3194%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (72 samples, 0.02%)</title><rect x="98.0820%" y="1605" width="0.0164%" height="15" fill="rgb(233,195,47)" fg:x="429751" fg:w="72"/><text x="98.3320%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (72 samples, 0.02%)</title><rect x="98.0820%" y="1589" width="0.0164%" height="15" fill="rgb(246,218,30)" fg:x="429751" fg:w="72"/><text x="98.3320%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (72 samples, 0.02%)</title><rect x="98.0820%" y="1573" width="0.0164%" height="15" fill="rgb(219,145,47)" fg:x="429751" fg:w="72"/><text x="98.3320%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (61 samples, 0.01%)</title><rect x="98.0845%" y="1557" width="0.0139%" height="15" fill="rgb(243,12,26)" fg:x="429762" fg:w="61"/><text x="98.3345%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (60 samples, 0.01%)</title><rect x="98.0847%" y="1541" width="0.0137%" height="15" fill="rgb(214,87,16)" fg:x="429763" fg:w="60"/><text x="98.3347%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (54 samples, 0.01%)</title><rect x="98.0861%" y="1525" width="0.0123%" height="15" fill="rgb(208,99,42)" fg:x="429769" fg:w="54"/><text x="98.3361%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (141 samples, 0.03%)</title><rect x="98.0694%" y="1653" width="0.0322%" height="15" fill="rgb(253,99,2)" fg:x="429696" fg:w="141"/><text x="98.3194%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (141 samples, 0.03%)</title><rect x="98.0694%" y="1637" width="0.0322%" height="15" fill="rgb(220,168,23)" fg:x="429696" fg:w="141"/><text x="98.3194%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (70 samples, 0.02%)</title><rect x="98.1016%" y="1621" width="0.0160%" height="15" fill="rgb(242,38,24)" fg:x="429837" fg:w="70"/><text x="98.3516%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (70 samples, 0.02%)</title><rect x="98.1016%" y="1605" width="0.0160%" height="15" fill="rgb(225,182,9)" fg:x="429837" fg:w="70"/><text x="98.3516%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (70 samples, 0.02%)</title><rect x="98.1016%" y="1589" width="0.0160%" height="15" fill="rgb(243,178,37)" fg:x="429837" fg:w="70"/><text x="98.3516%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (70 samples, 0.02%)</title><rect x="98.1016%" y="1573" width="0.0160%" height="15" fill="rgb(232,139,19)" fg:x="429837" fg:w="70"/><text x="98.3516%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (50 samples, 0.01%)</title><rect x="98.1061%" y="1557" width="0.0114%" height="15" fill="rgb(225,201,24)" fg:x="429857" fg:w="50"/><text x="98.3561%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (81 samples, 0.02%)</title><rect x="98.1246%" y="1557" width="0.0185%" height="15" fill="rgb(221,47,46)" fg:x="429938" fg:w="81"/><text x="98.3746%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (70 samples, 0.02%)</title><rect x="98.1271%" y="1541" width="0.0160%" height="15" fill="rgb(249,23,13)" fg:x="429949" fg:w="70"/><text x="98.3771%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (324 samples, 0.07%)</title><rect x="98.0694%" y="1669" width="0.0739%" height="15" fill="rgb(219,9,5)" fg:x="429696" fg:w="324"/><text x="98.3194%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (183 samples, 0.04%)</title><rect x="98.1016%" y="1653" width="0.0418%" height="15" fill="rgb(254,171,16)" fg:x="429837" fg:w="183"/><text x="98.3516%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (183 samples, 0.04%)</title><rect x="98.1016%" y="1637" width="0.0418%" height="15" fill="rgb(230,171,20)" fg:x="429837" fg:w="183"/><text x="98.3516%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (113 samples, 0.03%)</title><rect x="98.1176%" y="1621" width="0.0258%" height="15" fill="rgb(210,71,41)" fg:x="429907" fg:w="113"/><text x="98.3676%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (113 samples, 0.03%)</title><rect x="98.1176%" y="1605" width="0.0258%" height="15" fill="rgb(206,173,20)" fg:x="429907" fg:w="113"/><text x="98.3676%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (113 samples, 0.03%)</title><rect x="98.1176%" y="1589" width="0.0258%" height="15" fill="rgb(233,88,34)" fg:x="429907" fg:w="113"/><text x="98.3676%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (90 samples, 0.02%)</title><rect x="98.1228%" y="1573" width="0.0205%" height="15" fill="rgb(223,209,46)" fg:x="429930" fg:w="90"/><text x="98.3728%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (741 samples, 0.17%)</title><rect x="97.9872%" y="1701" width="0.1691%" height="15" fill="rgb(250,43,18)" fg:x="429336" fg:w="741"/><text x="98.2372%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (381 samples, 0.09%)</title><rect x="98.0694%" y="1685" width="0.0870%" height="15" fill="rgb(208,13,10)" fg:x="429696" fg:w="381"/><text x="98.3194%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (57 samples, 0.01%)</title><rect x="98.1434%" y="1669" width="0.0130%" height="15" fill="rgb(212,200,36)" fg:x="430020" fg:w="57"/><text x="98.3934%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (57 samples, 0.01%)</title><rect x="98.1434%" y="1653" width="0.0130%" height="15" fill="rgb(225,90,30)" fg:x="430020" fg:w="57"/><text x="98.3934%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (46 samples, 0.01%)</title><rect x="98.1459%" y="1637" width="0.0105%" height="15" fill="rgb(236,182,39)" fg:x="430031" fg:w="46"/><text x="98.3959%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (74 samples, 0.02%)</title><rect x="98.1564%" y="1701" width="0.0169%" height="15" fill="rgb(212,144,35)" fg:x="430077" fg:w="74"/><text x="98.4064%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (74 samples, 0.02%)</title><rect x="98.1564%" y="1685" width="0.0169%" height="15" fill="rgb(228,63,44)" fg:x="430077" fg:w="74"/><text x="98.4064%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (59 samples, 0.01%)</title><rect x="98.1598%" y="1669" width="0.0135%" height="15" fill="rgb(228,109,6)" fg:x="430092" fg:w="59"/><text x="98.4098%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (54 samples, 0.01%)</title><rect x="98.1609%" y="1653" width="0.0123%" height="15" fill="rgb(238,117,24)" fg:x="430097" fg:w="54"/><text x="98.4109%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (53 samples, 0.01%)</title><rect x="98.1612%" y="1637" width="0.0121%" height="15" fill="rgb(242,26,26)" fg:x="430098" fg:w="53"/><text x="98.4112%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (817 samples, 0.19%)</title><rect x="97.9872%" y="1733" width="0.1865%" height="15" fill="rgb(221,92,48)" fg:x="429336" fg:w="817"/><text x="98.2372%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (817 samples, 0.19%)</title><rect x="97.9872%" y="1717" width="0.1865%" height="15" fill="rgb(209,209,32)" fg:x="429336" fg:w="817"/><text x="98.2372%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (53 samples, 0.01%)</title><rect x="98.1737%" y="1621" width="0.0121%" height="15" fill="rgb(221,70,22)" fg:x="430153" fg:w="53"/><text x="98.4237%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (68 samples, 0.02%)</title><rect x="98.1737%" y="1653" width="0.0155%" height="15" fill="rgb(248,145,5)" fg:x="430153" fg:w="68"/><text x="98.4237%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (68 samples, 0.02%)</title><rect x="98.1737%" y="1637" width="0.0155%" height="15" fill="rgb(226,116,26)" fg:x="430153" fg:w="68"/><text x="98.4237%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (79 samples, 0.02%)</title><rect x="98.1892%" y="1637" width="0.0180%" height="15" fill="rgb(244,5,17)" fg:x="430221" fg:w="79"/><text x="98.4392%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (52 samples, 0.01%)</title><rect x="98.1954%" y="1621" width="0.0119%" height="15" fill="rgb(252,159,33)" fg:x="430248" fg:w="52"/><text x="98.4454%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (52 samples, 0.01%)</title><rect x="98.1954%" y="1605" width="0.0119%" height="15" fill="rgb(206,71,0)" fg:x="430248" fg:w="52"/><text x="98.4454%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (52 samples, 0.01%)</title><rect x="98.1954%" y="1589" width="0.0119%" height="15" fill="rgb(233,118,54)" fg:x="430248" fg:w="52"/><text x="98.4454%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (161 samples, 0.04%)</title><rect x="98.1737%" y="1669" width="0.0367%" height="15" fill="rgb(234,83,48)" fg:x="430153" fg:w="161"/><text x="98.4237%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (93 samples, 0.02%)</title><rect x="98.1892%" y="1653" width="0.0212%" height="15" fill="rgb(228,3,54)" fg:x="430221" fg:w="93"/><text x="98.4392%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (216 samples, 0.05%)</title><rect x="98.1737%" y="1701" width="0.0493%" height="15" fill="rgb(226,155,13)" fg:x="430153" fg:w="216"/><text x="98.4237%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (216 samples, 0.05%)</title><rect x="98.1737%" y="1685" width="0.0493%" height="15" fill="rgb(241,28,37)" fg:x="430153" fg:w="216"/><text x="98.4237%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (55 samples, 0.01%)</title><rect x="98.2105%" y="1669" width="0.0126%" height="15" fill="rgb(233,93,10)" fg:x="430314" fg:w="55"/><text x="98.4605%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (55 samples, 0.01%)</title><rect x="98.2105%" y="1653" width="0.0126%" height="15" fill="rgb(225,113,19)" fg:x="430314" fg:w="55"/><text x="98.4605%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (55 samples, 0.01%)</title><rect x="98.2230%" y="1637" width="0.0126%" height="15" fill="rgb(241,2,18)" fg:x="430369" fg:w="55"/><text x="98.4730%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (126 samples, 0.03%)</title><rect x="98.2230%" y="1669" width="0.0288%" height="15" fill="rgb(228,207,21)" fg:x="430369" fg:w="126"/><text x="98.4730%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (126 samples, 0.03%)</title><rect x="98.2230%" y="1653" width="0.0288%" height="15" fill="rgb(213,211,35)" fg:x="430369" fg:w="126"/><text x="98.4730%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (71 samples, 0.02%)</title><rect x="98.2356%" y="1637" width="0.0162%" height="15" fill="rgb(209,83,10)" fg:x="430424" fg:w="71"/><text x="98.4856%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (71 samples, 0.02%)</title><rect x="98.2356%" y="1621" width="0.0162%" height="15" fill="rgb(209,164,1)" fg:x="430424" fg:w="71"/><text x="98.4856%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (58 samples, 0.01%)</title><rect x="98.2385%" y="1605" width="0.0132%" height="15" fill="rgb(213,184,43)" fg:x="430437" fg:w="58"/><text x="98.4885%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (58 samples, 0.01%)</title><rect x="98.2385%" y="1589" width="0.0132%" height="15" fill="rgb(231,61,34)" fg:x="430437" fg:w="58"/><text x="98.4885%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (54 samples, 0.01%)</title><rect x="98.2394%" y="1573" width="0.0123%" height="15" fill="rgb(235,75,3)" fg:x="430441" fg:w="54"/><text x="98.4894%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (112 samples, 0.03%)</title><rect x="98.2518%" y="1653" width="0.0256%" height="15" fill="rgb(220,106,47)" fg:x="430495" fg:w="112"/><text x="98.5018%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (70 samples, 0.02%)</title><rect x="98.2613%" y="1637" width="0.0160%" height="15" fill="rgb(210,196,33)" fg:x="430537" fg:w="70"/><text x="98.5113%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (70 samples, 0.02%)</title><rect x="98.2613%" y="1621" width="0.0160%" height="15" fill="rgb(229,154,42)" fg:x="430537" fg:w="70"/><text x="98.5113%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (70 samples, 0.02%)</title><rect x="98.2613%" y="1605" width="0.0160%" height="15" fill="rgb(228,114,26)" fg:x="430537" fg:w="70"/><text x="98.5113%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (57 samples, 0.01%)</title><rect x="98.2643%" y="1589" width="0.0130%" height="15" fill="rgb(208,144,1)" fg:x="430550" fg:w="57"/><text x="98.5143%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (52 samples, 0.01%)</title><rect x="98.2655%" y="1573" width="0.0119%" height="15" fill="rgb(239,112,37)" fg:x="430555" fg:w="52"/><text x="98.5155%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (50 samples, 0.01%)</title><rect x="98.2659%" y="1557" width="0.0114%" height="15" fill="rgb(210,96,50)" fg:x="430557" fg:w="50"/><text x="98.5159%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (512 samples, 0.12%)</title><rect x="98.1737%" y="1717" width="0.1169%" height="15" fill="rgb(222,178,2)" fg:x="430153" fg:w="512"/><text x="98.4237%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (296 samples, 0.07%)</title><rect x="98.2230%" y="1701" width="0.0676%" height="15" fill="rgb(226,74,18)" fg:x="430369" fg:w="296"/><text x="98.4730%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (296 samples, 0.07%)</title><rect x="98.2230%" y="1685" width="0.0676%" height="15" fill="rgb(225,67,54)" fg:x="430369" fg:w="296"/><text x="98.4730%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (170 samples, 0.04%)</title><rect x="98.2518%" y="1669" width="0.0388%" height="15" fill="rgb(251,92,32)" fg:x="430495" fg:w="170"/><text x="98.5018%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (58 samples, 0.01%)</title><rect x="98.2773%" y="1653" width="0.0132%" height="15" fill="rgb(228,149,22)" fg:x="430607" fg:w="58"/><text x="98.5273%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (58 samples, 0.01%)</title><rect x="98.2773%" y="1637" width="0.0132%" height="15" fill="rgb(243,54,13)" fg:x="430607" fg:w="58"/><text x="98.5273%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (48 samples, 0.01%)</title><rect x="98.2796%" y="1621" width="0.0110%" height="15" fill="rgb(243,180,28)" fg:x="430617" fg:w="48"/><text x="98.5296%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (44 samples, 0.01%)</title><rect x="98.2805%" y="1605" width="0.0100%" height="15" fill="rgb(208,167,24)" fg:x="430621" fg:w="44"/><text x="98.5305%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (1,472 samples, 0.34%)</title><rect x="97.9672%" y="1749" width="0.3360%" height="15" fill="rgb(245,73,45)" fg:x="429248" fg:w="1472"/><text x="98.2172%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (567 samples, 0.13%)</title><rect x="98.1737%" y="1733" width="0.1294%" height="15" fill="rgb(237,203,48)" fg:x="430153" fg:w="567"/><text x="98.4237%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (55 samples, 0.01%)</title><rect x="98.2906%" y="1717" width="0.0126%" height="15" fill="rgb(211,197,16)" fg:x="430665" fg:w="55"/><text x="98.5406%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (55 samples, 0.01%)</title><rect x="98.2906%" y="1701" width="0.0126%" height="15" fill="rgb(243,99,51)" fg:x="430665" fg:w="55"/><text x="98.5406%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (45 samples, 0.01%)</title><rect x="98.2928%" y="1685" width="0.0103%" height="15" fill="rgb(215,123,29)" fg:x="430675" fg:w="45"/><text x="98.5428%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (104 samples, 0.02%)</title><rect x="98.3031%" y="1749" width="0.0237%" height="15" fill="rgb(239,186,37)" fg:x="430720" fg:w="104"/><text x="98.5531%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (104 samples, 0.02%)</title><rect x="98.3031%" y="1733" width="0.0237%" height="15" fill="rgb(252,136,39)" fg:x="430720" fg:w="104"/><text x="98.5531%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (82 samples, 0.02%)</title><rect x="98.3081%" y="1717" width="0.0187%" height="15" fill="rgb(223,213,32)" fg:x="430742" fg:w="82"/><text x="98.5581%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (73 samples, 0.02%)</title><rect x="98.3102%" y="1701" width="0.0167%" height="15" fill="rgb(233,115,5)" fg:x="430751" fg:w="73"/><text x="98.5602%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (67 samples, 0.02%)</title><rect x="98.3116%" y="1685" width="0.0153%" height="15" fill="rgb(207,226,44)" fg:x="430757" fg:w="67"/><text x="98.5616%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (1,577 samples, 0.36%)</title><rect x="97.9672%" y="1781" width="0.3599%" height="15" fill="rgb(208,126,0)" fg:x="429248" fg:w="1577"/><text x="98.2172%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (1,577 samples, 0.36%)</title><rect x="97.9672%" y="1765" width="0.3599%" height="15" fill="rgb(244,66,21)" fg:x="429248" fg:w="1577"/><text x="98.2172%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (70 samples, 0.02%)</title><rect x="98.3275%" y="1685" width="0.0160%" height="15" fill="rgb(222,97,12)" fg:x="430827" fg:w="70"/><text x="98.5775%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (85 samples, 0.02%)</title><rect x="98.3271%" y="1749" width="0.0194%" height="15" fill="rgb(219,213,19)" fg:x="430825" fg:w="85"/><text x="98.5771%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (83 samples, 0.02%)</title><rect x="98.3275%" y="1733" width="0.0189%" height="15" fill="rgb(252,169,30)" fg:x="430827" fg:w="83"/><text x="98.5775%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (83 samples, 0.02%)</title><rect x="98.3275%" y="1717" width="0.0189%" height="15" fill="rgb(206,32,51)" fg:x="430827" fg:w="83"/><text x="98.5775%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (83 samples, 0.02%)</title><rect x="98.3275%" y="1701" width="0.0189%" height="15" fill="rgb(250,172,42)" fg:x="430827" fg:w="83"/><text x="98.5775%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (55 samples, 0.01%)</title><rect x="98.3465%" y="1653" width="0.0126%" height="15" fill="rgb(209,34,43)" fg:x="430910" fg:w="55"/><text x="98.5965%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (55 samples, 0.01%)</title><rect x="98.3465%" y="1637" width="0.0126%" height="15" fill="rgb(223,11,35)" fg:x="430910" fg:w="55"/><text x="98.5965%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (55 samples, 0.01%)</title><rect x="98.3465%" y="1621" width="0.0126%" height="15" fill="rgb(251,219,26)" fg:x="430910" fg:w="55"/><text x="98.5965%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (98 samples, 0.02%)</title><rect x="98.3465%" y="1669" width="0.0224%" height="15" fill="rgb(231,119,3)" fg:x="430910" fg:w="98"/><text x="98.5965%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (141 samples, 0.03%)</title><rect x="98.3465%" y="1701" width="0.0322%" height="15" fill="rgb(216,97,11)" fg:x="430910" fg:w="141"/><text x="98.5965%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (141 samples, 0.03%)</title><rect x="98.3465%" y="1685" width="0.0322%" height="15" fill="rgb(223,59,9)" fg:x="430910" fg:w="141"/><text x="98.5965%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (72 samples, 0.02%)</title><rect x="98.3787%" y="1685" width="0.0164%" height="15" fill="rgb(233,93,31)" fg:x="431051" fg:w="72"/><text x="98.6287%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (44 samples, 0.01%)</title><rect x="98.3850%" y="1669" width="0.0100%" height="15" fill="rgb(239,81,33)" fg:x="431079" fg:w="44"/><text x="98.6350%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (44 samples, 0.01%)</title><rect x="98.3850%" y="1653" width="0.0100%" height="15" fill="rgb(213,120,34)" fg:x="431079" fg:w="44"/><text x="98.6350%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (256 samples, 0.06%)</title><rect x="98.3465%" y="1717" width="0.0584%" height="15" fill="rgb(243,49,53)" fg:x="430910" fg:w="256"/><text x="98.5965%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (115 samples, 0.03%)</title><rect x="98.3787%" y="1701" width="0.0262%" height="15" fill="rgb(247,216,33)" fg:x="431051" fg:w="115"/><text x="98.6287%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (282 samples, 0.06%)</title><rect x="98.3465%" y="1749" width="0.0644%" height="15" fill="rgb(226,26,14)" fg:x="430910" fg:w="282"/><text x="98.5965%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (282 samples, 0.06%)</title><rect x="98.3465%" y="1733" width="0.0644%" height="15" fill="rgb(215,49,53)" fg:x="430910" fg:w="282"/><text x="98.5965%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (46 samples, 0.01%)</title><rect x="98.4197%" y="1685" width="0.0105%" height="15" fill="rgb(245,162,40)" fg:x="431231" fg:w="46"/><text x="98.6697%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (103 samples, 0.02%)</title><rect x="98.4197%" y="1717" width="0.0235%" height="15" fill="rgb(229,68,17)" fg:x="431231" fg:w="103"/><text x="98.6697%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (103 samples, 0.02%)</title><rect x="98.4197%" y="1701" width="0.0235%" height="15" fill="rgb(213,182,10)" fg:x="431231" fg:w="103"/><text x="98.6697%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (57 samples, 0.01%)</title><rect x="98.4302%" y="1685" width="0.0130%" height="15" fill="rgb(245,125,30)" fg:x="431277" fg:w="57"/><text x="98.6802%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (57 samples, 0.01%)</title><rect x="98.4302%" y="1669" width="0.0130%" height="15" fill="rgb(232,202,2)" fg:x="431277" fg:w="57"/><text x="98.6802%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (53 samples, 0.01%)</title><rect x="98.4311%" y="1653" width="0.0121%" height="15" fill="rgb(237,140,51)" fg:x="431281" fg:w="53"/><text x="98.6811%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (50 samples, 0.01%)</title><rect x="98.4318%" y="1637" width="0.0114%" height="15" fill="rgb(236,157,25)" fg:x="431284" fg:w="50"/><text x="98.6818%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (49 samples, 0.01%)</title><rect x="98.4321%" y="1621" width="0.0112%" height="15" fill="rgb(219,209,0)" fg:x="431285" fg:w="49"/><text x="98.6821%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (74 samples, 0.02%)</title><rect x="98.4432%" y="1685" width="0.0169%" height="15" fill="rgb(240,116,54)" fg:x="431334" fg:w="74"/><text x="98.6932%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (74 samples, 0.02%)</title><rect x="98.4432%" y="1669" width="0.0169%" height="15" fill="rgb(216,10,36)" fg:x="431334" fg:w="74"/><text x="98.6932%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (74 samples, 0.02%)</title><rect x="98.4432%" y="1653" width="0.0169%" height="15" fill="rgb(222,72,44)" fg:x="431334" fg:w="74"/><text x="98.6932%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (74 samples, 0.02%)</title><rect x="98.4432%" y="1637" width="0.0169%" height="15" fill="rgb(232,159,9)" fg:x="431334" fg:w="74"/><text x="98.6932%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (74 samples, 0.02%)</title><rect x="98.4432%" y="1621" width="0.0169%" height="15" fill="rgb(210,39,32)" fg:x="431334" fg:w="74"/><text x="98.6932%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (45 samples, 0.01%)</title><rect x="98.4499%" y="1605" width="0.0103%" height="15" fill="rgb(216,194,45)" fg:x="431363" fg:w="45"/><text x="98.6999%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (45 samples, 0.01%)</title><rect x="98.4499%" y="1589" width="0.0103%" height="15" fill="rgb(218,18,35)" fg:x="431363" fg:w="45"/><text x="98.6999%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (88 samples, 0.02%)</title><rect x="98.4432%" y="1701" width="0.0201%" height="15" fill="rgb(207,83,51)" fg:x="431334" fg:w="88"/><text x="98.6932%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (624 samples, 0.14%)</title><rect x="98.3271%" y="1765" width="0.1424%" height="15" fill="rgb(225,63,43)" fg:x="430825" fg:w="624"/><text x="98.5771%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (257 samples, 0.06%)</title><rect x="98.4108%" y="1749" width="0.0587%" height="15" fill="rgb(207,57,36)" fg:x="431192" fg:w="257"/><text x="98.6608%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (257 samples, 0.06%)</title><rect x="98.4108%" y="1733" width="0.0587%" height="15" fill="rgb(216,99,33)" fg:x="431192" fg:w="257"/><text x="98.6608%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (115 samples, 0.03%)</title><rect x="98.4432%" y="1717" width="0.0262%" height="15" fill="rgb(225,42,16)" fg:x="431334" fg:w="115"/><text x="98.6932%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (77 samples, 0.02%)</title><rect x="98.4743%" y="1717" width="0.0176%" height="15" fill="rgb(220,201,45)" fg:x="431470" fg:w="77"/><text x="98.7243%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (73 samples, 0.02%)</title><rect x="98.4752%" y="1701" width="0.0167%" height="15" fill="rgb(225,33,4)" fg:x="431474" fg:w="73"/><text x="98.7252%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (2,764 samples, 0.63%)</title><rect x="97.8613%" y="1797" width="0.6308%" height="15" fill="rgb(224,33,50)" fg:x="428784" fg:w="2764"/><text x="98.1113%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (723 samples, 0.17%)</title><rect x="98.3271%" y="1781" width="0.1650%" height="15" fill="rgb(246,198,51)" fg:x="430825" fg:w="723"/><text x="98.5771%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (99 samples, 0.02%)</title><rect x="98.4695%" y="1765" width="0.0226%" height="15" fill="rgb(205,22,4)" fg:x="431449" fg:w="99"/><text x="98.7195%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (99 samples, 0.02%)</title><rect x="98.4695%" y="1749" width="0.0226%" height="15" fill="rgb(206,3,8)" fg:x="431449" fg:w="99"/><text x="98.7195%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (85 samples, 0.02%)</title><rect x="98.4727%" y="1733" width="0.0194%" height="15" fill="rgb(251,23,15)" fg:x="431463" fg:w="85"/><text x="98.7227%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (132 samples, 0.03%)</title><rect x="98.4921%" y="1797" width="0.0301%" height="15" fill="rgb(252,88,28)" fg:x="431548" fg:w="132"/><text x="98.7421%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (132 samples, 0.03%)</title><rect x="98.4921%" y="1781" width="0.0301%" height="15" fill="rgb(212,127,14)" fg:x="431548" fg:w="132"/><text x="98.7421%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (106 samples, 0.02%)</title><rect x="98.4980%" y="1765" width="0.0242%" height="15" fill="rgb(247,145,37)" fg:x="431574" fg:w="106"/><text x="98.7480%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (102 samples, 0.02%)</title><rect x="98.4989%" y="1749" width="0.0233%" height="15" fill="rgb(209,117,53)" fg:x="431578" fg:w="102"/><text x="98.7489%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (97 samples, 0.02%)</title><rect x="98.5001%" y="1733" width="0.0221%" height="15" fill="rgb(212,90,42)" fg:x="431583" fg:w="97"/><text x="98.7501%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (65 samples, 0.01%)</title><rect x="98.5074%" y="1717" width="0.0148%" height="15" fill="rgb(218,164,37)" fg:x="431615" fg:w="65"/><text x="98.7574%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (2,901 samples, 0.66%)</title><rect x="97.8613%" y="1829" width="0.6621%" height="15" fill="rgb(246,65,34)" fg:x="428784" fg:w="2901"/><text x="98.1113%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (2,901 samples, 0.66%)</title><rect x="97.8613%" y="1813" width="0.6621%" height="15" fill="rgb(231,100,33)" fg:x="428784" fg:w="2901"/><text x="98.1113%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (110 samples, 0.03%)</title><rect x="98.5236%" y="1685" width="0.0251%" height="15" fill="rgb(228,126,14)" fg:x="431686" fg:w="110"/><text x="98.7736%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (77 samples, 0.02%)</title><rect x="98.5311%" y="1669" width="0.0176%" height="15" fill="rgb(215,173,21)" fg:x="431719" fg:w="77"/><text x="98.7811%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (77 samples, 0.02%)</title><rect x="98.5311%" y="1653" width="0.0176%" height="15" fill="rgb(210,6,40)" fg:x="431719" fg:w="77"/><text x="98.7811%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (77 samples, 0.02%)</title><rect x="98.5311%" y="1637" width="0.0176%" height="15" fill="rgb(212,48,18)" fg:x="431719" fg:w="77"/><text x="98.7811%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (47 samples, 0.01%)</title><rect x="98.5380%" y="1621" width="0.0107%" height="15" fill="rgb(230,214,11)" fg:x="431749" fg:w="47"/><text x="98.7880%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (47 samples, 0.01%)</title><rect x="98.5380%" y="1605" width="0.0107%" height="15" fill="rgb(254,105,39)" fg:x="431749" fg:w="47"/><text x="98.7880%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (125 samples, 0.03%)</title><rect x="98.5236%" y="1733" width="0.0285%" height="15" fill="rgb(245,158,5)" fg:x="431686" fg:w="125"/><text x="98.7736%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (125 samples, 0.03%)</title><rect x="98.5236%" y="1717" width="0.0285%" height="15" fill="rgb(249,208,11)" fg:x="431686" fg:w="125"/><text x="98.7736%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (125 samples, 0.03%)</title><rect x="98.5236%" y="1701" width="0.0285%" height="15" fill="rgb(210,39,28)" fg:x="431686" fg:w="125"/><text x="98.7736%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (140 samples, 0.03%)</title><rect x="98.5234%" y="1797" width="0.0320%" height="15" fill="rgb(211,56,53)" fg:x="431685" fg:w="140"/><text x="98.7734%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (139 samples, 0.03%)</title><rect x="98.5236%" y="1781" width="0.0317%" height="15" fill="rgb(226,201,30)" fg:x="431686" fg:w="139"/><text x="98.7736%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (139 samples, 0.03%)</title><rect x="98.5236%" y="1765" width="0.0317%" height="15" fill="rgb(239,101,34)" fg:x="431686" fg:w="139"/><text x="98.7736%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (139 samples, 0.03%)</title><rect x="98.5236%" y="1749" width="0.0317%" height="15" fill="rgb(226,209,5)" fg:x="431686" fg:w="139"/><text x="98.7736%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (137 samples, 0.03%)</title><rect x="98.5553%" y="1797" width="0.0313%" height="15" fill="rgb(250,105,47)" fg:x="431825" fg:w="137"/><text x="98.8053%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (137 samples, 0.03%)</title><rect x="98.5553%" y="1781" width="0.0313%" height="15" fill="rgb(230,72,3)" fg:x="431825" fg:w="137"/><text x="98.8053%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (110 samples, 0.03%)</title><rect x="98.5615%" y="1765" width="0.0251%" height="15" fill="rgb(232,218,39)" fg:x="431852" fg:w="110"/><text x="98.8115%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (110 samples, 0.03%)</title><rect x="98.5615%" y="1749" width="0.0251%" height="15" fill="rgb(248,166,6)" fg:x="431852" fg:w="110"/><text x="98.8115%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (87 samples, 0.02%)</title><rect x="98.5667%" y="1733" width="0.0199%" height="15" fill="rgb(247,89,20)" fg:x="431875" fg:w="87"/><text x="98.8167%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (78 samples, 0.02%)</title><rect x="98.5688%" y="1717" width="0.0178%" height="15" fill="rgb(248,130,54)" fg:x="431884" fg:w="78"/><text x="98.8188%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (77 samples, 0.02%)</title><rect x="98.5690%" y="1701" width="0.0176%" height="15" fill="rgb(234,196,4)" fg:x="431885" fg:w="77"/><text x="98.8190%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (52 samples, 0.01%)</title><rect x="98.5962%" y="1685" width="0.0119%" height="15" fill="rgb(250,143,31)" fg:x="432004" fg:w="52"/><text x="98.8462%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (50 samples, 0.01%)</title><rect x="98.5966%" y="1669" width="0.0114%" height="15" fill="rgb(211,110,34)" fg:x="432006" fg:w="50"/><text x="98.8466%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h81b7d5b867a941ffE (68 samples, 0.02%)</title><rect x="98.5927%" y="1765" width="0.0155%" height="15" fill="rgb(215,124,48)" fg:x="431989" fg:w="68"/><text x="98.8427%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (68 samples, 0.02%)</title><rect x="98.5927%" y="1749" width="0.0155%" height="15" fill="rgb(216,46,13)" fg:x="431989" fg:w="68"/><text x="98.8427%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (68 samples, 0.02%)</title><rect x="98.5927%" y="1733" width="0.0155%" height="15" fill="rgb(205,184,25)" fg:x="431989" fg:w="68"/><text x="98.8427%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (68 samples, 0.02%)</title><rect x="98.5927%" y="1717" width="0.0155%" height="15" fill="rgb(228,1,10)" fg:x="431989" fg:w="68"/><text x="98.8427%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (58 samples, 0.01%)</title><rect x="98.5950%" y="1701" width="0.0132%" height="15" fill="rgb(213,116,27)" fg:x="431999" fg:w="58"/><text x="98.8450%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (151 samples, 0.03%)</title><rect x="98.5866%" y="1781" width="0.0345%" height="15" fill="rgb(241,95,50)" fg:x="431962" fg:w="151"/><text x="98.8366%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (56 samples, 0.01%)</title><rect x="98.6083%" y="1765" width="0.0128%" height="15" fill="rgb(238,48,32)" fg:x="432057" fg:w="56"/><text x="98.8583%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (56 samples, 0.01%)</title><rect x="98.6083%" y="1749" width="0.0128%" height="15" fill="rgb(235,113,49)" fg:x="432057" fg:w="56"/><text x="98.8583%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (56 samples, 0.01%)</title><rect x="98.6083%" y="1733" width="0.0128%" height="15" fill="rgb(205,127,43)" fg:x="432057" fg:w="56"/><text x="98.8583%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis7compare9estimates5stats17h441f9afefe1f0531E (48 samples, 0.01%)</title><rect x="98.6101%" y="1717" width="0.0110%" height="15" fill="rgb(250,162,2)" fg:x="432065" fg:w="48"/><text x="98.8601%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (455 samples, 0.10%)</title><rect x="98.5234%" y="1813" width="0.1038%" height="15" fill="rgb(220,13,41)" fg:x="431685" fg:w="455"/><text x="98.7734%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (178 samples, 0.04%)</title><rect x="98.5866%" y="1797" width="0.0406%" height="15" fill="rgb(249,221,25)" fg:x="431962" fg:w="178"/><text x="98.8366%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hae35e2779baa4cfbE (4,332 samples, 0.99%)</title><rect x="97.6451%" y="1845" width="0.9887%" height="15" fill="rgb(215,208,19)" fg:x="427837" fg:w="4332"/><text x="97.8951%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (484 samples, 0.11%)</title><rect x="98.5234%" y="1829" width="0.1105%" height="15" fill="rgb(236,175,2)" fg:x="431685" fg:w="484"/><text x="98.7734%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN112_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h31d06e2398e72fafE (44 samples, 0.01%)</title><rect x="98.6338%" y="1845" width="0.0100%" height="15" fill="rgb(241,52,2)" fg:x="432169" fg:w="44"/><text x="98.8838%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN4core3ops8function5impls68_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$4call17h64690287b2e8c05aE (44 samples, 0.01%)</title><rect x="98.6338%" y="1829" width="0.0100%" height="15" fill="rgb(248,140,14)" fg:x="432169" fg:w="44"/><text x="98.8838%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17hef48da7829e9d9a3E (4,385 samples, 1.00%)</title><rect x="97.6451%" y="1877" width="1.0008%" height="15" fill="rgb(253,22,42)" fg:x="427837" fg:w="4385"/><text x="97.8951%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hc2f0f096372d51f3E (4,385 samples, 1.00%)</title><rect x="97.6451%" y="1861" width="1.0008%" height="15" fill="rgb(234,61,47)" fg:x="427837" fg:w="4385"/><text x="97.8951%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17ha8e749856e25d1e3E.llvm.4035488946159976951 (4,386 samples, 1.00%)</title><rect x="97.6451%" y="1893" width="1.0010%" height="15" fill="rgb(208,226,15)" fg:x="427837" fg:w="4386"/><text x="97.8951%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (52 samples, 0.01%)</title><rect x="98.6480%" y="1477" width="0.0119%" height="15" fill="rgb(217,221,4)" fg:x="432231" fg:w="52"/><text x="98.8980%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (52 samples, 0.01%)</title><rect x="98.6480%" y="1461" width="0.0119%" height="15" fill="rgb(212,174,34)" fg:x="432231" fg:w="52"/><text x="98.8980%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (52 samples, 0.01%)</title><rect x="98.6480%" y="1445" width="0.0119%" height="15" fill="rgb(253,83,4)" fg:x="432231" fg:w="52"/><text x="98.8980%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (85 samples, 0.02%)</title><rect x="98.6480%" y="1541" width="0.0194%" height="15" fill="rgb(250,195,49)" fg:x="432231" fg:w="85"/><text x="98.8980%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (85 samples, 0.02%)</title><rect x="98.6480%" y="1525" width="0.0194%" height="15" fill="rgb(241,192,25)" fg:x="432231" fg:w="85"/><text x="98.8980%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (85 samples, 0.02%)</title><rect x="98.6480%" y="1509" width="0.0194%" height="15" fill="rgb(208,124,10)" fg:x="432231" fg:w="85"/><text x="98.8980%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (85 samples, 0.02%)</title><rect x="98.6480%" y="1493" width="0.0194%" height="15" fill="rgb(222,33,0)" fg:x="432231" fg:w="85"/><text x="98.8980%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (118 samples, 0.03%)</title><rect x="98.6477%" y="1605" width="0.0269%" height="15" fill="rgb(234,209,28)" fg:x="432230" fg:w="118"/><text x="98.8977%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (117 samples, 0.03%)</title><rect x="98.6480%" y="1589" width="0.0267%" height="15" fill="rgb(224,11,23)" fg:x="432231" fg:w="117"/><text x="98.8980%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (117 samples, 0.03%)</title><rect x="98.6480%" y="1573" width="0.0267%" height="15" fill="rgb(232,99,1)" fg:x="432231" fg:w="117"/><text x="98.8980%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (117 samples, 0.03%)</title><rect x="98.6480%" y="1557" width="0.0267%" height="15" fill="rgb(237,95,45)" fg:x="432231" fg:w="117"/><text x="98.8980%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17h42db598bd81aefabE (143 samples, 0.03%)</title><rect x="98.6471%" y="1653" width="0.0326%" height="15" fill="rgb(208,109,11)" fg:x="432227" fg:w="143"/><text x="98.8971%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (143 samples, 0.03%)</title><rect x="98.6471%" y="1637" width="0.0326%" height="15" fill="rgb(216,190,48)" fg:x="432227" fg:w="143"/><text x="98.8971%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (143 samples, 0.03%)</title><rect x="98.6471%" y="1621" width="0.0326%" height="15" fill="rgb(251,171,36)" fg:x="432227" fg:w="143"/><text x="98.8971%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (185 samples, 0.04%)</title><rect x="98.6471%" y="1717" width="0.0422%" height="15" fill="rgb(230,62,22)" fg:x="432227" fg:w="185"/><text x="98.8971%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17h377330ec774d9e04E.llvm.15725695388440039465 (185 samples, 0.04%)</title><rect x="98.6471%" y="1701" width="0.0422%" height="15" fill="rgb(225,114,35)" fg:x="432227" fg:w="185"/><text x="98.8971%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (185 samples, 0.04%)</title><rect x="98.6471%" y="1685" width="0.0422%" height="15" fill="rgb(215,118,42)" fg:x="432227" fg:w="185"/><text x="98.8971%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (185 samples, 0.04%)</title><rect x="98.6471%" y="1669" width="0.0422%" height="15" fill="rgb(243,119,21)" fg:x="432227" fg:w="185"/><text x="98.8971%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17haf4aeb120f780c88E.llvm.15725695388440039465 (257 samples, 0.06%)</title><rect x="98.6461%" y="1893" width="0.0587%" height="15" fill="rgb(252,177,53)" fg:x="432223" fg:w="257"/><text x="98.8961%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN115_$LT$core..panic..unwind_safe..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$9call_once17hdd394c074fdfb13eE (257 samples, 0.06%)</title><rect x="98.6461%" y="1877" width="0.0587%" height="15" fill="rgb(237,209,29)" fg:x="432223" fg:w="257"/><text x="98.8961%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (256 samples, 0.06%)</title><rect x="98.6464%" y="1861" width="0.0584%" height="15" fill="rgb(212,65,23)" fg:x="432224" fg:w="256"/><text x="98.8964%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (256 samples, 0.06%)</title><rect x="98.6464%" y="1845" width="0.0584%" height="15" fill="rgb(230,222,46)" fg:x="432224" fg:w="256"/><text x="98.8964%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (255 samples, 0.06%)</title><rect x="98.6466%" y="1829" width="0.0582%" height="15" fill="rgb(215,135,32)" fg:x="432225" fg:w="255"/><text x="98.8966%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (255 samples, 0.06%)</title><rect x="98.6466%" y="1813" width="0.0582%" height="15" fill="rgb(246,101,22)" fg:x="432225" fg:w="255"/><text x="98.8966%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (255 samples, 0.06%)</title><rect x="98.6466%" y="1797" width="0.0582%" height="15" fill="rgb(206,107,13)" fg:x="432225" fg:w="255"/><text x="98.8966%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (254 samples, 0.06%)</title><rect x="98.6468%" y="1781" width="0.0580%" height="15" fill="rgb(250,100,44)" fg:x="432226" fg:w="254"/><text x="98.8968%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (253 samples, 0.06%)</title><rect x="98.6471%" y="1765" width="0.0577%" height="15" fill="rgb(231,147,38)" fg:x="432227" fg:w="253"/><text x="98.8971%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (253 samples, 0.06%)</title><rect x="98.6471%" y="1749" width="0.0577%" height="15" fill="rgb(229,8,40)" fg:x="432227" fg:w="253"/><text x="98.8971%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (253 samples, 0.06%)</title><rect x="98.6471%" y="1733" width="0.0577%" height="15" fill="rgb(221,135,30)" fg:x="432227" fg:w="253"/><text x="98.8971%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (68 samples, 0.02%)</title><rect x="98.6893%" y="1717" width="0.0155%" height="15" fill="rgb(249,193,18)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (68 samples, 0.02%)</title><rect x="98.6893%" y="1701" width="0.0155%" height="15" fill="rgb(209,133,39)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (68 samples, 0.02%)</title><rect x="98.6893%" y="1685" width="0.0155%" height="15" fill="rgb(232,100,14)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h48c7c56db45d3eb6E (68 samples, 0.02%)</title><rect x="98.6893%" y="1669" width="0.0155%" height="15" fill="rgb(224,185,1)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17h7ba537d612a0440dE (68 samples, 0.02%)</title><rect x="98.6893%" y="1653" width="0.0155%" height="15" fill="rgb(223,139,8)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17h72385947d068b3c8E (68 samples, 0.02%)</title><rect x="98.6893%" y="1637" width="0.0155%" height="15" fill="rgb(232,213,38)" fg:x="432412" fg:w="68"/><text x="98.9393%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (53 samples, 0.01%)</title><rect x="98.7100%" y="1701" width="0.0121%" height="15" fill="rgb(207,94,22)" fg:x="432503" fg:w="53"/><text x="98.9600%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (53 samples, 0.01%)</title><rect x="98.7100%" y="1685" width="0.0121%" height="15" fill="rgb(219,183,54)" fg:x="432503" fg:w="53"/><text x="98.9600%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (53 samples, 0.01%)</title><rect x="98.7100%" y="1669" width="0.0121%" height="15" fill="rgb(216,185,54)" fg:x="432503" fg:w="53"/><text x="98.9600%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (108 samples, 0.02%)</title><rect x="98.7098%" y="1749" width="0.0246%" height="15" fill="rgb(254,217,39)" fg:x="432502" fg:w="108"/><text x="98.9598%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (108 samples, 0.02%)</title><rect x="98.7098%" y="1733" width="0.0246%" height="15" fill="rgb(240,178,23)" fg:x="432502" fg:w="108"/><text x="98.9598%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (107 samples, 0.02%)</title><rect x="98.7100%" y="1717" width="0.0244%" height="15" fill="rgb(218,11,47)" fg:x="432503" fg:w="107"/><text x="98.9600%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (54 samples, 0.01%)</title><rect x="98.7221%" y="1701" width="0.0123%" height="15" fill="rgb(218,51,51)" fg:x="432556" fg:w="54"/><text x="98.9721%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (54 samples, 0.01%)</title><rect x="98.7221%" y="1685" width="0.0123%" height="15" fill="rgb(238,126,27)" fg:x="432556" fg:w="54"/><text x="98.9721%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (53 samples, 0.01%)</title><rect x="98.7224%" y="1669" width="0.0121%" height="15" fill="rgb(249,202,22)" fg:x="432557" fg:w="53"/><text x="98.9724%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (69 samples, 0.02%)</title><rect x="98.7374%" y="1701" width="0.0157%" height="15" fill="rgb(254,195,49)" fg:x="432623" fg:w="69"/><text x="98.9874%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (69 samples, 0.02%)</title><rect x="98.7374%" y="1685" width="0.0157%" height="15" fill="rgb(208,123,14)" fg:x="432623" fg:w="69"/><text x="98.9874%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (69 samples, 0.02%)</title><rect x="98.7374%" y="1669" width="0.0157%" height="15" fill="rgb(224,200,8)" fg:x="432623" fg:w="69"/><text x="98.9874%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (45 samples, 0.01%)</title><rect x="98.7532%" y="1653" width="0.0103%" height="15" fill="rgb(217,61,36)" fg:x="432692" fg:w="45"/><text x="99.0032%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="98.7532%" y="1637" width="0.0103%" height="15" fill="rgb(206,35,45)" fg:x="432692" fg:w="45"/><text x="99.0032%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="98.7532%" y="1621" width="0.0103%" height="15" fill="rgb(217,65,33)" fg:x="432692" fg:w="45"/><text x="99.0032%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (88 samples, 0.02%)</title><rect x="98.7532%" y="1669" width="0.0201%" height="15" fill="rgb(222,158,48)" fg:x="432692" fg:w="88"/><text x="99.0032%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (279 samples, 0.06%)</title><rect x="98.7098%" y="1797" width="0.0637%" height="15" fill="rgb(254,2,54)" fg:x="432502" fg:w="279"/><text x="98.9598%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (279 samples, 0.06%)</title><rect x="98.7098%" y="1781" width="0.0637%" height="15" fill="rgb(250,143,38)" fg:x="432502" fg:w="279"/><text x="98.9598%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (279 samples, 0.06%)</title><rect x="98.7098%" y="1765" width="0.0637%" height="15" fill="rgb(248,25,0)" fg:x="432502" fg:w="279"/><text x="98.9598%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (158 samples, 0.04%)</title><rect x="98.7374%" y="1749" width="0.0361%" height="15" fill="rgb(206,152,27)" fg:x="432623" fg:w="158"/><text x="98.9874%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (158 samples, 0.04%)</title><rect x="98.7374%" y="1733" width="0.0361%" height="15" fill="rgb(240,77,30)" fg:x="432623" fg:w="158"/><text x="98.9874%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (158 samples, 0.04%)</title><rect x="98.7374%" y="1717" width="0.0361%" height="15" fill="rgb(231,5,3)" fg:x="432623" fg:w="158"/><text x="98.9874%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (89 samples, 0.02%)</title><rect x="98.7532%" y="1701" width="0.0203%" height="15" fill="rgb(207,226,32)" fg:x="432692" fg:w="89"/><text x="99.0032%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (89 samples, 0.02%)</title><rect x="98.7532%" y="1685" width="0.0203%" height="15" fill="rgb(222,207,47)" fg:x="432692" fg:w="89"/><text x="99.0032%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="98.7737%" y="1653" width="0.0100%" height="15" fill="rgb(229,115,45)" fg:x="432782" fg:w="44"/><text x="99.0237%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.7737%" y="1637" width="0.0100%" height="15" fill="rgb(224,191,6)" fg:x="432782" fg:w="44"/><text x="99.0237%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.7737%" y="1621" width="0.0100%" height="15" fill="rgb(230,227,24)" fg:x="432782" fg:w="44"/><text x="99.0237%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (88 samples, 0.02%)</title><rect x="98.7735%" y="1701" width="0.0201%" height="15" fill="rgb(228,80,19)" fg:x="432781" fg:w="88"/><text x="99.0235%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (88 samples, 0.02%)</title><rect x="98.7735%" y="1685" width="0.0201%" height="15" fill="rgb(247,229,0)" fg:x="432781" fg:w="88"/><text x="99.0235%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (87 samples, 0.02%)</title><rect x="98.7737%" y="1669" width="0.0199%" height="15" fill="rgb(237,194,15)" fg:x="432782" fg:w="87"/><text x="99.0237%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="98.7936%" y="1653" width="0.0105%" height="15" fill="rgb(219,203,20)" fg:x="432869" fg:w="46"/><text x="99.0436%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="98.7936%" y="1637" width="0.0105%" height="15" fill="rgb(234,128,8)" fg:x="432869" fg:w="46"/><text x="99.0436%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="98.7936%" y="1621" width="0.0105%" height="15" fill="rgb(248,202,8)" fg:x="432869" fg:w="46"/><text x="99.0436%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (178 samples, 0.04%)</title><rect x="98.7735%" y="1749" width="0.0406%" height="15" fill="rgb(206,104,37)" fg:x="432781" fg:w="178"/><text x="99.0235%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (178 samples, 0.04%)</title><rect x="98.7735%" y="1733" width="0.0406%" height="15" fill="rgb(223,8,27)" fg:x="432781" fg:w="178"/><text x="99.0235%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (178 samples, 0.04%)</title><rect x="98.7735%" y="1717" width="0.0406%" height="15" fill="rgb(216,217,28)" fg:x="432781" fg:w="178"/><text x="99.0235%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (90 samples, 0.02%)</title><rect x="98.7936%" y="1701" width="0.0205%" height="15" fill="rgb(249,199,1)" fg:x="432869" fg:w="90"/><text x="99.0436%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (90 samples, 0.02%)</title><rect x="98.7936%" y="1685" width="0.0205%" height="15" fill="rgb(240,85,17)" fg:x="432869" fg:w="90"/><text x="99.0436%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (90 samples, 0.02%)</title><rect x="98.7936%" y="1669" width="0.0205%" height="15" fill="rgb(206,108,45)" fg:x="432869" fg:w="90"/><text x="99.0436%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="98.8041%" y="1653" width="0.0100%" height="15" fill="rgb(245,210,41)" fg:x="432915" fg:w="44"/><text x="99.0541%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.8041%" y="1637" width="0.0100%" height="15" fill="rgb(206,13,37)" fg:x="432915" fg:w="44"/><text x="99.0541%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.8041%" y="1621" width="0.0100%" height="15" fill="rgb(250,61,18)" fg:x="432915" fg:w="44"/><text x="99.0541%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (89 samples, 0.02%)</title><rect x="98.8141%" y="1701" width="0.0203%" height="15" fill="rgb(235,172,48)" fg:x="432959" fg:w="89"/><text x="99.0641%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (89 samples, 0.02%)</title><rect x="98.8141%" y="1685" width="0.0203%" height="15" fill="rgb(249,201,17)" fg:x="432959" fg:w="89"/><text x="99.0641%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (88 samples, 0.02%)</title><rect x="98.8143%" y="1669" width="0.0201%" height="15" fill="rgb(219,208,6)" fg:x="432960" fg:w="88"/><text x="99.0643%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (48 samples, 0.01%)</title><rect x="98.8235%" y="1653" width="0.0110%" height="15" fill="rgb(248,31,23)" fg:x="433000" fg:w="48"/><text x="99.0735%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="98.8235%" y="1637" width="0.0110%" height="15" fill="rgb(245,15,42)" fg:x="433000" fg:w="48"/><text x="99.0735%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (48 samples, 0.01%)</title><rect x="98.8235%" y="1621" width="0.0110%" height="15" fill="rgb(222,217,39)" fg:x="433000" fg:w="48"/><text x="99.0735%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (630 samples, 0.14%)</title><rect x="98.7098%" y="1845" width="0.1438%" height="15" fill="rgb(210,219,27)" fg:x="432502" fg:w="630"/><text x="98.9598%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (630 samples, 0.14%)</title><rect x="98.7098%" y="1829" width="0.1438%" height="15" fill="rgb(252,166,36)" fg:x="432502" fg:w="630"/><text x="98.9598%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (630 samples, 0.14%)</title><rect x="98.7098%" y="1813" width="0.1438%" height="15" fill="rgb(245,132,34)" fg:x="432502" fg:w="630"/><text x="98.9598%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (351 samples, 0.08%)</title><rect x="98.7735%" y="1797" width="0.0801%" height="15" fill="rgb(236,54,3)" fg:x="432781" fg:w="351"/><text x="99.0235%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (351 samples, 0.08%)</title><rect x="98.7735%" y="1781" width="0.0801%" height="15" fill="rgb(241,173,43)" fg:x="432781" fg:w="351"/><text x="99.0235%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (351 samples, 0.08%)</title><rect x="98.7735%" y="1765" width="0.0801%" height="15" fill="rgb(215,190,9)" fg:x="432781" fg:w="351"/><text x="99.0235%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (173 samples, 0.04%)</title><rect x="98.8141%" y="1749" width="0.0395%" height="15" fill="rgb(242,101,16)" fg:x="432959" fg:w="173"/><text x="99.0641%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (173 samples, 0.04%)</title><rect x="98.8141%" y="1733" width="0.0395%" height="15" fill="rgb(223,190,21)" fg:x="432959" fg:w="173"/><text x="99.0641%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (173 samples, 0.04%)</title><rect x="98.8141%" y="1717" width="0.0395%" height="15" fill="rgb(215,228,25)" fg:x="432959" fg:w="173"/><text x="99.0641%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (84 samples, 0.02%)</title><rect x="98.8344%" y="1701" width="0.0192%" height="15" fill="rgb(225,36,22)" fg:x="433048" fg:w="84"/><text x="99.0844%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (84 samples, 0.02%)</title><rect x="98.8344%" y="1685" width="0.0192%" height="15" fill="rgb(251,106,46)" fg:x="433048" fg:w="84"/><text x="99.0844%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (84 samples, 0.02%)</title><rect x="98.8344%" y="1669" width="0.0192%" height="15" fill="rgb(208,90,1)" fg:x="433048" fg:w="84"/><text x="99.0844%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (71 samples, 0.02%)</title><rect x="98.8630%" y="1733" width="0.0162%" height="15" fill="rgb(243,10,4)" fg:x="433173" fg:w="71"/><text x="99.1130%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (71 samples, 0.02%)</title><rect x="98.8630%" y="1717" width="0.0162%" height="15" fill="rgb(212,137,27)" fg:x="433173" fg:w="71"/><text x="99.1130%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="98.8630%" y="1701" width="0.0162%" height="15" fill="rgb(231,220,49)" fg:x="433173" fg:w="71"/><text x="99.1130%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (71 samples, 0.02%)</title><rect x="98.8630%" y="1685" width="0.0162%" height="15" fill="rgb(237,96,20)" fg:x="433173" fg:w="71"/><text x="99.1130%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (192 samples, 0.04%)</title><rect x="98.8545%" y="1781" width="0.0438%" height="15" fill="rgb(239,229,30)" fg:x="433136" fg:w="192"/><text x="99.1045%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (192 samples, 0.04%)</title><rect x="98.8545%" y="1765" width="0.0438%" height="15" fill="rgb(219,65,33)" fg:x="433136" fg:w="192"/><text x="99.1045%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (192 samples, 0.04%)</title><rect x="98.8545%" y="1749" width="0.0438%" height="15" fill="rgb(243,134,7)" fg:x="433136" fg:w="192"/><text x="99.1045%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (84 samples, 0.02%)</title><rect x="98.8792%" y="1733" width="0.0192%" height="15" fill="rgb(216,177,54)" fg:x="433244" fg:w="84"/><text x="99.1292%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (84 samples, 0.02%)</title><rect x="98.8792%" y="1717" width="0.0192%" height="15" fill="rgb(211,160,20)" fg:x="433244" fg:w="84"/><text x="99.1292%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (84 samples, 0.02%)</title><rect x="98.8792%" y="1701" width="0.0192%" height="15" fill="rgb(239,85,39)" fg:x="433244" fg:w="84"/><text x="99.1292%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (87 samples, 0.02%)</title><rect x="98.9186%" y="1397" width="0.0199%" height="15" fill="rgb(232,125,22)" fg:x="433417" fg:w="87"/><text x="99.1686%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (87 samples, 0.02%)</title><rect x="98.9186%" y="1381" width="0.0199%" height="15" fill="rgb(244,57,34)" fg:x="433417" fg:w="87"/><text x="99.1686%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (87 samples, 0.02%)</title><rect x="98.9186%" y="1365" width="0.0199%" height="15" fill="rgb(214,203,32)" fg:x="433417" fg:w="87"/><text x="99.1686%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="98.9285%" y="1349" width="0.0100%" height="15" fill="rgb(207,58,43)" fg:x="433460" fg:w="44"/><text x="99.1785%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.9285%" y="1333" width="0.0100%" height="15" fill="rgb(215,193,15)" fg:x="433460" fg:w="44"/><text x="99.1785%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.9285%" y="1317" width="0.0100%" height="15" fill="rgb(232,15,44)" fg:x="433460" fg:w="44"/><text x="99.1785%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="98.9385%" y="1349" width="0.0100%" height="15" fill="rgb(212,3,48)" fg:x="433504" fg:w="44"/><text x="99.1885%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.9385%" y="1333" width="0.0100%" height="15" fill="rgb(218,128,7)" fg:x="433504" fg:w="44"/><text x="99.1885%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.9385%" y="1317" width="0.0100%" height="15" fill="rgb(226,216,39)" fg:x="433504" fg:w="44"/><text x="99.1885%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (219 samples, 0.05%)</title><rect x="98.9084%" y="1557" width="0.0500%" height="15" fill="rgb(243,47,51)" fg:x="433372" fg:w="219"/><text x="99.1584%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (219 samples, 0.05%)</title><rect x="98.9084%" y="1541" width="0.0500%" height="15" fill="rgb(241,183,40)" fg:x="433372" fg:w="219"/><text x="99.1584%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (219 samples, 0.05%)</title><rect x="98.9084%" y="1525" width="0.0500%" height="15" fill="rgb(231,217,32)" fg:x="433372" fg:w="219"/><text x="99.1584%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (215 samples, 0.05%)</title><rect x="98.9093%" y="1509" width="0.0491%" height="15" fill="rgb(229,61,38)" fg:x="433376" fg:w="215"/><text x="99.1593%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (214 samples, 0.05%)</title><rect x="98.9095%" y="1493" width="0.0488%" height="15" fill="rgb(225,210,5)" fg:x="433377" fg:w="214"/><text x="99.1595%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (214 samples, 0.05%)</title><rect x="98.9095%" y="1477" width="0.0488%" height="15" fill="rgb(231,79,45)" fg:x="433377" fg:w="214"/><text x="99.1595%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (213 samples, 0.05%)</title><rect x="98.9097%" y="1461" width="0.0486%" height="15" fill="rgb(224,100,7)" fg:x="433378" fg:w="213"/><text x="99.1597%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (175 samples, 0.04%)</title><rect x="98.9184%" y="1445" width="0.0399%" height="15" fill="rgb(241,198,18)" fg:x="433416" fg:w="175"/><text x="99.1684%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (175 samples, 0.04%)</title><rect x="98.9184%" y="1429" width="0.0399%" height="15" fill="rgb(252,97,53)" fg:x="433416" fg:w="175"/><text x="99.1684%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (174 samples, 0.04%)</title><rect x="98.9186%" y="1413" width="0.0397%" height="15" fill="rgb(220,88,7)" fg:x="433417" fg:w="174"/><text x="99.1686%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (87 samples, 0.02%)</title><rect x="98.9385%" y="1397" width="0.0199%" height="15" fill="rgb(213,176,14)" fg:x="433504" fg:w="87"/><text x="99.1885%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (87 samples, 0.02%)</title><rect x="98.9385%" y="1381" width="0.0199%" height="15" fill="rgb(246,73,7)" fg:x="433504" fg:w="87"/><text x="99.1885%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (87 samples, 0.02%)</title><rect x="98.9385%" y="1365" width="0.0199%" height="15" fill="rgb(245,64,36)" fg:x="433504" fg:w="87"/><text x="99.1885%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (222 samples, 0.05%)</title><rect x="98.9084%" y="1621" width="0.0507%" height="15" fill="rgb(245,80,10)" fg:x="433372" fg:w="222"/><text x="99.1584%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (222 samples, 0.05%)</title><rect x="98.9084%" y="1605" width="0.0507%" height="15" fill="rgb(232,107,50)" fg:x="433372" fg:w="222"/><text x="99.1584%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (222 samples, 0.05%)</title><rect x="98.9084%" y="1589" width="0.0507%" height="15" fill="rgb(253,3,0)" fg:x="433372" fg:w="222"/><text x="99.1584%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (222 samples, 0.05%)</title><rect x="98.9084%" y="1573" width="0.0507%" height="15" fill="rgb(212,99,53)" fg:x="433372" fg:w="222"/><text x="99.1584%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (224 samples, 0.05%)</title><rect x="98.9084%" y="1685" width="0.0511%" height="15" fill="rgb(249,111,54)" fg:x="433372" fg:w="224"/><text x="99.1584%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (224 samples, 0.05%)</title><rect x="98.9084%" y="1669" width="0.0511%" height="15" fill="rgb(249,55,30)" fg:x="433372" fg:w="224"/><text x="99.1584%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (224 samples, 0.05%)</title><rect x="98.9084%" y="1653" width="0.0511%" height="15" fill="rgb(237,47,42)" fg:x="433372" fg:w="224"/><text x="99.1584%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (224 samples, 0.05%)</title><rect x="98.9084%" y="1637" width="0.0511%" height="15" fill="rgb(211,20,18)" fg:x="433372" fg:w="224"/><text x="99.1584%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (335 samples, 0.08%)</title><rect x="98.8992%" y="1733" width="0.0765%" height="15" fill="rgb(231,203,46)" fg:x="433332" fg:w="335"/><text x="99.1492%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (335 samples, 0.08%)</title><rect x="98.8992%" y="1717" width="0.0765%" height="15" fill="rgb(237,142,3)" fg:x="433332" fg:w="335"/><text x="99.1492%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (334 samples, 0.08%)</title><rect x="98.8995%" y="1701" width="0.0762%" height="15" fill="rgb(241,107,1)" fg:x="433333" fg:w="334"/><text x="99.1495%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (71 samples, 0.02%)</title><rect x="98.9595%" y="1685" width="0.0162%" height="15" fill="rgb(229,83,13)" fg:x="433596" fg:w="71"/><text x="99.2095%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (71 samples, 0.02%)</title><rect x="98.9595%" y="1669" width="0.0162%" height="15" fill="rgb(241,91,40)" fg:x="433596" fg:w="71"/><text x="99.2095%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (71 samples, 0.02%)</title><rect x="98.9595%" y="1653" width="0.0162%" height="15" fill="rgb(225,3,45)" fg:x="433596" fg:w="71"/><text x="99.2095%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (82 samples, 0.02%)</title><rect x="98.9757%" y="1733" width="0.0187%" height="15" fill="rgb(244,223,14)" fg:x="433667" fg:w="82"/><text x="99.2257%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (82 samples, 0.02%)</title><rect x="98.9757%" y="1717" width="0.0187%" height="15" fill="rgb(224,124,37)" fg:x="433667" fg:w="82"/><text x="99.2257%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (82 samples, 0.02%)</title><rect x="98.9757%" y="1701" width="0.0187%" height="15" fill="rgb(251,171,30)" fg:x="433667" fg:w="82"/><text x="99.2257%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (81 samples, 0.02%)</title><rect x="98.9759%" y="1685" width="0.0185%" height="15" fill="rgb(236,46,54)" fg:x="433668" fg:w="81"/><text x="99.2259%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (81 samples, 0.02%)</title><rect x="98.9759%" y="1669" width="0.0185%" height="15" fill="rgb(245,213,5)" fg:x="433668" fg:w="81"/><text x="99.2259%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (81 samples, 0.02%)</title><rect x="98.9759%" y="1653" width="0.0185%" height="15" fill="rgb(230,144,27)" fg:x="433668" fg:w="81"/><text x="99.2259%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (81 samples, 0.02%)</title><rect x="98.9759%" y="1637" width="0.0185%" height="15" fill="rgb(220,86,6)" fg:x="433668" fg:w="81"/><text x="99.2259%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="98.9844%" y="1621" width="0.0100%" height="15" fill="rgb(240,20,13)" fg:x="433705" fg:w="44"/><text x="99.2344%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="98.9844%" y="1605" width="0.0100%" height="15" fill="rgb(217,89,34)" fg:x="433705" fg:w="44"/><text x="99.2344%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="98.9844%" y="1589" width="0.0100%" height="15" fill="rgb(229,13,5)" fg:x="433705" fg:w="44"/><text x="99.2344%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (62 samples, 0.01%)</title><rect x="98.9944%" y="1637" width="0.0142%" height="15" fill="rgb(244,67,35)" fg:x="433749" fg:w="62"/><text x="99.2444%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (62 samples, 0.01%)</title><rect x="98.9944%" y="1621" width="0.0142%" height="15" fill="rgb(221,40,2)" fg:x="433749" fg:w="62"/><text x="99.2444%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (62 samples, 0.01%)</title><rect x="98.9944%" y="1605" width="0.0142%" height="15" fill="rgb(237,157,21)" fg:x="433749" fg:w="62"/><text x="99.2444%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (125 samples, 0.03%)</title><rect x="98.9944%" y="1685" width="0.0285%" height="15" fill="rgb(222,94,11)" fg:x="433749" fg:w="125"/><text x="99.2444%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (125 samples, 0.03%)</title><rect x="98.9944%" y="1669" width="0.0285%" height="15" fill="rgb(249,113,6)" fg:x="433749" fg:w="125"/><text x="99.2444%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (125 samples, 0.03%)</title><rect x="98.9944%" y="1653" width="0.0285%" height="15" fill="rgb(238,137,36)" fg:x="433749" fg:w="125"/><text x="99.2444%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (63 samples, 0.01%)</title><rect x="99.0086%" y="1637" width="0.0144%" height="15" fill="rgb(210,102,26)" fg:x="433811" fg:w="63"/><text x="99.2586%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (63 samples, 0.01%)</title><rect x="99.0086%" y="1621" width="0.0144%" height="15" fill="rgb(218,30,30)" fg:x="433811" fg:w="63"/><text x="99.2586%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (63 samples, 0.01%)</title><rect x="99.0086%" y="1605" width="0.0144%" height="15" fill="rgb(214,67,26)" fg:x="433811" fg:w="63"/><text x="99.2586%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (61 samples, 0.01%)</title><rect x="99.0232%" y="1637" width="0.0139%" height="15" fill="rgb(251,9,53)" fg:x="433875" fg:w="61"/><text x="99.2732%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (61 samples, 0.01%)</title><rect x="99.0232%" y="1621" width="0.0139%" height="15" fill="rgb(228,204,25)" fg:x="433875" fg:w="61"/><text x="99.2732%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (60 samples, 0.01%)</title><rect x="99.0234%" y="1605" width="0.0137%" height="15" fill="rgb(207,153,8)" fg:x="433876" fg:w="60"/><text x="99.2734%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (869 samples, 0.20%)</title><rect x="98.8536%" y="1845" width="0.1983%" height="15" fill="rgb(242,9,16)" fg:x="433132" fg:w="869"/><text x="99.1036%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (867 samples, 0.20%)</title><rect x="98.8541%" y="1829" width="0.1979%" height="15" fill="rgb(217,211,10)" fg:x="433134" fg:w="867"/><text x="99.1041%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (867 samples, 0.20%)</title><rect x="98.8541%" y="1813" width="0.1979%" height="15" fill="rgb(219,228,52)" fg:x="433134" fg:w="867"/><text x="99.1041%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (865 samples, 0.20%)</title><rect x="98.8545%" y="1797" width="0.1974%" height="15" fill="rgb(231,92,29)" fg:x="433136" fg:w="865"/><text x="99.1045%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (672 samples, 0.15%)</title><rect x="98.8986%" y="1781" width="0.1534%" height="15" fill="rgb(232,8,23)" fg:x="433329" fg:w="672"/><text x="99.1486%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (672 samples, 0.15%)</title><rect x="98.8986%" y="1765" width="0.1534%" height="15" fill="rgb(216,211,34)" fg:x="433329" fg:w="672"/><text x="99.1486%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (669 samples, 0.15%)</title><rect x="98.8992%" y="1749" width="0.1527%" height="15" fill="rgb(236,151,0)" fg:x="433332" fg:w="669"/><text x="99.1492%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (252 samples, 0.06%)</title><rect x="98.9944%" y="1733" width="0.0575%" height="15" fill="rgb(209,168,3)" fg:x="433749" fg:w="252"/><text x="99.2444%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (252 samples, 0.06%)</title><rect x="98.9944%" y="1717" width="0.0575%" height="15" fill="rgb(208,129,28)" fg:x="433749" fg:w="252"/><text x="99.2444%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (252 samples, 0.06%)</title><rect x="98.9944%" y="1701" width="0.0575%" height="15" fill="rgb(229,78,22)" fg:x="433749" fg:w="252"/><text x="99.2444%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (127 samples, 0.03%)</title><rect x="99.0229%" y="1685" width="0.0290%" height="15" fill="rgb(228,187,13)" fg:x="433874" fg:w="127"/><text x="99.2729%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (127 samples, 0.03%)</title><rect x="99.0229%" y="1669" width="0.0290%" height="15" fill="rgb(240,119,24)" fg:x="433874" fg:w="127"/><text x="99.2729%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (126 samples, 0.03%)</title><rect x="99.0232%" y="1653" width="0.0288%" height="15" fill="rgb(209,194,42)" fg:x="433875" fg:w="126"/><text x="99.2732%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (65 samples, 0.01%)</title><rect x="99.0371%" y="1637" width="0.0148%" height="15" fill="rgb(247,200,46)" fg:x="433936" fg:w="65"/><text x="99.2871%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (65 samples, 0.01%)</title><rect x="99.0371%" y="1621" width="0.0148%" height="15" fill="rgb(218,76,16)" fg:x="433936" fg:w="65"/><text x="99.2871%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (65 samples, 0.01%)</title><rect x="99.0371%" y="1605" width="0.0148%" height="15" fill="rgb(225,21,48)" fg:x="433936" fg:w="65"/><text x="99.2871%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (47 samples, 0.01%)</title><rect x="99.0563%" y="1605" width="0.0107%" height="15" fill="rgb(239,223,50)" fg:x="434020" fg:w="47"/><text x="99.3063%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="99.0563%" y="1589" width="0.0107%" height="15" fill="rgb(244,45,21)" fg:x="434020" fg:w="47"/><text x="99.3063%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (46 samples, 0.01%)</title><rect x="99.0565%" y="1573" width="0.0105%" height="15" fill="rgb(232,33,43)" fg:x="434021" fg:w="46"/><text x="99.3065%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (46 samples, 0.01%)</title><rect x="99.0565%" y="1557" width="0.0105%" height="15" fill="rgb(209,8,3)" fg:x="434021" fg:w="46"/><text x="99.3065%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (46 samples, 0.01%)</title><rect x="99.0565%" y="1541" width="0.0105%" height="15" fill="rgb(214,25,53)" fg:x="434021" fg:w="46"/><text x="99.3065%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (97 samples, 0.02%)</title><rect x="99.0563%" y="1653" width="0.0221%" height="15" fill="rgb(254,186,54)" fg:x="434020" fg:w="97"/><text x="99.3063%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (97 samples, 0.02%)</title><rect x="99.0563%" y="1637" width="0.0221%" height="15" fill="rgb(208,174,49)" fg:x="434020" fg:w="97"/><text x="99.3063%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (97 samples, 0.02%)</title><rect x="99.0563%" y="1621" width="0.0221%" height="15" fill="rgb(233,191,51)" fg:x="434020" fg:w="97"/><text x="99.3063%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="99.0670%" y="1605" width="0.0114%" height="15" fill="rgb(222,134,10)" fg:x="434067" fg:w="50"/><text x="99.3170%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="99.0670%" y="1589" width="0.0114%" height="15" fill="rgb(230,226,20)" fg:x="434067" fg:w="50"/><text x="99.3170%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (50 samples, 0.01%)</title><rect x="99.0670%" y="1573" width="0.0114%" height="15" fill="rgb(251,111,25)" fg:x="434067" fg:w="50"/><text x="99.3170%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (50 samples, 0.01%)</title><rect x="99.0670%" y="1557" width="0.0114%" height="15" fill="rgb(224,40,46)" fg:x="434067" fg:w="50"/><text x="99.3170%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (50 samples, 0.01%)</title><rect x="99.0670%" y="1541" width="0.0114%" height="15" fill="rgb(236,108,47)" fg:x="434067" fg:w="50"/><text x="99.3170%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (45 samples, 0.01%)</title><rect x="99.0681%" y="1525" width="0.0103%" height="15" fill="rgb(234,93,0)" fg:x="434072" fg:w="45"/><text x="99.3181%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (47 samples, 0.01%)</title><rect x="99.0784%" y="1605" width="0.0107%" height="15" fill="rgb(224,213,32)" fg:x="434117" fg:w="47"/><text x="99.3284%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="99.0784%" y="1589" width="0.0107%" height="15" fill="rgb(251,11,48)" fg:x="434117" fg:w="47"/><text x="99.3284%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (47 samples, 0.01%)</title><rect x="99.0784%" y="1573" width="0.0107%" height="15" fill="rgb(236,173,5)" fg:x="434117" fg:w="47"/><text x="99.3284%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (47 samples, 0.01%)</title><rect x="99.0784%" y="1557" width="0.0107%" height="15" fill="rgb(230,95,12)" fg:x="434117" fg:w="47"/><text x="99.3284%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (47 samples, 0.01%)</title><rect x="99.0784%" y="1541" width="0.0107%" height="15" fill="rgb(232,209,1)" fg:x="434117" fg:w="47"/><text x="99.3284%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (189 samples, 0.04%)</title><rect x="99.0563%" y="1701" width="0.0431%" height="15" fill="rgb(232,6,1)" fg:x="434020" fg:w="189"/><text x="99.3063%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (189 samples, 0.04%)</title><rect x="99.0563%" y="1685" width="0.0431%" height="15" fill="rgb(210,224,50)" fg:x="434020" fg:w="189"/><text x="99.3063%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (189 samples, 0.04%)</title><rect x="99.0563%" y="1669" width="0.0431%" height="15" fill="rgb(228,127,35)" fg:x="434020" fg:w="189"/><text x="99.3063%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (92 samples, 0.02%)</title><rect x="99.0784%" y="1653" width="0.0210%" height="15" fill="rgb(245,102,45)" fg:x="434117" fg:w="92"/><text x="99.3284%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (92 samples, 0.02%)</title><rect x="99.0784%" y="1637" width="0.0210%" height="15" fill="rgb(214,1,49)" fg:x="434117" fg:w="92"/><text x="99.3284%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (92 samples, 0.02%)</title><rect x="99.0784%" y="1621" width="0.0210%" height="15" fill="rgb(226,163,40)" fg:x="434117" fg:w="92"/><text x="99.3284%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="99.0891%" y="1605" width="0.0103%" height="15" fill="rgb(239,212,28)" fg:x="434164" fg:w="45"/><text x="99.3391%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.0891%" y="1589" width="0.0103%" height="15" fill="rgb(220,20,13)" fg:x="434164" fg:w="45"/><text x="99.3391%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (45 samples, 0.01%)</title><rect x="99.0891%" y="1573" width="0.0103%" height="15" fill="rgb(210,164,35)" fg:x="434164" fg:w="45"/><text x="99.3391%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (45 samples, 0.01%)</title><rect x="99.0891%" y="1557" width="0.0103%" height="15" fill="rgb(248,109,41)" fg:x="434164" fg:w="45"/><text x="99.3391%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (45 samples, 0.01%)</title><rect x="99.0891%" y="1541" width="0.0103%" height="15" fill="rgb(238,23,50)" fg:x="434164" fg:w="45"/><text x="99.3391%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (51 samples, 0.01%)</title><rect x="99.0994%" y="1605" width="0.0116%" height="15" fill="rgb(211,48,49)" fg:x="434209" fg:w="51"/><text x="99.3494%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.0994%" y="1589" width="0.0116%" height="15" fill="rgb(223,36,21)" fg:x="434209" fg:w="51"/><text x="99.3494%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (51 samples, 0.01%)</title><rect x="99.0994%" y="1573" width="0.0116%" height="15" fill="rgb(207,123,46)" fg:x="434209" fg:w="51"/><text x="99.3494%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (51 samples, 0.01%)</title><rect x="99.0994%" y="1557" width="0.0116%" height="15" fill="rgb(240,218,32)" fg:x="434209" fg:w="51"/><text x="99.3494%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (51 samples, 0.01%)</title><rect x="99.0994%" y="1541" width="0.0116%" height="15" fill="rgb(252,5,43)" fg:x="434209" fg:w="51"/><text x="99.3494%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (99 samples, 0.02%)</title><rect x="99.0994%" y="1653" width="0.0226%" height="15" fill="rgb(252,84,19)" fg:x="434209" fg:w="99"/><text x="99.3494%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (99 samples, 0.02%)</title><rect x="99.0994%" y="1637" width="0.0226%" height="15" fill="rgb(243,152,39)" fg:x="434209" fg:w="99"/><text x="99.3494%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (99 samples, 0.02%)</title><rect x="99.0994%" y="1621" width="0.0226%" height="15" fill="rgb(234,160,15)" fg:x="434209" fg:w="99"/><text x="99.3494%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (48 samples, 0.01%)</title><rect x="99.1110%" y="1605" width="0.0110%" height="15" fill="rgb(237,34,20)" fg:x="434260" fg:w="48"/><text x="99.3610%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="99.1110%" y="1589" width="0.0110%" height="15" fill="rgb(229,97,13)" fg:x="434260" fg:w="48"/><text x="99.3610%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (48 samples, 0.01%)</title><rect x="99.1110%" y="1573" width="0.0110%" height="15" fill="rgb(234,71,50)" fg:x="434260" fg:w="48"/><text x="99.3610%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (48 samples, 0.01%)</title><rect x="99.1110%" y="1557" width="0.0110%" height="15" fill="rgb(253,155,4)" fg:x="434260" fg:w="48"/><text x="99.3610%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (48 samples, 0.01%)</title><rect x="99.1110%" y="1541" width="0.0110%" height="15" fill="rgb(222,185,37)" fg:x="434260" fg:w="48"/><text x="99.3610%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (58 samples, 0.01%)</title><rect x="99.1220%" y="1605" width="0.0132%" height="15" fill="rgb(251,177,13)" fg:x="434308" fg:w="58"/><text x="99.3720%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (58 samples, 0.01%)</title><rect x="99.1220%" y="1589" width="0.0132%" height="15" fill="rgb(250,179,40)" fg:x="434308" fg:w="58"/><text x="99.3720%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (58 samples, 0.01%)</title><rect x="99.1220%" y="1573" width="0.0132%" height="15" fill="rgb(242,44,2)" fg:x="434308" fg:w="58"/><text x="99.3720%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (58 samples, 0.01%)</title><rect x="99.1220%" y="1557" width="0.0132%" height="15" fill="rgb(216,177,13)" fg:x="434308" fg:w="58"/><text x="99.3720%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (58 samples, 0.01%)</title><rect x="99.1220%" y="1541" width="0.0132%" height="15" fill="rgb(216,106,43)" fg:x="434308" fg:w="58"/><text x="99.3720%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (50 samples, 0.01%)</title><rect x="99.1238%" y="1525" width="0.0114%" height="15" fill="rgb(216,183,2)" fg:x="434316" fg:w="50"/><text x="99.3738%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (127 samples, 0.03%)</title><rect x="99.1220%" y="1621" width="0.0290%" height="15" fill="rgb(249,75,3)" fg:x="434308" fg:w="127"/><text x="99.3720%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (69 samples, 0.02%)</title><rect x="99.1352%" y="1605" width="0.0157%" height="15" fill="rgb(219,67,39)" fg:x="434366" fg:w="69"/><text x="99.3852%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (69 samples, 0.02%)</title><rect x="99.1352%" y="1589" width="0.0157%" height="15" fill="rgb(253,228,2)" fg:x="434366" fg:w="69"/><text x="99.3852%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (69 samples, 0.02%)</title><rect x="99.1352%" y="1573" width="0.0157%" height="15" fill="rgb(235,138,27)" fg:x="434366" fg:w="69"/><text x="99.3852%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (69 samples, 0.02%)</title><rect x="99.1352%" y="1557" width="0.0157%" height="15" fill="rgb(236,97,51)" fg:x="434366" fg:w="69"/><text x="99.3852%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (69 samples, 0.02%)</title><rect x="99.1352%" y="1541" width="0.0157%" height="15" fill="rgb(240,80,30)" fg:x="434366" fg:w="69"/><text x="99.3852%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (58 samples, 0.01%)</title><rect x="99.1377%" y="1525" width="0.0132%" height="15" fill="rgb(230,178,19)" fg:x="434377" fg:w="58"/><text x="99.3877%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (417 samples, 0.10%)</title><rect x="99.0560%" y="1749" width="0.0952%" height="15" fill="rgb(210,190,27)" fg:x="434019" fg:w="417"/><text x="99.3060%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (417 samples, 0.10%)</title><rect x="99.0560%" y="1733" width="0.0952%" height="15" fill="rgb(222,107,31)" fg:x="434019" fg:w="417"/><text x="99.3060%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (416 samples, 0.09%)</title><rect x="99.0563%" y="1717" width="0.0949%" height="15" fill="rgb(216,127,34)" fg:x="434020" fg:w="416"/><text x="99.3063%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (227 samples, 0.05%)</title><rect x="99.0994%" y="1701" width="0.0518%" height="15" fill="rgb(234,116,52)" fg:x="434209" fg:w="227"/><text x="99.3494%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (227 samples, 0.05%)</title><rect x="99.0994%" y="1685" width="0.0518%" height="15" fill="rgb(222,124,15)" fg:x="434209" fg:w="227"/><text x="99.3494%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (227 samples, 0.05%)</title><rect x="99.0994%" y="1669" width="0.0518%" height="15" fill="rgb(231,179,28)" fg:x="434209" fg:w="227"/><text x="99.3494%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (128 samples, 0.03%)</title><rect x="99.1220%" y="1653" width="0.0292%" height="15" fill="rgb(226,93,45)" fg:x="434308" fg:w="128"/><text x="99.3720%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (128 samples, 0.03%)</title><rect x="99.1220%" y="1637" width="0.0292%" height="15" fill="rgb(215,8,51)" fg:x="434308" fg:w="128"/><text x="99.3720%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (51 samples, 0.01%)</title><rect x="99.1512%" y="1749" width="0.0116%" height="15" fill="rgb(223,106,5)" fg:x="434436" fg:w="51"/><text x="99.4012%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (51 samples, 0.01%)</title><rect x="99.1512%" y="1733" width="0.0116%" height="15" fill="rgb(250,191,5)" fg:x="434436" fg:w="51"/><text x="99.4012%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.1512%" y="1717" width="0.0116%" height="15" fill="rgb(242,132,44)" fg:x="434436" fg:w="51"/><text x="99.4012%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="99.1514%" y="1701" width="0.0114%" height="15" fill="rgb(251,152,29)" fg:x="434437" fg:w="50"/><text x="99.4014%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (45 samples, 0.01%)</title><rect x="99.1745%" y="1509" width="0.0103%" height="15" fill="rgb(218,179,5)" fg:x="434538" fg:w="45"/><text x="99.4245%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (96 samples, 0.02%)</title><rect x="99.1631%" y="1605" width="0.0219%" height="15" fill="rgb(227,67,19)" fg:x="434488" fg:w="96"/><text x="99.4131%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (96 samples, 0.02%)</title><rect x="99.1631%" y="1589" width="0.0219%" height="15" fill="rgb(233,119,31)" fg:x="434488" fg:w="96"/><text x="99.4131%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (95 samples, 0.02%)</title><rect x="99.1633%" y="1573" width="0.0217%" height="15" fill="rgb(241,120,22)" fg:x="434489" fg:w="95"/><text x="99.4133%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (95 samples, 0.02%)</title><rect x="99.1633%" y="1557" width="0.0217%" height="15" fill="rgb(224,102,30)" fg:x="434489" fg:w="95"/><text x="99.4133%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (95 samples, 0.02%)</title><rect x="99.1633%" y="1541" width="0.0217%" height="15" fill="rgb(210,164,37)" fg:x="434489" fg:w="95"/><text x="99.4133%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (86 samples, 0.02%)</title><rect x="99.1654%" y="1525" width="0.0196%" height="15" fill="rgb(226,191,16)" fg:x="434498" fg:w="86"/><text x="99.4154%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (186 samples, 0.04%)</title><rect x="99.1631%" y="1653" width="0.0425%" height="15" fill="rgb(214,40,45)" fg:x="434488" fg:w="186"/><text x="99.4131%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (186 samples, 0.04%)</title><rect x="99.1631%" y="1637" width="0.0425%" height="15" fill="rgb(244,29,26)" fg:x="434488" fg:w="186"/><text x="99.4131%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (186 samples, 0.04%)</title><rect x="99.1631%" y="1621" width="0.0425%" height="15" fill="rgb(216,16,5)" fg:x="434488" fg:w="186"/><text x="99.4131%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (90 samples, 0.02%)</title><rect x="99.1850%" y="1605" width="0.0205%" height="15" fill="rgb(249,76,35)" fg:x="434584" fg:w="90"/><text x="99.4350%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (90 samples, 0.02%)</title><rect x="99.1850%" y="1589" width="0.0205%" height="15" fill="rgb(207,11,44)" fg:x="434584" fg:w="90"/><text x="99.4350%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (90 samples, 0.02%)</title><rect x="99.1850%" y="1573" width="0.0205%" height="15" fill="rgb(228,190,49)" fg:x="434584" fg:w="90"/><text x="99.4350%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (90 samples, 0.02%)</title><rect x="99.1850%" y="1557" width="0.0205%" height="15" fill="rgb(214,173,12)" fg:x="434584" fg:w="90"/><text x="99.4350%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (90 samples, 0.02%)</title><rect x="99.1850%" y="1541" width="0.0205%" height="15" fill="rgb(218,26,35)" fg:x="434584" fg:w="90"/><text x="99.4350%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (76 samples, 0.02%)</title><rect x="99.1882%" y="1525" width="0.0173%" height="15" fill="rgb(220,200,19)" fg:x="434598" fg:w="76"/><text x="99.4382%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (90 samples, 0.02%)</title><rect x="99.2058%" y="1605" width="0.0205%" height="15" fill="rgb(239,95,49)" fg:x="434675" fg:w="90"/><text x="99.4558%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (90 samples, 0.02%)</title><rect x="99.2058%" y="1589" width="0.0205%" height="15" fill="rgb(235,85,53)" fg:x="434675" fg:w="90"/><text x="99.4558%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (90 samples, 0.02%)</title><rect x="99.2058%" y="1573" width="0.0205%" height="15" fill="rgb(233,133,31)" fg:x="434675" fg:w="90"/><text x="99.4558%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (90 samples, 0.02%)</title><rect x="99.2058%" y="1557" width="0.0205%" height="15" fill="rgb(218,25,20)" fg:x="434675" fg:w="90"/><text x="99.4558%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (90 samples, 0.02%)</title><rect x="99.2058%" y="1541" width="0.0205%" height="15" fill="rgb(252,210,38)" fg:x="434675" fg:w="90"/><text x="99.4558%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (79 samples, 0.02%)</title><rect x="99.2083%" y="1525" width="0.0180%" height="15" fill="rgb(242,134,21)" fg:x="434686" fg:w="79"/><text x="99.4583%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (373 samples, 0.09%)</title><rect x="99.1631%" y="1701" width="0.0851%" height="15" fill="rgb(213,28,48)" fg:x="434488" fg:w="373"/><text x="99.4131%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (373 samples, 0.09%)</title><rect x="99.1631%" y="1685" width="0.0851%" height="15" fill="rgb(250,196,2)" fg:x="434488" fg:w="373"/><text x="99.4131%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (373 samples, 0.09%)</title><rect x="99.1631%" y="1669" width="0.0851%" height="15" fill="rgb(227,5,17)" fg:x="434488" fg:w="373"/><text x="99.4131%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (187 samples, 0.04%)</title><rect x="99.2055%" y="1653" width="0.0427%" height="15" fill="rgb(221,226,24)" fg:x="434674" fg:w="187"/><text x="99.4555%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (187 samples, 0.04%)</title><rect x="99.2055%" y="1637" width="0.0427%" height="15" fill="rgb(211,5,48)" fg:x="434674" fg:w="187"/><text x="99.4555%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (186 samples, 0.04%)</title><rect x="99.2058%" y="1621" width="0.0425%" height="15" fill="rgb(219,150,6)" fg:x="434675" fg:w="186"/><text x="99.4558%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (96 samples, 0.02%)</title><rect x="99.2263%" y="1605" width="0.0219%" height="15" fill="rgb(251,46,16)" fg:x="434765" fg:w="96"/><text x="99.4763%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (96 samples, 0.02%)</title><rect x="99.2263%" y="1589" width="0.0219%" height="15" fill="rgb(220,204,40)" fg:x="434765" fg:w="96"/><text x="99.4763%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (95 samples, 0.02%)</title><rect x="99.2265%" y="1573" width="0.0217%" height="15" fill="rgb(211,85,2)" fg:x="434766" fg:w="95"/><text x="99.4765%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (95 samples, 0.02%)</title><rect x="99.2265%" y="1557" width="0.0217%" height="15" fill="rgb(229,17,7)" fg:x="434766" fg:w="95"/><text x="99.4765%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (95 samples, 0.02%)</title><rect x="99.2265%" y="1541" width="0.0217%" height="15" fill="rgb(239,72,28)" fg:x="434766" fg:w="95"/><text x="99.4765%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (76 samples, 0.02%)</title><rect x="99.2309%" y="1525" width="0.0173%" height="15" fill="rgb(230,47,54)" fg:x="434785" fg:w="76"/><text x="99.4809%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (46 samples, 0.01%)</title><rect x="99.2377%" y="1509" width="0.0105%" height="15" fill="rgb(214,50,8)" fg:x="434815" fg:w="46"/><text x="99.4877%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (89 samples, 0.02%)</title><rect x="99.2482%" y="1605" width="0.0203%" height="15" fill="rgb(216,198,43)" fg:x="434861" fg:w="89"/><text x="99.4982%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (89 samples, 0.02%)</title><rect x="99.2482%" y="1589" width="0.0203%" height="15" fill="rgb(234,20,35)" fg:x="434861" fg:w="89"/><text x="99.4982%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (89 samples, 0.02%)</title><rect x="99.2482%" y="1573" width="0.0203%" height="15" fill="rgb(254,45,19)" fg:x="434861" fg:w="89"/><text x="99.4982%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (89 samples, 0.02%)</title><rect x="99.2482%" y="1557" width="0.0203%" height="15" fill="rgb(219,14,44)" fg:x="434861" fg:w="89"/><text x="99.4982%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (89 samples, 0.02%)</title><rect x="99.2482%" y="1541" width="0.0203%" height="15" fill="rgb(217,220,26)" fg:x="434861" fg:w="89"/><text x="99.4982%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (74 samples, 0.02%)</title><rect x="99.2516%" y="1525" width="0.0169%" height="15" fill="rgb(213,158,28)" fg:x="434876" fg:w="74"/><text x="99.5016%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (180 samples, 0.04%)</title><rect x="99.2482%" y="1653" width="0.0411%" height="15" fill="rgb(252,51,52)" fg:x="434861" fg:w="180"/><text x="99.4982%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (180 samples, 0.04%)</title><rect x="99.2482%" y="1637" width="0.0411%" height="15" fill="rgb(246,89,16)" fg:x="434861" fg:w="180"/><text x="99.4982%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (180 samples, 0.04%)</title><rect x="99.2482%" y="1621" width="0.0411%" height="15" fill="rgb(216,158,49)" fg:x="434861" fg:w="180"/><text x="99.4982%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (90 samples, 0.02%)</title><rect x="99.2688%" y="1605" width="0.0205%" height="15" fill="rgb(236,107,19)" fg:x="434951" fg:w="90"/><text x="99.5188%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (90 samples, 0.02%)</title><rect x="99.2688%" y="1589" width="0.0205%" height="15" fill="rgb(228,185,30)" fg:x="434951" fg:w="90"/><text x="99.5188%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (90 samples, 0.02%)</title><rect x="99.2688%" y="1573" width="0.0205%" height="15" fill="rgb(246,134,8)" fg:x="434951" fg:w="90"/><text x="99.5188%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (90 samples, 0.02%)</title><rect x="99.2688%" y="1557" width="0.0205%" height="15" fill="rgb(214,143,50)" fg:x="434951" fg:w="90"/><text x="99.5188%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (90 samples, 0.02%)</title><rect x="99.2688%" y="1541" width="0.0205%" height="15" fill="rgb(228,75,8)" fg:x="434951" fg:w="90"/><text x="99.5188%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (74 samples, 0.02%)</title><rect x="99.2724%" y="1525" width="0.0169%" height="15" fill="rgb(207,175,4)" fg:x="434967" fg:w="74"/><text x="99.5224%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (99 samples, 0.02%)</title><rect x="99.2893%" y="1605" width="0.0226%" height="15" fill="rgb(205,108,24)" fg:x="435041" fg:w="99"/><text x="99.5393%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (99 samples, 0.02%)</title><rect x="99.2893%" y="1589" width="0.0226%" height="15" fill="rgb(244,120,49)" fg:x="435041" fg:w="99"/><text x="99.5393%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (99 samples, 0.02%)</title><rect x="99.2893%" y="1573" width="0.0226%" height="15" fill="rgb(223,47,38)" fg:x="435041" fg:w="99"/><text x="99.5393%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (99 samples, 0.02%)</title><rect x="99.2893%" y="1557" width="0.0226%" height="15" fill="rgb(229,179,11)" fg:x="435041" fg:w="99"/><text x="99.5393%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (99 samples, 0.02%)</title><rect x="99.2893%" y="1541" width="0.0226%" height="15" fill="rgb(231,122,1)" fg:x="435041" fg:w="99"/><text x="99.5393%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (84 samples, 0.02%)</title><rect x="99.2927%" y="1525" width="0.0192%" height="15" fill="rgb(245,119,9)" fg:x="435056" fg:w="84"/><text x="99.5427%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (45 samples, 0.01%)</title><rect x="99.3016%" y="1509" width="0.0103%" height="15" fill="rgb(241,163,25)" fg:x="435095" fg:w="45"/><text x="99.5516%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (185 samples, 0.04%)</title><rect x="99.2893%" y="1621" width="0.0422%" height="15" fill="rgb(217,214,3)" fg:x="435041" fg:w="185"/><text x="99.5393%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (86 samples, 0.02%)</title><rect x="99.3119%" y="1605" width="0.0196%" height="15" fill="rgb(240,86,28)" fg:x="435140" fg:w="86"/><text x="99.5619%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (86 samples, 0.02%)</title><rect x="99.3119%" y="1589" width="0.0196%" height="15" fill="rgb(215,47,9)" fg:x="435140" fg:w="86"/><text x="99.5619%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (86 samples, 0.02%)</title><rect x="99.3119%" y="1573" width="0.0196%" height="15" fill="rgb(252,25,45)" fg:x="435140" fg:w="86"/><text x="99.5619%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (86 samples, 0.02%)</title><rect x="99.3119%" y="1557" width="0.0196%" height="15" fill="rgb(251,164,9)" fg:x="435140" fg:w="86"/><text x="99.5619%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (86 samples, 0.02%)</title><rect x="99.3119%" y="1541" width="0.0196%" height="15" fill="rgb(233,194,0)" fg:x="435140" fg:w="86"/><text x="99.5619%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (69 samples, 0.02%)</title><rect x="99.3158%" y="1525" width="0.0157%" height="15" fill="rgb(249,111,24)" fg:x="435157" fg:w="69"/><text x="99.5658%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (1,211 samples, 0.28%)</title><rect x="99.0554%" y="1797" width="0.2764%" height="15" fill="rgb(250,223,3)" fg:x="434016" fg:w="1211"/><text x="99.3054%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (1,211 samples, 0.28%)</title><rect x="99.0554%" y="1781" width="0.2764%" height="15" fill="rgb(236,178,37)" fg:x="434016" fg:w="1211"/><text x="99.3054%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (1,208 samples, 0.28%)</title><rect x="99.0560%" y="1765" width="0.2757%" height="15" fill="rgb(241,158,50)" fg:x="434019" fg:w="1208"/><text x="99.3060%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (740 samples, 0.17%)</title><rect x="99.1629%" y="1749" width="0.1689%" height="15" fill="rgb(213,121,41)" fg:x="434487" fg:w="740"/><text x="99.4129%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (740 samples, 0.17%)</title><rect x="99.1629%" y="1733" width="0.1689%" height="15" fill="rgb(240,92,3)" fg:x="434487" fg:w="740"/><text x="99.4129%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (739 samples, 0.17%)</title><rect x="99.1631%" y="1717" width="0.1687%" height="15" fill="rgb(205,123,3)" fg:x="434488" fg:w="739"/><text x="99.4131%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (366 samples, 0.08%)</title><rect x="99.2482%" y="1701" width="0.0835%" height="15" fill="rgb(205,97,47)" fg:x="434861" fg:w="366"/><text x="99.4982%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (366 samples, 0.08%)</title><rect x="99.2482%" y="1685" width="0.0835%" height="15" fill="rgb(247,152,14)" fg:x="434861" fg:w="366"/><text x="99.4982%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (366 samples, 0.08%)</title><rect x="99.2482%" y="1669" width="0.0835%" height="15" fill="rgb(248,195,53)" fg:x="434861" fg:w="366"/><text x="99.4982%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (186 samples, 0.04%)</title><rect x="99.2893%" y="1653" width="0.0425%" height="15" fill="rgb(226,201,16)" fg:x="435041" fg:w="186"/><text x="99.5393%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (186 samples, 0.04%)</title><rect x="99.2893%" y="1637" width="0.0425%" height="15" fill="rgb(205,98,0)" fg:x="435041" fg:w="186"/><text x="99.5393%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (47 samples, 0.01%)</title><rect x="99.3377%" y="1461" width="0.0107%" height="15" fill="rgb(214,191,48)" fg:x="435253" fg:w="47"/><text x="99.5877%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (47 samples, 0.01%)</title><rect x="99.3377%" y="1445" width="0.0107%" height="15" fill="rgb(237,112,39)" fg:x="435253" fg:w="47"/><text x="99.5877%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (47 samples, 0.01%)</title><rect x="99.3377%" y="1429" width="0.0107%" height="15" fill="rgb(247,203,27)" fg:x="435253" fg:w="47"/><text x="99.5877%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (97 samples, 0.02%)</title><rect x="99.3377%" y="1509" width="0.0221%" height="15" fill="rgb(235,124,28)" fg:x="435253" fg:w="97"/><text x="99.5877%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (97 samples, 0.02%)</title><rect x="99.3377%" y="1493" width="0.0221%" height="15" fill="rgb(208,207,46)" fg:x="435253" fg:w="97"/><text x="99.5877%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (97 samples, 0.02%)</title><rect x="99.3377%" y="1477" width="0.0221%" height="15" fill="rgb(234,176,4)" fg:x="435253" fg:w="97"/><text x="99.5877%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (50 samples, 0.01%)</title><rect x="99.3484%" y="1461" width="0.0114%" height="15" fill="rgb(230,133,28)" fg:x="435300" fg:w="50"/><text x="99.5984%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (50 samples, 0.01%)</title><rect x="99.3484%" y="1445" width="0.0114%" height="15" fill="rgb(211,137,40)" fg:x="435300" fg:w="50"/><text x="99.5984%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (50 samples, 0.01%)</title><rect x="99.3484%" y="1429" width="0.0114%" height="15" fill="rgb(254,35,13)" fg:x="435300" fg:w="50"/><text x="99.5984%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (48 samples, 0.01%)</title><rect x="99.3598%" y="1461" width="0.0110%" height="15" fill="rgb(225,49,51)" fg:x="435350" fg:w="48"/><text x="99.6098%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (48 samples, 0.01%)</title><rect x="99.3598%" y="1445" width="0.0110%" height="15" fill="rgb(251,10,15)" fg:x="435350" fg:w="48"/><text x="99.6098%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (48 samples, 0.01%)</title><rect x="99.3598%" y="1429" width="0.0110%" height="15" fill="rgb(228,207,15)" fg:x="435350" fg:w="48"/><text x="99.6098%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (194 samples, 0.04%)</title><rect x="99.3377%" y="1621" width="0.0443%" height="15" fill="rgb(241,99,19)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (194 samples, 0.04%)</title><rect x="99.3377%" y="1605" width="0.0443%" height="15" fill="rgb(207,104,49)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (194 samples, 0.04%)</title><rect x="99.3377%" y="1589" width="0.0443%" height="15" fill="rgb(234,99,18)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (194 samples, 0.04%)</title><rect x="99.3377%" y="1573" width="0.0443%" height="15" fill="rgb(213,191,49)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (194 samples, 0.04%)</title><rect x="99.3377%" y="1557" width="0.0443%" height="15" fill="rgb(210,226,19)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (194 samples, 0.04%)</title><rect x="99.3377%" y="1541" width="0.0443%" height="15" fill="rgb(229,97,18)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (194 samples, 0.04%)</title><rect x="99.3377%" y="1525" width="0.0443%" height="15" fill="rgb(211,167,15)" fg:x="435253" fg:w="194"/><text x="99.5877%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (97 samples, 0.02%)</title><rect x="99.3598%" y="1509" width="0.0221%" height="15" fill="rgb(210,169,34)" fg:x="435350" fg:w="97"/><text x="99.6098%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (97 samples, 0.02%)</title><rect x="99.3598%" y="1493" width="0.0221%" height="15" fill="rgb(241,121,31)" fg:x="435350" fg:w="97"/><text x="99.6098%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (97 samples, 0.02%)</title><rect x="99.3598%" y="1477" width="0.0221%" height="15" fill="rgb(232,40,11)" fg:x="435350" fg:w="97"/><text x="99.6098%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (49 samples, 0.01%)</title><rect x="99.3708%" y="1461" width="0.0112%" height="15" fill="rgb(205,86,26)" fg:x="435398" fg:w="49"/><text x="99.6208%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (49 samples, 0.01%)</title><rect x="99.3708%" y="1445" width="0.0112%" height="15" fill="rgb(231,126,28)" fg:x="435398" fg:w="49"/><text x="99.6208%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (49 samples, 0.01%)</title><rect x="99.3708%" y="1429" width="0.0112%" height="15" fill="rgb(219,221,18)" fg:x="435398" fg:w="49"/><text x="99.6208%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (207 samples, 0.05%)</title><rect x="99.3374%" y="1685" width="0.0472%" height="15" fill="rgb(211,40,0)" fg:x="435252" fg:w="207"/><text x="99.5874%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (207 samples, 0.05%)</title><rect x="99.3374%" y="1669" width="0.0472%" height="15" fill="rgb(239,85,43)" fg:x="435252" fg:w="207"/><text x="99.5874%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (207 samples, 0.05%)</title><rect x="99.3374%" y="1653" width="0.0472%" height="15" fill="rgb(231,55,21)" fg:x="435252" fg:w="207"/><text x="99.5874%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (206 samples, 0.05%)</title><rect x="99.3377%" y="1637" width="0.0470%" height="15" fill="rgb(225,184,43)" fg:x="435253" fg:w="206"/><text x="99.5877%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (251 samples, 0.06%)</title><rect x="99.3324%" y="1733" width="0.0573%" height="15" fill="rgb(251,158,41)" fg:x="435230" fg:w="251"/><text x="99.5824%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (251 samples, 0.06%)</title><rect x="99.3324%" y="1717" width="0.0573%" height="15" fill="rgb(234,159,37)" fg:x="435230" fg:w="251"/><text x="99.5824%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (251 samples, 0.06%)</title><rect x="99.3324%" y="1701" width="0.0573%" height="15" fill="rgb(216,204,22)" fg:x="435230" fg:w="251"/><text x="99.5824%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (46 samples, 0.01%)</title><rect x="99.3899%" y="1621" width="0.0105%" height="15" fill="rgb(214,17,3)" fg:x="435482" fg:w="46"/><text x="99.6399%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.3899%" y="1605" width="0.0105%" height="15" fill="rgb(212,111,17)" fg:x="435482" fg:w="46"/><text x="99.6399%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.3899%" y="1589" width="0.0105%" height="15" fill="rgb(221,157,24)" fg:x="435482" fg:w="46"/><text x="99.6399%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (91 samples, 0.02%)</title><rect x="99.3899%" y="1669" width="0.0208%" height="15" fill="rgb(252,16,13)" fg:x="435482" fg:w="91"/><text x="99.6399%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (91 samples, 0.02%)</title><rect x="99.3899%" y="1653" width="0.0208%" height="15" fill="rgb(221,62,2)" fg:x="435482" fg:w="91"/><text x="99.6399%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (91 samples, 0.02%)</title><rect x="99.3899%" y="1637" width="0.0208%" height="15" fill="rgb(247,87,22)" fg:x="435482" fg:w="91"/><text x="99.6399%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (45 samples, 0.01%)</title><rect x="99.4004%" y="1621" width="0.0103%" height="15" fill="rgb(215,73,9)" fg:x="435528" fg:w="45"/><text x="99.6504%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (45 samples, 0.01%)</title><rect x="99.4004%" y="1605" width="0.0103%" height="15" fill="rgb(207,175,33)" fg:x="435528" fg:w="45"/><text x="99.6504%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (45 samples, 0.01%)</title><rect x="99.4004%" y="1589" width="0.0103%" height="15" fill="rgb(243,129,54)" fg:x="435528" fg:w="45"/><text x="99.6504%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (44 samples, 0.01%)</title><rect x="99.4107%" y="1621" width="0.0100%" height="15" fill="rgb(227,119,45)" fg:x="435573" fg:w="44"/><text x="99.6607%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.4107%" y="1605" width="0.0100%" height="15" fill="rgb(205,109,36)" fg:x="435573" fg:w="44"/><text x="99.6607%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.4107%" y="1589" width="0.0100%" height="15" fill="rgb(205,6,39)" fg:x="435573" fg:w="44"/><text x="99.6607%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (180 samples, 0.04%)</title><rect x="99.3897%" y="1733" width="0.0411%" height="15" fill="rgb(221,32,16)" fg:x="435481" fg:w="180"/><text x="99.6397%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (180 samples, 0.04%)</title><rect x="99.3897%" y="1717" width="0.0411%" height="15" fill="rgb(228,144,50)" fg:x="435481" fg:w="180"/><text x="99.6397%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (180 samples, 0.04%)</title><rect x="99.3897%" y="1701" width="0.0411%" height="15" fill="rgb(229,201,53)" fg:x="435481" fg:w="180"/><text x="99.6397%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (179 samples, 0.04%)</title><rect x="99.3899%" y="1685" width="0.0409%" height="15" fill="rgb(249,153,27)" fg:x="435482" fg:w="179"/><text x="99.6399%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (88 samples, 0.02%)</title><rect x="99.4107%" y="1669" width="0.0201%" height="15" fill="rgb(227,106,25)" fg:x="435573" fg:w="88"/><text x="99.6607%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (88 samples, 0.02%)</title><rect x="99.4107%" y="1653" width="0.0201%" height="15" fill="rgb(230,65,29)" fg:x="435573" fg:w="88"/><text x="99.6607%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (88 samples, 0.02%)</title><rect x="99.4107%" y="1637" width="0.0201%" height="15" fill="rgb(221,57,46)" fg:x="435573" fg:w="88"/><text x="99.6607%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (44 samples, 0.01%)</title><rect x="99.4208%" y="1621" width="0.0100%" height="15" fill="rgb(229,161,17)" fg:x="435617" fg:w="44"/><text x="99.6708%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (44 samples, 0.01%)</title><rect x="99.4208%" y="1605" width="0.0100%" height="15" fill="rgb(222,213,11)" fg:x="435617" fg:w="44"/><text x="99.6708%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (44 samples, 0.01%)</title><rect x="99.4208%" y="1589" width="0.0100%" height="15" fill="rgb(235,35,13)" fg:x="435617" fg:w="44"/><text x="99.6708%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (499 samples, 0.11%)</title><rect x="99.3317%" y="1797" width="0.1139%" height="15" fill="rgb(233,158,34)" fg:x="435227" fg:w="499"/><text x="99.5817%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (497 samples, 0.11%)</title><rect x="99.3322%" y="1781" width="0.1134%" height="15" fill="rgb(215,151,48)" fg:x="435229" fg:w="497"/><text x="99.5822%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (497 samples, 0.11%)</title><rect x="99.3322%" y="1765" width="0.1134%" height="15" fill="rgb(229,84,14)" fg:x="435229" fg:w="497"/><text x="99.5822%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (496 samples, 0.11%)</title><rect x="99.3324%" y="1749" width="0.1132%" height="15" fill="rgb(229,68,14)" fg:x="435230" fg:w="496"/><text x="99.5824%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (65 samples, 0.01%)</title><rect x="99.4308%" y="1733" width="0.0148%" height="15" fill="rgb(243,106,26)" fg:x="435661" fg:w="65"/><text x="99.6808%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (65 samples, 0.01%)</title><rect x="99.4308%" y="1717" width="0.0148%" height="15" fill="rgb(206,45,38)" fg:x="435661" fg:w="65"/><text x="99.6808%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (65 samples, 0.01%)</title><rect x="99.4308%" y="1701" width="0.0148%" height="15" fill="rgb(226,6,15)" fg:x="435661" fg:w="65"/><text x="99.6808%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (51 samples, 0.01%)</title><rect x="99.4623%" y="1493" width="0.0116%" height="15" fill="rgb(232,22,54)" fg:x="435799" fg:w="51"/><text x="99.7123%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (117 samples, 0.03%)</title><rect x="99.4475%" y="1605" width="0.0267%" height="15" fill="rgb(229,222,32)" fg:x="435734" fg:w="117"/><text x="99.6975%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (116 samples, 0.03%)</title><rect x="99.4477%" y="1589" width="0.0265%" height="15" fill="rgb(228,62,29)" fg:x="435735" fg:w="116"/><text x="99.6977%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (116 samples, 0.03%)</title><rect x="99.4477%" y="1573" width="0.0265%" height="15" fill="rgb(251,103,34)" fg:x="435735" fg:w="116"/><text x="99.6977%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (116 samples, 0.03%)</title><rect x="99.4477%" y="1557" width="0.0265%" height="15" fill="rgb(233,12,30)" fg:x="435735" fg:w="116"/><text x="99.6977%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (116 samples, 0.03%)</title><rect x="99.4477%" y="1541" width="0.0265%" height="15" fill="rgb(238,52,0)" fg:x="435735" fg:w="116"/><text x="99.6977%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (101 samples, 0.02%)</title><rect x="99.4511%" y="1525" width="0.0231%" height="15" fill="rgb(223,98,5)" fg:x="435750" fg:w="101"/><text x="99.7011%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (61 samples, 0.01%)</title><rect x="99.4602%" y="1509" width="0.0139%" height="15" fill="rgb(228,75,37)" fg:x="435790" fg:w="61"/><text x="99.7102%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (234 samples, 0.05%)</title><rect x="99.4472%" y="1653" width="0.0534%" height="15" fill="rgb(205,115,49)" fg:x="435733" fg:w="234"/><text x="99.6972%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (234 samples, 0.05%)</title><rect x="99.4472%" y="1637" width="0.0534%" height="15" fill="rgb(250,154,43)" fg:x="435733" fg:w="234"/><text x="99.6972%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (233 samples, 0.05%)</title><rect x="99.4475%" y="1621" width="0.0532%" height="15" fill="rgb(226,43,29)" fg:x="435734" fg:w="233"/><text x="99.6975%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (116 samples, 0.03%)</title><rect x="99.4742%" y="1605" width="0.0265%" height="15" fill="rgb(249,228,39)" fg:x="435851" fg:w="116"/><text x="99.7242%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (116 samples, 0.03%)</title><rect x="99.4742%" y="1589" width="0.0265%" height="15" fill="rgb(216,79,43)" fg:x="435851" fg:w="116"/><text x="99.7242%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (115 samples, 0.03%)</title><rect x="99.4744%" y="1573" width="0.0262%" height="15" fill="rgb(228,95,12)" fg:x="435852" fg:w="115"/><text x="99.7244%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (115 samples, 0.03%)</title><rect x="99.4744%" y="1557" width="0.0262%" height="15" fill="rgb(249,221,15)" fg:x="435852" fg:w="115"/><text x="99.7244%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (115 samples, 0.03%)</title><rect x="99.4744%" y="1541" width="0.0262%" height="15" fill="rgb(233,34,13)" fg:x="435852" fg:w="115"/><text x="99.7244%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (96 samples, 0.02%)</title><rect x="99.4787%" y="1525" width="0.0219%" height="15" fill="rgb(214,103,39)" fg:x="435871" fg:w="96"/><text x="99.7287%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (51 samples, 0.01%)</title><rect x="99.4890%" y="1509" width="0.0116%" height="15" fill="rgb(251,126,39)" fg:x="435916" fg:w="51"/><text x="99.7390%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (45 samples, 0.01%)</title><rect x="99.4904%" y="1493" width="0.0103%" height="15" fill="rgb(214,216,36)" fg:x="435922" fg:w="45"/><text x="99.7404%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (48 samples, 0.01%)</title><rect x="99.5157%" y="1509" width="0.0110%" height="15" fill="rgb(220,221,8)" fg:x="436033" fg:w="48"/><text x="99.7657%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (115 samples, 0.03%)</title><rect x="99.5006%" y="1605" width="0.0262%" height="15" fill="rgb(240,216,3)" fg:x="435967" fg:w="115"/><text x="99.7506%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (115 samples, 0.03%)</title><rect x="99.5006%" y="1589" width="0.0262%" height="15" fill="rgb(232,218,17)" fg:x="435967" fg:w="115"/><text x="99.7506%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (114 samples, 0.03%)</title><rect x="99.5009%" y="1573" width="0.0260%" height="15" fill="rgb(229,163,45)" fg:x="435968" fg:w="114"/><text x="99.7509%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (114 samples, 0.03%)</title><rect x="99.5009%" y="1557" width="0.0260%" height="15" fill="rgb(231,110,42)" fg:x="435968" fg:w="114"/><text x="99.7509%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (114 samples, 0.03%)</title><rect x="99.5009%" y="1541" width="0.0260%" height="15" fill="rgb(208,170,48)" fg:x="435968" fg:w="114"/><text x="99.7509%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (94 samples, 0.02%)</title><rect x="99.5054%" y="1525" width="0.0215%" height="15" fill="rgb(239,116,25)" fg:x="435988" fg:w="94"/><text x="99.7554%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (50 samples, 0.01%)</title><rect x="99.5305%" y="1509" width="0.0114%" height="15" fill="rgb(219,200,50)" fg:x="436098" fg:w="50"/><text x="99.7805%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (48 samples, 0.01%)</title><rect x="99.5310%" y="1493" width="0.0110%" height="15" fill="rgb(245,200,0)" fg:x="436100" fg:w="48"/><text x="99.7810%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (470 samples, 0.11%)</title><rect x="99.4470%" y="1701" width="0.1073%" height="15" fill="rgb(245,119,33)" fg:x="435732" fg:w="470"/><text x="99.6970%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (470 samples, 0.11%)</title><rect x="99.4470%" y="1685" width="0.1073%" height="15" fill="rgb(231,125,12)" fg:x="435732" fg:w="470"/><text x="99.6970%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (469 samples, 0.11%)</title><rect x="99.4472%" y="1669" width="0.1070%" height="15" fill="rgb(216,96,41)" fg:x="435733" fg:w="469"/><text x="99.6972%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (235 samples, 0.05%)</title><rect x="99.5006%" y="1653" width="0.0536%" height="15" fill="rgb(248,43,45)" fg:x="435967" fg:w="235"/><text x="99.7506%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (235 samples, 0.05%)</title><rect x="99.5006%" y="1637" width="0.0536%" height="15" fill="rgb(217,222,7)" fg:x="435967" fg:w="235"/><text x="99.7506%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (235 samples, 0.05%)</title><rect x="99.5006%" y="1621" width="0.0536%" height="15" fill="rgb(233,28,6)" fg:x="435967" fg:w="235"/><text x="99.7506%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (120 samples, 0.03%)</title><rect x="99.5269%" y="1605" width="0.0274%" height="15" fill="rgb(231,218,15)" fg:x="436082" fg:w="120"/><text x="99.7769%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (120 samples, 0.03%)</title><rect x="99.5269%" y="1589" width="0.0274%" height="15" fill="rgb(226,171,48)" fg:x="436082" fg:w="120"/><text x="99.7769%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (120 samples, 0.03%)</title><rect x="99.5269%" y="1573" width="0.0274%" height="15" fill="rgb(235,201,9)" fg:x="436082" fg:w="120"/><text x="99.7769%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (120 samples, 0.03%)</title><rect x="99.5269%" y="1557" width="0.0274%" height="15" fill="rgb(217,80,15)" fg:x="436082" fg:w="120"/><text x="99.7769%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (120 samples, 0.03%)</title><rect x="99.5269%" y="1541" width="0.0274%" height="15" fill="rgb(219,152,8)" fg:x="436082" fg:w="120"/><text x="99.7769%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (106 samples, 0.02%)</title><rect x="99.5301%" y="1525" width="0.0242%" height="15" fill="rgb(243,107,38)" fg:x="436096" fg:w="106"/><text x="99.7801%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (54 samples, 0.01%)</title><rect x="99.5419%" y="1509" width="0.0123%" height="15" fill="rgb(231,17,5)" fg:x="436148" fg:w="54"/><text x="99.7919%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (45 samples, 0.01%)</title><rect x="99.5440%" y="1493" width="0.0103%" height="15" fill="rgb(209,25,54)" fg:x="436157" fg:w="45"/><text x="99.7940%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (118 samples, 0.03%)</title><rect x="99.5543%" y="1605" width="0.0269%" height="15" fill="rgb(219,0,2)" fg:x="436202" fg:w="118"/><text x="99.8043%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (118 samples, 0.03%)</title><rect x="99.5543%" y="1589" width="0.0269%" height="15" fill="rgb(246,9,5)" fg:x="436202" fg:w="118"/><text x="99.8043%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (117 samples, 0.03%)</title><rect x="99.5545%" y="1573" width="0.0267%" height="15" fill="rgb(226,159,4)" fg:x="436203" fg:w="117"/><text x="99.8045%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (117 samples, 0.03%)</title><rect x="99.5545%" y="1557" width="0.0267%" height="15" fill="rgb(219,175,34)" fg:x="436203" fg:w="117"/><text x="99.8045%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (117 samples, 0.03%)</title><rect x="99.5545%" y="1541" width="0.0267%" height="15" fill="rgb(236,10,46)" fg:x="436203" fg:w="117"/><text x="99.8045%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (92 samples, 0.02%)</title><rect x="99.5602%" y="1525" width="0.0210%" height="15" fill="rgb(240,211,16)" fg:x="436228" fg:w="92"/><text x="99.8102%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (51 samples, 0.01%)</title><rect x="99.5696%" y="1509" width="0.0116%" height="15" fill="rgb(205,3,43)" fg:x="436269" fg:w="51"/><text x="99.8196%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (230 samples, 0.05%)</title><rect x="99.5543%" y="1653" width="0.0525%" height="15" fill="rgb(245,7,22)" fg:x="436202" fg:w="230"/><text x="99.8043%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (230 samples, 0.05%)</title><rect x="99.5543%" y="1637" width="0.0525%" height="15" fill="rgb(239,132,32)" fg:x="436202" fg:w="230"/><text x="99.8043%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (230 samples, 0.05%)</title><rect x="99.5543%" y="1621" width="0.0525%" height="15" fill="rgb(228,202,34)" fg:x="436202" fg:w="230"/><text x="99.8043%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (112 samples, 0.03%)</title><rect x="99.5812%" y="1605" width="0.0256%" height="15" fill="rgb(254,200,22)" fg:x="436320" fg:w="112"/><text x="99.8312%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (112 samples, 0.03%)</title><rect x="99.5812%" y="1589" width="0.0256%" height="15" fill="rgb(219,10,39)" fg:x="436320" fg:w="112"/><text x="99.8312%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (111 samples, 0.03%)</title><rect x="99.5814%" y="1573" width="0.0253%" height="15" fill="rgb(226,210,39)" fg:x="436321" fg:w="111"/><text x="99.8314%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (111 samples, 0.03%)</title><rect x="99.5814%" y="1557" width="0.0253%" height="15" fill="rgb(208,219,16)" fg:x="436321" fg:w="111"/><text x="99.8314%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (111 samples, 0.03%)</title><rect x="99.5814%" y="1541" width="0.0253%" height="15" fill="rgb(216,158,51)" fg:x="436321" fg:w="111"/><text x="99.8314%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (98 samples, 0.02%)</title><rect x="99.5844%" y="1525" width="0.0224%" height="15" fill="rgb(233,14,44)" fg:x="436334" fg:w="98"/><text x="99.8344%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (55 samples, 0.01%)</title><rect x="99.5942%" y="1509" width="0.0126%" height="15" fill="rgb(237,97,39)" fg:x="436377" fg:w="55"/><text x="99.8442%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (46 samples, 0.01%)</title><rect x="99.5963%" y="1493" width="0.0105%" height="15" fill="rgb(218,198,43)" fg:x="436386" fg:w="46"/><text x="99.8463%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (59 samples, 0.01%)</title><rect x="99.6209%" y="1509" width="0.0135%" height="15" fill="rgb(231,104,20)" fg:x="436494" fg:w="59"/><text x="99.8709%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (44 samples, 0.01%)</title><rect x="99.6243%" y="1493" width="0.0100%" height="15" fill="rgb(254,36,13)" fg:x="436509" fg:w="44"/><text x="99.8743%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (120 samples, 0.03%)</title><rect x="99.6072%" y="1605" width="0.0274%" height="15" fill="rgb(248,14,50)" fg:x="436434" fg:w="120"/><text x="99.8572%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (120 samples, 0.03%)</title><rect x="99.6072%" y="1589" width="0.0274%" height="15" fill="rgb(217,107,29)" fg:x="436434" fg:w="120"/><text x="99.8572%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (120 samples, 0.03%)</title><rect x="99.6072%" y="1573" width="0.0274%" height="15" fill="rgb(251,169,33)" fg:x="436434" fg:w="120"/><text x="99.8572%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (120 samples, 0.03%)</title><rect x="99.6072%" y="1557" width="0.0274%" height="15" fill="rgb(217,108,32)" fg:x="436434" fg:w="120"/><text x="99.8572%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (120 samples, 0.03%)</title><rect x="99.6072%" y="1541" width="0.0274%" height="15" fill="rgb(219,66,42)" fg:x="436434" fg:w="120"/><text x="99.8572%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (106 samples, 0.02%)</title><rect x="99.6104%" y="1525" width="0.0242%" height="15" fill="rgb(206,180,7)" fg:x="436448" fg:w="106"/><text x="99.8604%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (46 samples, 0.01%)</title><rect x="99.6501%" y="1493" width="0.0105%" height="15" fill="rgb(208,226,31)" fg:x="436622" fg:w="46"/><text x="99.9001%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (938 samples, 0.21%)</title><rect x="99.4468%" y="1749" width="0.2141%" height="15" fill="rgb(218,26,49)" fg:x="435731" fg:w="938"/><text x="99.6968%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (938 samples, 0.21%)</title><rect x="99.4468%" y="1733" width="0.2141%" height="15" fill="rgb(233,197,48)" fg:x="435731" fg:w="938"/><text x="99.6968%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (937 samples, 0.21%)</title><rect x="99.4470%" y="1717" width="0.2139%" height="15" fill="rgb(252,181,51)" fg:x="435732" fg:w="937"/><text x="99.6970%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (467 samples, 0.11%)</title><rect x="99.5543%" y="1701" width="0.1066%" height="15" fill="rgb(253,90,19)" fg:x="436202" fg:w="467"/><text x="99.8043%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (467 samples, 0.11%)</title><rect x="99.5543%" y="1685" width="0.1066%" height="15" fill="rgb(215,171,30)" fg:x="436202" fg:w="467"/><text x="99.8043%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (467 samples, 0.11%)</title><rect x="99.5543%" y="1669" width="0.1066%" height="15" fill="rgb(214,222,9)" fg:x="436202" fg:w="467"/><text x="99.8043%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (237 samples, 0.05%)</title><rect x="99.6068%" y="1653" width="0.0541%" height="15" fill="rgb(223,3,22)" fg:x="436432" fg:w="237"/><text x="99.8568%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (237 samples, 0.05%)</title><rect x="99.6068%" y="1637" width="0.0541%" height="15" fill="rgb(225,196,46)" fg:x="436432" fg:w="237"/><text x="99.8568%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (235 samples, 0.05%)</title><rect x="99.6072%" y="1621" width="0.0536%" height="15" fill="rgb(209,110,37)" fg:x="436434" fg:w="235"/><text x="99.8572%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (115 samples, 0.03%)</title><rect x="99.6346%" y="1605" width="0.0262%" height="15" fill="rgb(249,89,12)" fg:x="436554" fg:w="115"/><text x="99.8846%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (115 samples, 0.03%)</title><rect x="99.6346%" y="1589" width="0.0262%" height="15" fill="rgb(226,27,33)" fg:x="436554" fg:w="115"/><text x="99.8846%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (115 samples, 0.03%)</title><rect x="99.6346%" y="1573" width="0.0262%" height="15" fill="rgb(213,82,22)" fg:x="436554" fg:w="115"/><text x="99.8846%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (115 samples, 0.03%)</title><rect x="99.6346%" y="1557" width="0.0262%" height="15" fill="rgb(248,140,0)" fg:x="436554" fg:w="115"/><text x="99.8846%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (115 samples, 0.03%)</title><rect x="99.6346%" y="1541" width="0.0262%" height="15" fill="rgb(228,106,3)" fg:x="436554" fg:w="115"/><text x="99.8846%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (98 samples, 0.02%)</title><rect x="99.6385%" y="1525" width="0.0224%" height="15" fill="rgb(209,23,37)" fg:x="436571" fg:w="98"/><text x="99.8885%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (58 samples, 0.01%)</title><rect x="99.6476%" y="1509" width="0.0132%" height="15" fill="rgb(241,93,50)" fg:x="436611" fg:w="58"/><text x="99.8976%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (54 samples, 0.01%)</title><rect x="99.6618%" y="1157" width="0.0123%" height="15" fill="rgb(253,46,43)" fg:x="436673" fg:w="54"/><text x="99.9118%" y="1167.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (54 samples, 0.01%)</title><rect x="99.6618%" y="1141" width="0.0123%" height="15" fill="rgb(226,206,43)" fg:x="436673" fg:w="54"/><text x="99.9118%" y="1151.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (54 samples, 0.01%)</title><rect x="99.6618%" y="1125" width="0.0123%" height="15" fill="rgb(217,54,7)" fg:x="436673" fg:w="54"/><text x="99.9118%" y="1135.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (101 samples, 0.02%)</title><rect x="99.6615%" y="1269" width="0.0231%" height="15" fill="rgb(223,5,52)" fg:x="436672" fg:w="101"/><text x="99.9115%" y="1279.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (100 samples, 0.02%)</title><rect x="99.6618%" y="1253" width="0.0228%" height="15" fill="rgb(206,52,46)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1263.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (100 samples, 0.02%)</title><rect x="99.6618%" y="1237" width="0.0228%" height="15" fill="rgb(253,136,11)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1247.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (100 samples, 0.02%)</title><rect x="99.6618%" y="1221" width="0.0228%" height="15" fill="rgb(208,106,33)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1231.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (100 samples, 0.02%)</title><rect x="99.6618%" y="1205" width="0.0228%" height="15" fill="rgb(206,54,4)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1215.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (100 samples, 0.02%)</title><rect x="99.6618%" y="1189" width="0.0228%" height="15" fill="rgb(213,3,15)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1199.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (100 samples, 0.02%)</title><rect x="99.6618%" y="1173" width="0.0228%" height="15" fill="rgb(252,211,39)" fg:x="436673" fg:w="100"/><text x="99.9118%" y="1183.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (46 samples, 0.01%)</title><rect x="99.6741%" y="1157" width="0.0105%" height="15" fill="rgb(223,6,36)" fg:x="436727" fg:w="46"/><text x="99.9241%" y="1167.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (46 samples, 0.01%)</title><rect x="99.6741%" y="1141" width="0.0105%" height="15" fill="rgb(252,169,45)" fg:x="436727" fg:w="46"/><text x="99.9241%" y="1151.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (46 samples, 0.01%)</title><rect x="99.6741%" y="1125" width="0.0105%" height="15" fill="rgb(212,48,26)" fg:x="436727" fg:w="46"/><text x="99.9241%" y="1135.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (114 samples, 0.03%)</title><rect x="99.6611%" y="1317" width="0.0260%" height="15" fill="rgb(251,102,48)" fg:x="436670" fg:w="114"/><text x="99.9111%" y="1327.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (114 samples, 0.03%)</title><rect x="99.6611%" y="1301" width="0.0260%" height="15" fill="rgb(243,208,16)" fg:x="436670" fg:w="114"/><text x="99.9111%" y="1311.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (114 samples, 0.03%)</title><rect x="99.6611%" y="1285" width="0.0260%" height="15" fill="rgb(219,96,24)" fg:x="436670" fg:w="114"/><text x="99.9111%" y="1295.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (139 samples, 0.03%)</title><rect x="99.6611%" y="1365" width="0.0317%" height="15" fill="rgb(219,33,29)" fg:x="436670" fg:w="139"/><text x="99.9111%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (139 samples, 0.03%)</title><rect x="99.6611%" y="1349" width="0.0317%" height="15" fill="rgb(223,176,5)" fg:x="436670" fg:w="139"/><text x="99.9111%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (139 samples, 0.03%)</title><rect x="99.6611%" y="1333" width="0.0317%" height="15" fill="rgb(228,140,14)" fg:x="436670" fg:w="139"/><text x="99.9111%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (190 samples, 0.04%)</title><rect x="99.6611%" y="1429" width="0.0434%" height="15" fill="rgb(217,179,31)" fg:x="436670" fg:w="190"/><text x="99.9111%" y="1439.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (190 samples, 0.04%)</title><rect x="99.6611%" y="1413" width="0.0434%" height="15" fill="rgb(230,9,30)" fg:x="436670" fg:w="190"/><text x="99.9111%" y="1423.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (190 samples, 0.04%)</title><rect x="99.6611%" y="1397" width="0.0434%" height="15" fill="rgb(230,136,20)" fg:x="436670" fg:w="190"/><text x="99.9111%" y="1407.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (190 samples, 0.04%)</title><rect x="99.6611%" y="1381" width="0.0434%" height="15" fill="rgb(215,210,22)" fg:x="436670" fg:w="190"/><text x="99.9111%" y="1391.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (51 samples, 0.01%)</title><rect x="99.6928%" y="1365" width="0.0116%" height="15" fill="rgb(218,43,5)" fg:x="436809" fg:w="51"/><text x="99.9428%" y="1375.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (51 samples, 0.01%)</title><rect x="99.6928%" y="1349" width="0.0116%" height="15" fill="rgb(216,11,5)" fg:x="436809" fg:w="51"/><text x="99.9428%" y="1359.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (51 samples, 0.01%)</title><rect x="99.6928%" y="1333" width="0.0116%" height="15" fill="rgb(209,82,29)" fg:x="436809" fg:w="51"/><text x="99.9428%" y="1343.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (193 samples, 0.04%)</title><rect x="99.6611%" y="1477" width="0.0440%" height="15" fill="rgb(244,115,12)" fg:x="436670" fg:w="193"/><text x="99.9111%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (193 samples, 0.04%)</title><rect x="99.6611%" y="1461" width="0.0440%" height="15" fill="rgb(222,82,18)" fg:x="436670" fg:w="193"/><text x="99.9111%" y="1471.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (193 samples, 0.04%)</title><rect x="99.6611%" y="1445" width="0.0440%" height="15" fill="rgb(249,227,8)" fg:x="436670" fg:w="193"/><text x="99.9111%" y="1455.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (199 samples, 0.05%)</title><rect x="99.6611%" y="1525" width="0.0454%" height="15" fill="rgb(253,141,45)" fg:x="436670" fg:w="199"/><text x="99.9111%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (199 samples, 0.05%)</title><rect x="99.6611%" y="1509" width="0.0454%" height="15" fill="rgb(234,184,4)" fg:x="436670" fg:w="199"/><text x="99.9111%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (199 samples, 0.05%)</title><rect x="99.6611%" y="1493" width="0.0454%" height="15" fill="rgb(218,194,23)" fg:x="436670" fg:w="199"/><text x="99.9111%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (210 samples, 0.05%)</title><rect x="99.6611%" y="1573" width="0.0479%" height="15" fill="rgb(235,66,41)" fg:x="436670" fg:w="210"/><text x="99.9111%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (210 samples, 0.05%)</title><rect x="99.6611%" y="1557" width="0.0479%" height="15" fill="rgb(245,217,1)" fg:x="436670" fg:w="210"/><text x="99.9111%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (210 samples, 0.05%)</title><rect x="99.6611%" y="1541" width="0.0479%" height="15" fill="rgb(229,91,1)" fg:x="436670" fg:w="210"/><text x="99.9111%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (232 samples, 0.05%)</title><rect x="99.6611%" y="1637" width="0.0529%" height="15" fill="rgb(207,101,30)" fg:x="436670" fg:w="232"/><text x="99.9111%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (232 samples, 0.05%)</title><rect x="99.6611%" y="1621" width="0.0529%" height="15" fill="rgb(223,82,49)" fg:x="436670" fg:w="232"/><text x="99.9111%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (232 samples, 0.05%)</title><rect x="99.6611%" y="1605" width="0.0529%" height="15" fill="rgb(218,167,17)" fg:x="436670" fg:w="232"/><text x="99.9111%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (232 samples, 0.05%)</title><rect x="99.6611%" y="1589" width="0.0529%" height="15" fill="rgb(208,103,14)" fg:x="436670" fg:w="232"/><text x="99.9111%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (244 samples, 0.06%)</title><rect x="99.6611%" y="1685" width="0.0557%" height="15" fill="rgb(238,20,8)" fg:x="436670" fg:w="244"/><text x="99.9111%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (244 samples, 0.06%)</title><rect x="99.6611%" y="1669" width="0.0557%" height="15" fill="rgb(218,80,54)" fg:x="436670" fg:w="244"/><text x="99.9111%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (244 samples, 0.06%)</title><rect x="99.6611%" y="1653" width="0.0557%" height="15" fill="rgb(240,144,17)" fg:x="436670" fg:w="244"/><text x="99.9111%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (268 samples, 0.06%)</title><rect x="99.6609%" y="1749" width="0.0612%" height="15" fill="rgb(245,27,50)" fg:x="436669" fg:w="268"/><text x="99.9109%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (267 samples, 0.06%)</title><rect x="99.6611%" y="1733" width="0.0609%" height="15" fill="rgb(251,51,7)" fg:x="436670" fg:w="267"/><text x="99.9111%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (267 samples, 0.06%)</title><rect x="99.6611%" y="1717" width="0.0609%" height="15" fill="rgb(245,217,29)" fg:x="436670" fg:w="267"/><text x="99.9111%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (267 samples, 0.06%)</title><rect x="99.6611%" y="1701" width="0.0609%" height="15" fill="rgb(221,176,29)" fg:x="436670" fg:w="267"/><text x="99.9111%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (116 samples, 0.03%)</title><rect x="99.7222%" y="1605" width="0.0265%" height="15" fill="rgb(212,180,24)" fg:x="436938" fg:w="116"/><text x="99.9722%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (116 samples, 0.03%)</title><rect x="99.7222%" y="1589" width="0.0265%" height="15" fill="rgb(254,24,2)" fg:x="436938" fg:w="116"/><text x="99.9722%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (116 samples, 0.03%)</title><rect x="99.7222%" y="1573" width="0.0265%" height="15" fill="rgb(230,100,2)" fg:x="436938" fg:w="116"/><text x="99.9722%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (116 samples, 0.03%)</title><rect x="99.7222%" y="1557" width="0.0265%" height="15" fill="rgb(219,142,25)" fg:x="436938" fg:w="116"/><text x="99.9722%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (116 samples, 0.03%)</title><rect x="99.7222%" y="1541" width="0.0265%" height="15" fill="rgb(240,73,43)" fg:x="436938" fg:w="116"/><text x="99.9722%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (104 samples, 0.02%)</title><rect x="99.7250%" y="1525" width="0.0237%" height="15" fill="rgb(214,114,15)" fg:x="436950" fg:w="104"/><text x="99.9750%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (56 samples, 0.01%)</title><rect x="99.7359%" y="1509" width="0.0128%" height="15" fill="rgb(207,130,4)" fg:x="436998" fg:w="56"/><text x="99.9859%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (51 samples, 0.01%)</title><rect x="99.7371%" y="1493" width="0.0116%" height="15" fill="rgb(221,25,40)" fg:x="437003" fg:w="51"/><text x="99.9871%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (49 samples, 0.01%)</title><rect x="99.7535%" y="1509" width="0.0112%" height="15" fill="rgb(241,184,7)" fg:x="437075" fg:w="49"/><text x="100.0035%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (48 samples, 0.01%)</title><rect x="99.7537%" y="1493" width="0.0110%" height="15" fill="rgb(235,159,4)" fg:x="437076" fg:w="48"/><text x="100.0037%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (233 samples, 0.05%)</title><rect x="99.7222%" y="1653" width="0.0532%" height="15" fill="rgb(214,87,48)" fg:x="436938" fg:w="233"/><text x="99.9722%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (233 samples, 0.05%)</title><rect x="99.7222%" y="1637" width="0.0532%" height="15" fill="rgb(246,198,24)" fg:x="436938" fg:w="233"/><text x="99.9722%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (233 samples, 0.05%)</title><rect x="99.7222%" y="1621" width="0.0532%" height="15" fill="rgb(209,66,40)" fg:x="436938" fg:w="233"/><text x="99.9722%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (117 samples, 0.03%)</title><rect x="99.7487%" y="1605" width="0.0267%" height="15" fill="rgb(233,147,39)" fg:x="437054" fg:w="117"/><text x="99.9987%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (117 samples, 0.03%)</title><rect x="99.7487%" y="1589" width="0.0267%" height="15" fill="rgb(231,145,52)" fg:x="437054" fg:w="117"/><text x="99.9987%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (116 samples, 0.03%)</title><rect x="99.7489%" y="1573" width="0.0265%" height="15" fill="rgb(206,20,26)" fg:x="437055" fg:w="116"/><text x="99.9989%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (116 samples, 0.03%)</title><rect x="99.7489%" y="1557" width="0.0265%" height="15" fill="rgb(238,220,4)" fg:x="437055" fg:w="116"/><text x="99.9989%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (116 samples, 0.03%)</title><rect x="99.7489%" y="1541" width="0.0265%" height="15" fill="rgb(252,195,42)" fg:x="437055" fg:w="116"/><text x="99.9989%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (100 samples, 0.02%)</title><rect x="99.7526%" y="1525" width="0.0228%" height="15" fill="rgb(209,10,6)" fg:x="437071" fg:w="100"/><text x="100.0026%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (47 samples, 0.01%)</title><rect x="99.7647%" y="1509" width="0.0107%" height="15" fill="rgb(229,3,52)" fg:x="437124" fg:w="47"/><text x="100.0147%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (65 samples, 0.01%)</title><rect x="99.7814%" y="1509" width="0.0148%" height="15" fill="rgb(253,49,37)" fg:x="437197" fg:w="65"/><text x="100.0314%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (62 samples, 0.01%)</title><rect x="99.7820%" y="1493" width="0.0142%" height="15" fill="rgb(240,103,49)" fg:x="437200" fg:w="62"/><text x="100.0320%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (63 samples, 0.01%)</title><rect x="99.7962%" y="1509" width="0.0144%" height="15" fill="rgb(250,182,30)" fg:x="437262" fg:w="63"/><text x="100.0462%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (57 samples, 0.01%)</title><rect x="99.7976%" y="1493" width="0.0130%" height="15" fill="rgb(248,8,30)" fg:x="437268" fg:w="57"/><text x="100.0476%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (155 samples, 0.04%)</title><rect x="99.7754%" y="1605" width="0.0354%" height="15" fill="rgb(237,120,30)" fg:x="437171" fg:w="155"/><text x="100.0254%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (155 samples, 0.04%)</title><rect x="99.7754%" y="1589" width="0.0354%" height="15" fill="rgb(221,146,34)" fg:x="437171" fg:w="155"/><text x="100.0254%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (154 samples, 0.04%)</title><rect x="99.7757%" y="1573" width="0.0351%" height="15" fill="rgb(242,55,13)" fg:x="437172" fg:w="154"/><text x="100.0257%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (154 samples, 0.04%)</title><rect x="99.7757%" y="1557" width="0.0351%" height="15" fill="rgb(242,112,31)" fg:x="437172" fg:w="154"/><text x="100.0257%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (154 samples, 0.04%)</title><rect x="99.7757%" y="1541" width="0.0351%" height="15" fill="rgb(249,192,27)" fg:x="437172" fg:w="154"/><text x="100.0257%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (135 samples, 0.03%)</title><rect x="99.7800%" y="1525" width="0.0308%" height="15" fill="rgb(208,204,44)" fg:x="437191" fg:w="135"/><text x="100.0300%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (62 samples, 0.01%)</title><rect x="99.8188%" y="1509" width="0.0142%" height="15" fill="rgb(208,93,54)" fg:x="437361" fg:w="62"/><text x="100.0688%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (60 samples, 0.01%)</title><rect x="99.8192%" y="1493" width="0.0137%" height="15" fill="rgb(242,1,31)" fg:x="437363" fg:w="60"/><text x="100.0692%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (318 samples, 0.07%)</title><rect x="99.7754%" y="1621" width="0.0726%" height="15" fill="rgb(241,83,25)" fg:x="437171" fg:w="318"/><text x="100.0254%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (163 samples, 0.04%)</title><rect x="99.8108%" y="1605" width="0.0372%" height="15" fill="rgb(205,169,50)" fg:x="437326" fg:w="163"/><text x="100.0608%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (163 samples, 0.04%)</title><rect x="99.8108%" y="1589" width="0.0372%" height="15" fill="rgb(239,186,37)" fg:x="437326" fg:w="163"/><text x="100.0608%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (163 samples, 0.04%)</title><rect x="99.8108%" y="1573" width="0.0372%" height="15" fill="rgb(205,221,10)" fg:x="437326" fg:w="163"/><text x="100.0608%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (163 samples, 0.04%)</title><rect x="99.8108%" y="1557" width="0.0372%" height="15" fill="rgb(218,196,15)" fg:x="437326" fg:w="163"/><text x="100.0608%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (162 samples, 0.04%)</title><rect x="99.8110%" y="1541" width="0.0370%" height="15" fill="rgb(218,196,35)" fg:x="437327" fg:w="162"/><text x="100.0610%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (139 samples, 0.03%)</title><rect x="99.8163%" y="1525" width="0.0317%" height="15" fill="rgb(233,63,24)" fg:x="437350" fg:w="139"/><text x="100.0663%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (66 samples, 0.02%)</title><rect x="99.8329%" y="1509" width="0.0151%" height="15" fill="rgb(225,8,4)" fg:x="437423" fg:w="66"/><text x="100.0829%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (53 samples, 0.01%)</title><rect x="99.8359%" y="1493" width="0.0121%" height="15" fill="rgb(234,105,35)" fg:x="437436" fg:w="53"/><text x="100.0859%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (553 samples, 0.13%)</title><rect x="99.7220%" y="1701" width="0.1262%" height="15" fill="rgb(236,21,32)" fg:x="436937" fg:w="553"/><text x="99.9720%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (553 samples, 0.13%)</title><rect x="99.7220%" y="1685" width="0.1262%" height="15" fill="rgb(228,109,6)" fg:x="436937" fg:w="553"/><text x="99.9720%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (552 samples, 0.13%)</title><rect x="99.7222%" y="1669" width="0.1260%" height="15" fill="rgb(229,215,31)" fg:x="436938" fg:w="552"/><text x="99.9722%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (319 samples, 0.07%)</title><rect x="99.7754%" y="1653" width="0.0728%" height="15" fill="rgb(221,52,54)" fg:x="437171" fg:w="319"/><text x="100.0254%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (319 samples, 0.07%)</title><rect x="99.7754%" y="1637" width="0.0728%" height="15" fill="rgb(252,129,43)" fg:x="437171" fg:w="319"/><text x="100.0254%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (64 samples, 0.01%)</title><rect x="99.8571%" y="1509" width="0.0146%" height="15" fill="rgb(248,183,27)" fg:x="437529" fg:w="64"/><text x="100.1071%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (62 samples, 0.01%)</title><rect x="99.8576%" y="1493" width="0.0142%" height="15" fill="rgb(250,0,22)" fg:x="437531" fg:w="62"/><text x="100.1076%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (161 samples, 0.04%)</title><rect x="99.8489%" y="1605" width="0.0367%" height="15" fill="rgb(213,166,10)" fg:x="437493" fg:w="161"/><text x="100.0989%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (160 samples, 0.04%)</title><rect x="99.8491%" y="1589" width="0.0365%" height="15" fill="rgb(207,163,36)" fg:x="437494" fg:w="160"/><text x="100.0991%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (160 samples, 0.04%)</title><rect x="99.8491%" y="1573" width="0.0365%" height="15" fill="rgb(208,122,22)" fg:x="437494" fg:w="160"/><text x="100.0991%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (160 samples, 0.04%)</title><rect x="99.8491%" y="1557" width="0.0365%" height="15" fill="rgb(207,104,49)" fg:x="437494" fg:w="160"/><text x="100.0991%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (160 samples, 0.04%)</title><rect x="99.8491%" y="1541" width="0.0365%" height="15" fill="rgb(248,211,50)" fg:x="437494" fg:w="160"/><text x="100.0991%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (134 samples, 0.03%)</title><rect x="99.8551%" y="1525" width="0.0306%" height="15" fill="rgb(217,13,45)" fg:x="437520" fg:w="134"/><text x="100.1051%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (61 samples, 0.01%)</title><rect x="99.8717%" y="1509" width="0.0139%" height="15" fill="rgb(211,216,49)" fg:x="437593" fg:w="61"/><text x="100.1217%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (51 samples, 0.01%)</title><rect x="99.8740%" y="1493" width="0.0116%" height="15" fill="rgb(221,58,53)" fg:x="437603" fg:w="51"/><text x="100.1240%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (57 samples, 0.01%)</title><rect x="99.8925%" y="1509" width="0.0130%" height="15" fill="rgb(220,112,41)" fg:x="437684" fg:w="57"/><text x="100.1425%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (53 samples, 0.01%)</title><rect x="99.8934%" y="1493" width="0.0121%" height="15" fill="rgb(236,38,28)" fg:x="437688" fg:w="53"/><text x="100.1434%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (324 samples, 0.07%)</title><rect x="99.8489%" y="1653" width="0.0739%" height="15" fill="rgb(227,195,22)" fg:x="437493" fg:w="324"/><text x="100.0989%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (324 samples, 0.07%)</title><rect x="99.8489%" y="1637" width="0.0739%" height="15" fill="rgb(214,55,33)" fg:x="437493" fg:w="324"/><text x="100.0989%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (324 samples, 0.07%)</title><rect x="99.8489%" y="1621" width="0.0739%" height="15" fill="rgb(248,80,13)" fg:x="437493" fg:w="324"/><text x="100.0989%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (163 samples, 0.04%)</title><rect x="99.8857%" y="1605" width="0.0372%" height="15" fill="rgb(238,52,6)" fg:x="437654" fg:w="163"/><text x="100.1357%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (163 samples, 0.04%)</title><rect x="99.8857%" y="1589" width="0.0372%" height="15" fill="rgb(224,198,47)" fg:x="437654" fg:w="163"/><text x="100.1357%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (162 samples, 0.04%)</title><rect x="99.8859%" y="1573" width="0.0370%" height="15" fill="rgb(233,171,20)" fg:x="437655" fg:w="162"/><text x="100.1359%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (162 samples, 0.04%)</title><rect x="99.8859%" y="1557" width="0.0370%" height="15" fill="rgb(241,30,25)" fg:x="437655" fg:w="162"/><text x="100.1359%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (162 samples, 0.04%)</title><rect x="99.8859%" y="1541" width="0.0370%" height="15" fill="rgb(207,171,38)" fg:x="437655" fg:w="162"/><text x="100.1359%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (138 samples, 0.03%)</title><rect x="99.8914%" y="1525" width="0.0315%" height="15" fill="rgb(234,70,1)" fg:x="437679" fg:w="138"/><text x="100.1414%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (76 samples, 0.02%)</title><rect x="99.9055%" y="1509" width="0.0173%" height="15" fill="rgb(232,178,18)" fg:x="437741" fg:w="76"/><text x="100.1555%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (72 samples, 0.02%)</title><rect x="99.9064%" y="1493" width="0.0164%" height="15" fill="rgb(241,78,40)" fg:x="437745" fg:w="72"/><text x="100.1564%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (44 samples, 0.01%)</title><rect x="99.9128%" y="1477" width="0.0100%" height="15" fill="rgb(222,35,25)" fg:x="437773" fg:w="44"/><text x="100.1628%" y="1487.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (70 samples, 0.02%)</title><rect x="99.9295%" y="1509" width="0.0160%" height="15" fill="rgb(207,92,16)" fg:x="437846" fg:w="70"/><text x="100.1795%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (63 samples, 0.01%)</title><rect x="99.9311%" y="1493" width="0.0144%" height="15" fill="rgb(216,59,51)" fg:x="437853" fg:w="63"/><text x="100.1811%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core3job25StackJob$LT$L$C$F$C$R$GT$10run_inline17hb0dc22ae6f9d3759E (169 samples, 0.04%)</title><rect x="99.9231%" y="1605" width="0.0386%" height="15" fill="rgb(213,80,28)" fg:x="437818" fg:w="169"/><text x="100.1731%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (169 samples, 0.04%)</title><rect x="99.9231%" y="1589" width="0.0386%" height="15" fill="rgb(220,93,7)" fg:x="437818" fg:w="169"/><text x="100.1731%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (169 samples, 0.04%)</title><rect x="99.9231%" y="1573" width="0.0386%" height="15" fill="rgb(225,24,44)" fg:x="437818" fg:w="169"/><text x="100.1731%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (169 samples, 0.04%)</title><rect x="99.9231%" y="1557" width="0.0386%" height="15" fill="rgb(243,74,40)" fg:x="437818" fg:w="169"/><text x="100.1731%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (169 samples, 0.04%)</title><rect x="99.9231%" y="1541" width="0.0386%" height="15" fill="rgb(228,39,7)" fg:x="437818" fg:w="169"/><text x="100.1731%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (148 samples, 0.03%)</title><rect x="99.9279%" y="1525" width="0.0338%" height="15" fill="rgb(227,79,8)" fg:x="437839" fg:w="148"/><text x="100.1779%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (71 samples, 0.02%)</title><rect x="99.9455%" y="1509" width="0.0162%" height="15" fill="rgb(236,58,11)" fg:x="437916" fg:w="71"/><text x="100.1955%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (56 samples, 0.01%)</title><rect x="99.9489%" y="1493" width="0.0128%" height="15" fill="rgb(249,63,35)" fg:x="437931" fg:w="56"/><text x="100.1989%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$11percentiles17hc47eb86d73fcec21E (61 samples, 0.01%)</title><rect x="99.9687%" y="1509" width="0.0139%" height="15" fill="rgb(252,114,16)" fg:x="438018" fg:w="61"/><text x="100.2187%" y="1519.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (60 samples, 0.01%)</title><rect x="99.9690%" y="1493" width="0.0137%" height="15" fill="rgb(254,151,24)" fg:x="438019" fg:w="60"/><text x="100.2190%" y="1503.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon5slice9quicksort7recurse17h879c77fbec9ea631E (64 samples, 0.01%)</title><rect x="99.9852%" y="1493" width="0.0146%" height="15" fill="rgb(253,54,39)" fg:x="438090" fg:w="64"/><text x="100.2352%" y="1503.50"></text></g><g><title>all (438,155 samples, 100%)</title><rect x="0.0000%" y="2021" width="100.0000%" height="15" fill="rgb(243,25,45)" fg:x="0" fg:w="438155"/><text x="0.2500%" y="2031.50"></text></g><g><title>ntdll`RtlUserThreadStart (437,987 samples, 99.96%)</title><rect x="0.0383%" y="2005" width="99.9617%" height="15" fill="rgb(234,134,9)" fg:x="168" fg:w="437987"/><text x="0.2883%" y="2015.50">ntdll`RtlUserThreadStart</text></g><g><title>KERNEL32`BaseThreadInitThunk (437,980 samples, 99.96%)</title><rect x="0.0399%" y="1989" width="99.9601%" height="15" fill="rgb(227,166,31)" fg:x="175" fg:w="437980"/><text x="0.2899%" y="1999.50">KERNEL32`BaseThreadInitThunk</text></g><g><title>search-10075cbc4ecf36f7`std::sys::windows::thread::impl$0::new::thread_start (12,803 samples, 2.92%)</title><rect x="97.0780%" y="1973" width="2.9220%" height="15" fill="rgb(245,143,41)" fg:x="425352" fg:w="12803"/><text x="97.3280%" y="1983.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std6thread7Builder5spawn17h9c8cb5fe0e08261bE (12,802 samples, 2.92%)</title><rect x="97.0782%" y="1957" width="2.9218%" height="15" fill="rgb(238,181,32)" fg:x="425353" fg:w="12802"/><text x="97.3282%" y="1967.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17h5c8c81ede621b3ceE (12,802 samples, 2.92%)</title><rect x="97.0782%" y="1941" width="2.9218%" height="15" fill="rgb(224,113,18)" fg:x="425353" fg:w="12802"/><text x="97.3282%" y="1951.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry13ThreadBuilder3run17h9478b9e5fc7ee8f4E (12,802 samples, 2.92%)</title><rect x="97.0782%" y="1925" width="2.9218%" height="15" fill="rgb(240,229,28)" fg:x="425353" fg:w="12802"/><text x="97.3282%" y="1935.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry12WorkerThread15wait_until_cold17h0b626c0095f44d96E (12,802 samples, 2.92%)</title><rect x="97.0782%" y="1909" width="2.9218%" height="15" fill="rgb(250,185,3)" fg:x="425353" fg:w="12802"/><text x="97.3282%" y="1919.50">se..</text></g><g><title>search-10075cbc4ecf36f7`ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hefa2976204bc0806E.llvm.15725695388440039465 (5,675 samples, 1.30%)</title><rect x="98.7048%" y="1893" width="1.2952%" height="15" fill="rgb(212,59,25)" fg:x="432480" fg:w="5675"/><text x="98.9548%" y="1903.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (5,674 samples, 1.29%)</title><rect x="98.7050%" y="1877" width="1.2950%" height="15" fill="rgb(221,87,20)" fg:x="432481" fg:w="5674"/><text x="98.9550%" y="1887.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (5,653 samples, 1.29%)</title><rect x="98.7098%" y="1861" width="1.2902%" height="15" fill="rgb(213,74,28)" fg:x="432502" fg:w="5653"/><text x="98.9598%" y="1871.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (4,154 samples, 0.95%)</title><rect x="99.0519%" y="1845" width="0.9481%" height="15" fill="rgb(224,132,34)" fg:x="434001" fg:w="4154"/><text x="99.3019%" y="1855.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (4,154 samples, 0.95%)</title><rect x="99.0519%" y="1829" width="0.9481%" height="15" fill="rgb(222,101,24)" fg:x="434001" fg:w="4154"/><text x="99.3019%" y="1839.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (4,139 samples, 0.94%)</title><rect x="99.0554%" y="1813" width="0.9446%" height="15" fill="rgb(254,142,4)" fg:x="434016" fg:w="4139"/><text x="99.3054%" y="1823.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (2,429 samples, 0.55%)</title><rect x="99.4456%" y="1797" width="0.5544%" height="15" fill="rgb(230,229,49)" fg:x="435726" fg:w="2429"/><text x="99.6956%" y="1807.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (2,429 samples, 0.55%)</title><rect x="99.4456%" y="1781" width="0.5544%" height="15" fill="rgb(238,70,47)" fg:x="435726" fg:w="2429"/><text x="99.6956%" y="1791.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (2,424 samples, 0.55%)</title><rect x="99.4468%" y="1765" width="0.5532%" height="15" fill="rgb(231,160,17)" fg:x="435731" fg:w="2424"/><text x="99.6968%" y="1775.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (1,218 samples, 0.28%)</title><rect x="99.7220%" y="1749" width="0.2780%" height="15" fill="rgb(218,68,53)" fg:x="436937" fg:w="1218"/><text x="99.9720%" y="1759.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (1,218 samples, 0.28%)</title><rect x="99.7220%" y="1733" width="0.2780%" height="15" fill="rgb(236,111,10)" fg:x="436937" fg:w="1218"/><text x="99.9720%" y="1743.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (1,218 samples, 0.28%)</title><rect x="99.7220%" y="1717" width="0.2780%" height="15" fill="rgb(224,34,41)" fg:x="436937" fg:w="1218"/><text x="99.9720%" y="1727.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (665 samples, 0.15%)</title><rect x="99.8482%" y="1701" width="0.1518%" height="15" fill="rgb(241,118,19)" fg:x="437490" fg:w="665"/><text x="100.0982%" y="1711.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (665 samples, 0.15%)</title><rect x="99.8482%" y="1685" width="0.1518%" height="15" fill="rgb(238,129,25)" fg:x="437490" fg:w="665"/><text x="100.0982%" y="1695.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (662 samples, 0.15%)</title><rect x="99.8489%" y="1669" width="0.1511%" height="15" fill="rgb(238,22,31)" fg:x="437493" fg:w="662"/><text x="100.0989%" y="1679.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (338 samples, 0.08%)</title><rect x="99.9229%" y="1653" width="0.0771%" height="15" fill="rgb(222,174,48)" fg:x="437817" fg:w="338"/><text x="100.1729%" y="1663.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (338 samples, 0.08%)</title><rect x="99.9229%" y="1637" width="0.0771%" height="15" fill="rgb(206,152,40)" fg:x="437817" fg:w="338"/><text x="100.1729%" y="1647.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN10rayon_core8registry9in_worker17hea919d4b4ba9c83aE (337 samples, 0.08%)</title><rect x="99.9231%" y="1621" width="0.0769%" height="15" fill="rgb(218,99,54)" fg:x="437818" fg:w="337"/><text x="100.1731%" y="1631.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN3std9panicking3try17h17d710f98524f242E (168 samples, 0.04%)</title><rect x="99.9617%" y="1605" width="0.0383%" height="15" fill="rgb(220,174,26)" fg:x="437987" fg:w="168"/><text x="100.2117%" y="1615.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing24bridge_producer_consumer6helper17hdb60f409e518fb30E (168 samples, 0.04%)</title><rect x="99.9617%" y="1589" width="0.0383%" height="15" fill="rgb(245,116,9)" fg:x="437987" fg:w="168"/><text x="100.2117%" y="1599.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN5rayon4iter8plumbing8Producer9fold_with17h1fb0c9c7d07bf418E (167 samples, 0.04%)</title><rect x="99.9619%" y="1573" width="0.0381%" height="15" fill="rgb(209,72,35)" fg:x="437988" fg:w="167"/><text x="100.2119%" y="1583.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN106_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$12consume_iter17h77e8c5b6feb4af51E (167 samples, 0.04%)</title><rect x="99.9619%" y="1557" width="0.0381%" height="15" fill="rgb(226,126,21)" fg:x="437988" fg:w="167"/><text x="100.2119%" y="1567.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN102_$LT$core..iter..adapters..map..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$8try_fold17hcaf4969640c74d7aE (167 samples, 0.04%)</title><rect x="99.9619%" y="1541" width="0.0381%" height="15" fill="rgb(227,192,1)" fg:x="437988" fg:w="167"/><text x="100.2119%" y="1551.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion8analysis9estimates5stats17h455f4e6495859148E (142 samples, 0.03%)</title><rect x="99.9676%" y="1525" width="0.0324%" height="15" fill="rgb(237,180,29)" fg:x="438013" fg:w="142"/><text x="100.2176%" y="1535.50"></text></g><g><title>search-10075cbc4ecf36f7`ZN9criterion5stats10univariate6sample15Sample$LT$A$GT$14median_abs_dev17h06640a2bfef05de3E (76 samples, 0.02%)</title><rect x="99.9827%" y="1509" width="0.0173%" height="15" fill="rgb(230,197,35)" fg:x="438079" fg:w="76"/><text x="100.2327%" y="1519.50"></text></g></svg></svg>