Files
advent-of-code-2023/day_10/flamegraph.svg

491 lines
1.3 MiB

<?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="1270" onload="init(evt)" viewBox="0 0 1200 1270" 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="1270" 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="1253.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="1253.00"> </text><svg id="frames" x="10" width="1180" total_samples="20901"><g><title>_RNvCsca6Df0Dex53_5cargo4main (5 samples, 0.02%)</title><rect x="0.0335%" y="1173" width="0.0239%" height="15" fill="rgb(227,0,7)" fg:x="7" fg:w="5"/><text x="0.2835%" y="1183.50"></text></g><g><title>_RNvNtCsca6Df0Dex53_5cargo3cli4main (5 samples, 0.02%)</title><rect x="0.0335%" y="1157" width="0.0239%" height="15" fill="rgb(217,0,24)" fg:x="7" fg:w="5"/><text x="0.2835%" y="1167.50"></text></g><g><title>_RNvNtNtCsca6Df0Dex53_5cargo8commands8metadata4exec.llvm.8313254326611871207 (5 samples, 0.02%)</title><rect x="0.0335%" y="1141" width="0.0239%" height="15" fill="rgb(221,193,54)" fg:x="7" fg:w="5"/><text x="0.2835%" y="1151.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo3ops21cargo_output_metadata15output_metadata (5 samples, 0.02%)</title><rect x="0.0335%" y="1125" width="0.0239%" height="15" fill="rgb(248,212,6)" fg:x="7" fg:w="5"/><text x="0.2835%" y="1135.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo3ops7resolve20resolve_ws_with_opts (4 samples, 0.02%)</title><rect x="0.0383%" y="1109" width="0.0191%" height="15" fill="rgb(208,68,35)" fg:x="8" fg:w="4"/><text x="0.2883%" y="1119.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo3ops19cargo_read_manifest12read_package (4 samples, 0.02%)</title><rect x="0.0718%" y="1173" width="0.0191%" height="15" fill="rgb(232,128,0)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1183.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4util4toml13read_manifest (4 samples, 0.02%)</title><rect x="0.0718%" y="1157" width="0.0191%" height="15" fill="rgb(207,160,47)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1167.50"></text></g><g><title>_RINvXs0_CsQFzBAGVtvK_13serde_ignoredINtB6_12DeserializerNtNtCsljqoj40AaW1_4toml2de12DeserializerNCNvNtNtCsdXkAvhoL9ja_5cargo4util4toml22read_manifest_from_str0ENtNtCsbw6cAdxnXUX_5serde2de12Deserializer18deserialize_structNtNvXNvB1A_s1_1__NtB1A_12TomlManifestNtB2A_11Deserialize11deserialize9___VisitorEB1E_ (4 samples, 0.02%)</title><rect x="0.0718%" y="1141" width="0.0191%" height="15" fill="rgb(228,23,34)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1151.50"></text></g><g><title>_RNvXs5_NtCsdbfnUlSnspo_9toml_edit2deNtB5_12DeserializerNtNtNtCs7L5q00ejtpZ_4core3str6traits7FromStr8from_str (4 samples, 0.02%)</title><rect x="0.0718%" y="1125" width="0.0191%" height="15" fill="rgb(218,30,26)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1135.50"></text></g><g><title>_RNvNtCsdbfnUlSnspo_9toml_edit6parser14parse_document (4 samples, 0.02%)</title><rect x="0.0718%" y="1109" width="0.0191%" height="15" fill="rgb(220,122,19)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1119.50"></text></g><g><title>_RNvNtNtCsdbfnUlSnspo_9toml_edit6parser8document8document (4 samples, 0.02%)</title><rect x="0.0718%" y="1093" width="0.0191%" height="15" fill="rgb(250,228,42)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1103.50"></text></g><g><title>_RINvNtNtCs5aAbtkhqWP6_6winnow10combinator5multi8repeat0_INtNtB6_6stream7LocatedRNtBV_4BStrETuuEuNtNtB6_5error12ContextErrorTNCNvNtNtCsdbfnUlSnspo_9toml_edit6parser8document8documents0_0NCNvB22_8parse_ws0EEB26_ (4 samples, 0.02%)</title><rect x="0.0718%" y="1077" width="0.0191%" height="15" fill="rgb(240,193,28)" fg:x="15" fg:w="4"/><text x="0.3218%" y="1087.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo3ops7resolve21resolve_with_previous (3 samples, 0.01%)</title><rect x="0.1005%" y="1173" width="0.0144%" height="15" fill="rgb(216,20,37)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1183.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4core8resolver7resolve (3 samples, 0.01%)</title><rect x="0.1005%" y="1157" width="0.0144%" height="15" fill="rgb(206,188,39)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1167.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4core8resolver18activate_deps_loop (3 samples, 0.01%)</title><rect x="0.1005%" y="1141" width="0.0144%" height="15" fill="rgb(217,207,13)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1151.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4core8resolver8activate (3 samples, 0.01%)</title><rect x="0.1005%" y="1125" width="0.0144%" height="15" fill="rgb(231,73,38)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1135.50"></text></g><g><title>_RNvXs_NtNtCsjllP7bAX7YC_5alloc3vec16in_place_collectINtB6_3VecTNtNtNtCsdXkAvhoL9ja_5cargo4core10dependency10DependencyINtNtB8_2rc2RcIBP_NtNtB13_7summary7SummaryEEIB1T_INtNtNtNtB8_11collections5btree3set8BTreeSetNtNtNtB15_4util9interning14InternedStringEEEEINtNtB6_14spec_from_iter12SpecFromIterBY_INtNtNtCs7L5q00ejtpZ_4core4iter8adapters12GenericShuntINtNtB4O_10filter_map9FilterMapINtNtB6_9into_iter8IntoIterTBZ_B2A_EENCNvMNtNtB13_8resolver9dep_cacheNtB6O_15RegistryQueryer10build_deps0EINtNtB4S_6result6ResultNtNtB4S_7convert10InfallibleNtCs1Hw25ykfrsN_6anyhow5ErrorEEE9from_iterB15_ (3 samples, 0.01%)</title><rect x="0.1005%" y="1109" width="0.0144%" height="15" fill="rgb(225,20,46)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1119.50"></text></g><g><title>_RNCNvMNtNtNtCsdXkAvhoL9ja_5cargo4core8resolver9dep_cacheNtB4_15RegistryQueryer10build_deps0Ba_.llvm.17563556592325741717 (3 samples, 0.01%)</title><rect x="0.1005%" y="1093" width="0.0144%" height="15" fill="rgb(210,31,41)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1103.50"></text></g><g><title>_RNvMNtNtNtCsdXkAvhoL9ja_5cargo4core8resolver9dep_cacheNtB2_15RegistryQueryer5query (3 samples, 0.01%)</title><rect x="0.1005%" y="1077" width="0.0144%" height="15" fill="rgb(221,200,47)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1087.50"></text></g><g><title>_RNvXs_NtNtCsdXkAvhoL9ja_5cargo4core8registryNtB4_15PackageRegistryNtB4_8Registry5query (3 samples, 0.01%)</title><rect x="0.1005%" y="1061" width="0.0144%" height="15" fill="rgb(226,26,5)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1071.50"></text></g><g><title>_RNvXs_NtNtCsdXkAvhoL9ja_5cargo7sources8replacedNtB4_14ReplacedSourceNtNtB6_6source6Source5query (3 samples, 0.01%)</title><rect x="0.1005%" y="1045" width="0.0144%" height="15" fill="rgb(249,33,26)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1055.50"></text></g><g><title>_RNvXs_NtNtCsdXkAvhoL9ja_5cargo7sources8registryNtB4_14RegistrySourceNtNtB6_6source6Source5query (3 samples, 0.01%)</title><rect x="0.1005%" y="1029" width="0.0144%" height="15" fill="rgb(235,183,28)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1039.50"></text></g><g><title>_RNvMs_NtNtNtCsdXkAvhoL9ja_5cargo7sources8registry5indexNtB4_13RegistryIndex23query_inner_with_online.llvm.4719380509598101139 (3 samples, 0.01%)</title><rect x="0.1005%" y="1013" width="0.0144%" height="15" fill="rgb(221,5,38)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1023.50"></text></g><g><title>_RNvMs_NtNtNtCsdXkAvhoL9ja_5cargo7sources8registry5indexNtB4_13RegistryIndex14load_summaries (3 samples, 0.01%)</title><rect x="0.1005%" y="997" width="0.0144%" height="15" fill="rgb(247,18,42)" fg:x="21" fg:w="3"/><text x="0.3505%" y="1007.50"></text></g><g><title>_RINvXs0_CsQFzBAGVtvK_13serde_ignoredINtB6_12DeserializerNtNtCsljqoj40AaW1_4toml2de12DeserializerNCNvNtNtCsdXkAvhoL9ja_5cargo4util4toml22read_manifest_from_str0ENtNtCsbw6cAdxnXUX_5serde2de12Deserializer18deserialize_structNtNvXNvB1A_s1_1__NtB1A_12TomlManifestNtB2A_11Deserialize11deserialize9___VisitorEB1E_ (4 samples, 0.02%)</title><rect x="0.1244%" y="1157" width="0.0191%" height="15" fill="rgb(241,131,45)" fg:x="26" fg:w="4"/><text x="0.3744%" y="1167.50"></text></g><g><title>_RNvXs5_NtCsdbfnUlSnspo_9toml_edit2deNtB5_12DeserializerNtNtNtCs7L5q00ejtpZ_4core3str6traits7FromStr8from_str (3 samples, 0.01%)</title><rect x="0.1292%" y="1141" width="0.0144%" height="15" fill="rgb(249,31,29)" fg:x="27" fg:w="3"/><text x="0.3792%" y="1151.50"></text></g><g><title>_RNvNtCsdbfnUlSnspo_9toml_edit6parser14parse_document (3 samples, 0.01%)</title><rect x="0.1292%" y="1125" width="0.0144%" height="15" fill="rgb(225,111,53)" fg:x="27" fg:w="3"/><text x="0.3792%" y="1135.50"></text></g><g><title>_RNvNtNtCsdbfnUlSnspo_9toml_edit6parser8document8document (3 samples, 0.01%)</title><rect x="0.1292%" y="1109" width="0.0144%" height="15" fill="rgb(238,160,17)" fg:x="27" fg:w="3"/><text x="0.3792%" y="1119.50"></text></g><g><title>_RINvNtNtCs5aAbtkhqWP6_6winnow10combinator5multi8repeat0_INtNtB6_6stream7LocatedRNtBV_4BStrETuuEuNtNtB6_5error12ContextErrorTNCNvNtNtCsdbfnUlSnspo_9toml_edit6parser8document8documents0_0NCNvB22_8parse_ws0EEB26_ (3 samples, 0.01%)</title><rect x="0.1292%" y="1093" width="0.0144%" height="15" fill="rgb(214,148,48)" fg:x="27" fg:w="3"/><text x="0.3792%" y="1103.50"></text></g><g><title>_RNvNtNtCsdbfnUlSnspo_9toml_edit6parser8document12parse_keyval (3 samples, 0.01%)</title><rect x="0.1292%" y="1077" width="0.0144%" height="15" fill="rgb(232,36,49)" fg:x="27" fg:w="3"/><text x="0.3792%" y="1087.50"></text></g><g><title>[unknown] (30 samples, 0.14%)</title><rect x="0.0096%" y="1189" width="0.1435%" height="15" fill="rgb(209,103,24)" fg:x="2" fg:w="30"/><text x="0.2596%" y="1199.50"></text></g><g><title>_RNvNtNtCsdXkAvhoL9ja_5cargo4util4toml13read_manifest (6 samples, 0.03%)</title><rect x="0.1244%" y="1173" width="0.0287%" height="15" fill="rgb(229,88,8)" fg:x="26" fg:w="6"/><text x="0.3744%" y="1183.50"></text></g><g><title>_RNvCsca6Df0Dex53_5cargo8init_git (5 samples, 0.02%)</title><rect x="0.1531%" y="917" width="0.0239%" height="15" fill="rgb(213,181,19)" fg:x="32" fg:w="5"/><text x="0.4031%" y="927.50"></text></g><g><title>_RNvNtCsj1wMEJR1XTc_4git24opts27set_verify_owner_validation (5 samples, 0.02%)</title><rect x="0.1531%" y="901" width="0.0239%" height="15" fill="rgb(254,191,54)" fg:x="32" fg:w="5"/><text x="0.4031%" y="911.50"></text></g><g><title>_RNvCs2nrOCJfkA3A_11libgit2_sys4init (5 samples, 0.02%)</title><rect x="0.1531%" y="885" width="0.0239%" height="15" fill="rgb(241,83,37)" fg:x="32" fg:w="5"/><text x="0.4031%" y="895.50"></text></g><g><title>_RINvMs0_NtNtNtCsa38RyOPu2rR_3std10sys_common4once5futexNtB6_4Once4callNCINvMs0_NtNtBc_4sync4onceNtB1f_4Once9call_onceNCNvCs2nrOCJfkA3A_11libgit2_sys4init0E0EB1V_ (5 samples, 0.02%)</title><rect x="0.1531%" y="869" width="0.0239%" height="15" fill="rgb(233,36,39)" fg:x="32" fg:w="5"/><text x="0.4031%" y="879.50"></text></g><g><title>git_runtime_init (5 samples, 0.02%)</title><rect x="0.1531%" y="853" width="0.0239%" height="15" fill="rgb(226,3,54)" fg:x="32" fg:w="5"/><text x="0.4031%" y="863.50"></text></g><g><title>git_openssl_stream_global_init (5 samples, 0.02%)</title><rect x="0.1531%" y="837" width="0.0239%" height="15" fill="rgb(245,192,40)" fg:x="32" fg:w="5"/><text x="0.4031%" y="847.50"></text></g><g><title>X509_STORE_set_default_paths (4 samples, 0.02%)</title><rect x="0.1579%" y="821" width="0.0191%" height="15" fill="rgb(238,167,29)" fg:x="33" fg:w="4"/><text x="0.4079%" y="831.50"></text></g><g><title>by_file_ctrl (4 samples, 0.02%)</title><rect x="0.1579%" y="805" width="0.0191%" height="15" fill="rgb(232,182,51)" fg:x="33" fg:w="4"/><text x="0.4079%" y="815.50"></text></g><g><title>X509_load_cert_crl_file (4 samples, 0.02%)</title><rect x="0.1579%" y="789" width="0.0191%" height="15" fill="rgb(231,60,39)" fg:x="33" fg:w="4"/><text x="0.4079%" y="799.50"></text></g><g><title>PEM_X509_INFO_read_bio (4 samples, 0.02%)</title><rect x="0.1579%" y="773" width="0.0191%" height="15" fill="rgb(208,69,12)" fg:x="33" fg:w="4"/><text x="0.4079%" y="783.50"></text></g><g><title>PEM_read_bio_ex (3 samples, 0.01%)</title><rect x="0.1627%" y="757" width="0.0144%" height="15" fill="rgb(235,93,37)" fg:x="34" fg:w="3"/><text x="0.4127%" y="767.50"></text></g><g><title>[libc.so.6] (8 samples, 0.04%)</title><rect x="0.1531%" y="1157" width="0.0383%" height="15" fill="rgb(213,116,39)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1167.50"></text></g><g><title>main (8 samples, 0.04%)</title><rect x="0.1531%" y="1141" width="0.0383%" height="15" fill="rgb(222,207,29)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1151.50"></text></g><g><title>std::rt::lang_start_internal (8 samples, 0.04%)</title><rect x="0.1531%" y="1125" width="0.0383%" height="15" fill="rgb(206,96,30)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1135.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.04%)</title><rect x="0.1531%" y="1109" width="0.0383%" height="15" fill="rgb(218,138,4)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1119.50"></text></g><g><title>std::panicking::try (8 samples, 0.04%)</title><rect x="0.1531%" y="1093" width="0.0383%" height="15" fill="rgb(250,191,14)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1103.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.04%)</title><rect x="0.1531%" y="1077" width="0.0383%" height="15" fill="rgb(239,60,40)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1087.50"></text></g><g><title>std::rt::lang_start_internal::_{{closure}} (8 samples, 0.04%)</title><rect x="0.1531%" y="1061" width="0.0383%" height="15" fill="rgb(206,27,48)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1071.50"></text></g><g><title>std::panic::catch_unwind (8 samples, 0.04%)</title><rect x="0.1531%" y="1045" width="0.0383%" height="15" fill="rgb(225,35,8)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1055.50"></text></g><g><title>std::panicking::try (8 samples, 0.04%)</title><rect x="0.1531%" y="1029" width="0.0383%" height="15" fill="rgb(250,213,24)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1039.50"></text></g><g><title>std::panicking::try::do_call (8 samples, 0.04%)</title><rect x="0.1531%" y="1013" width="0.0383%" height="15" fill="rgb(247,123,22)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1023.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (8 samples, 0.04%)</title><rect x="0.1531%" y="997" width="0.0383%" height="15" fill="rgb(231,138,38)" fg:x="32" fg:w="8"/><text x="0.4031%" y="1007.50"></text></g><g><title>_RNCINvNtCsa38RyOPu2rR_3std2rt10lang_startuE0Csca6Df0Dex53_5cargo.llvm.8313254326611871207 (8 samples, 0.04%)</title><rect x="0.1531%" y="981" width="0.0383%" height="15" fill="rgb(231,145,46)" fg:x="32" fg:w="8"/><text x="0.4031%" y="991.50"></text></g><g><title>_RINvNtNtCsa38RyOPu2rR_3std10sys_common9backtrace28___rust_begin_short_backtraceFEuuECsca6Df0Dex53_5cargo (8 samples, 0.04%)</title><rect x="0.1531%" y="965" width="0.0383%" height="15" fill="rgb(251,118,11)" fg:x="32" fg:w="8"/><text x="0.4031%" y="975.50"></text></g><g><title>_RNvCsca6Df0Dex53_5cargo4main (8 samples, 0.04%)</title><rect x="0.1531%" y="949" width="0.0383%" height="15" fill="rgb(217,147,25)" fg:x="32" fg:w="8"/><text x="0.4031%" y="959.50"></text></g><g><title>_RNvNtCsca6Df0Dex53_5cargo3cli4main (8 samples, 0.04%)</title><rect x="0.1531%" y="933" width="0.0383%" height="15" fill="rgb(247,81,37)" fg:x="32" fg:w="8"/><text x="0.4031%" y="943.50"></text></g><g><title>_RNvNtNtCsca6Df0Dex53_5cargo8commands8metadata4exec.llvm.8313254326611871207 (3 samples, 0.01%)</title><rect x="0.1770%" y="917" width="0.0144%" height="15" fill="rgb(209,12,38)" fg:x="37" fg:w="3"/><text x="0.4270%" y="927.50"></text></g><g><title>cargo (41 samples, 0.20%)</title><rect x="0.0000%" y="1205" width="0.1962%" height="15" fill="rgb(227,1,9)" fg:x="0" fg:w="41"/><text x="0.2500%" y="1215.50"></text></g><g><title>_start (9 samples, 0.04%)</title><rect x="0.1531%" y="1189" width="0.0431%" height="15" fill="rgb(248,47,43)" fg:x="32" fg:w="9"/><text x="0.4031%" y="1199.50"></text></g><g><title>__libc_start_main (9 samples, 0.04%)</title><rect x="0.1531%" y="1173" width="0.0431%" height="15" fill="rgb(221,10,30)" fg:x="32" fg:w="9"/><text x="0.4031%" y="1183.50"></text></g><g><title>[[stack]] (12 samples, 0.06%)</title><rect x="0.1962%" y="1189" width="0.0574%" height="15" fill="rgb(210,229,1)" fg:x="41" fg:w="12"/><text x="0.4462%" y="1199.50"></text></g><g><title>[ld-linux-x86-64.so.2] (11 samples, 0.05%)</title><rect x="0.2009%" y="1173" width="0.0526%" height="15" fill="rgb(222,148,37)" fg:x="42" fg:w="11"/><text x="0.4509%" y="1183.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.03%)</title><rect x="0.2536%" y="1173" width="0.0335%" height="15" fill="rgb(234,67,33)" fg:x="53" fg:w="7"/><text x="0.5036%" y="1183.50"></text></g><g><title>[anon] (8 samples, 0.04%)</title><rect x="0.2536%" y="1189" width="0.0383%" height="15" fill="rgb(247,98,35)" fg:x="53" fg:w="8"/><text x="0.5036%" y="1199.50"></text></g><g><title>[gnuplot] (3 samples, 0.01%)</title><rect x="0.3158%" y="1013" width="0.0144%" height="15" fill="rgb(247,138,52)" fg:x="66" fg:w="3"/><text x="0.5658%" y="1023.50"></text></g><g><title>[gnuplot] (21 samples, 0.10%)</title><rect x="0.3158%" y="1029" width="0.1005%" height="15" fill="rgb(213,79,30)" fg:x="66" fg:w="21"/><text x="0.5658%" y="1039.50"></text></g><g><title>__fprintf_chk (18 samples, 0.09%)</title><rect x="0.3301%" y="1013" width="0.0861%" height="15" fill="rgb(246,177,23)" fg:x="69" fg:w="18"/><text x="0.5801%" y="1023.50"></text></g><g><title>[libc.so.6] (18 samples, 0.09%)</title><rect x="0.3301%" y="997" width="0.0861%" height="15" fill="rgb(230,62,27)" fg:x="69" fg:w="18"/><text x="0.5801%" y="1007.50"></text></g><g><title>[libc.so.6] (18 samples, 0.09%)</title><rect x="0.3301%" y="981" width="0.0861%" height="15" fill="rgb(216,154,8)" fg:x="69" fg:w="18"/><text x="0.5801%" y="991.50"></text></g><g><title>[libc.so.6] (17 samples, 0.08%)</title><rect x="0.3349%" y="965" width="0.0813%" height="15" fill="rgb(244,35,45)" fg:x="70" fg:w="17"/><text x="0.5849%" y="975.50"></text></g><g><title>[libc.so.6] (16 samples, 0.08%)</title><rect x="0.3397%" y="949" width="0.0766%" height="15" fill="rgb(251,115,12)" fg:x="71" fg:w="16"/><text x="0.5897%" y="959.50"></text></g><g><title>[libc.so.6] (8 samples, 0.04%)</title><rect x="0.3780%" y="933" width="0.0383%" height="15" fill="rgb(240,54,50)" fg:x="79" fg:w="8"/><text x="0.6280%" y="943.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="0.3923%" y="917" width="0.0239%" height="15" fill="rgb(233,84,52)" fg:x="82" fg:w="5"/><text x="0.6423%" y="927.50"></text></g><g><title>[gnuplot] (26 samples, 0.12%)</title><rect x="0.3014%" y="1045" width="0.1244%" height="15" fill="rgb(207,117,47)" fg:x="63" fg:w="26"/><text x="0.5514%" y="1055.50"></text></g><g><title>[gnuplot] (28 samples, 0.13%)</title><rect x="0.2966%" y="1093" width="0.1340%" height="15" fill="rgb(249,43,39)" fg:x="62" fg:w="28"/><text x="0.5466%" y="1103.50"></text></g><g><title>[gnuplot] (28 samples, 0.13%)</title><rect x="0.2966%" y="1077" width="0.1340%" height="15" fill="rgb(209,38,44)" fg:x="62" fg:w="28"/><text x="0.5466%" y="1087.50"></text></g><g><title>[gnuplot] (28 samples, 0.13%)</title><rect x="0.2966%" y="1061" width="0.1340%" height="15" fill="rgb(236,212,23)" fg:x="62" fg:w="28"/><text x="0.5466%" y="1071.50"></text></g><g><title>[gnuplot] (63 samples, 0.30%)</title><rect x="0.2966%" y="1109" width="0.3014%" height="15" fill="rgb(242,79,21)" fg:x="62" fg:w="63"/><text x="0.5466%" y="1119.50"></text></g><g><title>_IO_fgets (35 samples, 0.17%)</title><rect x="0.4306%" y="1093" width="0.1675%" height="15" fill="rgb(211,96,35)" fg:x="90" fg:w="35"/><text x="0.6806%" y="1103.50"></text></g><g><title>_IO_getline_info (35 samples, 0.17%)</title><rect x="0.4306%" y="1077" width="0.1675%" height="15" fill="rgb(253,215,40)" fg:x="90" fg:w="35"/><text x="0.6806%" y="1087.50"></text></g><g><title>_IO_default_uflow (35 samples, 0.17%)</title><rect x="0.4306%" y="1061" width="0.1675%" height="15" fill="rgb(211,81,21)" fg:x="90" fg:w="35"/><text x="0.6806%" y="1071.50"></text></g><g><title>_IO_file_underflow (35 samples, 0.17%)</title><rect x="0.4306%" y="1045" width="0.1675%" height="15" fill="rgb(208,190,38)" fg:x="90" fg:w="35"/><text x="0.6806%" y="1055.50"></text></g><g><title>read (33 samples, 0.16%)</title><rect x="0.4402%" y="1029" width="0.1579%" height="15" fill="rgb(235,213,38)" fg:x="92" fg:w="33"/><text x="0.6902%" y="1039.50"></text></g><g><title>[gnuplot] (66 samples, 0.32%)</title><rect x="0.2919%" y="1141" width="0.3158%" height="15" fill="rgb(237,122,38)" fg:x="61" fg:w="66"/><text x="0.5419%" y="1151.50"></text></g><g><title>[gnuplot] (66 samples, 0.32%)</title><rect x="0.2919%" y="1125" width="0.3158%" height="15" fill="rgb(244,218,35)" fg:x="61" fg:w="66"/><text x="0.5419%" y="1135.50"></text></g><g><title>[gnuplot] (79 samples, 0.38%)</title><rect x="0.2919%" y="1189" width="0.3780%" height="15" fill="rgb(240,68,47)" fg:x="61" fg:w="79"/><text x="0.5419%" y="1199.50"></text></g><g><title>__libc_start_main (79 samples, 0.38%)</title><rect x="0.2919%" y="1173" width="0.3780%" height="15" fill="rgb(210,16,53)" fg:x="61" fg:w="79"/><text x="0.5419%" y="1183.50"></text></g><g><title>[libc.so.6] (79 samples, 0.38%)</title><rect x="0.2919%" y="1157" width="0.3780%" height="15" fill="rgb(235,124,12)" fg:x="61" fg:w="79"/><text x="0.5419%" y="1167.50"></text></g><g><title>exit (13 samples, 0.06%)</title><rect x="0.6076%" y="1141" width="0.0622%" height="15" fill="rgb(224,169,11)" fg:x="127" fg:w="13"/><text x="0.8576%" y="1151.50"></text></g><g><title>[libc.so.6] (13 samples, 0.06%)</title><rect x="0.6076%" y="1125" width="0.0622%" height="15" fill="rgb(250,166,2)" fg:x="127" fg:w="13"/><text x="0.8576%" y="1135.50"></text></g><g><title>[ld-linux-x86-64.so.2] (10 samples, 0.05%)</title><rect x="0.6220%" y="1109" width="0.0478%" height="15" fill="rgb(242,216,29)" fg:x="130" fg:w="10"/><text x="0.8720%" y="1119.50"></text></g><g><title>[ld-linux-x86-64.so.2] (7 samples, 0.03%)</title><rect x="0.6363%" y="1093" width="0.0335%" height="15" fill="rgb(230,116,27)" fg:x="133" fg:w="7"/><text x="0.8863%" y="1103.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (3 samples, 0.01%)</title><rect x="0.6555%" y="1077" width="0.0144%" height="15" fill="rgb(228,99,48)" fg:x="137" fg:w="3"/><text x="0.9055%" y="1087.50"></text></g><g><title>__cxa_finalize (3 samples, 0.01%)</title><rect x="0.6555%" y="1061" width="0.0144%" height="15" fill="rgb(253,11,6)" fg:x="137" fg:w="3"/><text x="0.9055%" y="1071.50"></text></g><g><title>[ld-linux-x86-64.so.2] (647 samples, 3.10%)</title><rect x="1.0239%" y="1109" width="3.0955%" height="15" fill="rgb(247,143,39)" fg:x="214" fg:w="647"/><text x="1.2739%" y="1119.50">[ld..</text></g><g><title>[ld-linux-x86-64.so.2] (578 samples, 2.77%)</title><rect x="1.3540%" y="1093" width="2.7654%" height="15" fill="rgb(236,97,10)" fg:x="283" fg:w="578"/><text x="1.6040%" y="1103.50">[l..</text></g><g><title>[ld-linux-x86-64.so.2] (52 samples, 0.25%)</title><rect x="3.8706%" y="1077" width="0.2488%" height="15" fill="rgb(233,208,19)" fg:x="809" fg:w="52"/><text x="4.1206%" y="1087.50"></text></g><g><title>[ld-linux-x86-64.so.2] (25 samples, 0.12%)</title><rect x="3.9998%" y="1061" width="0.1196%" height="15" fill="rgb(216,164,2)" fg:x="836" fg:w="25"/><text x="4.2498%" y="1071.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="4.1051%" y="1045" width="0.0144%" height="15" fill="rgb(220,129,5)" fg:x="858" fg:w="3"/><text x="4.3551%" y="1055.50"></text></g><g><title>_dl_catch_exception (72 samples, 0.34%)</title><rect x="4.1194%" y="1109" width="0.3445%" height="15" fill="rgb(242,17,10)" fg:x="861" fg:w="72"/><text x="4.3694%" y="1119.50"></text></g><g><title>[ld-linux-x86-64.so.2] (72 samples, 0.34%)</title><rect x="4.1194%" y="1093" width="0.3445%" height="15" fill="rgb(242,107,0)" fg:x="861" fg:w="72"/><text x="4.3694%" y="1103.50"></text></g><g><title>[ld-linux-x86-64.so.2] (72 samples, 0.34%)</title><rect x="4.1194%" y="1077" width="0.3445%" height="15" fill="rgb(251,28,31)" fg:x="861" fg:w="72"/><text x="4.3694%" y="1087.50"></text></g><g><title>[ld-linux-x86-64.so.2] (61 samples, 0.29%)</title><rect x="4.1720%" y="1061" width="0.2919%" height="15" fill="rgb(233,223,10)" fg:x="872" fg:w="61"/><text x="4.4220%" y="1071.50"></text></g><g><title>[ld-linux-x86-64.so.2] (25 samples, 0.12%)</title><rect x="4.3443%" y="1045" width="0.1196%" height="15" fill="rgb(215,21,27)" fg:x="908" fg:w="25"/><text x="4.5943%" y="1055.50"></text></g><g><title>[ld-linux-x86-64.so.2] (3 samples, 0.01%)</title><rect x="4.4495%" y="1029" width="0.0144%" height="15" fill="rgb(232,23,21)" fg:x="930" fg:w="3"/><text x="4.6995%" y="1039.50"></text></g><g><title>[ld-linux-x86-64.so.2] (788 samples, 3.77%)</title><rect x="0.6985%" y="1141" width="3.7702%" height="15" fill="rgb(244,5,23)" fg:x="146" fg:w="788"/><text x="0.9485%" y="1151.50">[ld-..</text></g><g><title>[ld-linux-x86-64.so.2] (785 samples, 3.76%)</title><rect x="0.7129%" y="1125" width="3.7558%" height="15" fill="rgb(226,81,46)" fg:x="149" fg:w="785"/><text x="0.9629%" y="1135.50">[ld-..</text></g><g><title>[libgobject-2.0.so.0.7800.3] (3 samples, 0.01%)</title><rect x="4.4783%" y="1125" width="0.0144%" height="15" fill="rgb(247,70,30)" fg:x="936" fg:w="3"/><text x="4.7283%" y="1135.50"></text></g><g><title>[libgobject-2.0.so.0.7800.3] (6 samples, 0.03%)</title><rect x="4.4783%" y="1141" width="0.0287%" height="15" fill="rgb(212,68,19)" fg:x="936" fg:w="6"/><text x="4.7283%" y="1151.50"></text></g><g><title>g_value_register_transform_func (3 samples, 0.01%)</title><rect x="4.4926%" y="1125" width="0.0144%" height="15" fill="rgb(240,187,13)" fg:x="939" fg:w="3"/><text x="4.7426%" y="1135.50"></text></g><g><title>alloc_and_init_significant_coeff_ctxIdx_lookupTable (3 samples, 0.01%)</title><rect x="4.5070%" y="1093" width="0.0144%" height="15" fill="rgb(223,113,26)" fg:x="942" fg:w="3"/><text x="4.7570%" y="1103.50"></text></g><g><title>[libheif.so.1.17.5] (54 samples, 0.26%)</title><rect x="4.5070%" y="1141" width="0.2584%" height="15" fill="rgb(206,192,2)" fg:x="942" fg:w="54"/><text x="4.7570%" y="1151.50"></text></g><g><title>[libheif.so.1.17.5] (54 samples, 0.26%)</title><rect x="4.5070%" y="1125" width="0.2584%" height="15" fill="rgb(241,108,4)" fg:x="942" fg:w="54"/><text x="4.7570%" y="1135.50"></text></g><g><title>de265_init (54 samples, 0.26%)</title><rect x="4.5070%" y="1109" width="0.2584%" height="15" fill="rgb(247,173,49)" fg:x="942" fg:w="54"/><text x="4.7570%" y="1119.50"></text></g><g><title>init_scan_orders (51 samples, 0.24%)</title><rect x="4.5213%" y="1093" width="0.2440%" height="15" fill="rgb(224,114,35)" fg:x="945" fg:w="51"/><text x="4.7713%" y="1103.50"></text></g><g><title>[libc.so.6] (10 samples, 0.05%)</title><rect x="4.8323%" y="933" width="0.0478%" height="15" fill="rgb(245,159,27)" fg:x="1010" fg:w="10"/><text x="5.0823%" y="943.50"></text></g><g><title>[libc.so.6] (11 samples, 0.05%)</title><rect x="4.8323%" y="949" width="0.0526%" height="15" fill="rgb(245,172,44)" fg:x="1010" fg:w="11"/><text x="5.0823%" y="959.50"></text></g><g><title>[libc.so.6] (18 samples, 0.09%)</title><rect x="4.8227%" y="965" width="0.0861%" height="15" fill="rgb(236,23,11)" fg:x="1008" fg:w="18"/><text x="5.0727%" y="975.50"></text></g><g><title>__tsearch (4 samples, 0.02%)</title><rect x="4.8897%" y="949" width="0.0191%" height="15" fill="rgb(205,117,38)" fg:x="1022" fg:w="4"/><text x="5.1397%" y="959.50"></text></g><g><title>[libc.so.6] (19 samples, 0.09%)</title><rect x="4.8227%" y="981" width="0.0909%" height="15" fill="rgb(237,72,25)" fg:x="1008" fg:w="19"/><text x="5.0727%" y="991.50"></text></g><g><title>[libc.so.6] (28 samples, 0.13%)</title><rect x="4.7845%" y="997" width="0.1340%" height="15" fill="rgb(244,70,9)" fg:x="1000" fg:w="28"/><text x="5.0345%" y="1007.50"></text></g><g><title>wxCSConv::DoCreate (32 samples, 0.15%)</title><rect x="4.7701%" y="1093" width="0.1531%" height="15" fill="rgb(217,125,39)" fg:x="997" fg:w="32"/><text x="5.0201%" y="1103.50"></text></g><g><title>wxMBConv_iconv::wxMBConv_iconv (31 samples, 0.15%)</title><rect x="4.7749%" y="1077" width="0.1483%" height="15" fill="rgb(235,36,10)" fg:x="998" fg:w="31"/><text x="5.0249%" y="1087.50"></text></g><g><title>iconv_open (30 samples, 0.14%)</title><rect x="4.7797%" y="1061" width="0.1435%" height="15" fill="rgb(251,123,47)" fg:x="999" fg:w="30"/><text x="5.0297%" y="1071.50"></text></g><g><title>__gconv_open (30 samples, 0.14%)</title><rect x="4.7797%" y="1045" width="0.1435%" height="15" fill="rgb(221,13,13)" fg:x="999" fg:w="30"/><text x="5.0297%" y="1055.50"></text></g><g><title>[libc.so.6] (30 samples, 0.14%)</title><rect x="4.7797%" y="1029" width="0.1435%" height="15" fill="rgb(238,131,9)" fg:x="999" fg:w="30"/><text x="5.0297%" y="1039.50"></text></g><g><title>[libc.so.6] (30 samples, 0.14%)</title><rect x="4.7797%" y="1013" width="0.1435%" height="15" fill="rgb(211,50,8)" fg:x="999" fg:w="30"/><text x="5.0297%" y="1023.50"></text></g><g><title>[libwx_baseu-3.2.so.0.2.2] (34 samples, 0.16%)</title><rect x="4.7653%" y="1141" width="0.1627%" height="15" fill="rgb(245,182,24)" fg:x="996" fg:w="34"/><text x="5.0153%" y="1151.50"></text></g><g><title>wxGet_wxConvLocalPtr (33 samples, 0.16%)</title><rect x="4.7701%" y="1125" width="0.1579%" height="15" fill="rgb(242,14,37)" fg:x="997" fg:w="33"/><text x="5.0201%" y="1135.50"></text></g><g><title>wxCSConv::wxCSConv (33 samples, 0.16%)</title><rect x="4.7701%" y="1109" width="0.1579%" height="15" fill="rgb(246,228,12)" fg:x="997" fg:w="33"/><text x="5.0201%" y="1119.50"></text></g><g><title>[libwx_gtk3u_core-3.2.so.0.2.2] (3 samples, 0.01%)</title><rect x="4.9280%" y="1141" width="0.0144%" height="15" fill="rgb(213,55,15)" fg:x="1030" fg:w="3"/><text x="5.1780%" y="1151.50"></text></g><g><title>[ld-linux-x86-64.so.2] (889 samples, 4.25%)</title><rect x="0.6937%" y="1173" width="4.2534%" height="15" fill="rgb(209,9,3)" fg:x="145" fg:w="889"/><text x="0.9437%" y="1183.50">[ld-l..</text></g><g><title>[ld-linux-x86-64.so.2] (888 samples, 4.25%)</title><rect x="0.6985%" y="1157" width="4.2486%" height="15" fill="rgb(230,59,30)" fg:x="146" fg:w="888"/><text x="0.9485%" y="1167.50">[ld-l..</text></g><g><title>[ld-linux-x86-64.so.2] (895 samples, 4.28%)</title><rect x="0.6698%" y="1189" width="4.2821%" height="15" fill="rgb(209,121,21)" fg:x="140" fg:w="895"/><text x="0.9198%" y="1199.50">[ld-l..</text></g><g><title>[ld-linux-x86-64.so.2] (4 samples, 0.02%)</title><rect x="4.9615%" y="1173" width="0.0191%" height="15" fill="rgb(220,109,13)" fg:x="1037" fg:w="4"/><text x="5.2115%" y="1183.50"></text></g><g><title>gnuplot (1,004 samples, 4.80%)</title><rect x="0.1962%" y="1205" width="4.8036%" height="15" fill="rgb(232,18,1)" fg:x="41" fg:w="1004"/><text x="0.4462%" y="1215.50">gnuplot</text></g><g><title>[unknown] (8 samples, 0.04%)</title><rect x="4.9615%" y="1189" width="0.0383%" height="15" fill="rgb(215,41,42)" fg:x="1037" fg:w="8"/><text x="5.2115%" y="1199.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve_for_push (10 samples, 0.05%)</title><rect x="5.0093%" y="1173" width="0.0478%" height="15" fill="rgb(224,123,36)" fg:x="1047" fg:w="10"/><text x="5.2593%" y="1183.50"></text></g><g><title>[[heap]] (15 samples, 0.07%)</title><rect x="4.9998%" y="1189" width="0.0718%" height="15" fill="rgb(240,125,3)" fg:x="1045" fg:w="15"/><text x="5.2498%" y="1199.50"></text></g><g><title>malloc (3 samples, 0.01%)</title><rect x="5.0859%" y="1173" width="0.0144%" height="15" fill="rgb(205,98,50)" fg:x="1063" fg:w="3"/><text x="5.3359%" y="1183.50"></text></g><g><title>[[stack]] (7 samples, 0.03%)</title><rect x="5.0715%" y="1189" width="0.0335%" height="15" fill="rgb(205,185,37)" fg:x="1060" fg:w="7"/><text x="5.3215%" y="1199.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="5.1385%" y="1173" width="0.0239%" height="15" fill="rgb(238,207,15)" fg:x="1074" fg:w="5"/><text x="5.3885%" y="1183.50"></text></g><g><title>oorandom::Rand64::rand_range (27 samples, 0.13%)</title><rect x="5.1624%" y="1173" width="0.1292%" height="15" fill="rgb(213,199,42)" fg:x="1079" fg:w="27"/><text x="5.4124%" y="1183.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="5.2916%" y="1173" width="0.0239%" height="15" fill="rgb(235,201,11)" fg:x="1106" fg:w="5"/><text x="5.5416%" y="1183.50"></text></g><g><title>[anon] (45 samples, 0.22%)</title><rect x="5.1050%" y="1189" width="0.2153%" height="15" fill="rgb(207,46,11)" fg:x="1067" fg:w="45"/><text x="5.3550%" y="1199.50"></text></g><g><title>[ld-linux-x86-64.so.2] (6 samples, 0.03%)</title><rect x="5.3203%" y="1189" width="0.0287%" height="15" fill="rgb(241,35,35)" fg:x="1112" fg:w="6"/><text x="5.5703%" y="1199.50"></text></g><g><title>__ctype_init (5 samples, 0.02%)</title><rect x="5.5882%" y="1157" width="0.0239%" height="15" fill="rgb(243,32,47)" fg:x="1168" fg:w="5"/><text x="5.8382%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="5.6217%" y="821" width="0.0191%" height="15" fill="rgb(247,202,23)" fg:x="1175" fg:w="4"/><text x="5.8717%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="5.6217%" y="805" width="0.0191%" height="15" fill="rgb(219,102,11)" fg:x="1175" fg:w="4"/><text x="5.8717%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="5.6217%" y="789" width="0.0191%" height="15" fill="rgb(243,110,44)" fg:x="1175" fg:w="4"/><text x="5.8717%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="5.6409%" y="757" width="0.0144%" height="15" fill="rgb(222,74,54)" fg:x="1179" fg:w="3"/><text x="5.8909%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="5.6409%" y="741" width="0.0144%" height="15" fill="rgb(216,99,12)" fg:x="1179" fg:w="3"/><text x="5.8909%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="5.6409%" y="725" width="0.0144%" height="15" fill="rgb(226,22,26)" fg:x="1179" fg:w="3"/><text x="5.8909%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="5.6409%" y="709" width="0.0144%" height="15" fill="rgb(217,163,10)" fg:x="1179" fg:w="3"/><text x="5.8909%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="5.6409%" y="693" width="0.0144%" height="15" fill="rgb(213,25,53)" fg:x="1179" fg:w="3"/><text x="5.8909%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="5.6552%" y="629" width="0.0144%" height="15" fill="rgb(252,105,26)" fg:x="1182" fg:w="3"/><text x="5.9052%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="5.6552%" y="613" width="0.0144%" height="15" fill="rgb(220,39,43)" fg:x="1182" fg:w="3"/><text x="5.9052%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="5.6552%" y="597" width="0.0144%" height="15" fill="rgb(229,68,48)" fg:x="1182" fg:w="3"/><text x="5.9052%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.2088744067846635343 (11 samples, 0.05%)</title><rect x="5.6217%" y="1029" width="0.0526%" height="15" fill="rgb(252,8,32)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="5.6217%" y="1013" width="0.0526%" height="15" fill="rgb(223,20,43)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="5.6217%" y="997" width="0.0526%" height="15" fill="rgb(229,81,49)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="5.6217%" y="981" width="0.0526%" height="15" fill="rgb(236,28,36)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="5.6217%" y="965" width="0.0526%" height="15" fill="rgb(249,185,26)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="5.6217%" y="949" width="0.0526%" height="15" fill="rgb(249,174,33)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="5.6217%" y="933" width="0.0526%" height="15" fill="rgb(233,201,37)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="5.6217%" y="917" width="0.0526%" height="15" fill="rgb(221,78,26)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="5.6217%" y="901" width="0.0526%" height="15" fill="rgb(250,127,30)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="5.6217%" y="885" width="0.0526%" height="15" fill="rgb(230,49,44)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="5.6217%" y="869" width="0.0526%" height="15" fill="rgb(229,67,23)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="5.6217%" y="853" width="0.0526%" height="15" fill="rgb(249,83,47)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="5.6217%" y="837" width="0.0526%" height="15" fill="rgb(215,43,3)" fg:x="1175" fg:w="11"/><text x="5.8717%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="5.6409%" y="821" width="0.0335%" height="15" fill="rgb(238,154,13)" fg:x="1179" fg:w="7"/><text x="5.8909%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="5.6409%" y="805" width="0.0335%" height="15" fill="rgb(219,56,2)" fg:x="1179" fg:w="7"/><text x="5.8909%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="5.6409%" y="789" width="0.0335%" height="15" fill="rgb(233,0,4)" fg:x="1179" fg:w="7"/><text x="5.8909%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="5.6409%" y="773" width="0.0335%" height="15" fill="rgb(235,30,7)" fg:x="1179" fg:w="7"/><text x="5.8909%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="5.6552%" y="757" width="0.0191%" height="15" fill="rgb(250,79,13)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="5.6552%" y="741" width="0.0191%" height="15" fill="rgb(211,146,34)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="5.6552%" y="725" width="0.0191%" height="15" fill="rgb(228,22,38)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="5.6552%" y="709" width="0.0191%" height="15" fill="rgb(235,168,5)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="5.6552%" y="693" width="0.0191%" height="15" fill="rgb(221,155,16)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="5.6552%" y="677" width="0.0191%" height="15" fill="rgb(215,215,53)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="5.6552%" y="661" width="0.0191%" height="15" fill="rgb(223,4,10)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="5.6552%" y="645" width="0.0191%" height="15" fill="rgb(234,103,6)" fg:x="1182" fg:w="4"/><text x="5.9052%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="5.6792%" y="725" width="0.0431%" height="15" fill="rgb(227,97,0)" fg:x="1187" fg:w="9"/><text x="5.9292%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.04%)</title><rect x="5.6839%" y="709" width="0.0383%" height="15" fill="rgb(234,150,53)" fg:x="1188" fg:w="8"/><text x="5.9339%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="5.6983%" y="693" width="0.0239%" height="15" fill="rgb(228,201,54)" fg:x="1191" fg:w="5"/><text x="5.9483%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="5.6792%" y="821" width="0.0478%" height="15" fill="rgb(222,22,37)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="5.6792%" y="805" width="0.0478%" height="15" fill="rgb(237,53,32)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="5.6792%" y="789" width="0.0478%" height="15" fill="rgb(233,25,53)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="5.6792%" y="773" width="0.0478%" height="15" fill="rgb(210,40,34)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (10 samples, 0.05%)</title><rect x="5.6792%" y="757" width="0.0478%" height="15" fill="rgb(241,220,44)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (10 samples, 0.05%)</title><rect x="5.6792%" y="741" width="0.0478%" height="15" fill="rgb(235,28,35)" fg:x="1187" fg:w="10"/><text x="5.9292%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.2088744067846635343 (16 samples, 0.08%)</title><rect x="5.6744%" y="1029" width="0.0766%" height="15" fill="rgb(210,56,17)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="5.6744%" y="1013" width="0.0766%" height="15" fill="rgb(224,130,29)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="5.6744%" y="997" width="0.0766%" height="15" fill="rgb(235,212,8)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="5.6744%" y="981" width="0.0766%" height="15" fill="rgb(223,33,50)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="5.6744%" y="965" width="0.0766%" height="15" fill="rgb(219,149,13)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="5.6744%" y="949" width="0.0766%" height="15" fill="rgb(250,156,29)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="5.6744%" y="933" width="0.0766%" height="15" fill="rgb(216,193,19)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="5.6744%" y="917" width="0.0766%" height="15" fill="rgb(216,135,14)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="5.6744%" y="901" width="0.0766%" height="15" fill="rgb(241,47,5)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="5.6744%" y="885" width="0.0766%" height="15" fill="rgb(233,42,35)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="5.6744%" y="869" width="0.0766%" height="15" fill="rgb(231,13,6)" fg:x="1186" fg:w="16"/><text x="5.9244%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="5.6792%" y="853" width="0.0718%" height="15" fill="rgb(207,181,40)" fg:x="1187" fg:w="15"/><text x="5.9292%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="5.6792%" y="837" width="0.0718%" height="15" fill="rgb(254,173,49)" fg:x="1187" fg:w="15"/><text x="5.9292%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="5.7270%" y="821" width="0.0239%" height="15" fill="rgb(221,1,38)" fg:x="1197" fg:w="5"/><text x="5.9770%" y="831.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="5.7270%" y="805" width="0.0239%" height="15" fill="rgb(206,124,46)" fg:x="1197" fg:w="5"/><text x="5.9770%" y="815.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="5.7270%" y="789" width="0.0239%" height="15" fill="rgb(249,21,11)" fg:x="1197" fg:w="5"/><text x="5.9770%" y="799.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="5.7270%" y="773" width="0.0239%" height="15" fill="rgb(222,201,40)" fg:x="1197" fg:w="5"/><text x="5.9770%" y="783.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="5.7270%" y="757" width="0.0239%" height="15" fill="rgb(235,61,29)" fg:x="1197" fg:w="5"/><text x="5.9770%" y="767.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="5.7318%" y="741" width="0.0191%" height="15" fill="rgb(219,207,3)" fg:x="1198" fg:w="4"/><text x="5.9818%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (101 samples, 0.48%)</title><rect x="5.7509%" y="773" width="0.4832%" height="15" fill="rgb(222,56,46)" fg:x="1202" fg:w="101"/><text x="6.0009%" y="783.50"></text></g><g><title>exp (49 samples, 0.23%)</title><rect x="5.9997%" y="757" width="0.2344%" height="15" fill="rgb(239,76,54)" fg:x="1254" fg:w="49"/><text x="6.2497%" y="767.50"></text></g><g><title>[libm.so.6] (40 samples, 0.19%)</title><rect x="6.0428%" y="741" width="0.1914%" height="15" fill="rgb(231,124,27)" fg:x="1263" fg:w="40"/><text x="6.2928%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (64 samples, 0.31%)</title><rect x="6.2342%" y="773" width="0.3062%" height="15" fill="rgb(249,195,6)" fg:x="1303" fg:w="64"/><text x="6.4842%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (64 samples, 0.31%)</title><rect x="6.2342%" y="757" width="0.3062%" height="15" fill="rgb(237,174,47)" fg:x="1303" fg:w="64"/><text x="6.4842%" y="767.50"></text></g><g><title>exp (37 samples, 0.18%)</title><rect x="6.3633%" y="741" width="0.1770%" height="15" fill="rgb(206,201,31)" fg:x="1330" fg:w="37"/><text x="6.6133%" y="751.50"></text></g><g><title>[libm.so.6] (33 samples, 0.16%)</title><rect x="6.3825%" y="725" width="0.1579%" height="15" fill="rgb(231,57,52)" fg:x="1334" fg:w="33"/><text x="6.6325%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.5691%" y="485" width="0.0144%" height="15" fill="rgb(248,177,22)" fg:x="1373" fg:w="3"/><text x="6.8191%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="6.5404%" y="597" width="0.0526%" height="15" fill="rgb(215,211,37)" fg:x="1367" fg:w="11"/><text x="6.7904%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="6.5595%" y="581" width="0.0335%" height="15" fill="rgb(241,128,51)" fg:x="1371" fg:w="7"/><text x="6.8095%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="6.5595%" y="565" width="0.0335%" height="15" fill="rgb(227,165,31)" fg:x="1371" fg:w="7"/><text x="6.8095%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="6.5691%" y="549" width="0.0239%" height="15" fill="rgb(228,167,24)" fg:x="1373" fg:w="5"/><text x="6.8191%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.5691%" y="533" width="0.0239%" height="15" fill="rgb(228,143,12)" fg:x="1373" fg:w="5"/><text x="6.8191%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.5691%" y="517" width="0.0239%" height="15" fill="rgb(249,149,8)" fg:x="1373" fg:w="5"/><text x="6.8191%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.5691%" y="501" width="0.0239%" height="15" fill="rgb(243,35,44)" fg:x="1373" fg:w="5"/><text x="6.8191%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.6121%" y="485" width="0.0191%" height="15" fill="rgb(246,89,9)" fg:x="1382" fg:w="4"/><text x="6.8621%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="6.6121%" y="533" width="0.0287%" height="15" fill="rgb(233,213,13)" fg:x="1382" fg:w="6"/><text x="6.8621%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="6.6121%" y="517" width="0.0287%" height="15" fill="rgb(233,141,41)" fg:x="1382" fg:w="6"/><text x="6.8621%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="6.6121%" y="501" width="0.0287%" height="15" fill="rgb(239,167,4)" fg:x="1382" fg:w="6"/><text x="6.8621%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.6408%" y="469" width="0.0144%" height="15" fill="rgb(209,217,16)" fg:x="1388" fg:w="3"/><text x="6.8908%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="6.5404%" y="645" width="0.1244%" height="15" fill="rgb(219,88,35)" fg:x="1367" fg:w="26"/><text x="6.7904%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="6.5404%" y="629" width="0.1244%" height="15" fill="rgb(220,193,23)" fg:x="1367" fg:w="26"/><text x="6.7904%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="6.5404%" y="613" width="0.1244%" height="15" fill="rgb(230,90,52)" fg:x="1367" fg:w="26"/><text x="6.7904%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="6.5930%" y="597" width="0.0718%" height="15" fill="rgb(252,106,19)" fg:x="1378" fg:w="15"/><text x="6.8430%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="6.5930%" y="581" width="0.0718%" height="15" fill="rgb(206,74,20)" fg:x="1378" fg:w="15"/><text x="6.8430%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="6.6121%" y="565" width="0.0526%" height="15" fill="rgb(230,138,44)" fg:x="1382" fg:w="11"/><text x="6.8621%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="6.6121%" y="549" width="0.0526%" height="15" fill="rgb(235,182,43)" fg:x="1382" fg:w="11"/><text x="6.8621%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="6.6408%" y="533" width="0.0239%" height="15" fill="rgb(242,16,51)" fg:x="1388" fg:w="5"/><text x="6.8908%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.6408%" y="517" width="0.0239%" height="15" fill="rgb(248,9,4)" fg:x="1388" fg:w="5"/><text x="6.8908%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.6408%" y="501" width="0.0239%" height="15" fill="rgb(210,31,22)" fg:x="1388" fg:w="5"/><text x="6.8908%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.6408%" y="485" width="0.0239%" height="15" fill="rgb(239,54,39)" fg:x="1388" fg:w="5"/><text x="6.8908%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="6.6648%" y="581" width="0.0383%" height="15" fill="rgb(230,99,41)" fg:x="1393" fg:w="8"/><text x="6.9148%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.6791%" y="565" width="0.0239%" height="15" fill="rgb(253,106,12)" fg:x="1396" fg:w="5"/><text x="6.9291%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.6791%" y="549" width="0.0239%" height="15" fill="rgb(213,46,41)" fg:x="1396" fg:w="5"/><text x="6.9291%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.6887%" y="533" width="0.0144%" height="15" fill="rgb(215,133,35)" fg:x="1398" fg:w="3"/><text x="6.9387%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.6887%" y="517" width="0.0144%" height="15" fill="rgb(213,28,5)" fg:x="1398" fg:w="3"/><text x="6.9387%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.6887%" y="501" width="0.0144%" height="15" fill="rgb(215,77,49)" fg:x="1398" fg:w="3"/><text x="6.9387%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.6887%" y="485" width="0.0144%" height="15" fill="rgb(248,100,22)" fg:x="1398" fg:w="3"/><text x="6.9387%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.08%)</title><rect x="6.6648%" y="645" width="0.0813%" height="15" fill="rgb(208,67,9)" fg:x="1393" fg:w="17"/><text x="6.9148%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="6.6648%" y="629" width="0.0813%" height="15" fill="rgb(219,133,21)" fg:x="1393" fg:w="17"/><text x="6.9148%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="6.6648%" y="613" width="0.0813%" height="15" fill="rgb(246,46,29)" fg:x="1393" fg:w="17"/><text x="6.9148%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="6.6648%" y="597" width="0.0813%" height="15" fill="rgb(246,185,52)" fg:x="1393" fg:w="17"/><text x="6.9148%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="6.7030%" y="581" width="0.0431%" height="15" fill="rgb(252,136,11)" fg:x="1401" fg:w="9"/><text x="6.9530%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="6.7030%" y="565" width="0.0431%" height="15" fill="rgb(219,138,53)" fg:x="1401" fg:w="9"/><text x="6.9530%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.7222%" y="549" width="0.0239%" height="15" fill="rgb(211,51,23)" fg:x="1405" fg:w="5"/><text x="6.9722%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.7222%" y="533" width="0.0239%" height="15" fill="rgb(247,221,28)" fg:x="1405" fg:w="5"/><text x="6.9722%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.7317%" y="517" width="0.0144%" height="15" fill="rgb(251,222,45)" fg:x="1407" fg:w="3"/><text x="6.9817%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7317%" y="501" width="0.0144%" height="15" fill="rgb(217,162,53)" fg:x="1407" fg:w="3"/><text x="6.9817%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.7317%" y="485" width="0.0144%" height="15" fill="rgb(229,93,14)" fg:x="1407" fg:w="3"/><text x="6.9817%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.7317%" y="469" width="0.0144%" height="15" fill="rgb(209,67,49)" fg:x="1407" fg:w="3"/><text x="6.9817%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.7461%" y="421" width="0.0239%" height="15" fill="rgb(213,87,29)" fg:x="1410" fg:w="5"/><text x="6.9961%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.7461%" y="405" width="0.0239%" height="15" fill="rgb(205,151,52)" fg:x="1410" fg:w="5"/><text x="6.9961%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.7461%" y="389" width="0.0239%" height="15" fill="rgb(253,215,39)" fg:x="1410" fg:w="5"/><text x="6.9961%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.7557%" y="373" width="0.0144%" height="15" fill="rgb(221,220,41)" fg:x="1412" fg:w="3"/><text x="7.0057%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7557%" y="357" width="0.0144%" height="15" fill="rgb(218,133,21)" fg:x="1412" fg:w="3"/><text x="7.0057%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7700%" y="357" width="0.0144%" height="15" fill="rgb(221,193,43)" fg:x="1415" fg:w="3"/><text x="7.0200%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="6.7461%" y="469" width="0.0526%" height="15" fill="rgb(240,128,52)" fg:x="1410" fg:w="11"/><text x="6.9961%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="6.7461%" y="453" width="0.0526%" height="15" fill="rgb(253,114,12)" fg:x="1410" fg:w="11"/><text x="6.9961%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="6.7461%" y="437" width="0.0526%" height="15" fill="rgb(215,223,47)" fg:x="1410" fg:w="11"/><text x="6.9961%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="6.7700%" y="421" width="0.0287%" height="15" fill="rgb(248,225,23)" fg:x="1415" fg:w="6"/><text x="7.0200%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="6.7700%" y="405" width="0.0287%" height="15" fill="rgb(250,108,0)" fg:x="1415" fg:w="6"/><text x="7.0200%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="6.7700%" y="389" width="0.0287%" height="15" fill="rgb(228,208,7)" fg:x="1415" fg:w="6"/><text x="7.0200%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="6.7700%" y="373" width="0.0287%" height="15" fill="rgb(244,45,10)" fg:x="1415" fg:w="6"/><text x="7.0200%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.7844%" y="357" width="0.0144%" height="15" fill="rgb(207,125,25)" fg:x="1418" fg:w="3"/><text x="7.0344%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7844%" y="341" width="0.0144%" height="15" fill="rgb(210,195,18)" fg:x="1418" fg:w="3"/><text x="7.0344%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.7987%" y="357" width="0.0144%" height="15" fill="rgb(249,80,12)" fg:x="1421" fg:w="3"/><text x="7.0487%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="6.7987%" y="405" width="0.0287%" height="15" fill="rgb(221,65,9)" fg:x="1421" fg:w="6"/><text x="7.0487%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="6.7987%" y="389" width="0.0287%" height="15" fill="rgb(235,49,36)" fg:x="1421" fg:w="6"/><text x="7.0487%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="6.7987%" y="373" width="0.0287%" height="15" fill="rgb(225,32,20)" fg:x="1421" fg:w="6"/><text x="7.0487%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.8131%" y="357" width="0.0144%" height="15" fill="rgb(215,141,46)" fg:x="1424" fg:w="3"/><text x="7.0631%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8131%" y="341" width="0.0144%" height="15" fill="rgb(250,160,47)" fg:x="1424" fg:w="3"/><text x="7.0631%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8274%" y="341" width="0.0144%" height="15" fill="rgb(216,222,40)" fg:x="1427" fg:w="3"/><text x="7.0774%" y="351.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="6.8274%" y="325" width="0.0144%" height="15" fill="rgb(234,217,39)" fg:x="1427" fg:w="3"/><text x="7.0774%" y="335.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="6.8274%" y="309" width="0.0144%" height="15" fill="rgb(207,178,40)" fg:x="1427" fg:w="3"/><text x="7.0774%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="6.7461%" y="517" width="0.1100%" height="15" fill="rgb(221,136,13)" fg:x="1410" fg:w="23"/><text x="6.9961%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="6.7461%" y="501" width="0.1100%" height="15" fill="rgb(249,199,10)" fg:x="1410" fg:w="23"/><text x="6.9961%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="6.7461%" y="485" width="0.1100%" height="15" fill="rgb(249,222,13)" fg:x="1410" fg:w="23"/><text x="6.9961%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="6.7987%" y="469" width="0.0574%" height="15" fill="rgb(244,185,38)" fg:x="1421" fg:w="12"/><text x="7.0487%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="6.7987%" y="453" width="0.0574%" height="15" fill="rgb(236,202,9)" fg:x="1421" fg:w="12"/><text x="7.0487%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="6.7987%" y="437" width="0.0574%" height="15" fill="rgb(250,229,37)" fg:x="1421" fg:w="12"/><text x="7.0487%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="6.7987%" y="421" width="0.0574%" height="15" fill="rgb(206,174,23)" fg:x="1421" fg:w="12"/><text x="7.0487%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="6.8274%" y="405" width="0.0287%" height="15" fill="rgb(211,33,43)" fg:x="1427" fg:w="6"/><text x="7.0774%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="6.8274%" y="389" width="0.0287%" height="15" fill="rgb(245,58,50)" fg:x="1427" fg:w="6"/><text x="7.0774%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="6.8274%" y="373" width="0.0287%" height="15" fill="rgb(244,68,36)" fg:x="1427" fg:w="6"/><text x="7.0774%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="6.8274%" y="357" width="0.0287%" height="15" fill="rgb(232,229,15)" fg:x="1427" fg:w="6"/><text x="7.0774%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.8418%" y="341" width="0.0144%" height="15" fill="rgb(254,30,23)" fg:x="1430" fg:w="3"/><text x="7.0918%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8418%" y="325" width="0.0144%" height="15" fill="rgb(235,160,14)" fg:x="1430" fg:w="3"/><text x="7.0918%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="6.8561%" y="357" width="0.0191%" height="15" fill="rgb(212,155,44)" fg:x="1433" fg:w="4"/><text x="7.1061%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="6.8561%" y="405" width="0.0335%" height="15" fill="rgb(226,2,50)" fg:x="1433" fg:w="7"/><text x="7.1061%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="6.8561%" y="389" width="0.0335%" height="15" fill="rgb(234,177,6)" fg:x="1433" fg:w="7"/><text x="7.1061%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="6.8561%" y="373" width="0.0335%" height="15" fill="rgb(217,24,9)" fg:x="1433" fg:w="7"/><text x="7.1061%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="6.8753%" y="357" width="0.0144%" height="15" fill="rgb(220,13,46)" fg:x="1437" fg:w="3"/><text x="7.1253%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8753%" y="341" width="0.0144%" height="15" fill="rgb(239,221,27)" fg:x="1437" fg:w="3"/><text x="7.1253%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.8896%" y="341" width="0.0144%" height="15" fill="rgb(222,198,25)" fg:x="1440" fg:w="3"/><text x="7.1396%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (81 samples, 0.39%)</title><rect x="6.5404%" y="693" width="0.3875%" height="15" fill="rgb(211,99,13)" fg:x="1367" fg:w="81"/><text x="6.7904%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (81 samples, 0.39%)</title><rect x="6.5404%" y="677" width="0.3875%" height="15" fill="rgb(232,111,31)" fg:x="1367" fg:w="81"/><text x="6.7904%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (81 samples, 0.39%)</title><rect x="6.5404%" y="661" width="0.3875%" height="15" fill="rgb(245,82,37)" fg:x="1367" fg:w="81"/><text x="6.7904%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (38 samples, 0.18%)</title><rect x="6.7461%" y="645" width="0.1818%" height="15" fill="rgb(227,149,46)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38 samples, 0.18%)</title><rect x="6.7461%" y="629" width="0.1818%" height="15" fill="rgb(218,36,50)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.18%)</title><rect x="6.7461%" y="613" width="0.1818%" height="15" fill="rgb(226,80,48)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="6.7461%" y="597" width="0.1818%" height="15" fill="rgb(238,224,15)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="6.7461%" y="581" width="0.1818%" height="15" fill="rgb(241,136,10)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.18%)</title><rect x="6.7461%" y="565" width="0.1818%" height="15" fill="rgb(208,32,45)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="6.7461%" y="549" width="0.1818%" height="15" fill="rgb(207,135,9)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="6.7461%" y="533" width="0.1818%" height="15" fill="rgb(206,86,44)" fg:x="1410" fg:w="38"/><text x="6.9961%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="6.8561%" y="517" width="0.0718%" height="15" fill="rgb(245,177,15)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="6.8561%" y="501" width="0.0718%" height="15" fill="rgb(206,64,50)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="6.8561%" y="485" width="0.0718%" height="15" fill="rgb(234,36,40)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="6.8561%" y="469" width="0.0718%" height="15" fill="rgb(213,64,8)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="6.8561%" y="453" width="0.0718%" height="15" fill="rgb(210,75,36)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="6.8561%" y="437" width="0.0718%" height="15" fill="rgb(229,88,21)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="6.8561%" y="421" width="0.0718%" height="15" fill="rgb(252,204,47)" fg:x="1433" fg:w="15"/><text x="7.1061%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="6.8896%" y="405" width="0.0383%" height="15" fill="rgb(208,77,27)" fg:x="1440" fg:w="8"/><text x="7.1396%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="6.8896%" y="389" width="0.0383%" height="15" fill="rgb(221,76,26)" fg:x="1440" fg:w="8"/><text x="7.1396%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="6.8896%" y="373" width="0.0383%" height="15" fill="rgb(225,139,18)" fg:x="1440" fg:w="8"/><text x="7.1396%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="6.8896%" y="357" width="0.0383%" height="15" fill="rgb(230,137,11)" fg:x="1440" fg:w="8"/><text x="7.1396%" y="367.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="6.9040%" y="341" width="0.0239%" height="15" fill="rgb(212,28,1)" fg:x="1443" fg:w="5"/><text x="7.1540%" y="351.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="6.9040%" y="325" width="0.0239%" height="15" fill="rgb(248,164,17)" fg:x="1443" fg:w="5"/><text x="7.1540%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.9040%" y="309" width="0.0239%" height="15" fill="rgb(222,171,42)" fg:x="1443" fg:w="5"/><text x="7.1540%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9135%" y="293" width="0.0144%" height="15" fill="rgb(243,84,45)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9135%" y="277" width="0.0144%" height="15" fill="rgb(252,49,23)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9135%" y="261" width="0.0144%" height="15" fill="rgb(215,19,7)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9135%" y="245" width="0.0144%" height="15" fill="rgb(238,81,41)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9135%" y="229" width="0.0144%" height="15" fill="rgb(210,199,37)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9135%" y="213" width="0.0144%" height="15" fill="rgb(244,192,49)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="223.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9135%" y="197" width="0.0144%" height="15" fill="rgb(226,211,11)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="207.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9135%" y="181" width="0.0144%" height="15" fill="rgb(236,162,54)" fg:x="1445" fg:w="3"/><text x="7.1635%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9375%" y="533" width="0.0144%" height="15" fill="rgb(220,229,9)" fg:x="1450" fg:w="3"/><text x="7.1875%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9375%" y="517" width="0.0144%" height="15" fill="rgb(250,87,22)" fg:x="1450" fg:w="3"/><text x="7.1875%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9375%" y="501" width="0.0144%" height="15" fill="rgb(239,43,17)" fg:x="1450" fg:w="3"/><text x="7.1875%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="6.9279%" y="581" width="0.0335%" height="15" fill="rgb(231,177,25)" fg:x="1448" fg:w="7"/><text x="7.1779%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.9375%" y="565" width="0.0239%" height="15" fill="rgb(219,179,1)" fg:x="1450" fg:w="5"/><text x="7.1875%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.9375%" y="549" width="0.0239%" height="15" fill="rgb(238,219,53)" fg:x="1450" fg:w="5"/><text x="7.1875%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9662%" y="517" width="0.0144%" height="15" fill="rgb(232,167,36)" fg:x="1456" fg:w="3"/><text x="7.2162%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9662%" y="501" width="0.0144%" height="15" fill="rgb(244,19,51)" fg:x="1456" fg:w="3"/><text x="7.2162%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9662%" y="485" width="0.0144%" height="15" fill="rgb(224,6,22)" fg:x="1456" fg:w="3"/><text x="7.2162%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="6.9279%" y="629" width="0.0574%" height="15" fill="rgb(224,145,5)" fg:x="1448" fg:w="12"/><text x="7.1779%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="6.9279%" y="613" width="0.0574%" height="15" fill="rgb(234,130,49)" fg:x="1448" fg:w="12"/><text x="7.1779%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="6.9279%" y="597" width="0.0574%" height="15" fill="rgb(254,6,2)" fg:x="1448" fg:w="12"/><text x="7.1779%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="6.9614%" y="581" width="0.0239%" height="15" fill="rgb(208,96,46)" fg:x="1455" fg:w="5"/><text x="7.2114%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="6.9614%" y="565" width="0.0239%" height="15" fill="rgb(239,3,39)" fg:x="1455" fg:w="5"/><text x="7.2114%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="6.9662%" y="549" width="0.0191%" height="15" fill="rgb(233,210,1)" fg:x="1456" fg:w="4"/><text x="7.2162%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="6.9662%" y="533" width="0.0191%" height="15" fill="rgb(244,137,37)" fg:x="1456" fg:w="4"/><text x="7.2162%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="6.9949%" y="517" width="0.0144%" height="15" fill="rgb(240,136,2)" fg:x="1462" fg:w="3"/><text x="7.2449%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="6.9949%" y="501" width="0.0144%" height="15" fill="rgb(239,18,37)" fg:x="1462" fg:w="3"/><text x="7.2449%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="6.9949%" y="485" width="0.0144%" height="15" fill="rgb(218,185,22)" fg:x="1462" fg:w="3"/><text x="7.2449%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="6.9853%" y="565" width="0.0335%" height="15" fill="rgb(225,218,4)" fg:x="1460" fg:w="7"/><text x="7.2353%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="6.9949%" y="549" width="0.0239%" height="15" fill="rgb(230,182,32)" fg:x="1462" fg:w="5"/><text x="7.2449%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="6.9949%" y="533" width="0.0239%" height="15" fill="rgb(242,56,43)" fg:x="1462" fg:w="5"/><text x="7.2449%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.0188%" y="501" width="0.0144%" height="15" fill="rgb(233,99,24)" fg:x="1467" fg:w="3"/><text x="7.2688%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.0188%" y="485" width="0.0144%" height="15" fill="rgb(234,209,42)" fg:x="1467" fg:w="3"/><text x="7.2688%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.0188%" y="469" width="0.0144%" height="15" fill="rgb(227,7,12)" fg:x="1467" fg:w="3"/><text x="7.2688%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="7.0188%" y="565" width="0.0239%" height="15" fill="rgb(245,203,43)" fg:x="1467" fg:w="5"/><text x="7.2688%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.0188%" y="549" width="0.0239%" height="15" fill="rgb(238,205,33)" fg:x="1467" fg:w="5"/><text x="7.2688%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.0188%" y="533" width="0.0239%" height="15" fill="rgb(231,56,7)" fg:x="1467" fg:w="5"/><text x="7.2688%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="7.0188%" y="517" width="0.0239%" height="15" fill="rgb(244,186,29)" fg:x="1467" fg:w="5"/><text x="7.2688%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.0427%" y="485" width="0.0239%" height="15" fill="rgb(234,111,31)" fg:x="1472" fg:w="5"/><text x="7.2927%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.0427%" y="469" width="0.0239%" height="15" fill="rgb(241,149,10)" fg:x="1472" fg:w="5"/><text x="7.2927%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="7.0427%" y="453" width="0.0239%" height="15" fill="rgb(249,206,44)" fg:x="1472" fg:w="5"/><text x="7.2927%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.0523%" y="437" width="0.0144%" height="15" fill="rgb(251,153,30)" fg:x="1474" fg:w="3"/><text x="7.3023%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.0523%" y="421" width="0.0144%" height="15" fill="rgb(239,152,38)" fg:x="1474" fg:w="3"/><text x="7.3023%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.0523%" y="405" width="0.0144%" height="15" fill="rgb(249,139,47)" fg:x="1474" fg:w="3"/><text x="7.3023%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.0523%" y="389" width="0.0144%" height="15" fill="rgb(244,64,35)" fg:x="1474" fg:w="3"/><text x="7.3023%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (33 samples, 0.16%)</title><rect x="6.9279%" y="693" width="0.1579%" height="15" fill="rgb(216,46,15)" fg:x="1448" fg:w="33"/><text x="7.1779%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.16%)</title><rect x="6.9279%" y="677" width="0.1579%" height="15" fill="rgb(250,74,19)" fg:x="1448" fg:w="33"/><text x="7.1779%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.16%)</title><rect x="6.9279%" y="661" width="0.1579%" height="15" fill="rgb(249,42,33)" fg:x="1448" fg:w="33"/><text x="7.1779%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.16%)</title><rect x="6.9279%" y="645" width="0.1579%" height="15" fill="rgb(242,149,17)" fg:x="1448" fg:w="33"/><text x="7.1779%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.10%)</title><rect x="6.9853%" y="629" width="0.1005%" height="15" fill="rgb(244,29,21)" fg:x="1460" fg:w="21"/><text x="7.2353%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="6.9853%" y="613" width="0.1005%" height="15" fill="rgb(220,130,37)" fg:x="1460" fg:w="21"/><text x="7.2353%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="6.9853%" y="597" width="0.1005%" height="15" fill="rgb(211,67,2)" fg:x="1460" fg:w="21"/><text x="7.2353%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="6.9853%" y="581" width="0.1005%" height="15" fill="rgb(235,68,52)" fg:x="1460" fg:w="21"/><text x="7.2353%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="7.0427%" y="565" width="0.0431%" height="15" fill="rgb(246,142,3)" fg:x="1472" fg:w="9"/><text x="7.2927%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="7.0427%" y="549" width="0.0431%" height="15" fill="rgb(241,25,7)" fg:x="1472" fg:w="9"/><text x="7.2927%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.0427%" y="533" width="0.0431%" height="15" fill="rgb(242,119,39)" fg:x="1472" fg:w="9"/><text x="7.2927%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.0427%" y="517" width="0.0431%" height="15" fill="rgb(241,98,45)" fg:x="1472" fg:w="9"/><text x="7.2927%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="7.0427%" y="501" width="0.0431%" height="15" fill="rgb(254,28,30)" fg:x="1472" fg:w="9"/><text x="7.2927%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="7.0666%" y="485" width="0.0191%" height="15" fill="rgb(241,142,54)" fg:x="1477" fg:w="4"/><text x="7.3166%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.0666%" y="469" width="0.0191%" height="15" fill="rgb(222,85,15)" fg:x="1477" fg:w="4"/><text x="7.3166%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.0666%" y="453" width="0.0191%" height="15" fill="rgb(210,85,47)" fg:x="1477" fg:w="4"/><text x="7.3166%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="7.0666%" y="437" width="0.0191%" height="15" fill="rgb(224,206,25)" fg:x="1477" fg:w="4"/><text x="7.3166%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.0858%" y="613" width="0.0191%" height="15" fill="rgb(243,201,19)" fg:x="1481" fg:w="4"/><text x="7.3358%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.0858%" y="597" width="0.0191%" height="15" fill="rgb(236,59,4)" fg:x="1481" fg:w="4"/><text x="7.3358%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="7.0858%" y="581" width="0.0191%" height="15" fill="rgb(254,179,45)" fg:x="1481" fg:w="4"/><text x="7.3358%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.1049%" y="549" width="0.0144%" height="15" fill="rgb(226,14,10)" fg:x="1485" fg:w="3"/><text x="7.3549%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.1049%" y="533" width="0.0144%" height="15" fill="rgb(244,27,41)" fg:x="1485" fg:w="3"/><text x="7.3549%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.1049%" y="517" width="0.0144%" height="15" fill="rgb(235,35,32)" fg:x="1485" fg:w="3"/><text x="7.3549%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (288 samples, 1.38%)</title><rect x="5.7509%" y="821" width="1.3779%" height="15" fill="rgb(218,68,31)" fg:x="1202" fg:w="288"/><text x="6.0009%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (288 samples, 1.38%)</title><rect x="5.7509%" y="805" width="1.3779%" height="15" fill="rgb(207,120,37)" fg:x="1202" fg:w="288"/><text x="6.0009%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (288 samples, 1.38%)</title><rect x="5.7509%" y="789" width="1.3779%" height="15" fill="rgb(227,98,0)" fg:x="1202" fg:w="288"/><text x="6.0009%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (123 samples, 0.59%)</title><rect x="6.5404%" y="773" width="0.5885%" height="15" fill="rgb(207,7,3)" fg:x="1367" fg:w="123"/><text x="6.7904%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (123 samples, 0.59%)</title><rect x="6.5404%" y="757" width="0.5885%" height="15" fill="rgb(206,98,19)" fg:x="1367" fg:w="123"/><text x="6.7904%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (123 samples, 0.59%)</title><rect x="6.5404%" y="741" width="0.5885%" height="15" fill="rgb(217,5,26)" fg:x="1367" fg:w="123"/><text x="6.7904%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (123 samples, 0.59%)</title><rect x="6.5404%" y="725" width="0.5885%" height="15" fill="rgb(235,190,38)" fg:x="1367" fg:w="123"/><text x="6.7904%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (123 samples, 0.59%)</title><rect x="6.5404%" y="709" width="0.5885%" height="15" fill="rgb(247,86,24)" fg:x="1367" fg:w="123"/><text x="6.7904%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="7.0858%" y="693" width="0.0431%" height="15" fill="rgb(205,101,16)" fg:x="1481" fg:w="9"/><text x="7.3358%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="7.0858%" y="677" width="0.0431%" height="15" fill="rgb(246,168,33)" fg:x="1481" fg:w="9"/><text x="7.3358%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.0858%" y="661" width="0.0431%" height="15" fill="rgb(231,114,1)" fg:x="1481" fg:w="9"/><text x="7.3358%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.0858%" y="645" width="0.0431%" height="15" fill="rgb(207,184,53)" fg:x="1481" fg:w="9"/><text x="7.3358%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="7.0858%" y="629" width="0.0431%" height="15" fill="rgb(224,95,51)" fg:x="1481" fg:w="9"/><text x="7.3358%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="7.1049%" y="613" width="0.0239%" height="15" fill="rgb(212,188,45)" fg:x="1485" fg:w="5"/><text x="7.3549%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.1049%" y="597" width="0.0239%" height="15" fill="rgb(223,154,38)" fg:x="1485" fg:w="5"/><text x="7.3549%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.1049%" y="581" width="0.0239%" height="15" fill="rgb(251,22,52)" fg:x="1485" fg:w="5"/><text x="7.3549%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="7.1049%" y="565" width="0.0239%" height="15" fill="rgb(229,209,22)" fg:x="1485" fg:w="5"/><text x="7.3549%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="7.1288%" y="757" width="0.1196%" height="15" fill="rgb(234,138,34)" fg:x="1490" fg:w="25"/><text x="7.3788%" y="767.50"></text></g><g><title>exp (12 samples, 0.06%)</title><rect x="7.1910%" y="741" width="0.0574%" height="15" fill="rgb(212,95,11)" fg:x="1503" fg:w="12"/><text x="7.4410%" y="751.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="7.2150%" y="725" width="0.0335%" height="15" fill="rgb(240,179,47)" fg:x="1508" fg:w="7"/><text x="7.4650%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (50 samples, 0.24%)</title><rect x="7.1288%" y="821" width="0.2392%" height="15" fill="rgb(240,163,11)" fg:x="1490" fg:w="50"/><text x="7.3788%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.24%)</title><rect x="7.1288%" y="805" width="0.2392%" height="15" fill="rgb(236,37,12)" fg:x="1490" fg:w="50"/><text x="7.3788%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.24%)</title><rect x="7.1288%" y="789" width="0.2392%" height="15" fill="rgb(232,164,16)" fg:x="1490" fg:w="50"/><text x="7.3788%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (50 samples, 0.24%)</title><rect x="7.1288%" y="773" width="0.2392%" height="15" fill="rgb(244,205,15)" fg:x="1490" fg:w="50"/><text x="7.3788%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.12%)</title><rect x="7.2485%" y="757" width="0.1196%" height="15" fill="rgb(223,117,47)" fg:x="1515" fg:w="25"/><text x="7.4985%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="7.2485%" y="741" width="0.1196%" height="15" fill="rgb(244,107,35)" fg:x="1515" fg:w="25"/><text x="7.4985%" y="751.50"></text></g><g><title>exp (14 samples, 0.07%)</title><rect x="7.3011%" y="725" width="0.0670%" height="15" fill="rgb(205,140,8)" fg:x="1526" fg:w="14"/><text x="7.5511%" y="735.50"></text></g><g><title>[libm.so.6] (11 samples, 0.05%)</title><rect x="7.3154%" y="709" width="0.0526%" height="15" fill="rgb(228,84,46)" fg:x="1529" fg:w="11"/><text x="7.5654%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.4016%" y="549" width="0.0191%" height="15" fill="rgb(254,188,9)" fg:x="1547" fg:w="4"/><text x="7.6516%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="7.4063%" y="533" width="0.0144%" height="15" fill="rgb(206,112,54)" fg:x="1548" fg:w="3"/><text x="7.6563%" y="543.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.4063%" y="517" width="0.0144%" height="15" fill="rgb(216,84,49)" fg:x="1548" fg:w="3"/><text x="7.6563%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="7.3920%" y="597" width="0.0526%" height="15" fill="rgb(214,194,35)" fg:x="1545" fg:w="11"/><text x="7.6420%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.4016%" y="581" width="0.0431%" height="15" fill="rgb(249,28,3)" fg:x="1547" fg:w="9"/><text x="7.6516%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="7.4016%" y="565" width="0.0431%" height="15" fill="rgb(222,56,52)" fg:x="1547" fg:w="9"/><text x="7.6516%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="7.4207%" y="549" width="0.0239%" height="15" fill="rgb(245,217,50)" fg:x="1551" fg:w="5"/><text x="7.6707%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.4207%" y="533" width="0.0239%" height="15" fill="rgb(213,201,24)" fg:x="1551" fg:w="5"/><text x="7.6707%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="7.4446%" y="533" width="0.0335%" height="15" fill="rgb(248,116,28)" fg:x="1556" fg:w="7"/><text x="7.6946%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="7.3872%" y="645" width="0.1244%" height="15" fill="rgb(219,72,43)" fg:x="1544" fg:w="26"/><text x="7.6372%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.12%)</title><rect x="7.3920%" y="629" width="0.1196%" height="15" fill="rgb(209,138,14)" fg:x="1545" fg:w="25"/><text x="7.6420%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (25 samples, 0.12%)</title><rect x="7.3920%" y="613" width="0.1196%" height="15" fill="rgb(222,18,33)" fg:x="1545" fg:w="25"/><text x="7.6420%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="7.4446%" y="597" width="0.0670%" height="15" fill="rgb(213,199,7)" fg:x="1556" fg:w="14"/><text x="7.6946%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="7.4446%" y="581" width="0.0670%" height="15" fill="rgb(250,110,10)" fg:x="1556" fg:w="14"/><text x="7.6946%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="7.4446%" y="565" width="0.0670%" height="15" fill="rgb(248,123,6)" fg:x="1556" fg:w="14"/><text x="7.6946%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="7.4446%" y="549" width="0.0670%" height="15" fill="rgb(206,91,31)" fg:x="1556" fg:w="14"/><text x="7.6946%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="7.4781%" y="533" width="0.0335%" height="15" fill="rgb(211,154,13)" fg:x="1563" fg:w="7"/><text x="7.7281%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="7.4781%" y="517" width="0.0335%" height="15" fill="rgb(225,148,7)" fg:x="1563" fg:w="7"/><text x="7.7281%" y="527.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="7.4877%" y="501" width="0.0239%" height="15" fill="rgb(220,160,43)" fg:x="1565" fg:w="5"/><text x="7.7377%" y="511.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="7.4877%" y="485" width="0.0239%" height="15" fill="rgb(213,52,39)" fg:x="1565" fg:w="5"/><text x="7.7377%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.5212%" y="533" width="0.0239%" height="15" fill="rgb(243,137,7)" fg:x="1572" fg:w="5"/><text x="7.7712%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="7.5307%" y="517" width="0.0144%" height="15" fill="rgb(230,79,13)" fg:x="1574" fg:w="3"/><text x="7.7807%" y="527.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.5307%" y="501" width="0.0144%" height="15" fill="rgb(247,105,23)" fg:x="1574" fg:w="3"/><text x="7.7807%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="7.5212%" y="581" width="0.0622%" height="15" fill="rgb(223,179,41)" fg:x="1572" fg:w="13"/><text x="7.7712%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="7.5212%" y="565" width="0.0622%" height="15" fill="rgb(218,9,34)" fg:x="1572" fg:w="13"/><text x="7.7712%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="7.5212%" y="549" width="0.0622%" height="15" fill="rgb(222,106,8)" fg:x="1572" fg:w="13"/><text x="7.7712%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="7.5451%" y="533" width="0.0383%" height="15" fill="rgb(211,220,0)" fg:x="1577" fg:w="8"/><text x="7.7951%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="7.5451%" y="517" width="0.0383%" height="15" fill="rgb(229,52,16)" fg:x="1577" fg:w="8"/><text x="7.7951%" y="527.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="7.5642%" y="501" width="0.0191%" height="15" fill="rgb(212,155,18)" fg:x="1581" fg:w="4"/><text x="7.8142%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.5834%" y="517" width="0.0191%" height="15" fill="rgb(242,21,14)" fg:x="1585" fg:w="4"/><text x="7.8334%" y="527.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="7.5834%" y="501" width="0.0191%" height="15" fill="rgb(222,19,48)" fg:x="1585" fg:w="4"/><text x="7.8334%" y="511.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="7.5882%" y="485" width="0.0144%" height="15" fill="rgb(232,45,27)" fg:x="1586" fg:w="3"/><text x="7.8382%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="7.5834%" y="581" width="0.0431%" height="15" fill="rgb(249,103,42)" fg:x="1585" fg:w="9"/><text x="7.8334%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.5834%" y="565" width="0.0431%" height="15" fill="rgb(246,81,33)" fg:x="1585" fg:w="9"/><text x="7.8334%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.5834%" y="549" width="0.0431%" height="15" fill="rgb(252,33,42)" fg:x="1585" fg:w="9"/><text x="7.8334%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="7.5834%" y="533" width="0.0431%" height="15" fill="rgb(209,212,41)" fg:x="1585" fg:w="9"/><text x="7.8334%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="7.6025%" y="517" width="0.0239%" height="15" fill="rgb(207,154,6)" fg:x="1589" fg:w="5"/><text x="7.8525%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.6025%" y="501" width="0.0239%" height="15" fill="rgb(223,64,47)" fg:x="1589" fg:w="5"/><text x="7.8525%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.6264%" y="453" width="0.0287%" height="15" fill="rgb(211,161,38)" fg:x="1594" fg:w="6"/><text x="7.8764%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.6264%" y="437" width="0.0287%" height="15" fill="rgb(219,138,40)" fg:x="1594" fg:w="6"/><text x="7.8764%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="7.6264%" y="421" width="0.0287%" height="15" fill="rgb(241,228,46)" fg:x="1594" fg:w="6"/><text x="7.8764%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="7.6360%" y="405" width="0.0191%" height="15" fill="rgb(223,209,38)" fg:x="1596" fg:w="4"/><text x="7.8860%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.6360%" y="389" width="0.0191%" height="15" fill="rgb(236,164,45)" fg:x="1596" fg:w="4"/><text x="7.8860%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.6360%" y="373" width="0.0191%" height="15" fill="rgb(231,15,5)" fg:x="1596" fg:w="4"/><text x="7.8860%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="7.6360%" y="357" width="0.0191%" height="15" fill="rgb(252,35,15)" fg:x="1596" fg:w="4"/><text x="7.8860%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.6551%" y="389" width="0.0144%" height="15" fill="rgb(248,181,18)" fg:x="1600" fg:w="3"/><text x="7.9051%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.6551%" y="373" width="0.0144%" height="15" fill="rgb(233,39,42)" fg:x="1600" fg:w="3"/><text x="7.9051%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.6551%" y="357" width="0.0144%" height="15" fill="rgb(238,110,33)" fg:x="1600" fg:w="3"/><text x="7.9051%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="7.6264%" y="501" width="0.0574%" height="15" fill="rgb(233,195,10)" fg:x="1594" fg:w="12"/><text x="7.8764%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="7.6264%" y="485" width="0.0574%" height="15" fill="rgb(254,105,3)" fg:x="1594" fg:w="12"/><text x="7.8764%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="7.6264%" y="469" width="0.0574%" height="15" fill="rgb(221,225,9)" fg:x="1594" fg:w="12"/><text x="7.8764%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="7.6551%" y="453" width="0.0287%" height="15" fill="rgb(224,227,45)" fg:x="1600" fg:w="6"/><text x="7.9051%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.6551%" y="437" width="0.0287%" height="15" fill="rgb(229,198,43)" fg:x="1600" fg:w="6"/><text x="7.9051%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.6551%" y="421" width="0.0287%" height="15" fill="rgb(206,209,35)" fg:x="1600" fg:w="6"/><text x="7.9051%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="7.6551%" y="405" width="0.0287%" height="15" fill="rgb(245,195,53)" fg:x="1600" fg:w="6"/><text x="7.9051%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.6695%" y="389" width="0.0144%" height="15" fill="rgb(240,92,26)" fg:x="1603" fg:w="3"/><text x="7.9195%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.6695%" y="373" width="0.0144%" height="15" fill="rgb(207,40,23)" fg:x="1603" fg:w="3"/><text x="7.9195%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.6695%" y="357" width="0.0144%" height="15" fill="rgb(223,111,35)" fg:x="1603" fg:w="3"/><text x="7.9195%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.6695%" y="341" width="0.0144%" height="15" fill="rgb(229,147,28)" fg:x="1603" fg:w="3"/><text x="7.9195%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.6934%" y="421" width="0.0191%" height="15" fill="rgb(211,29,28)" fg:x="1608" fg:w="4"/><text x="7.9434%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.6982%" y="405" width="0.0144%" height="15" fill="rgb(228,72,33)" fg:x="1609" fg:w="3"/><text x="7.9482%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.6982%" y="389" width="0.0144%" height="15" fill="rgb(205,214,31)" fg:x="1609" fg:w="3"/><text x="7.9482%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (75 samples, 0.36%)</title><rect x="7.3681%" y="693" width="0.3588%" height="15" fill="rgb(224,111,15)" fg:x="1540" fg:w="75"/><text x="7.6181%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (71 samples, 0.34%)</title><rect x="7.3872%" y="677" width="0.3397%" height="15" fill="rgb(253,21,26)" fg:x="1544" fg:w="71"/><text x="7.6372%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (71 samples, 0.34%)</title><rect x="7.3872%" y="661" width="0.3397%" height="15" fill="rgb(245,139,43)" fg:x="1544" fg:w="71"/><text x="7.6372%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (45 samples, 0.22%)</title><rect x="7.5116%" y="645" width="0.2153%" height="15" fill="rgb(252,170,7)" fg:x="1570" fg:w="45"/><text x="7.7616%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.22%)</title><rect x="7.5116%" y="629" width="0.2153%" height="15" fill="rgb(231,118,14)" fg:x="1570" fg:w="45"/><text x="7.7616%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.21%)</title><rect x="7.5212%" y="613" width="0.2057%" height="15" fill="rgb(238,83,0)" fg:x="1572" fg:w="43"/><text x="7.7712%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (43 samples, 0.21%)</title><rect x="7.5212%" y="597" width="0.2057%" height="15" fill="rgb(221,39,39)" fg:x="1572" fg:w="43"/><text x="7.7712%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.10%)</title><rect x="7.6264%" y="581" width="0.1005%" height="15" fill="rgb(222,119,46)" fg:x="1594" fg:w="21"/><text x="7.8764%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.10%)</title><rect x="7.6264%" y="565" width="0.1005%" height="15" fill="rgb(222,165,49)" fg:x="1594" fg:w="21"/><text x="7.8764%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="7.6264%" y="549" width="0.1005%" height="15" fill="rgb(219,113,52)" fg:x="1594" fg:w="21"/><text x="7.8764%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="7.6264%" y="533" width="0.1005%" height="15" fill="rgb(214,7,15)" fg:x="1594" fg:w="21"/><text x="7.8764%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="7.6264%" y="517" width="0.1005%" height="15" fill="rgb(235,32,4)" fg:x="1594" fg:w="21"/><text x="7.8764%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="7.6838%" y="501" width="0.0431%" height="15" fill="rgb(238,90,54)" fg:x="1606" fg:w="9"/><text x="7.9338%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="7.6838%" y="485" width="0.0431%" height="15" fill="rgb(213,208,19)" fg:x="1606" fg:w="9"/><text x="7.9338%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.6838%" y="469" width="0.0431%" height="15" fill="rgb(233,156,4)" fg:x="1606" fg:w="9"/><text x="7.9338%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.6934%" y="453" width="0.0335%" height="15" fill="rgb(207,194,5)" fg:x="1608" fg:w="7"/><text x="7.9434%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="7.6934%" y="437" width="0.0335%" height="15" fill="rgb(206,111,30)" fg:x="1608" fg:w="7"/><text x="7.9434%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.7125%" y="421" width="0.0144%" height="15" fill="rgb(243,70,54)" fg:x="1612" fg:w="3"/><text x="7.9625%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.7125%" y="405" width="0.0144%" height="15" fill="rgb(242,28,8)" fg:x="1612" fg:w="3"/><text x="7.9625%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="7.7269%" y="693" width="0.0239%" height="15" fill="rgb(219,106,18)" fg:x="1615" fg:w="5"/><text x="7.9769%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.7269%" y="677" width="0.0239%" height="15" fill="rgb(244,222,10)" fg:x="1615" fg:w="5"/><text x="7.9769%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.7365%" y="661" width="0.0144%" height="15" fill="rgb(236,179,52)" fg:x="1617" fg:w="3"/><text x="7.9865%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.7365%" y="645" width="0.0144%" height="15" fill="rgb(213,23,39)" fg:x="1617" fg:w="3"/><text x="7.9865%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.7652%" y="469" width="0.0191%" height="15" fill="rgb(238,48,10)" fg:x="1623" fg:w="4"/><text x="8.0152%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.7843%" y="405" width="0.0144%" height="15" fill="rgb(251,196,23)" fg:x="1627" fg:w="3"/><text x="8.0343%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="7.7652%" y="517" width="0.0526%" height="15" fill="rgb(250,152,24)" fg:x="1623" fg:w="11"/><text x="8.0152%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="7.7652%" y="501" width="0.0526%" height="15" fill="rgb(209,150,17)" fg:x="1623" fg:w="11"/><text x="8.0152%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="7.7652%" y="485" width="0.0526%" height="15" fill="rgb(234,202,34)" fg:x="1623" fg:w="11"/><text x="8.0152%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="7.7843%" y="469" width="0.0335%" height="15" fill="rgb(253,148,53)" fg:x="1627" fg:w="7"/><text x="8.0343%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="7.7843%" y="453" width="0.0335%" height="15" fill="rgb(218,129,16)" fg:x="1627" fg:w="7"/><text x="8.0343%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.7843%" y="437" width="0.0335%" height="15" fill="rgb(216,85,19)" fg:x="1627" fg:w="7"/><text x="8.0343%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="7.7843%" y="421" width="0.0335%" height="15" fill="rgb(235,228,7)" fg:x="1627" fg:w="7"/><text x="8.0343%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="7.7987%" y="405" width="0.0191%" height="15" fill="rgb(245,175,0)" fg:x="1630" fg:w="4"/><text x="8.0487%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.7987%" y="389" width="0.0191%" height="15" fill="rgb(208,168,36)" fg:x="1630" fg:w="4"/><text x="8.0487%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.8178%" y="453" width="0.0239%" height="15" fill="rgb(246,171,24)" fg:x="1634" fg:w="5"/><text x="8.0678%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.8178%" y="437" width="0.0239%" height="15" fill="rgb(215,142,24)" fg:x="1634" fg:w="5"/><text x="8.0678%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="7.8178%" y="421" width="0.0239%" height="15" fill="rgb(250,187,7)" fg:x="1634" fg:w="5"/><text x="8.0678%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.8274%" y="405" width="0.0144%" height="15" fill="rgb(228,66,33)" fg:x="1636" fg:w="3"/><text x="8.0774%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.8274%" y="389" width="0.0144%" height="15" fill="rgb(234,215,21)" fg:x="1636" fg:w="3"/><text x="8.0774%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.8417%" y="453" width="0.0144%" height="15" fill="rgb(222,191,20)" fg:x="1639" fg:w="3"/><text x="8.0917%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.8417%" y="437" width="0.0144%" height="15" fill="rgb(245,79,54)" fg:x="1639" fg:w="3"/><text x="8.0917%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.8417%" y="421" width="0.0144%" height="15" fill="rgb(240,10,37)" fg:x="1639" fg:w="3"/><text x="8.0917%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.8417%" y="405" width="0.0144%" height="15" fill="rgb(214,192,32)" fg:x="1639" fg:w="3"/><text x="8.0917%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="7.7652%" y="565" width="0.1005%" height="15" fill="rgb(209,36,54)" fg:x="1623" fg:w="21"/><text x="8.0152%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="7.7652%" y="549" width="0.1005%" height="15" fill="rgb(220,10,11)" fg:x="1623" fg:w="21"/><text x="8.0152%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="7.7652%" y="533" width="0.1005%" height="15" fill="rgb(221,106,17)" fg:x="1623" fg:w="21"/><text x="8.0152%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="7.8178%" y="517" width="0.0478%" height="15" fill="rgb(251,142,44)" fg:x="1634" fg:w="10"/><text x="8.0678%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="7.8178%" y="501" width="0.0478%" height="15" fill="rgb(238,13,15)" fg:x="1634" fg:w="10"/><text x="8.0678%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="7.8178%" y="485" width="0.0478%" height="15" fill="rgb(208,107,27)" fg:x="1634" fg:w="10"/><text x="8.0678%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="7.8178%" y="469" width="0.0478%" height="15" fill="rgb(205,136,37)" fg:x="1634" fg:w="10"/><text x="8.0678%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.8657%" y="453" width="0.0144%" height="15" fill="rgb(250,205,27)" fg:x="1644" fg:w="3"/><text x="8.1157%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.8657%" y="437" width="0.0144%" height="15" fill="rgb(210,80,43)" fg:x="1644" fg:w="3"/><text x="8.1157%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.8657%" y="421" width="0.0144%" height="15" fill="rgb(247,160,36)" fg:x="1644" fg:w="3"/><text x="8.1157%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="7.8657%" y="501" width="0.0287%" height="15" fill="rgb(234,13,49)" fg:x="1644" fg:w="6"/><text x="8.1157%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="7.8657%" y="485" width="0.0287%" height="15" fill="rgb(234,122,0)" fg:x="1644" fg:w="6"/><text x="8.1157%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="7.8657%" y="469" width="0.0287%" height="15" fill="rgb(207,146,38)" fg:x="1644" fg:w="6"/><text x="8.1157%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="7.8800%" y="453" width="0.0144%" height="15" fill="rgb(207,177,25)" fg:x="1647" fg:w="3"/><text x="8.1300%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.8800%" y="437" width="0.0144%" height="15" fill="rgb(211,178,42)" fg:x="1647" fg:w="3"/><text x="8.1300%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.8800%" y="421" width="0.0144%" height="15" fill="rgb(230,69,54)" fg:x="1647" fg:w="3"/><text x="8.1300%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.8800%" y="405" width="0.0144%" height="15" fill="rgb(214,135,41)" fg:x="1647" fg:w="3"/><text x="8.1300%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="7.7556%" y="613" width="0.1483%" height="15" fill="rgb(237,67,25)" fg:x="1621" fg:w="31"/><text x="8.0056%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="7.7652%" y="597" width="0.1387%" height="15" fill="rgb(222,189,50)" fg:x="1623" fg:w="29"/><text x="8.0152%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="7.7652%" y="581" width="0.1387%" height="15" fill="rgb(245,148,34)" fg:x="1623" fg:w="29"/><text x="8.0152%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="7.8657%" y="565" width="0.0383%" height="15" fill="rgb(222,29,6)" fg:x="1644" fg:w="8"/><text x="8.1157%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="7.8657%" y="549" width="0.0383%" height="15" fill="rgb(221,189,43)" fg:x="1644" fg:w="8"/><text x="8.1157%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="7.8657%" y="533" width="0.0383%" height="15" fill="rgb(207,36,27)" fg:x="1644" fg:w="8"/><text x="8.1157%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="7.8657%" y="517" width="0.0383%" height="15" fill="rgb(217,90,24)" fg:x="1644" fg:w="8"/><text x="8.1157%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.55%)</title><rect x="7.3681%" y="741" width="0.5454%" height="15" fill="rgb(224,66,35)" fg:x="1540" fg:w="114"/><text x="7.6181%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (114 samples, 0.55%)</title><rect x="7.3681%" y="725" width="0.5454%" height="15" fill="rgb(221,13,50)" fg:x="1540" fg:w="114"/><text x="7.6181%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (114 samples, 0.55%)</title><rect x="7.3681%" y="709" width="0.5454%" height="15" fill="rgb(236,68,49)" fg:x="1540" fg:w="114"/><text x="7.6181%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (34 samples, 0.16%)</title><rect x="7.7508%" y="693" width="0.1627%" height="15" fill="rgb(229,146,28)" fg:x="1620" fg:w="34"/><text x="8.0008%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (34 samples, 0.16%)</title><rect x="7.7508%" y="677" width="0.1627%" height="15" fill="rgb(225,31,38)" fg:x="1620" fg:w="34"/><text x="8.0008%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="7.7508%" y="661" width="0.1627%" height="15" fill="rgb(250,208,3)" fg:x="1620" fg:w="34"/><text x="8.0008%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.16%)</title><rect x="7.7556%" y="645" width="0.1579%" height="15" fill="rgb(246,54,23)" fg:x="1621" fg:w="33"/><text x="8.0056%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.16%)</title><rect x="7.7556%" y="629" width="0.1579%" height="15" fill="rgb(243,76,11)" fg:x="1621" fg:w="33"/><text x="8.0056%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.9135%" y="677" width="0.0239%" height="15" fill="rgb(245,21,50)" fg:x="1654" fg:w="5"/><text x="8.1635%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.9231%" y="661" width="0.0144%" height="15" fill="rgb(228,9,43)" fg:x="1656" fg:w="3"/><text x="8.1731%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.9231%" y="645" width="0.0144%" height="15" fill="rgb(208,100,47)" fg:x="1656" fg:w="3"/><text x="8.1731%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="7.9135%" y="741" width="0.0431%" height="15" fill="rgb(232,26,8)" fg:x="1654" fg:w="9"/><text x="8.1635%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="7.9135%" y="725" width="0.0431%" height="15" fill="rgb(216,166,38)" fg:x="1654" fg:w="9"/><text x="8.1635%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="7.9135%" y="709" width="0.0431%" height="15" fill="rgb(251,202,51)" fg:x="1654" fg:w="9"/><text x="8.1635%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="7.9135%" y="693" width="0.0431%" height="15" fill="rgb(254,216,34)" fg:x="1654" fg:w="9"/><text x="8.1635%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="7.9374%" y="677" width="0.0191%" height="15" fill="rgb(251,32,27)" fg:x="1659" fg:w="4"/><text x="8.1874%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.9374%" y="661" width="0.0191%" height="15" fill="rgb(208,127,28)" fg:x="1659" fg:w="4"/><text x="8.1874%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.9422%" y="645" width="0.0144%" height="15" fill="rgb(224,137,22)" fg:x="1660" fg:w="3"/><text x="8.1922%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.9422%" y="629" width="0.0144%" height="15" fill="rgb(254,70,32)" fg:x="1660" fg:w="3"/><text x="8.1922%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.9613%" y="517" width="0.0144%" height="15" fill="rgb(229,75,37)" fg:x="1664" fg:w="3"/><text x="8.2113%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="7.9613%" y="501" width="0.0144%" height="15" fill="rgb(252,64,23)" fg:x="1664" fg:w="3"/><text x="8.2113%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="7.9613%" y="485" width="0.0144%" height="15" fill="rgb(232,162,48)" fg:x="1664" fg:w="3"/><text x="8.2113%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="7.9613%" y="565" width="0.0335%" height="15" fill="rgb(246,160,12)" fg:x="1664" fg:w="7"/><text x="8.2113%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="7.9613%" y="549" width="0.0335%" height="15" fill="rgb(247,166,0)" fg:x="1664" fg:w="7"/><text x="8.2113%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="7.9613%" y="533" width="0.0335%" height="15" fill="rgb(249,219,21)" fg:x="1664" fg:w="7"/><text x="8.2113%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="7.9757%" y="517" width="0.0191%" height="15" fill="rgb(205,209,3)" fg:x="1667" fg:w="4"/><text x="8.2257%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="7.9757%" y="501" width="0.0191%" height="15" fill="rgb(243,44,1)" fg:x="1667" fg:w="4"/><text x="8.2257%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="7.9757%" y="485" width="0.0191%" height="15" fill="rgb(206,159,16)" fg:x="1667" fg:w="4"/><text x="8.2257%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="7.9757%" y="469" width="0.0191%" height="15" fill="rgb(244,77,30)" fg:x="1667" fg:w="4"/><text x="8.2257%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="7.9948%" y="453" width="0.0144%" height="15" fill="rgb(218,69,12)" fg:x="1671" fg:w="3"/><text x="8.2448%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="7.9948%" y="501" width="0.0239%" height="15" fill="rgb(212,87,7)" fg:x="1671" fg:w="5"/><text x="8.2448%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="7.9948%" y="485" width="0.0239%" height="15" fill="rgb(245,114,25)" fg:x="1671" fg:w="5"/><text x="8.2448%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="7.9948%" y="469" width="0.0239%" height="15" fill="rgb(210,61,42)" fg:x="1671" fg:w="5"/><text x="8.2448%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="7.9613%" y="613" width="0.0718%" height="15" fill="rgb(211,52,33)" fg:x="1664" fg:w="15"/><text x="8.2113%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="7.9613%" y="597" width="0.0718%" height="15" fill="rgb(234,58,33)" fg:x="1664" fg:w="15"/><text x="8.2113%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="7.9613%" y="581" width="0.0718%" height="15" fill="rgb(220,115,36)" fg:x="1664" fg:w="15"/><text x="8.2113%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="7.9948%" y="565" width="0.0383%" height="15" fill="rgb(243,153,54)" fg:x="1671" fg:w="8"/><text x="8.2448%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="7.9948%" y="549" width="0.0383%" height="15" fill="rgb(251,47,18)" fg:x="1671" fg:w="8"/><text x="8.2448%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="7.9948%" y="533" width="0.0383%" height="15" fill="rgb(242,102,42)" fg:x="1671" fg:w="8"/><text x="8.2448%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="7.9948%" y="517" width="0.0383%" height="15" fill="rgb(234,31,38)" fg:x="1671" fg:w="8"/><text x="8.2448%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.0188%" y="501" width="0.0144%" height="15" fill="rgb(221,117,51)" fg:x="1676" fg:w="3"/><text x="8.2688%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.0188%" y="485" width="0.0144%" height="15" fill="rgb(212,20,18)" fg:x="1676" fg:w="3"/><text x="8.2688%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.0188%" y="469" width="0.0144%" height="15" fill="rgb(245,133,36)" fg:x="1676" fg:w="3"/><text x="8.2688%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.0188%" y="453" width="0.0144%" height="15" fill="rgb(212,6,19)" fg:x="1676" fg:w="3"/><text x="8.2688%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.0331%" y="501" width="0.0191%" height="15" fill="rgb(218,1,36)" fg:x="1679" fg:w="4"/><text x="8.2831%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.0331%" y="485" width="0.0191%" height="15" fill="rgb(246,84,54)" fg:x="1679" fg:w="4"/><text x="8.2831%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.0331%" y="469" width="0.0191%" height="15" fill="rgb(242,110,6)" fg:x="1679" fg:w="4"/><text x="8.2831%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="8.0331%" y="549" width="0.0383%" height="15" fill="rgb(214,47,5)" fg:x="1679" fg:w="8"/><text x="8.2831%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="8.0331%" y="533" width="0.0383%" height="15" fill="rgb(218,159,25)" fg:x="1679" fg:w="8"/><text x="8.2831%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="8.0331%" y="517" width="0.0383%" height="15" fill="rgb(215,211,28)" fg:x="1679" fg:w="8"/><text x="8.2831%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.0522%" y="501" width="0.0191%" height="15" fill="rgb(238,59,32)" fg:x="1683" fg:w="4"/><text x="8.3022%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.0522%" y="485" width="0.0191%" height="15" fill="rgb(226,82,3)" fg:x="1683" fg:w="4"/><text x="8.3022%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.0522%" y="469" width="0.0191%" height="15" fill="rgb(240,164,32)" fg:x="1683" fg:w="4"/><text x="8.3022%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.0522%" y="453" width="0.0191%" height="15" fill="rgb(232,46,7)" fg:x="1683" fg:w="4"/><text x="8.3022%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.0714%" y="373" width="0.0144%" height="15" fill="rgb(229,129,53)" fg:x="1687" fg:w="3"/><text x="8.3214%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.0714%" y="357" width="0.0144%" height="15" fill="rgb(234,188,29)" fg:x="1687" fg:w="3"/><text x="8.3214%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.0714%" y="341" width="0.0144%" height="15" fill="rgb(246,141,4)" fg:x="1687" fg:w="3"/><text x="8.3214%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (153 samples, 0.73%)</title><rect x="7.3681%" y="821" width="0.7320%" height="15" fill="rgb(229,23,39)" fg:x="1540" fg:w="153"/><text x="7.6181%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (153 samples, 0.73%)</title><rect x="7.3681%" y="805" width="0.7320%" height="15" fill="rgb(206,12,3)" fg:x="1540" fg:w="153"/><text x="7.6181%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (153 samples, 0.73%)</title><rect x="7.3681%" y="789" width="0.7320%" height="15" fill="rgb(252,226,20)" fg:x="1540" fg:w="153"/><text x="7.6181%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (153 samples, 0.73%)</title><rect x="7.3681%" y="773" width="0.7320%" height="15" fill="rgb(216,123,35)" fg:x="1540" fg:w="153"/><text x="7.6181%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (153 samples, 0.73%)</title><rect x="7.3681%" y="757" width="0.7320%" height="15" fill="rgb(212,68,40)" fg:x="1540" fg:w="153"/><text x="7.6181%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (30 samples, 0.14%)</title><rect x="7.9566%" y="741" width="0.1435%" height="15" fill="rgb(254,125,32)" fg:x="1663" fg:w="30"/><text x="8.2066%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (30 samples, 0.14%)</title><rect x="7.9566%" y="725" width="0.1435%" height="15" fill="rgb(253,97,22)" fg:x="1663" fg:w="30"/><text x="8.2066%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.14%)</title><rect x="7.9566%" y="709" width="0.1435%" height="15" fill="rgb(241,101,14)" fg:x="1663" fg:w="30"/><text x="8.2066%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="7.9613%" y="693" width="0.1387%" height="15" fill="rgb(238,103,29)" fg:x="1664" fg:w="29"/><text x="8.2113%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="7.9613%" y="677" width="0.1387%" height="15" fill="rgb(233,195,47)" fg:x="1664" fg:w="29"/><text x="8.2113%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="7.9613%" y="661" width="0.1387%" height="15" fill="rgb(246,218,30)" fg:x="1664" fg:w="29"/><text x="8.2113%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="7.9613%" y="645" width="0.1387%" height="15" fill="rgb(219,145,47)" fg:x="1664" fg:w="29"/><text x="8.2113%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="7.9613%" y="629" width="0.1387%" height="15" fill="rgb(243,12,26)" fg:x="1664" fg:w="29"/><text x="8.2113%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="8.0331%" y="613" width="0.0670%" height="15" fill="rgb(214,87,16)" fg:x="1679" fg:w="14"/><text x="8.2831%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="8.0331%" y="597" width="0.0670%" height="15" fill="rgb(208,99,42)" fg:x="1679" fg:w="14"/><text x="8.2831%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="8.0331%" y="581" width="0.0670%" height="15" fill="rgb(253,99,2)" fg:x="1679" fg:w="14"/><text x="8.2831%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="8.0331%" y="565" width="0.0670%" height="15" fill="rgb(220,168,23)" fg:x="1679" fg:w="14"/><text x="8.2831%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="8.0714%" y="549" width="0.0287%" height="15" fill="rgb(242,38,24)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="8.0714%" y="533" width="0.0287%" height="15" fill="rgb(225,182,9)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.0714%" y="517" width="0.0287%" height="15" fill="rgb(243,178,37)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.0714%" y="501" width="0.0287%" height="15" fill="rgb(232,139,19)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="8.0714%" y="485" width="0.0287%" height="15" fill="rgb(225,201,24)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.0714%" y="469" width="0.0287%" height="15" fill="rgb(221,47,46)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.0714%" y="453" width="0.0287%" height="15" fill="rgb(249,23,13)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="8.0714%" y="437" width="0.0287%" height="15" fill="rgb(219,9,5)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.0714%" y="421" width="0.0287%" height="15" fill="rgb(254,171,16)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.0714%" y="405" width="0.0287%" height="15" fill="rgb(230,171,20)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="8.0714%" y="389" width="0.0287%" height="15" fill="rgb(210,71,41)" fg:x="1687" fg:w="6"/><text x="8.3214%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.0857%" y="373" width="0.0144%" height="15" fill="rgb(206,173,20)" fg:x="1690" fg:w="3"/><text x="8.3357%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.0857%" y="357" width="0.0144%" height="15" fill="rgb(233,88,34)" fg:x="1690" fg:w="3"/><text x="8.3357%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.0857%" y="341" width="0.0144%" height="15" fill="rgb(223,209,46)" fg:x="1690" fg:w="3"/><text x="8.3357%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.0857%" y="325" width="0.0144%" height="15" fill="rgb(250,43,18)" fg:x="1690" fg:w="3"/><text x="8.3357%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (493 samples, 2.36%)</title><rect x="5.7509%" y="869" width="2.3587%" height="15" fill="rgb(208,13,10)" fg:x="1202" fg:w="493"/><text x="6.0009%" y="879.50">r..</text></g><g><title>rayon_core::registry::in_worker (493 samples, 2.36%)</title><rect x="5.7509%" y="853" width="2.3587%" height="15" fill="rgb(212,200,36)" fg:x="1202" fg:w="493"/><text x="6.0009%" y="863.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (493 samples, 2.36%)</title><rect x="5.7509%" y="837" width="2.3587%" height="15" fill="rgb(225,90,30)" fg:x="1202" fg:w="493"/><text x="6.0009%" y="847.50">_..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.1432%" y="693" width="0.0335%" height="15" fill="rgb(236,182,39)" fg:x="1702" fg:w="7"/><text x="8.3932%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.1527%" y="677" width="0.0239%" height="15" fill="rgb(212,144,35)" fg:x="1704" fg:w="5"/><text x="8.4027%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.1527%" y="661" width="0.0239%" height="15" fill="rgb(228,63,44)" fg:x="1704" fg:w="5"/><text x="8.4027%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.1575%" y="645" width="0.0191%" height="15" fill="rgb(228,109,6)" fg:x="1705" fg:w="4"/><text x="8.4075%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.1575%" y="629" width="0.0191%" height="15" fill="rgb(238,117,24)" fg:x="1705" fg:w="4"/><text x="8.4075%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.1575%" y="613" width="0.0191%" height="15" fill="rgb(242,26,26)" fg:x="1705" fg:w="4"/><text x="8.4075%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.1575%" y="597" width="0.0191%" height="15" fill="rgb(221,92,48)" fg:x="1705" fg:w="4"/><text x="8.4075%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.1814%" y="629" width="0.0144%" height="15" fill="rgb(209,209,32)" fg:x="1710" fg:w="3"/><text x="8.4314%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.1814%" y="613" width="0.0144%" height="15" fill="rgb(221,70,22)" fg:x="1710" fg:w="3"/><text x="8.4314%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.1814%" y="597" width="0.0144%" height="15" fill="rgb(248,145,5)" fg:x="1710" fg:w="3"/><text x="8.4314%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="8.1192%" y="741" width="0.0957%" height="15" fill="rgb(226,116,26)" fg:x="1697" fg:w="20"/><text x="8.3692%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="8.1432%" y="725" width="0.0718%" height="15" fill="rgb(244,5,17)" fg:x="1702" fg:w="15"/><text x="8.3932%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="8.1432%" y="709" width="0.0718%" height="15" fill="rgb(252,159,33)" fg:x="1702" fg:w="15"/><text x="8.3932%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="8.1766%" y="693" width="0.0383%" height="15" fill="rgb(206,71,0)" fg:x="1709" fg:w="8"/><text x="8.4266%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="8.1766%" y="677" width="0.0383%" height="15" fill="rgb(233,118,54)" fg:x="1709" fg:w="8"/><text x="8.4266%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="8.1814%" y="661" width="0.0335%" height="15" fill="rgb(234,83,48)" fg:x="1710" fg:w="7"/><text x="8.4314%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="8.1814%" y="645" width="0.0335%" height="15" fill="rgb(228,3,54)" fg:x="1710" fg:w="7"/><text x="8.4314%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.1958%" y="629" width="0.0191%" height="15" fill="rgb(226,155,13)" fg:x="1713" fg:w="4"/><text x="8.4458%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.1958%" y="613" width="0.0191%" height="15" fill="rgb(241,28,37)" fg:x="1713" fg:w="4"/><text x="8.4458%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.1958%" y="597" width="0.0191%" height="15" fill="rgb(233,93,10)" fg:x="1713" fg:w="4"/><text x="8.4458%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.1958%" y="581" width="0.0191%" height="15" fill="rgb(225,113,19)" fg:x="1713" fg:w="4"/><text x="8.4458%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="8.2197%" y="709" width="0.0144%" height="15" fill="rgb(241,2,18)" fg:x="1718" fg:w="3"/><text x="8.4697%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="8.2149%" y="741" width="0.0335%" height="15" fill="rgb(228,207,21)" fg:x="1717" fg:w="7"/><text x="8.4649%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.2149%" y="725" width="0.0335%" height="15" fill="rgb(213,211,35)" fg:x="1717" fg:w="7"/><text x="8.4649%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.2341%" y="709" width="0.0144%" height="15" fill="rgb(209,83,10)" fg:x="1721" fg:w="3"/><text x="8.4841%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.2341%" y="693" width="0.0144%" height="15" fill="rgb(209,164,1)" fg:x="1721" fg:w="3"/><text x="8.4841%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.2580%" y="661" width="0.0191%" height="15" fill="rgb(213,184,43)" fg:x="1726" fg:w="4"/><text x="8.5080%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.2580%" y="645" width="0.0191%" height="15" fill="rgb(231,61,34)" fg:x="1726" fg:w="4"/><text x="8.5080%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.2580%" y="629" width="0.0191%" height="15" fill="rgb(235,75,3)" fg:x="1726" fg:w="4"/><text x="8.5080%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.2771%" y="581" width="0.0144%" height="15" fill="rgb(220,106,47)" fg:x="1730" fg:w="3"/><text x="8.5271%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.2771%" y="565" width="0.0144%" height="15" fill="rgb(210,196,33)" fg:x="1730" fg:w="3"/><text x="8.5271%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.2771%" y="549" width="0.0144%" height="15" fill="rgb(229,154,42)" fg:x="1730" fg:w="3"/><text x="8.5271%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.20%)</title><rect x="8.1097%" y="789" width="0.2009%" height="15" fill="rgb(228,114,26)" fg:x="1695" fg:w="42"/><text x="8.3597%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.19%)</title><rect x="8.1192%" y="773" width="0.1914%" height="15" fill="rgb(208,144,1)" fg:x="1697" fg:w="40"/><text x="8.3692%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.19%)</title><rect x="8.1192%" y="757" width="0.1914%" height="15" fill="rgb(239,112,37)" fg:x="1697" fg:w="40"/><text x="8.3692%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="8.2484%" y="741" width="0.0622%" height="15" fill="rgb(210,96,50)" fg:x="1724" fg:w="13"/><text x="8.4984%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="8.2484%" y="725" width="0.0622%" height="15" fill="rgb(222,178,2)" fg:x="1724" fg:w="13"/><text x="8.4984%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="8.2484%" y="709" width="0.0622%" height="15" fill="rgb(226,74,18)" fg:x="1724" fg:w="13"/><text x="8.4984%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="8.2580%" y="693" width="0.0526%" height="15" fill="rgb(225,67,54)" fg:x="1726" fg:w="11"/><text x="8.5080%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="8.2580%" y="677" width="0.0526%" height="15" fill="rgb(251,92,32)" fg:x="1726" fg:w="11"/><text x="8.5080%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="8.2771%" y="661" width="0.0335%" height="15" fill="rgb(228,149,22)" fg:x="1730" fg:w="7"/><text x="8.5271%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="8.2771%" y="645" width="0.0335%" height="15" fill="rgb(243,54,13)" fg:x="1730" fg:w="7"/><text x="8.5271%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.2771%" y="629" width="0.0335%" height="15" fill="rgb(243,180,28)" fg:x="1730" fg:w="7"/><text x="8.5271%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="8.2771%" y="613" width="0.0335%" height="15" fill="rgb(208,167,24)" fg:x="1730" fg:w="7"/><text x="8.5271%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="8.2771%" y="597" width="0.0335%" height="15" fill="rgb(245,73,45)" fg:x="1730" fg:w="7"/><text x="8.5271%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="8.2915%" y="581" width="0.0191%" height="15" fill="rgb(237,203,48)" fg:x="1733" fg:w="4"/><text x="8.5415%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="8.2915%" y="565" width="0.0191%" height="15" fill="rgb(211,197,16)" fg:x="1733" fg:w="4"/><text x="8.5415%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.2915%" y="549" width="0.0191%" height="15" fill="rgb(243,99,51)" fg:x="1733" fg:w="4"/><text x="8.5415%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.2915%" y="533" width="0.0191%" height="15" fill="rgb(215,123,29)" fg:x="1733" fg:w="4"/><text x="8.5415%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.2915%" y="517" width="0.0191%" height="15" fill="rgb(239,186,37)" fg:x="1733" fg:w="4"/><text x="8.5415%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.3154%" y="725" width="0.0191%" height="15" fill="rgb(252,136,39)" fg:x="1738" fg:w="4"/><text x="8.5654%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.3202%" y="709" width="0.0144%" height="15" fill="rgb(223,213,32)" fg:x="1739" fg:w="3"/><text x="8.5702%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.3202%" y="693" width="0.0144%" height="15" fill="rgb(233,115,5)" fg:x="1739" fg:w="3"/><text x="8.5702%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="8.3106%" y="789" width="0.0431%" height="15" fill="rgb(207,226,44)" fg:x="1737" fg:w="9"/><text x="8.5606%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.3106%" y="773" width="0.0431%" height="15" fill="rgb(208,126,0)" fg:x="1737" fg:w="9"/><text x="8.5606%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="8.3154%" y="757" width="0.0383%" height="15" fill="rgb(244,66,21)" fg:x="1738" fg:w="8"/><text x="8.5654%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="8.3154%" y="741" width="0.0383%" height="15" fill="rgb(222,97,12)" fg:x="1738" fg:w="8"/><text x="8.5654%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.3537%" y="613" width="0.0287%" height="15" fill="rgb(219,213,19)" fg:x="1746" fg:w="6"/><text x="8.6037%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.3537%" y="597" width="0.0287%" height="15" fill="rgb(252,169,30)" fg:x="1746" fg:w="6"/><text x="8.6037%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="8.3537%" y="581" width="0.0287%" height="15" fill="rgb(206,32,51)" fg:x="1746" fg:w="6"/><text x="8.6037%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.3632%" y="565" width="0.0191%" height="15" fill="rgb(250,172,42)" fg:x="1748" fg:w="4"/><text x="8.6132%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.3632%" y="549" width="0.0191%" height="15" fill="rgb(209,34,43)" fg:x="1748" fg:w="4"/><text x="8.6132%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.3632%" y="533" width="0.0191%" height="15" fill="rgb(223,11,35)" fg:x="1748" fg:w="4"/><text x="8.6132%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.3632%" y="517" width="0.0191%" height="15" fill="rgb(251,219,26)" fg:x="1748" fg:w="4"/><text x="8.6132%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.3824%" y="549" width="0.0239%" height="15" fill="rgb(231,119,3)" fg:x="1752" fg:w="5"/><text x="8.6324%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.3824%" y="533" width="0.0239%" height="15" fill="rgb(216,97,11)" fg:x="1752" fg:w="5"/><text x="8.6324%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.3824%" y="517" width="0.0239%" height="15" fill="rgb(223,59,9)" fg:x="1752" fg:w="5"/><text x="8.6324%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.3919%" y="501" width="0.0144%" height="15" fill="rgb(233,93,31)" fg:x="1754" fg:w="3"/><text x="8.6419%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.3919%" y="485" width="0.0144%" height="15" fill="rgb(239,81,33)" fg:x="1754" fg:w="3"/><text x="8.6419%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="8.3537%" y="661" width="0.0718%" height="15" fill="rgb(213,120,34)" fg:x="1746" fg:w="15"/><text x="8.6037%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="8.3537%" y="645" width="0.0718%" height="15" fill="rgb(243,49,53)" fg:x="1746" fg:w="15"/><text x="8.6037%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="8.3537%" y="629" width="0.0718%" height="15" fill="rgb(247,216,33)" fg:x="1746" fg:w="15"/><text x="8.6037%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="8.3824%" y="613" width="0.0431%" height="15" fill="rgb(226,26,14)" fg:x="1752" fg:w="9"/><text x="8.6324%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.3824%" y="597" width="0.0431%" height="15" fill="rgb(215,49,53)" fg:x="1752" fg:w="9"/><text x="8.6324%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.3824%" y="581" width="0.0431%" height="15" fill="rgb(245,162,40)" fg:x="1752" fg:w="9"/><text x="8.6324%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.3824%" y="565" width="0.0431%" height="15" fill="rgb(229,68,17)" fg:x="1752" fg:w="9"/><text x="8.6324%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.4063%" y="549" width="0.0191%" height="15" fill="rgb(213,182,10)" fg:x="1757" fg:w="4"/><text x="8.6563%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.4063%" y="533" width="0.0191%" height="15" fill="rgb(245,125,30)" fg:x="1757" fg:w="4"/><text x="8.6563%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.4063%" y="517" width="0.0191%" height="15" fill="rgb(232,202,2)" fg:x="1757" fg:w="4"/><text x="8.6563%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.4063%" y="501" width="0.0191%" height="15" fill="rgb(237,140,51)" fg:x="1757" fg:w="4"/><text x="8.6563%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.4254%" y="549" width="0.0239%" height="15" fill="rgb(236,157,25)" fg:x="1761" fg:w="5"/><text x="8.6754%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.4254%" y="533" width="0.0239%" height="15" fill="rgb(219,209,0)" fg:x="1761" fg:w="5"/><text x="8.6754%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.4254%" y="517" width="0.0239%" height="15" fill="rgb(240,116,54)" fg:x="1761" fg:w="5"/><text x="8.6754%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.4350%" y="501" width="0.0144%" height="15" fill="rgb(216,10,36)" fg:x="1763" fg:w="3"/><text x="8.6850%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.4350%" y="485" width="0.0144%" height="15" fill="rgb(222,72,44)" fg:x="1763" fg:w="3"/><text x="8.6850%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.4254%" y="597" width="0.0431%" height="15" fill="rgb(232,159,9)" fg:x="1761" fg:w="9"/><text x="8.6754%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.4254%" y="581" width="0.0431%" height="15" fill="rgb(210,39,32)" fg:x="1761" fg:w="9"/><text x="8.6754%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.4254%" y="565" width="0.0431%" height="15" fill="rgb(216,194,45)" fg:x="1761" fg:w="9"/><text x="8.6754%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.4494%" y="549" width="0.0191%" height="15" fill="rgb(218,18,35)" fg:x="1766" fg:w="4"/><text x="8.6994%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.4494%" y="533" width="0.0191%" height="15" fill="rgb(207,83,51)" fg:x="1766" fg:w="4"/><text x="8.6994%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.4494%" y="517" width="0.0191%" height="15" fill="rgb(225,63,43)" fg:x="1766" fg:w="4"/><text x="8.6994%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.4494%" y="501" width="0.0191%" height="15" fill="rgb(207,57,36)" fg:x="1766" fg:w="4"/><text x="8.6994%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.4685%" y="533" width="0.0191%" height="15" fill="rgb(216,99,33)" fg:x="1770" fg:w="4"/><text x="8.7185%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.4685%" y="517" width="0.0191%" height="15" fill="rgb(225,42,16)" fg:x="1770" fg:w="4"/><text x="8.7185%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.4685%" y="501" width="0.0191%" height="15" fill="rgb(220,201,45)" fg:x="1770" fg:w="4"/><text x="8.7185%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="8.3537%" y="709" width="0.1483%" height="15" fill="rgb(225,33,4)" fg:x="1746" fg:w="31"/><text x="8.6037%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="8.3537%" y="693" width="0.1483%" height="15" fill="rgb(224,33,50)" fg:x="1746" fg:w="31"/><text x="8.6037%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="8.3537%" y="677" width="0.1483%" height="15" fill="rgb(246,198,51)" fg:x="1746" fg:w="31"/><text x="8.6037%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.08%)</title><rect x="8.4254%" y="661" width="0.0766%" height="15" fill="rgb(205,22,4)" fg:x="1761" fg:w="16"/><text x="8.6754%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="8.4254%" y="645" width="0.0766%" height="15" fill="rgb(206,3,8)" fg:x="1761" fg:w="16"/><text x="8.6754%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="8.4254%" y="629" width="0.0766%" height="15" fill="rgb(251,23,15)" fg:x="1761" fg:w="16"/><text x="8.6754%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="8.4254%" y="613" width="0.0766%" height="15" fill="rgb(252,88,28)" fg:x="1761" fg:w="16"/><text x="8.6754%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="8.4685%" y="597" width="0.0335%" height="15" fill="rgb(212,127,14)" fg:x="1770" fg:w="7"/><text x="8.7185%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.4685%" y="581" width="0.0335%" height="15" fill="rgb(247,145,37)" fg:x="1770" fg:w="7"/><text x="8.7185%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="8.4685%" y="565" width="0.0335%" height="15" fill="rgb(209,117,53)" fg:x="1770" fg:w="7"/><text x="8.7185%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="8.4685%" y="549" width="0.0335%" height="15" fill="rgb(212,90,42)" fg:x="1770" fg:w="7"/><text x="8.7185%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.4876%" y="533" width="0.0144%" height="15" fill="rgb(218,164,37)" fg:x="1774" fg:w="3"/><text x="8.7376%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.4876%" y="517" width="0.0144%" height="15" fill="rgb(246,65,34)" fg:x="1774" fg:w="3"/><text x="8.7376%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.4876%" y="501" width="0.0144%" height="15" fill="rgb(231,100,33)" fg:x="1774" fg:w="3"/><text x="8.7376%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.4876%" y="485" width="0.0144%" height="15" fill="rgb(228,126,14)" fg:x="1774" fg:w="3"/><text x="8.7376%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.5068%" y="549" width="0.0144%" height="15" fill="rgb(215,173,21)" fg:x="1778" fg:w="3"/><text x="8.7568%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.5068%" y="533" width="0.0144%" height="15" fill="rgb(210,6,40)" fg:x="1778" fg:w="3"/><text x="8.7568%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.5068%" y="517" width="0.0144%" height="15" fill="rgb(212,48,18)" fg:x="1778" fg:w="3"/><text x="8.7568%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (585 samples, 2.80%)</title><rect x="5.7509%" y="917" width="2.7989%" height="15" fill="rgb(230,214,11)" fg:x="1202" fg:w="585"/><text x="6.0009%" y="927.50">ra..</text></g><g><title>rayon_core::registry::in_worker (585 samples, 2.80%)</title><rect x="5.7509%" y="901" width="2.7989%" height="15" fill="rgb(254,105,39)" fg:x="1202" fg:w="585"/><text x="6.0009%" y="911.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (585 samples, 2.80%)</title><rect x="5.7509%" y="885" width="2.7989%" height="15" fill="rgb(245,158,5)" fg:x="1202" fg:w="585"/><text x="6.0009%" y="895.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (92 samples, 0.44%)</title><rect x="8.1097%" y="869" width="0.4402%" height="15" fill="rgb(249,208,11)" fg:x="1695" fg:w="92"/><text x="8.3597%" y="879.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (92 samples, 0.44%)</title><rect x="8.1097%" y="853" width="0.4402%" height="15" fill="rgb(210,39,28)" fg:x="1695" fg:w="92"/><text x="8.3597%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (92 samples, 0.44%)</title><rect x="8.1097%" y="837" width="0.4402%" height="15" fill="rgb(211,56,53)" fg:x="1695" fg:w="92"/><text x="8.3597%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (92 samples, 0.44%)</title><rect x="8.1097%" y="821" width="0.4402%" height="15" fill="rgb(226,201,30)" fg:x="1695" fg:w="92"/><text x="8.3597%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (92 samples, 0.44%)</title><rect x="8.1097%" y="805" width="0.4402%" height="15" fill="rgb(239,101,34)" fg:x="1695" fg:w="92"/><text x="8.3597%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.20%)</title><rect x="8.3537%" y="789" width="0.1962%" height="15" fill="rgb(226,209,5)" fg:x="1746" fg:w="41"/><text x="8.6037%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (41 samples, 0.20%)</title><rect x="8.3537%" y="773" width="0.1962%" height="15" fill="rgb(250,105,47)" fg:x="1746" fg:w="41"/><text x="8.6037%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.20%)</title><rect x="8.3537%" y="757" width="0.1962%" height="15" fill="rgb(230,72,3)" fg:x="1746" fg:w="41"/><text x="8.6037%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.20%)</title><rect x="8.3537%" y="741" width="0.1962%" height="15" fill="rgb(232,218,39)" fg:x="1746" fg:w="41"/><text x="8.6037%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (41 samples, 0.20%)</title><rect x="8.3537%" y="725" width="0.1962%" height="15" fill="rgb(248,166,6)" fg:x="1746" fg:w="41"/><text x="8.6037%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.05%)</title><rect x="8.5020%" y="709" width="0.0478%" height="15" fill="rgb(247,89,20)" fg:x="1777" fg:w="10"/><text x="8.7520%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.05%)</title><rect x="8.5020%" y="693" width="0.0478%" height="15" fill="rgb(248,130,54)" fg:x="1777" fg:w="10"/><text x="8.7520%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="8.5020%" y="677" width="0.0478%" height="15" fill="rgb(234,196,4)" fg:x="1777" fg:w="10"/><text x="8.7520%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="8.5020%" y="661" width="0.0478%" height="15" fill="rgb(250,143,31)" fg:x="1777" fg:w="10"/><text x="8.7520%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="8.5020%" y="645" width="0.0478%" height="15" fill="rgb(211,110,34)" fg:x="1777" fg:w="10"/><text x="8.7520%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="8.5068%" y="629" width="0.0431%" height="15" fill="rgb(215,124,48)" fg:x="1778" fg:w="9"/><text x="8.7568%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (9 samples, 0.04%)</title><rect x="8.5068%" y="613" width="0.0431%" height="15" fill="rgb(216,46,13)" fg:x="1778" fg:w="9"/><text x="8.7568%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.5068%" y="597" width="0.0431%" height="15" fill="rgb(205,184,25)" fg:x="1778" fg:w="9"/><text x="8.7568%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.5068%" y="581" width="0.0431%" height="15" fill="rgb(228,1,10)" fg:x="1778" fg:w="9"/><text x="8.7568%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.5068%" y="565" width="0.0431%" height="15" fill="rgb(213,116,27)" fg:x="1778" fg:w="9"/><text x="8.7568%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="8.5211%" y="549" width="0.0287%" height="15" fill="rgb(241,95,50)" fg:x="1781" fg:w="6"/><text x="8.7711%" y="559.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="8.5259%" y="533" width="0.0239%" height="15" fill="rgb(238,48,32)" fg:x="1782" fg:w="5"/><text x="8.7759%" y="543.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="8.5259%" y="517" width="0.0239%" height="15" fill="rgb(235,113,49)" fg:x="1782" fg:w="5"/><text x="8.7759%" y="527.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="8.5259%" y="501" width="0.0239%" height="15" fill="rgb(205,127,43)" fg:x="1782" fg:w="5"/><text x="8.7759%" y="511.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="8.5259%" y="485" width="0.0239%" height="15" fill="rgb(250,162,2)" fg:x="1782" fg:w="5"/><text x="8.7759%" y="495.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="8.5259%" y="469" width="0.0239%" height="15" fill="rgb(220,13,41)" fg:x="1782" fg:w="5"/><text x="8.7759%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.5594%" y="709" width="0.0144%" height="15" fill="rgb(249,221,25)" fg:x="1789" fg:w="3"/><text x="8.8094%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.5594%" y="693" width="0.0144%" height="15" fill="rgb(215,208,19)" fg:x="1789" fg:w="3"/><text x="8.8094%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.5594%" y="677" width="0.0144%" height="15" fill="rgb(236,175,2)" fg:x="1789" fg:w="3"/><text x="8.8094%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.5594%" y="757" width="0.0239%" height="15" fill="rgb(241,52,2)" fg:x="1789" fg:w="5"/><text x="8.8094%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.5594%" y="741" width="0.0239%" height="15" fill="rgb(248,140,14)" fg:x="1789" fg:w="5"/><text x="8.8094%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.5594%" y="725" width="0.0239%" height="15" fill="rgb(253,22,42)" fg:x="1789" fg:w="5"/><text x="8.8094%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.2088744067846635343 (598 samples, 2.86%)</title><rect x="5.7509%" y="1029" width="2.8611%" height="15" fill="rgb(234,61,47)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="1039.50">_Z..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (598 samples, 2.86%)</title><rect x="5.7509%" y="1013" width="2.8611%" height="15" fill="rgb(208,226,15)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="1023.50">ra..</text></g><g><title>rayon_core::registry::in_worker (598 samples, 2.86%)</title><rect x="5.7509%" y="997" width="2.8611%" height="15" fill="rgb(217,221,4)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="1007.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (598 samples, 2.86%)</title><rect x="5.7509%" y="981" width="2.8611%" height="15" fill="rgb(212,174,34)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="991.50">_Z..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (598 samples, 2.86%)</title><rect x="5.7509%" y="965" width="2.8611%" height="15" fill="rgb(253,83,4)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="975.50">ra..</text></g><g><title>rayon_core::registry::in_worker (598 samples, 2.86%)</title><rect x="5.7509%" y="949" width="2.8611%" height="15" fill="rgb(250,195,49)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="959.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (598 samples, 2.86%)</title><rect x="5.7509%" y="933" width="2.8611%" height="15" fill="rgb(241,192,25)" fg:x="1202" fg:w="598"/><text x="6.0009%" y="943.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="8.5498%" y="917" width="0.0622%" height="15" fill="rgb(208,124,10)" fg:x="1787" fg:w="13"/><text x="8.7998%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="8.5498%" y="901" width="0.0622%" height="15" fill="rgb(222,33,0)" fg:x="1787" fg:w="13"/><text x="8.7998%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="8.5498%" y="885" width="0.0622%" height="15" fill="rgb(234,209,28)" fg:x="1787" fg:w="13"/><text x="8.7998%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="8.5498%" y="869" width="0.0622%" height="15" fill="rgb(224,11,23)" fg:x="1787" fg:w="13"/><text x="8.7998%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="8.5498%" y="853" width="0.0622%" height="15" fill="rgb(232,99,1)" fg:x="1787" fg:w="13"/><text x="8.7998%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="8.5594%" y="837" width="0.0526%" height="15" fill="rgb(237,95,45)" fg:x="1789" fg:w="11"/><text x="8.8094%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.05%)</title><rect x="8.5594%" y="821" width="0.0526%" height="15" fill="rgb(208,109,11)" fg:x="1789" fg:w="11"/><text x="8.8094%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="8.5594%" y="805" width="0.0526%" height="15" fill="rgb(216,190,48)" fg:x="1789" fg:w="11"/><text x="8.8094%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="8.5594%" y="789" width="0.0526%" height="15" fill="rgb(251,171,36)" fg:x="1789" fg:w="11"/><text x="8.8094%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="8.5594%" y="773" width="0.0526%" height="15" fill="rgb(230,62,22)" fg:x="1789" fg:w="11"/><text x="8.8094%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="8.5833%" y="757" width="0.0287%" height="15" fill="rgb(225,114,35)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="8.5833%" y="741" width="0.0287%" height="15" fill="rgb(215,118,42)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.5833%" y="725" width="0.0287%" height="15" fill="rgb(243,119,21)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="8.5833%" y="709" width="0.0287%" height="15" fill="rgb(252,177,53)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="8.5833%" y="693" width="0.0287%" height="15" fill="rgb(237,209,29)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.5833%" y="677" width="0.0287%" height="15" fill="rgb(212,65,23)" fg:x="1794" fg:w="6"/><text x="8.8333%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.5929%" y="661" width="0.0191%" height="15" fill="rgb(230,222,46)" fg:x="1796" fg:w="4"/><text x="8.8429%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.5929%" y="645" width="0.0191%" height="15" fill="rgb(215,135,32)" fg:x="1796" fg:w="4"/><text x="8.8429%" y="655.50"></text></g><g><title>&lt;(alloc::vec::Vec&lt;A&gt;,alloc::vec::Vec&lt;B&gt;,alloc::vec::Vec&lt;C&gt;,alloc::vec::Vec&lt;D&gt;) as criterion::stats::tuple::TupledDistributionsBuilder&gt;::extend (3 samples, 0.01%)</title><rect x="8.6360%" y="997" width="0.0144%" height="15" fill="rgb(246,101,22)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="1007.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve::do_reserve_and_handle (3 samples, 0.01%)</title><rect x="8.6360%" y="981" width="0.0144%" height="15" fill="rgb(206,107,13)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="991.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17hfe2a34f7210f68c1E.llvm.1139597560603246059 (3 samples, 0.01%)</title><rect x="8.6360%" y="965" width="0.0144%" height="15" fill="rgb(250,100,44)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="975.50"></text></g><g><title>realloc (3 samples, 0.01%)</title><rect x="8.6360%" y="949" width="0.0144%" height="15" fill="rgb(231,147,38)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="959.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="8.6360%" y="933" width="0.0144%" height="15" fill="rgb(229,8,40)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="943.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="8.6360%" y="917" width="0.0144%" height="15" fill="rgb(221,135,30)" fg:x="1805" fg:w="3"/><text x="8.8860%" y="927.50"></text></g><g><title>&lt;rayon::iter::reduce::ReduceConsumer&lt;R,ID&gt; as rayon::iter::plumbing::Reducer&lt;T&gt;&gt;::reduce (4 samples, 0.02%)</title><rect x="8.6360%" y="1013" width="0.0191%" height="15" fill="rgb(249,193,18)" fg:x="1805" fg:w="4"/><text x="8.8860%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="8.6647%" y="789" width="0.0813%" height="15" fill="rgb(209,133,39)" fg:x="1811" fg:w="17"/><text x="8.9147%" y="799.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (17 samples, 0.08%)</title><rect x="8.6647%" y="773" width="0.0813%" height="15" fill="rgb(232,100,14)" fg:x="1811" fg:w="17"/><text x="8.9147%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (17 samples, 0.08%)</title><rect x="8.6647%" y="757" width="0.0813%" height="15" fill="rgb(224,185,1)" fg:x="1811" fg:w="17"/><text x="8.9147%" y="767.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (16 samples, 0.08%)</title><rect x="8.6694%" y="741" width="0.0766%" height="15" fill="rgb(223,139,8)" fg:x="1812" fg:w="16"/><text x="8.9194%" y="751.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (9 samples, 0.04%)</title><rect x="8.7029%" y="725" width="0.0431%" height="15" fill="rgb(232,213,38)" fg:x="1819" fg:w="9"/><text x="8.9529%" y="735.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="8.7316%" y="709" width="0.0144%" height="15" fill="rgb(207,94,22)" fg:x="1825" fg:w="3"/><text x="8.9816%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="8.6647%" y="837" width="0.1053%" height="15" fill="rgb(219,183,54)" fg:x="1811" fg:w="22"/><text x="8.9147%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.11%)</title><rect x="8.6647%" y="821" width="0.1053%" height="15" fill="rgb(216,185,54)" fg:x="1811" fg:w="22"/><text x="8.9147%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (22 samples, 0.11%)</title><rect x="8.6647%" y="805" width="0.1053%" height="15" fill="rgb(254,217,39)" fg:x="1811" fg:w="22"/><text x="8.9147%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="8.7460%" y="789" width="0.0239%" height="15" fill="rgb(240,178,23)" fg:x="1828" fg:w="5"/><text x="8.9960%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.7460%" y="773" width="0.0239%" height="15" fill="rgb(218,11,47)" fg:x="1828" fg:w="5"/><text x="8.9960%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="8.7460%" y="757" width="0.0239%" height="15" fill="rgb(218,51,51)" fg:x="1828" fg:w="5"/><text x="8.9960%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="8.7460%" y="741" width="0.0239%" height="15" fill="rgb(238,126,27)" fg:x="1828" fg:w="5"/><text x="8.9960%" y="751.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.02%)</title><rect x="8.7460%" y="725" width="0.0239%" height="15" fill="rgb(249,202,22)" fg:x="1828" fg:w="5"/><text x="8.9960%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="8.7508%" y="709" width="0.0191%" height="15" fill="rgb(254,195,49)" fg:x="1829" fg:w="4"/><text x="9.0008%" y="719.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="8.7556%" y="693" width="0.0144%" height="15" fill="rgb(208,123,14)" fg:x="1830" fg:w="3"/><text x="9.0056%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.7699%" y="773" width="0.0239%" height="15" fill="rgb(224,200,8)" fg:x="1833" fg:w="5"/><text x="9.0199%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="8.7699%" y="757" width="0.0239%" height="15" fill="rgb(217,61,36)" fg:x="1833" fg:w="5"/><text x="9.0199%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="8.7699%" y="741" width="0.0239%" height="15" fill="rgb(206,35,45)" fg:x="1833" fg:w="5"/><text x="9.0199%" y="751.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (5 samples, 0.02%)</title><rect x="8.7699%" y="725" width="0.0239%" height="15" fill="rgb(217,65,33)" fg:x="1833" fg:w="5"/><text x="9.0199%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="8.7795%" y="709" width="0.0144%" height="15" fill="rgb(222,158,48)" fg:x="1835" fg:w="3"/><text x="9.0295%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="8.6647%" y="885" width="0.1483%" height="15" fill="rgb(254,2,54)" fg:x="1811" fg:w="31"/><text x="8.9147%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="8.6647%" y="869" width="0.1483%" height="15" fill="rgb(250,143,38)" fg:x="1811" fg:w="31"/><text x="8.9147%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="8.6647%" y="853" width="0.1483%" height="15" fill="rgb(248,25,0)" fg:x="1811" fg:w="31"/><text x="8.9147%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="8.7699%" y="837" width="0.0431%" height="15" fill="rgb(206,152,27)" fg:x="1833" fg:w="9"/><text x="9.0199%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.7699%" y="821" width="0.0431%" height="15" fill="rgb(240,77,30)" fg:x="1833" fg:w="9"/><text x="9.0199%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.7699%" y="805" width="0.0431%" height="15" fill="rgb(231,5,3)" fg:x="1833" fg:w="9"/><text x="9.0199%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.7699%" y="789" width="0.0431%" height="15" fill="rgb(207,226,32)" fg:x="1833" fg:w="9"/><text x="9.0199%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.7938%" y="773" width="0.0191%" height="15" fill="rgb(222,207,47)" fg:x="1838" fg:w="4"/><text x="9.0438%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.7938%" y="757" width="0.0191%" height="15" fill="rgb(229,115,45)" fg:x="1838" fg:w="4"/><text x="9.0438%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="8.7938%" y="741" width="0.0191%" height="15" fill="rgb(224,191,6)" fg:x="1838" fg:w="4"/><text x="9.0438%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="8.7938%" y="725" width="0.0191%" height="15" fill="rgb(230,227,24)" fg:x="1838" fg:w="4"/><text x="9.0438%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (4 samples, 0.02%)</title><rect x="8.7938%" y="709" width="0.0191%" height="15" fill="rgb(228,80,19)" fg:x="1838" fg:w="4"/><text x="9.0438%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="8.8130%" y="773" width="0.0287%" height="15" fill="rgb(247,229,0)" fg:x="1842" fg:w="6"/><text x="9.0630%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (6 samples, 0.03%)</title><rect x="8.8130%" y="757" width="0.0287%" height="15" fill="rgb(237,194,15)" fg:x="1842" fg:w="6"/><text x="9.0630%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (6 samples, 0.03%)</title><rect x="8.8130%" y="741" width="0.0287%" height="15" fill="rgb(219,203,20)" fg:x="1842" fg:w="6"/><text x="9.0630%" y="751.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (6 samples, 0.03%)</title><rect x="8.8130%" y="725" width="0.0287%" height="15" fill="rgb(234,128,8)" fg:x="1842" fg:w="6"/><text x="9.0630%" y="735.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="8.8225%" y="709" width="0.0191%" height="15" fill="rgb(248,202,8)" fg:x="1844" fg:w="4"/><text x="9.0725%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="8.8130%" y="821" width="0.0478%" height="15" fill="rgb(206,104,37)" fg:x="1842" fg:w="10"/><text x="9.0630%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="8.8130%" y="805" width="0.0478%" height="15" fill="rgb(223,8,27)" fg:x="1842" fg:w="10"/><text x="9.0630%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="8.8130%" y="789" width="0.0478%" height="15" fill="rgb(216,217,28)" fg:x="1842" fg:w="10"/><text x="9.0630%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.8417%" y="773" width="0.0191%" height="15" fill="rgb(249,199,1)" fg:x="1848" fg:w="4"/><text x="9.0917%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.8417%" y="757" width="0.0191%" height="15" fill="rgb(240,85,17)" fg:x="1848" fg:w="4"/><text x="9.0917%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="8.8417%" y="741" width="0.0191%" height="15" fill="rgb(206,108,45)" fg:x="1848" fg:w="4"/><text x="9.0917%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="8.8417%" y="725" width="0.0191%" height="15" fill="rgb(245,210,41)" fg:x="1848" fg:w="4"/><text x="9.0917%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (4 samples, 0.02%)</title><rect x="8.8417%" y="709" width="0.0191%" height="15" fill="rgb(206,13,37)" fg:x="1848" fg:w="4"/><text x="9.0917%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="8.8465%" y="693" width="0.0144%" height="15" fill="rgb(250,61,18)" fg:x="1849" fg:w="3"/><text x="9.0965%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="8.8465%" y="677" width="0.0144%" height="15" fill="rgb(235,172,48)" fg:x="1849" fg:w="3"/><text x="9.0965%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.8608%" y="757" width="0.0191%" height="15" fill="rgb(249,201,17)" fg:x="1852" fg:w="4"/><text x="9.1108%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="8.8608%" y="741" width="0.0191%" height="15" fill="rgb(219,208,6)" fg:x="1852" fg:w="4"/><text x="9.1108%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="8.8608%" y="725" width="0.0191%" height="15" fill="rgb(248,31,23)" fg:x="1852" fg:w="4"/><text x="9.1108%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (4 samples, 0.02%)</title><rect x="8.8608%" y="709" width="0.0191%" height="15" fill="rgb(245,15,42)" fg:x="1852" fg:w="4"/><text x="9.1108%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="8.8608%" y="693" width="0.0191%" height="15" fill="rgb(222,217,39)" fg:x="1852" fg:w="4"/><text x="9.1108%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.08%)</title><rect x="8.8130%" y="885" width="0.0813%" height="15" fill="rgb(210,219,27)" fg:x="1842" fg:w="17"/><text x="9.0630%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="8.8130%" y="869" width="0.0813%" height="15" fill="rgb(252,166,36)" fg:x="1842" fg:w="17"/><text x="9.0630%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="8.8130%" y="853" width="0.0813%" height="15" fill="rgb(245,132,34)" fg:x="1842" fg:w="17"/><text x="9.0630%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="8.8130%" y="837" width="0.0813%" height="15" fill="rgb(236,54,3)" fg:x="1842" fg:w="17"/><text x="9.0630%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="8.8608%" y="821" width="0.0335%" height="15" fill="rgb(241,173,43)" fg:x="1852" fg:w="7"/><text x="9.1108%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.8608%" y="805" width="0.0335%" height="15" fill="rgb(215,190,9)" fg:x="1852" fg:w="7"/><text x="9.1108%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="8.8608%" y="789" width="0.0335%" height="15" fill="rgb(242,101,16)" fg:x="1852" fg:w="7"/><text x="9.1108%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="8.8608%" y="773" width="0.0335%" height="15" fill="rgb(223,190,21)" fg:x="1852" fg:w="7"/><text x="9.1108%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.8800%" y="757" width="0.0144%" height="15" fill="rgb(215,228,25)" fg:x="1856" fg:w="3"/><text x="9.1300%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.8800%" y="741" width="0.0144%" height="15" fill="rgb(225,36,22)" fg:x="1856" fg:w="3"/><text x="9.1300%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="8.8800%" y="725" width="0.0144%" height="15" fill="rgb(251,106,46)" fg:x="1856" fg:w="3"/><text x="9.1300%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="8.8800%" y="709" width="0.0144%" height="15" fill="rgb(208,90,1)" fg:x="1856" fg:w="3"/><text x="9.1300%" y="719.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="8.8800%" y="693" width="0.0144%" height="15" fill="rgb(243,10,4)" fg:x="1856" fg:w="3"/><text x="9.1300%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.8943%" y="805" width="0.0191%" height="15" fill="rgb(212,137,27)" fg:x="1859" fg:w="4"/><text x="9.1443%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.8943%" y="789" width="0.0191%" height="15" fill="rgb(231,220,49)" fg:x="1859" fg:w="4"/><text x="9.1443%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.8943%" y="773" width="0.0191%" height="15" fill="rgb(237,96,20)" fg:x="1859" fg:w="4"/><text x="9.1443%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="8.9134%" y="789" width="0.0144%" height="15" fill="rgb(239,229,30)" fg:x="1863" fg:w="3"/><text x="9.1634%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.9134%" y="773" width="0.0144%" height="15" fill="rgb(219,65,33)" fg:x="1863" fg:w="3"/><text x="9.1634%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.9134%" y="757" width="0.0144%" height="15" fill="rgb(243,134,7)" fg:x="1863" fg:w="3"/><text x="9.1634%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.9134%" y="741" width="0.0144%" height="15" fill="rgb(216,177,54)" fg:x="1863" fg:w="3"/><text x="9.1634%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.27%)</title><rect x="8.6647%" y="933" width="0.2679%" height="15" fill="rgb(211,160,20)" fg:x="1811" fg:w="56"/><text x="8.9147%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.27%)</title><rect x="8.6647%" y="917" width="0.2679%" height="15" fill="rgb(239,85,39)" fg:x="1811" fg:w="56"/><text x="8.9147%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (56 samples, 0.27%)</title><rect x="8.6647%" y="901" width="0.2679%" height="15" fill="rgb(232,125,22)" fg:x="1811" fg:w="56"/><text x="8.9147%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="8.8943%" y="885" width="0.0383%" height="15" fill="rgb(244,57,34)" fg:x="1859" fg:w="8"/><text x="9.1443%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="8.8943%" y="869" width="0.0383%" height="15" fill="rgb(214,203,32)" fg:x="1859" fg:w="8"/><text x="9.1443%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="8.8943%" y="853" width="0.0383%" height="15" fill="rgb(207,58,43)" fg:x="1859" fg:w="8"/><text x="9.1443%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="8.8943%" y="837" width="0.0383%" height="15" fill="rgb(215,193,15)" fg:x="1859" fg:w="8"/><text x="9.1443%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="8.8943%" y="821" width="0.0383%" height="15" fill="rgb(232,15,44)" fg:x="1859" fg:w="8"/><text x="9.1443%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="8.9134%" y="805" width="0.0191%" height="15" fill="rgb(212,3,48)" fg:x="1863" fg:w="4"/><text x="9.1634%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="8.9326%" y="821" width="0.0239%" height="15" fill="rgb(218,128,7)" fg:x="1867" fg:w="5"/><text x="9.1826%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="8.9326%" y="805" width="0.0239%" height="15" fill="rgb(226,216,39)" fg:x="1867" fg:w="5"/><text x="9.1826%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="8.9326%" y="789" width="0.0239%" height="15" fill="rgb(243,47,51)" fg:x="1867" fg:w="5"/><text x="9.1826%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="8.9422%" y="773" width="0.0144%" height="15" fill="rgb(241,183,40)" fg:x="1869" fg:w="3"/><text x="9.1922%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.9422%" y="757" width="0.0144%" height="15" fill="rgb(231,217,32)" fg:x="1869" fg:w="3"/><text x="9.1922%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="8.9422%" y="741" width="0.0144%" height="15" fill="rgb(229,61,38)" fg:x="1869" fg:w="3"/><text x="9.1922%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="8.9422%" y="725" width="0.0144%" height="15" fill="rgb(225,210,5)" fg:x="1869" fg:w="3"/><text x="9.1922%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="8.9422%" y="709" width="0.0144%" height="15" fill="rgb(231,79,45)" fg:x="1869" fg:w="3"/><text x="9.1922%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.9565%" y="757" width="0.0144%" height="15" fill="rgb(224,100,7)" fg:x="1872" fg:w="3"/><text x="9.2065%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="8.9565%" y="741" width="0.0144%" height="15" fill="rgb(241,198,18)" fg:x="1872" fg:w="3"/><text x="9.2065%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="8.9565%" y="725" width="0.0144%" height="15" fill="rgb(252,97,53)" fg:x="1872" fg:w="3"/><text x="9.2065%" y="735.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::Fn&lt;A&gt; for &amp;F&gt;::call (3 samples, 0.01%)</title><rect x="8.9565%" y="709" width="0.0144%" height="15" fill="rgb(220,88,7)" fg:x="1872" fg:w="3"/><text x="9.2065%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="8.9326%" y="869" width="0.0431%" height="15" fill="rgb(213,176,14)" fg:x="1867" fg:w="9"/><text x="9.1826%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="8.9326%" y="853" width="0.0431%" height="15" fill="rgb(246,73,7)" fg:x="1867" fg:w="9"/><text x="9.1826%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="8.9326%" y="837" width="0.0431%" height="15" fill="rgb(245,64,36)" fg:x="1867" fg:w="9"/><text x="9.1826%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.9565%" y="821" width="0.0191%" height="15" fill="rgb(245,80,10)" fg:x="1872" fg:w="4"/><text x="9.2065%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.9565%" y="805" width="0.0191%" height="15" fill="rgb(232,107,50)" fg:x="1872" fg:w="4"/><text x="9.2065%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.9565%" y="789" width="0.0191%" height="15" fill="rgb(253,3,0)" fg:x="1872" fg:w="4"/><text x="9.2065%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.9565%" y="773" width="0.0191%" height="15" fill="rgb(212,99,53)" fg:x="1872" fg:w="4"/><text x="9.2065%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="8.9756%" y="805" width="0.0144%" height="15" fill="rgb(249,111,54)" fg:x="1876" fg:w="3"/><text x="9.2256%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="8.9756%" y="789" width="0.0144%" height="15" fill="rgb(249,55,30)" fg:x="1876" fg:w="3"/><text x="9.2256%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="8.9756%" y="773" width="0.0144%" height="15" fill="rgb(237,47,42)" fg:x="1876" fg:w="3"/><text x="9.2256%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.08%)</title><rect x="8.9326%" y="933" width="0.0766%" height="15" fill="rgb(211,20,18)" fg:x="1867" fg:w="16"/><text x="9.1826%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="8.9326%" y="917" width="0.0766%" height="15" fill="rgb(231,203,46)" fg:x="1867" fg:w="16"/><text x="9.1826%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="8.9326%" y="901" width="0.0766%" height="15" fill="rgb(237,142,3)" fg:x="1867" fg:w="16"/><text x="9.1826%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="8.9326%" y="885" width="0.0766%" height="15" fill="rgb(241,107,1)" fg:x="1867" fg:w="16"/><text x="9.1826%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="8.9756%" y="869" width="0.0335%" height="15" fill="rgb(229,83,13)" fg:x="1876" fg:w="7"/><text x="9.2256%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="8.9756%" y="853" width="0.0335%" height="15" fill="rgb(241,91,40)" fg:x="1876" fg:w="7"/><text x="9.2256%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="8.9756%" y="837" width="0.0335%" height="15" fill="rgb(225,3,45)" fg:x="1876" fg:w="7"/><text x="9.2256%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="8.9756%" y="821" width="0.0335%" height="15" fill="rgb(244,223,14)" fg:x="1876" fg:w="7"/><text x="9.2256%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="8.9900%" y="805" width="0.0191%" height="15" fill="rgb(224,124,37)" fg:x="1879" fg:w="4"/><text x="9.2400%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="8.9900%" y="789" width="0.0191%" height="15" fill="rgb(251,171,30)" fg:x="1879" fg:w="4"/><text x="9.2400%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="8.9900%" y="773" width="0.0191%" height="15" fill="rgb(236,46,54)" fg:x="1879" fg:w="4"/><text x="9.2400%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="8.9900%" y="757" width="0.0191%" height="15" fill="rgb(245,213,5)" fg:x="1879" fg:w="4"/><text x="9.2400%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="9.0091%" y="853" width="0.0287%" height="15" fill="rgb(230,144,27)" fg:x="1883" fg:w="6"/><text x="9.2591%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="9.0091%" y="837" width="0.0287%" height="15" fill="rgb(220,86,6)" fg:x="1883" fg:w="6"/><text x="9.2591%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="9.0091%" y="821" width="0.0287%" height="15" fill="rgb(240,20,13)" fg:x="1883" fg:w="6"/><text x="9.2591%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (79 samples, 0.38%)</title><rect x="8.6647%" y="981" width="0.3780%" height="15" fill="rgb(217,89,34)" fg:x="1811" fg:w="79"/><text x="8.9147%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (79 samples, 0.38%)</title><rect x="8.6647%" y="965" width="0.3780%" height="15" fill="rgb(229,13,5)" fg:x="1811" fg:w="79"/><text x="8.9147%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (79 samples, 0.38%)</title><rect x="8.6647%" y="949" width="0.3780%" height="15" fill="rgb(244,67,35)" fg:x="1811" fg:w="79"/><text x="8.9147%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="9.0091%" y="933" width="0.0335%" height="15" fill="rgb(221,40,2)" fg:x="1883" fg:w="7"/><text x="9.2591%" y="943.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="9.0091%" y="917" width="0.0335%" height="15" fill="rgb(237,157,21)" fg:x="1883" fg:w="7"/><text x="9.2591%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="9.0091%" y="901" width="0.0335%" height="15" fill="rgb(222,94,11)" fg:x="1883" fg:w="7"/><text x="9.2591%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="9.0091%" y="885" width="0.0335%" height="15" fill="rgb(249,113,6)" fg:x="1883" fg:w="7"/><text x="9.2591%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="9.0091%" y="869" width="0.0335%" height="15" fill="rgb(238,137,36)" fg:x="1883" fg:w="7"/><text x="9.2591%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0426%" y="869" width="0.0144%" height="15" fill="rgb(210,102,26)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.0426%" y="853" width="0.0144%" height="15" fill="rgb(218,30,30)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="9.0426%" y="837" width="0.0144%" height="15" fill="rgb(214,67,26)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.0426%" y="821" width="0.0144%" height="15" fill="rgb(251,9,53)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0426%" y="805" width="0.0144%" height="15" fill="rgb(228,204,25)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.0426%" y="789" width="0.0144%" height="15" fill="rgb(207,153,8)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="9.0426%" y="773" width="0.0144%" height="15" fill="rgb(242,9,16)" fg:x="1890" fg:w="3"/><text x="9.2926%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="9.0426%" y="917" width="0.0239%" height="15" fill="rgb(217,211,10)" fg:x="1890" fg:w="5"/><text x="9.2926%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="9.0426%" y="901" width="0.0239%" height="15" fill="rgb(219,228,52)" fg:x="1890" fg:w="5"/><text x="9.2926%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="9.0426%" y="885" width="0.0239%" height="15" fill="rgb(231,92,29)" fg:x="1890" fg:w="5"/><text x="9.2926%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="9.0426%" y="981" width="0.0431%" height="15" fill="rgb(232,8,23)" fg:x="1890" fg:w="9"/><text x="9.2926%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="9.0426%" y="965" width="0.0431%" height="15" fill="rgb(216,211,34)" fg:x="1890" fg:w="9"/><text x="9.2926%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="9.0426%" y="949" width="0.0431%" height="15" fill="rgb(236,151,0)" fg:x="1890" fg:w="9"/><text x="9.2926%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="9.0426%" y="933" width="0.0431%" height="15" fill="rgb(209,168,3)" fg:x="1890" fg:w="9"/><text x="9.2926%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="9.0666%" y="917" width="0.0191%" height="15" fill="rgb(208,129,28)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.0666%" y="901" width="0.0191%" height="15" fill="rgb(229,78,22)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.0666%" y="885" width="0.0191%" height="15" fill="rgb(228,187,13)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.0666%" y="869" width="0.0191%" height="15" fill="rgb(240,119,24)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="9.0666%" y="853" width="0.0191%" height="15" fill="rgb(209,194,42)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.0666%" y="837" width="0.0191%" height="15" fill="rgb(247,200,46)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.0666%" y="821" width="0.0191%" height="15" fill="rgb(218,76,16)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.0666%" y="805" width="0.0191%" height="15" fill="rgb(225,21,48)" fg:x="1895" fg:w="4"/><text x="9.3166%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0857%" y="853" width="0.0144%" height="15" fill="rgb(239,223,50)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.0857%" y="837" width="0.0144%" height="15" fill="rgb(244,45,21)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="9.0857%" y="821" width="0.0144%" height="15" fill="rgb(232,33,43)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="9.0857%" y="805" width="0.0144%" height="15" fill="rgb(209,8,3)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="9.0857%" y="789" width="0.0144%" height="15" fill="rgb(214,25,53)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="9.0857%" y="773" width="0.0144%" height="15" fill="rgb(254,186,54)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="9.0857%" y="757" width="0.0144%" height="15" fill="rgb(208,174,49)" fg:x="1899" fg:w="3"/><text x="9.3357%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="9.0857%" y="901" width="0.0191%" height="15" fill="rgb(233,191,51)" fg:x="1899" fg:w="4"/><text x="9.3357%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="9.0857%" y="885" width="0.0191%" height="15" fill="rgb(222,134,10)" fg:x="1899" fg:w="4"/><text x="9.3357%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="9.0857%" y="869" width="0.0191%" height="15" fill="rgb(230,226,20)" fg:x="1899" fg:w="4"/><text x="9.3357%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (94 samples, 0.45%)</title><rect x="8.6647%" y="997" width="0.4497%" height="15" fill="rgb(251,111,25)" fg:x="1811" fg:w="94"/><text x="8.9147%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="9.0857%" y="981" width="0.0287%" height="15" fill="rgb(224,40,46)" fg:x="1899" fg:w="6"/><text x="9.3357%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="9.0857%" y="965" width="0.0287%" height="15" fill="rgb(236,108,47)" fg:x="1899" fg:w="6"/><text x="9.3357%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="9.0857%" y="949" width="0.0287%" height="15" fill="rgb(234,93,0)" fg:x="1899" fg:w="6"/><text x="9.3357%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="9.0857%" y="933" width="0.0287%" height="15" fill="rgb(224,213,32)" fg:x="1899" fg:w="6"/><text x="9.3357%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h222ae7e8f7b99cc0E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="9.0857%" y="917" width="0.0287%" height="15" fill="rgb(251,11,48)" fg:x="1899" fg:w="6"/><text x="9.3357%" y="927.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="9.1240%" y="965" width="0.0144%" height="15" fill="rgb(236,173,5)" fg:x="1907" fg:w="3"/><text x="9.3740%" y="975.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="9.1240%" y="949" width="0.0144%" height="15" fill="rgb(230,95,12)" fg:x="1907" fg:w="3"/><text x="9.3740%" y="959.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="9.1240%" y="933" width="0.0144%" height="15" fill="rgb(232,209,1)" fg:x="1907" fg:w="3"/><text x="9.3740%" y="943.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="9.1240%" y="917" width="0.0144%" height="15" fill="rgb(232,6,1)" fg:x="1907" fg:w="3"/><text x="9.3740%" y="927.50"></text></g><g><title>[libc.so.6] (3 samples, 0.01%)</title><rect x="9.1383%" y="869" width="0.0144%" height="15" fill="rgb(210,224,50)" fg:x="1910" fg:w="3"/><text x="9.3883%" y="879.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.04%)</title><rect x="9.1383%" y="885" width="0.0383%" height="15" fill="rgb(228,127,35)" fg:x="1910" fg:w="8"/><text x="9.3883%" y="895.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="9.1527%" y="869" width="0.0239%" height="15" fill="rgb(245,102,45)" fg:x="1913" fg:w="5"/><text x="9.4027%" y="879.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="9.1527%" y="853" width="0.0239%" height="15" fill="rgb(214,1,49)" fg:x="1913" fg:w="5"/><text x="9.4027%" y="863.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="9.1383%" y="917" width="0.0431%" height="15" fill="rgb(226,163,40)" fg:x="1910" fg:w="9"/><text x="9.3883%" y="927.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="9.1383%" y="901" width="0.0431%" height="15" fill="rgb(239,212,28)" fg:x="1910" fg:w="9"/><text x="9.3883%" y="911.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (13 samples, 0.06%)</title><rect x="9.1814%" y="837" width="0.0622%" height="15" fill="rgb(220,20,13)" fg:x="1919" fg:w="13"/><text x="9.4314%" y="847.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.05%)</title><rect x="9.1909%" y="821" width="0.0526%" height="15" fill="rgb(210,164,35)" fg:x="1921" fg:w="11"/><text x="9.4409%" y="831.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="9.2149%" y="805" width="0.0287%" height="15" fill="rgb(248,109,41)" fg:x="1926" fg:w="6"/><text x="9.4649%" y="815.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (14 samples, 0.07%)</title><rect x="9.1814%" y="869" width="0.0670%" height="15" fill="rgb(238,23,50)" fg:x="1919" fg:w="14"/><text x="9.4314%" y="879.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (14 samples, 0.07%)</title><rect x="9.1814%" y="853" width="0.0670%" height="15" fill="rgb(211,48,49)" fg:x="1919" fg:w="14"/><text x="9.4314%" y="863.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (31 samples, 0.15%)</title><rect x="9.2484%" y="789" width="0.1483%" height="15" fill="rgb(223,36,21)" fg:x="1933" fg:w="31"/><text x="9.4984%" y="799.50"></text></g><g><title>rayon::slice::quicksort::recurse (30 samples, 0.14%)</title><rect x="9.2531%" y="773" width="0.1435%" height="15" fill="rgb(207,123,46)" fg:x="1934" fg:w="30"/><text x="9.5031%" y="783.50"></text></g><g><title>rayon::slice::quicksort::recurse (15 samples, 0.07%)</title><rect x="9.3249%" y="757" width="0.0718%" height="15" fill="rgb(240,218,32)" fg:x="1949" fg:w="15"/><text x="9.5749%" y="767.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (38 samples, 0.18%)</title><rect x="9.2484%" y="821" width="0.1818%" height="15" fill="rgb(252,5,43)" fg:x="1933" fg:w="38"/><text x="9.4984%" y="831.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (38 samples, 0.18%)</title><rect x="9.2484%" y="805" width="0.1818%" height="15" fill="rgb(252,84,19)" fg:x="1933" fg:w="38"/><text x="9.4984%" y="815.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (7 samples, 0.03%)</title><rect x="9.3967%" y="789" width="0.0335%" height="15" fill="rgb(243,152,39)" fg:x="1964" fg:w="7"/><text x="9.6467%" y="799.50"></text></g><g><title>oorandom::Rand64::rand_range (7 samples, 0.03%)</title><rect x="9.3967%" y="773" width="0.0335%" height="15" fill="rgb(234,160,15)" fg:x="1964" fg:w="7"/><text x="9.6467%" y="783.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (141 samples, 0.67%)</title><rect x="9.4397%" y="741" width="0.6746%" height="15" fill="rgb(237,34,20)" fg:x="1973" fg:w="141"/><text x="9.6897%" y="751.50"></text></g><g><title>rayon::slice::quicksort::recurse (132 samples, 0.63%)</title><rect x="9.4828%" y="725" width="0.6315%" height="15" fill="rgb(229,97,13)" fg:x="1982" fg:w="132"/><text x="9.7328%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (65 samples, 0.31%)</title><rect x="9.8034%" y="709" width="0.3110%" height="15" fill="rgb(234,71,50)" fg:x="2049" fg:w="65"/><text x="10.0534%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (16 samples, 0.08%)</title><rect x="10.0378%" y="693" width="0.0766%" height="15" fill="rgb(253,155,4)" fg:x="2098" fg:w="16"/><text x="10.2878%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (159 samples, 0.76%)</title><rect x="9.4350%" y="789" width="0.7607%" height="15" fill="rgb(222,185,37)" fg:x="1972" fg:w="159"/><text x="9.6850%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (159 samples, 0.76%)</title><rect x="9.4350%" y="773" width="0.7607%" height="15" fill="rgb(251,177,13)" fg:x="1972" fg:w="159"/><text x="9.6850%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (159 samples, 0.76%)</title><rect x="9.4350%" y="757" width="0.7607%" height="15" fill="rgb(250,179,40)" fg:x="1972" fg:w="159"/><text x="9.6850%" y="767.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (17 samples, 0.08%)</title><rect x="10.1143%" y="741" width="0.0813%" height="15" fill="rgb(242,44,2)" fg:x="2114" fg:w="17"/><text x="10.3643%" y="751.50"></text></g><g><title>oorandom::Rand64::rand_range (11 samples, 0.05%)</title><rect x="10.1431%" y="725" width="0.0526%" height="15" fill="rgb(216,177,13)" fg:x="2120" fg:w="11"/><text x="10.3931%" y="735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="10.1957%" y="517" width="0.0287%" height="15" fill="rgb(216,106,43)" fg:x="2131" fg:w="6"/><text x="10.4457%" y="527.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="10.1957%" y="501" width="0.0287%" height="15" fill="rgb(216,183,2)" fg:x="2131" fg:w="6"/><text x="10.4457%" y="511.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="10.2005%" y="485" width="0.0239%" height="15" fill="rgb(249,75,3)" fg:x="2132" fg:w="5"/><text x="10.4505%" y="495.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.04%)</title><rect x="10.1957%" y="549" width="0.0383%" height="15" fill="rgb(219,67,39)" fg:x="2131" fg:w="8"/><text x="10.4457%" y="559.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.04%)</title><rect x="10.1957%" y="533" width="0.0383%" height="15" fill="rgb(253,228,2)" fg:x="2131" fg:w="8"/><text x="10.4457%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (224 samples, 1.07%)</title><rect x="9.1814%" y="885" width="1.0717%" height="15" fill="rgb(235,138,27)" fg:x="1919" fg:w="224"/><text x="9.4314%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (210 samples, 1.00%)</title><rect x="9.2484%" y="869" width="1.0047%" height="15" fill="rgb(236,97,51)" fg:x="1933" fg:w="210"/><text x="9.4984%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (210 samples, 1.00%)</title><rect x="9.2484%" y="853" width="1.0047%" height="15" fill="rgb(240,80,30)" fg:x="1933" fg:w="210"/><text x="9.4984%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (210 samples, 1.00%)</title><rect x="9.2484%" y="837" width="1.0047%" height="15" fill="rgb(230,178,19)" fg:x="1933" fg:w="210"/><text x="9.4984%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (172 samples, 0.82%)</title><rect x="9.4302%" y="821" width="0.8229%" height="15" fill="rgb(210,190,27)" fg:x="1971" fg:w="172"/><text x="9.6802%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (172 samples, 0.82%)</title><rect x="9.4302%" y="805" width="0.8229%" height="15" fill="rgb(222,107,31)" fg:x="1971" fg:w="172"/><text x="9.6802%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.06%)</title><rect x="10.1957%" y="789" width="0.0574%" height="15" fill="rgb(216,127,34)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.06%)</title><rect x="10.1957%" y="773" width="0.0574%" height="15" fill="rgb(234,116,52)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="10.1957%" y="757" width="0.0574%" height="15" fill="rgb(222,124,15)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="10.1957%" y="741" width="0.0574%" height="15" fill="rgb(231,179,28)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (12 samples, 0.06%)</title><rect x="10.1957%" y="725" width="0.0574%" height="15" fill="rgb(226,93,45)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="10.1957%" y="709" width="0.0574%" height="15" fill="rgb(215,8,51)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="10.1957%" y="693" width="0.0574%" height="15" fill="rgb(223,106,5)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (12 samples, 0.06%)</title><rect x="10.1957%" y="677" width="0.0574%" height="15" fill="rgb(250,191,5)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="10.1957%" y="661" width="0.0574%" height="15" fill="rgb(242,132,44)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="10.1957%" y="645" width="0.0574%" height="15" fill="rgb(251,152,29)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (12 samples, 0.06%)</title><rect x="10.1957%" y="629" width="0.0574%" height="15" fill="rgb(218,179,5)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="10.1957%" y="613" width="0.0574%" height="15" fill="rgb(227,67,19)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="10.1957%" y="597" width="0.0574%" height="15" fill="rgb(233,119,31)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (12 samples, 0.06%)</title><rect x="10.1957%" y="581" width="0.0574%" height="15" fill="rgb(241,120,22)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="10.1957%" y="565" width="0.0574%" height="15" fill="rgb(224,102,30)" fg:x="2131" fg:w="12"/><text x="10.4457%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="10.2340%" y="549" width="0.0191%" height="15" fill="rgb(210,164,37)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (4 samples, 0.02%)</title><rect x="10.2340%" y="533" width="0.0191%" height="15" fill="rgb(226,191,16)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.2340%" y="517" width="0.0191%" height="15" fill="rgb(214,40,45)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="527.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="10.2340%" y="501" width="0.0191%" height="15" fill="rgb(244,29,26)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="511.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="10.2340%" y="485" width="0.0191%" height="15" fill="rgb(216,16,5)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="495.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="10.2340%" y="469" width="0.0191%" height="15" fill="rgb(249,76,35)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="479.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="10.2340%" y="453" width="0.0191%" height="15" fill="rgb(207,11,44)" fg:x="2139" fg:w="4"/><text x="10.4840%" y="463.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.2387%" y="437" width="0.0144%" height="15" fill="rgb(228,190,49)" fg:x="2140" fg:w="3"/><text x="10.4887%" y="447.50"></text></g><g><title>&lt;rayon::iter::reduce::ReduceConsumer&lt;R,ID&gt; as rayon::iter::plumbing::Reducer&lt;T&gt;&gt;::reduce (5 samples, 0.02%)</title><rect x="10.2531%" y="837" width="0.0239%" height="15" fill="rgb(214,173,12)" fg:x="2143" fg:w="5"/><text x="10.5031%" y="847.50"></text></g><g><title>cfree (5 samples, 0.02%)</title><rect x="10.2531%" y="821" width="0.0239%" height="15" fill="rgb(218,26,35)" fg:x="2143" fg:w="5"/><text x="10.5031%" y="831.50"></text></g><g><title>[libc.so.6] (5 samples, 0.02%)</title><rect x="10.2531%" y="805" width="0.0239%" height="15" fill="rgb(220,200,19)" fg:x="2143" fg:w="5"/><text x="10.5031%" y="815.50"></text></g><g><title>__lll_lock_wait_private (5 samples, 0.02%)</title><rect x="10.2531%" y="789" width="0.0239%" height="15" fill="rgb(239,95,49)" fg:x="2143" fg:w="5"/><text x="10.5031%" y="799.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.2866%" y="789" width="0.0144%" height="15" fill="rgb(235,85,53)" fg:x="2150" fg:w="3"/><text x="10.5366%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.2866%" y="773" width="0.0144%" height="15" fill="rgb(233,133,31)" fg:x="2150" fg:w="3"/><text x="10.5366%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.04%)</title><rect x="10.3009%" y="741" width="0.0383%" height="15" fill="rgb(218,25,20)" fg:x="2153" fg:w="8"/><text x="10.5509%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.04%)</title><rect x="10.3009%" y="725" width="0.0383%" height="15" fill="rgb(252,210,38)" fg:x="2153" fg:w="8"/><text x="10.5509%" y="735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.04%)</title><rect x="10.3009%" y="709" width="0.0383%" height="15" fill="rgb(242,134,21)" fg:x="2153" fg:w="8"/><text x="10.5509%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="10.3057%" y="693" width="0.0335%" height="15" fill="rgb(213,28,48)" fg:x="2154" fg:w="7"/><text x="10.5557%" y="703.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="10.3392%" y="661" width="0.0287%" height="15" fill="rgb(250,196,2)" fg:x="2161" fg:w="6"/><text x="10.5892%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="10.3392%" y="645" width="0.0287%" height="15" fill="rgb(227,5,17)" fg:x="2161" fg:w="6"/><text x="10.5892%" y="655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (7 samples, 0.03%)</title><rect x="10.3392%" y="693" width="0.0335%" height="15" fill="rgb(221,226,24)" fg:x="2161" fg:w="7"/><text x="10.5892%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (7 samples, 0.03%)</title><rect x="10.3392%" y="677" width="0.0335%" height="15" fill="rgb(211,5,48)" fg:x="2161" fg:w="7"/><text x="10.5892%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="10.3727%" y="661" width="0.0287%" height="15" fill="rgb(219,150,6)" fg:x="2168" fg:w="6"/><text x="10.6227%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="10.3727%" y="645" width="0.0287%" height="15" fill="rgb(251,46,16)" fg:x="2168" fg:w="6"/><text x="10.6227%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.03%)</title><rect x="10.3727%" y="629" width="0.0287%" height="15" fill="rgb(220,204,40)" fg:x="2168" fg:w="6"/><text x="10.6227%" y="639.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (6 samples, 0.03%)</title><rect x="10.3727%" y="613" width="0.0287%" height="15" fill="rgb(211,85,2)" fg:x="2168" fg:w="6"/><text x="10.6227%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="10.3775%" y="597" width="0.0239%" height="15" fill="rgb(229,17,7)" fg:x="2169" fg:w="5"/><text x="10.6275%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="10.3775%" y="581" width="0.0239%" height="15" fill="rgb(239,72,28)" fg:x="2169" fg:w="5"/><text x="10.6275%" y="591.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="10.4014%" y="485" width="0.0144%" height="15" fill="rgb(230,47,54)" fg:x="2174" fg:w="3"/><text x="10.6514%" y="495.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.4014%" y="469" width="0.0144%" height="15" fill="rgb(214,50,8)" fg:x="2174" fg:w="3"/><text x="10.6514%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.4014%" y="533" width="0.0239%" height="15" fill="rgb(216,198,43)" fg:x="2174" fg:w="5"/><text x="10.6514%" y="543.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="10.4014%" y="517" width="0.0239%" height="15" fill="rgb(234,20,35)" fg:x="2174" fg:w="5"/><text x="10.6514%" y="527.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="10.4014%" y="501" width="0.0239%" height="15" fill="rgb(254,45,19)" fg:x="2174" fg:w="5"/><text x="10.6514%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.15%)</title><rect x="10.2866%" y="805" width="0.1531%" height="15" fill="rgb(219,14,44)" fg:x="2150" fg:w="32"/><text x="10.5366%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="10.3009%" y="789" width="0.1387%" height="15" fill="rgb(217,220,26)" fg:x="2153" fg:w="29"/><text x="10.5509%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (29 samples, 0.14%)</title><rect x="10.3009%" y="773" width="0.1387%" height="15" fill="rgb(213,158,28)" fg:x="2153" fg:w="29"/><text x="10.5509%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="10.3009%" y="757" width="0.1387%" height="15" fill="rgb(252,51,52)" fg:x="2153" fg:w="29"/><text x="10.5509%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="10.3392%" y="741" width="0.1005%" height="15" fill="rgb(246,89,16)" fg:x="2161" fg:w="21"/><text x="10.5892%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (21 samples, 0.10%)</title><rect x="10.3392%" y="725" width="0.1005%" height="15" fill="rgb(216,158,49)" fg:x="2161" fg:w="21"/><text x="10.5892%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="10.3392%" y="709" width="0.1005%" height="15" fill="rgb(236,107,19)" fg:x="2161" fg:w="21"/><text x="10.5892%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="10.3727%" y="693" width="0.0670%" height="15" fill="rgb(228,185,30)" fg:x="2168" fg:w="14"/><text x="10.6227%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (14 samples, 0.07%)</title><rect x="10.3727%" y="677" width="0.0670%" height="15" fill="rgb(246,134,8)" fg:x="2168" fg:w="14"/><text x="10.6227%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="10.4014%" y="661" width="0.0383%" height="15" fill="rgb(214,143,50)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="10.4014%" y="645" width="0.0383%" height="15" fill="rgb(228,75,8)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="10.4014%" y="629" width="0.0383%" height="15" fill="rgb(207,175,4)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="10.4014%" y="613" width="0.0383%" height="15" fill="rgb(205,108,24)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (8 samples, 0.04%)</title><rect x="10.4014%" y="597" width="0.0383%" height="15" fill="rgb(244,120,49)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="10.4014%" y="581" width="0.0383%" height="15" fill="rgb(223,47,38)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="10.4014%" y="565" width="0.0383%" height="15" fill="rgb(229,179,11)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (8 samples, 0.04%)</title><rect x="10.4014%" y="549" width="0.0383%" height="15" fill="rgb(231,122,1)" fg:x="2174" fg:w="8"/><text x="10.6514%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="10.4253%" y="533" width="0.0144%" height="15" fill="rgb(245,119,9)" fg:x="2179" fg:w="3"/><text x="10.6753%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="10.4253%" y="517" width="0.0144%" height="15" fill="rgb(241,163,25)" fg:x="2179" fg:w="3"/><text x="10.6753%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.4253%" y="501" width="0.0144%" height="15" fill="rgb(217,214,3)" fg:x="2179" fg:w="3"/><text x="10.6753%" y="511.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (9 samples, 0.04%)</title><rect x="10.4445%" y="581" width="0.0431%" height="15" fill="rgb(240,86,28)" fg:x="2183" fg:w="9"/><text x="10.6945%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="10.4445%" y="565" width="0.0431%" height="15" fill="rgb(215,47,9)" fg:x="2183" fg:w="9"/><text x="10.6945%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (12 samples, 0.06%)</title><rect x="10.4445%" y="613" width="0.0574%" height="15" fill="rgb(252,25,45)" fg:x="2183" fg:w="12"/><text x="10.6945%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (12 samples, 0.06%)</title><rect x="10.4445%" y="597" width="0.0574%" height="15" fill="rgb(251,164,9)" fg:x="2183" fg:w="12"/><text x="10.6945%" y="607.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="10.4875%" y="581" width="0.0144%" height="15" fill="rgb(233,194,0)" fg:x="2192" fg:w="3"/><text x="10.7375%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (290 samples, 1.39%)</title><rect x="9.1383%" y="933" width="1.3875%" height="15" fill="rgb(249,111,24)" fg:x="1910" fg:w="290"/><text x="9.3883%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (281 samples, 1.34%)</title><rect x="9.1814%" y="917" width="1.3444%" height="15" fill="rgb(250,223,3)" fg:x="1919" fg:w="281"/><text x="9.4314%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (281 samples, 1.34%)</title><rect x="9.1814%" y="901" width="1.3444%" height="15" fill="rgb(236,178,37)" fg:x="1919" fg:w="281"/><text x="9.4314%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (57 samples, 0.27%)</title><rect x="10.2531%" y="885" width="0.2727%" height="15" fill="rgb(241,158,50)" fg:x="2143" fg:w="57"/><text x="10.5031%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (57 samples, 0.27%)</title><rect x="10.2531%" y="869" width="0.2727%" height="15" fill="rgb(213,121,41)" fg:x="2143" fg:w="57"/><text x="10.5031%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.27%)</title><rect x="10.2531%" y="853" width="0.2727%" height="15" fill="rgb(240,92,3)" fg:x="2143" fg:w="57"/><text x="10.5031%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (50 samples, 0.24%)</title><rect x="10.2866%" y="837" width="0.2392%" height="15" fill="rgb(205,123,3)" fg:x="2150" fg:w="50"/><text x="10.5366%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (50 samples, 0.24%)</title><rect x="10.2866%" y="821" width="0.2392%" height="15" fill="rgb(205,97,47)" fg:x="2150" fg:w="50"/><text x="10.5366%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.09%)</title><rect x="10.4397%" y="805" width="0.0861%" height="15" fill="rgb(247,152,14)" fg:x="2182" fg:w="18"/><text x="10.6897%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.09%)</title><rect x="10.4397%" y="789" width="0.0861%" height="15" fill="rgb(248,195,53)" fg:x="2182" fg:w="18"/><text x="10.6897%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="10.4397%" y="773" width="0.0861%" height="15" fill="rgb(226,201,16)" fg:x="2182" fg:w="18"/><text x="10.6897%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="10.4445%" y="757" width="0.0813%" height="15" fill="rgb(205,98,0)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (17 samples, 0.08%)</title><rect x="10.4445%" y="741" width="0.0813%" height="15" fill="rgb(214,191,48)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="10.4445%" y="725" width="0.0813%" height="15" fill="rgb(237,112,39)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="10.4445%" y="709" width="0.0813%" height="15" fill="rgb(247,203,27)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (17 samples, 0.08%)</title><rect x="10.4445%" y="693" width="0.0813%" height="15" fill="rgb(235,124,28)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="10.4445%" y="677" width="0.0813%" height="15" fill="rgb(208,207,46)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="10.4445%" y="661" width="0.0813%" height="15" fill="rgb(234,176,4)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (17 samples, 0.08%)</title><rect x="10.4445%" y="645" width="0.0813%" height="15" fill="rgb(230,133,28)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="10.4445%" y="629" width="0.0813%" height="15" fill="rgb(211,137,40)" fg:x="2183" fg:w="17"/><text x="10.6945%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="10.5019%" y="613" width="0.0239%" height="15" fill="rgb(254,35,13)" fg:x="2195" fg:w="5"/><text x="10.7519%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (5 samples, 0.02%)</title><rect x="10.5019%" y="597" width="0.0239%" height="15" fill="rgb(225,49,51)" fg:x="2195" fg:w="5"/><text x="10.7519%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.5019%" y="581" width="0.0239%" height="15" fill="rgb(251,10,15)" fg:x="2195" fg:w="5"/><text x="10.7519%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="10.5019%" y="565" width="0.0239%" height="15" fill="rgb(228,207,15)" fg:x="2195" fg:w="5"/><text x="10.7519%" y="575.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="10.5019%" y="549" width="0.0239%" height="15" fill="rgb(241,99,19)" fg:x="2195" fg:w="5"/><text x="10.7519%" y="559.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.5258%" y="885" width="0.0144%" height="15" fill="rgb(207,104,49)" fg:x="2200" fg:w="3"/><text x="10.7758%" y="895.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.5258%" y="869" width="0.0144%" height="15" fill="rgb(234,99,18)" fg:x="2200" fg:w="3"/><text x="10.7758%" y="879.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="10.5258%" y="853" width="0.0144%" height="15" fill="rgb(213,191,49)" fg:x="2200" fg:w="3"/><text x="10.7758%" y="863.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.5258%" y="837" width="0.0144%" height="15" fill="rgb(210,226,19)" fg:x="2200" fg:w="3"/><text x="10.7758%" y="847.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.5258%" y="821" width="0.0144%" height="15" fill="rgb(229,97,18)" fg:x="2200" fg:w="3"/><text x="10.7758%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="10.5497%" y="789" width="0.0239%" height="15" fill="rgb(211,167,15)" fg:x="2205" fg:w="5"/><text x="10.7997%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="10.5497%" y="773" width="0.0239%" height="15" fill="rgb(210,169,34)" fg:x="2205" fg:w="5"/><text x="10.7997%" y="783.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="10.5497%" y="757" width="0.0239%" height="15" fill="rgb(241,121,31)" fg:x="2205" fg:w="5"/><text x="10.7997%" y="767.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="10.5545%" y="741" width="0.0191%" height="15" fill="rgb(232,40,11)" fg:x="2206" fg:w="4"/><text x="10.8045%" y="751.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="10.5832%" y="661" width="0.0335%" height="15" fill="rgb(205,86,26)" fg:x="2212" fg:w="7"/><text x="10.8332%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="10.5928%" y="645" width="0.0239%" height="15" fill="rgb(231,126,28)" fg:x="2214" fg:w="5"/><text x="10.8428%" y="655.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="10.5832%" y="693" width="0.0431%" height="15" fill="rgb(219,221,18)" fg:x="2212" fg:w="9"/><text x="10.8332%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="10.5832%" y="677" width="0.0431%" height="15" fill="rgb(211,40,0)" fg:x="2212" fg:w="9"/><text x="10.8332%" y="687.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="10.6263%" y="613" width="0.0144%" height="15" fill="rgb(239,85,43)" fg:x="2221" fg:w="3"/><text x="10.8763%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.6263%" y="597" width="0.0144%" height="15" fill="rgb(231,55,21)" fg:x="2221" fg:w="3"/><text x="10.8763%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="10.5402%" y="853" width="0.1148%" height="15" fill="rgb(225,184,43)" fg:x="2203" fg:w="24"/><text x="10.7902%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.11%)</title><rect x="10.5497%" y="837" width="0.1053%" height="15" fill="rgb(251,158,41)" fg:x="2205" fg:w="22"/><text x="10.7997%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (22 samples, 0.11%)</title><rect x="10.5497%" y="821" width="0.1053%" height="15" fill="rgb(234,159,37)" fg:x="2205" fg:w="22"/><text x="10.7997%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="10.5497%" y="805" width="0.1053%" height="15" fill="rgb(216,204,22)" fg:x="2205" fg:w="22"/><text x="10.7997%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="10.5737%" y="789" width="0.0813%" height="15" fill="rgb(214,17,3)" fg:x="2210" fg:w="17"/><text x="10.8237%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (17 samples, 0.08%)</title><rect x="10.5737%" y="773" width="0.0813%" height="15" fill="rgb(212,111,17)" fg:x="2210" fg:w="17"/><text x="10.8237%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="10.5737%" y="757" width="0.0813%" height="15" fill="rgb(221,157,24)" fg:x="2210" fg:w="17"/><text x="10.8237%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="10.5832%" y="741" width="0.0718%" height="15" fill="rgb(252,16,13)" fg:x="2212" fg:w="15"/><text x="10.8332%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="10.5832%" y="725" width="0.0718%" height="15" fill="rgb(221,62,2)" fg:x="2212" fg:w="15"/><text x="10.8332%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="10.5832%" y="709" width="0.0718%" height="15" fill="rgb(247,87,22)" fg:x="2212" fg:w="15"/><text x="10.8332%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="10.6263%" y="693" width="0.0287%" height="15" fill="rgb(215,73,9)" fg:x="2221" fg:w="6"/><text x="10.8763%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (6 samples, 0.03%)</title><rect x="10.6263%" y="677" width="0.0287%" height="15" fill="rgb(207,175,33)" fg:x="2221" fg:w="6"/><text x="10.8763%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="10.6263%" y="661" width="0.0287%" height="15" fill="rgb(243,129,54)" fg:x="2221" fg:w="6"/><text x="10.8763%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="10.6263%" y="645" width="0.0287%" height="15" fill="rgb(227,119,45)" fg:x="2221" fg:w="6"/><text x="10.8763%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.03%)</title><rect x="10.6263%" y="629" width="0.0287%" height="15" fill="rgb(205,109,36)" fg:x="2221" fg:w="6"/><text x="10.8763%" y="639.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="10.6406%" y="613" width="0.0144%" height="15" fill="rgb(205,6,39)" fg:x="2224" fg:w="3"/><text x="10.8906%" y="623.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="10.6406%" y="597" width="0.0144%" height="15" fill="rgb(221,32,16)" fg:x="2224" fg:w="3"/><text x="10.8906%" y="607.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="10.6598%" y="677" width="0.0335%" height="15" fill="rgb(228,144,50)" fg:x="2228" fg:w="7"/><text x="10.9098%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="10.6598%" y="661" width="0.0335%" height="15" fill="rgb(229,201,53)" fg:x="2228" fg:w="7"/><text x="10.9098%" y="671.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="10.6598%" y="709" width="0.0431%" height="15" fill="rgb(249,153,27)" fg:x="2228" fg:w="9"/><text x="10.9098%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="10.6598%" y="693" width="0.0431%" height="15" fill="rgb(227,106,25)" fg:x="2228" fg:w="9"/><text x="10.9098%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="10.7028%" y="677" width="0.0191%" height="15" fill="rgb(230,65,29)" fg:x="2237" fg:w="4"/><text x="10.9528%" y="687.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (4 samples, 0.02%)</title><rect x="10.7028%" y="661" width="0.0191%" height="15" fill="rgb(221,57,46)" fg:x="2237" fg:w="4"/><text x="10.9528%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (4 samples, 0.02%)</title><rect x="10.7028%" y="645" width="0.0191%" height="15" fill="rgb(229,161,17)" fg:x="2237" fg:w="4"/><text x="10.9528%" y="655.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="10.7028%" y="629" width="0.0191%" height="15" fill="rgb(222,213,11)" fg:x="2237" fg:w="4"/><text x="10.9528%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="10.7028%" y="613" width="0.0191%" height="15" fill="rgb(235,35,13)" fg:x="2237" fg:w="4"/><text x="10.9528%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (338 samples, 1.62%)</title><rect x="9.1144%" y="981" width="1.6171%" height="15" fill="rgb(233,158,34)" fg:x="1905" fg:w="338"/><text x="9.3644%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (333 samples, 1.59%)</title><rect x="9.1383%" y="965" width="1.5932%" height="15" fill="rgb(215,151,48)" fg:x="1910" fg:w="333"/><text x="9.3883%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (333 samples, 1.59%)</title><rect x="9.1383%" y="949" width="1.5932%" height="15" fill="rgb(229,84,14)" fg:x="1910" fg:w="333"/><text x="9.3883%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43 samples, 0.21%)</title><rect x="10.5258%" y="933" width="0.2057%" height="15" fill="rgb(229,68,14)" fg:x="2200" fg:w="43"/><text x="10.7758%" y="943.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43 samples, 0.21%)</title><rect x="10.5258%" y="917" width="0.2057%" height="15" fill="rgb(243,106,26)" fg:x="2200" fg:w="43"/><text x="10.7758%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.21%)</title><rect x="10.5258%" y="901" width="0.2057%" height="15" fill="rgb(206,45,38)" fg:x="2200" fg:w="43"/><text x="10.7758%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.19%)</title><rect x="10.5402%" y="885" width="0.1914%" height="15" fill="rgb(226,6,15)" fg:x="2203" fg:w="40"/><text x="10.7902%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (40 samples, 0.19%)</title><rect x="10.5402%" y="869" width="0.1914%" height="15" fill="rgb(232,22,54)" fg:x="2203" fg:w="40"/><text x="10.7902%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (16 samples, 0.08%)</title><rect x="10.6550%" y="853" width="0.0766%" height="15" fill="rgb(229,222,32)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (16 samples, 0.08%)</title><rect x="10.6550%" y="837" width="0.0766%" height="15" fill="rgb(228,62,29)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="10.6550%" y="821" width="0.0766%" height="15" fill="rgb(251,103,34)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="10.6550%" y="805" width="0.0766%" height="15" fill="rgb(233,12,30)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (16 samples, 0.08%)</title><rect x="10.6550%" y="789" width="0.0766%" height="15" fill="rgb(238,52,0)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="10.6550%" y="773" width="0.0766%" height="15" fill="rgb(223,98,5)" fg:x="2227" fg:w="16"/><text x="10.9050%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="10.6598%" y="757" width="0.0718%" height="15" fill="rgb(228,75,37)" fg:x="2228" fg:w="15"/><text x="10.9098%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="10.6598%" y="741" width="0.0718%" height="15" fill="rgb(205,115,49)" fg:x="2228" fg:w="15"/><text x="10.9098%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="10.6598%" y="725" width="0.0718%" height="15" fill="rgb(250,154,43)" fg:x="2228" fg:w="15"/><text x="10.9098%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="10.7028%" y="709" width="0.0287%" height="15" fill="rgb(226,43,29)" fg:x="2237" fg:w="6"/><text x="10.9528%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (6 samples, 0.03%)</title><rect x="10.7028%" y="693" width="0.0287%" height="15" fill="rgb(249,228,39)" fg:x="2237" fg:w="6"/><text x="10.9528%" y="703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="10.7363%" y="837" width="0.0239%" height="15" fill="rgb(216,79,43)" fg:x="2244" fg:w="5"/><text x="10.9863%" y="847.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="10.7363%" y="821" width="0.0239%" height="15" fill="rgb(228,95,12)" fg:x="2244" fg:w="5"/><text x="10.9863%" y="831.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="10.7363%" y="805" width="0.0239%" height="15" fill="rgb(249,221,15)" fg:x="2244" fg:w="5"/><text x="10.9863%" y="815.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="10.7363%" y="789" width="0.0239%" height="15" fill="rgb(233,34,13)" fg:x="2244" fg:w="5"/><text x="10.9863%" y="799.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="10.7411%" y="773" width="0.0191%" height="15" fill="rgb(214,103,39)" fg:x="2245" fg:w="4"/><text x="10.9911%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.7603%" y="789" width="0.0144%" height="15" fill="rgb(251,126,39)" fg:x="2249" fg:w="3"/><text x="11.0103%" y="799.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.7603%" y="773" width="0.0144%" height="15" fill="rgb(214,216,36)" fg:x="2249" fg:w="3"/><text x="11.0103%" y="783.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="10.7603%" y="757" width="0.0144%" height="15" fill="rgb(220,221,8)" fg:x="2249" fg:w="3"/><text x="11.0103%" y="767.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.7603%" y="741" width="0.0144%" height="15" fill="rgb(240,216,3)" fg:x="2249" fg:w="3"/><text x="11.0103%" y="751.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (7 samples, 0.03%)</title><rect x="10.7746%" y="709" width="0.0335%" height="15" fill="rgb(232,218,17)" fg:x="2252" fg:w="7"/><text x="11.0246%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="10.7746%" y="693" width="0.0335%" height="15" fill="rgb(229,163,45)" fg:x="2252" fg:w="7"/><text x="11.0246%" y="703.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (8 samples, 0.04%)</title><rect x="10.7746%" y="741" width="0.0383%" height="15" fill="rgb(231,110,42)" fg:x="2252" fg:w="8"/><text x="11.0246%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (8 samples, 0.04%)</title><rect x="10.7746%" y="725" width="0.0383%" height="15" fill="rgb(208,170,48)" fg:x="2252" fg:w="8"/><text x="11.0246%" y="735.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (5 samples, 0.02%)</title><rect x="10.8129%" y="661" width="0.0239%" height="15" fill="rgb(239,116,25)" fg:x="2260" fg:w="5"/><text x="11.0629%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="10.8177%" y="645" width="0.0191%" height="15" fill="rgb(219,200,50)" fg:x="2261" fg:w="4"/><text x="11.0677%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.8224%" y="629" width="0.0144%" height="15" fill="rgb(245,200,0)" fg:x="2262" fg:w="3"/><text x="11.0724%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="10.8129%" y="709" width="0.0287%" height="15" fill="rgb(245,119,33)" fg:x="2260" fg:w="6"/><text x="11.0629%" y="719.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (6 samples, 0.03%)</title><rect x="10.8129%" y="693" width="0.0287%" height="15" fill="rgb(231,125,12)" fg:x="2260" fg:w="6"/><text x="11.0629%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (6 samples, 0.03%)</title><rect x="10.8129%" y="677" width="0.0287%" height="15" fill="rgb(216,96,41)" fg:x="2260" fg:w="6"/><text x="11.0629%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="10.7363%" y="853" width="0.1100%" height="15" fill="rgb(248,43,45)" fg:x="2244" fg:w="23"/><text x="10.9863%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="10.7603%" y="837" width="0.0861%" height="15" fill="rgb(217,222,7)" fg:x="2249" fg:w="18"/><text x="11.0103%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (18 samples, 0.09%)</title><rect x="10.7603%" y="821" width="0.0861%" height="15" fill="rgb(233,28,6)" fg:x="2249" fg:w="18"/><text x="11.0103%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="10.7603%" y="805" width="0.0861%" height="15" fill="rgb(231,218,15)" fg:x="2249" fg:w="18"/><text x="11.0103%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="10.7746%" y="789" width="0.0718%" height="15" fill="rgb(226,171,48)" fg:x="2252" fg:w="15"/><text x="11.0246%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="10.7746%" y="773" width="0.0718%" height="15" fill="rgb(235,201,9)" fg:x="2252" fg:w="15"/><text x="11.0246%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="10.7746%" y="757" width="0.0718%" height="15" fill="rgb(217,80,15)" fg:x="2252" fg:w="15"/><text x="11.0246%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="10.8129%" y="741" width="0.0335%" height="15" fill="rgb(219,152,8)" fg:x="2260" fg:w="7"/><text x="11.0629%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (7 samples, 0.03%)</title><rect x="10.8129%" y="725" width="0.0335%" height="15" fill="rgb(243,107,38)" fg:x="2260" fg:w="7"/><text x="11.0629%" y="735.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.8464%" y="805" width="0.0144%" height="15" fill="rgb(231,17,5)" fg:x="2267" fg:w="3"/><text x="11.0964%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.8464%" y="789" width="0.0144%" height="15" fill="rgb(209,25,54)" fg:x="2267" fg:w="3"/><text x="11.0964%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="10.7315%" y="901" width="0.1387%" height="15" fill="rgb(219,0,2)" fg:x="2243" fg:w="29"/><text x="10.9815%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="10.7363%" y="885" width="0.1340%" height="15" fill="rgb(246,9,5)" fg:x="2244" fg:w="28"/><text x="10.9863%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (28 samples, 0.13%)</title><rect x="10.7363%" y="869" width="0.1340%" height="15" fill="rgb(226,159,4)" fg:x="2244" fg:w="28"/><text x="10.9863%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="10.8464%" y="853" width="0.0239%" height="15" fill="rgb(219,175,34)" fg:x="2267" fg:w="5"/><text x="11.0964%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="10.8464%" y="837" width="0.0239%" height="15" fill="rgb(236,10,46)" fg:x="2267" fg:w="5"/><text x="11.0964%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="10.8464%" y="821" width="0.0239%" height="15" fill="rgb(240,211,16)" fg:x="2267" fg:w="5"/><text x="11.0964%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.8703%" y="853" width="0.0144%" height="15" fill="rgb(205,3,43)" fg:x="2272" fg:w="3"/><text x="11.1203%" y="863.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.8703%" y="837" width="0.0144%" height="15" fill="rgb(245,7,22)" fg:x="2272" fg:w="3"/><text x="11.1203%" y="847.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="10.8703%" y="821" width="0.0144%" height="15" fill="rgb(239,132,32)" fg:x="2272" fg:w="3"/><text x="11.1203%" y="831.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="10.8703%" y="805" width="0.0144%" height="15" fill="rgb(228,202,34)" fg:x="2272" fg:w="3"/><text x="11.1203%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (373 samples, 1.78%)</title><rect x="9.1144%" y="997" width="1.7846%" height="15" fill="rgb(254,200,22)" fg:x="1905" fg:w="373"/><text x="9.3644%" y="1007.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.17%)</title><rect x="10.7315%" y="981" width="0.1675%" height="15" fill="rgb(219,10,39)" fg:x="2243" fg:w="35"/><text x="10.9815%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35 samples, 0.17%)</title><rect x="10.7315%" y="965" width="0.1675%" height="15" fill="rgb(226,210,39)" fg:x="2243" fg:w="35"/><text x="10.9815%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.17%)</title><rect x="10.7315%" y="949" width="0.1675%" height="15" fill="rgb(208,219,16)" fg:x="2243" fg:w="35"/><text x="10.9815%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.17%)</title><rect x="10.7315%" y="933" width="0.1675%" height="15" fill="rgb(216,158,51)" fg:x="2243" fg:w="35"/><text x="10.9815%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (35 samples, 0.17%)</title><rect x="10.7315%" y="917" width="0.1675%" height="15" fill="rgb(233,14,44)" fg:x="2243" fg:w="35"/><text x="10.9815%" y="927.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="10.8703%" y="901" width="0.0287%" height="15" fill="rgb(237,97,39)" fg:x="2272" fg:w="6"/><text x="11.1203%" y="911.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="10.8703%" y="885" width="0.0287%" height="15" fill="rgb(218,198,43)" fg:x="2272" fg:w="6"/><text x="11.1203%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="10.8703%" y="869" width="0.0287%" height="15" fill="rgb(231,104,20)" fg:x="2272" fg:w="6"/><text x="11.1203%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="10.8846%" y="853" width="0.0144%" height="15" fill="rgb(254,36,13)" fg:x="2275" fg:w="3"/><text x="11.1346%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (3 samples, 0.01%)</title><rect x="10.8846%" y="837" width="0.0144%" height="15" fill="rgb(248,14,50)" fg:x="2275" fg:w="3"/><text x="11.1346%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="10.8846%" y="821" width="0.0144%" height="15" fill="rgb(217,107,29)" fg:x="2275" fg:w="3"/><text x="11.1346%" y="831.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="10.8846%" y="805" width="0.0144%" height="15" fill="rgb(251,169,33)" fg:x="2275" fg:w="3"/><text x="11.1346%" y="815.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="10.8846%" y="789" width="0.0144%" height="15" fill="rgb(217,108,32)" fg:x="2275" fg:w="3"/><text x="11.1346%" y="799.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (36 samples, 0.17%)</title><rect x="10.9038%" y="741" width="0.1722%" height="15" fill="rgb(219,66,42)" fg:x="2279" fg:w="36"/><text x="11.1538%" y="751.50"></text></g><g><title>rayon::slice::quicksort::recurse (34 samples, 0.16%)</title><rect x="10.9134%" y="725" width="0.1627%" height="15" fill="rgb(206,180,7)" fg:x="2281" fg:w="34"/><text x="11.1634%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (20 samples, 0.10%)</title><rect x="10.9803%" y="709" width="0.0957%" height="15" fill="rgb(208,226,31)" fg:x="2295" fg:w="20"/><text x="11.2303%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="11.0425%" y="693" width="0.0335%" height="15" fill="rgb(218,26,49)" fg:x="2308" fg:w="7"/><text x="11.2925%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.20%)</title><rect x="10.8990%" y="789" width="0.1962%" height="15" fill="rgb(233,197,48)" fg:x="2278" fg:w="41"/><text x="11.1490%" y="799.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (40 samples, 0.19%)</title><rect x="10.9038%" y="773" width="0.1914%" height="15" fill="rgb(252,181,51)" fg:x="2279" fg:w="40"/><text x="11.1538%" y="783.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (40 samples, 0.19%)</title><rect x="10.9038%" y="757" width="0.1914%" height="15" fill="rgb(253,90,19)" fg:x="2279" fg:w="40"/><text x="11.1538%" y="767.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="11.0760%" y="741" width="0.0191%" height="15" fill="rgb(215,171,30)" fg:x="2315" fg:w="4"/><text x="11.3260%" y="751.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="11.0808%" y="725" width="0.0144%" height="15" fill="rgb(214,222,9)" fg:x="2316" fg:w="3"/><text x="11.3308%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="11.0952%" y="725" width="0.1148%" height="15" fill="rgb(223,3,22)" fg:x="2319" fg:w="24"/><text x="11.3452%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (24 samples, 0.11%)</title><rect x="11.0952%" y="709" width="0.1148%" height="15" fill="rgb(225,196,46)" fg:x="2319" fg:w="24"/><text x="11.3452%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.05%)</title><rect x="11.1574%" y="693" width="0.0526%" height="15" fill="rgb(209,110,37)" fg:x="2332" fg:w="11"/><text x="11.4074%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.33%)</title><rect x="10.8990%" y="837" width="0.3349%" height="15" fill="rgb(249,89,12)" fg:x="2278" fg:w="70"/><text x="11.1490%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (70 samples, 0.33%)</title><rect x="10.8990%" y="821" width="0.3349%" height="15" fill="rgb(226,27,33)" fg:x="2278" fg:w="70"/><text x="11.1490%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (70 samples, 0.33%)</title><rect x="10.8990%" y="805" width="0.3349%" height="15" fill="rgb(213,82,22)" fg:x="2278" fg:w="70"/><text x="11.1490%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.14%)</title><rect x="11.0952%" y="789" width="0.1387%" height="15" fill="rgb(248,140,0)" fg:x="2319" fg:w="29"/><text x="11.3452%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="11.0952%" y="773" width="0.1387%" height="15" fill="rgb(228,106,3)" fg:x="2319" fg:w="29"/><text x="11.3452%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (29 samples, 0.14%)</title><rect x="11.0952%" y="757" width="0.1387%" height="15" fill="rgb(209,23,37)" fg:x="2319" fg:w="29"/><text x="11.3452%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (29 samples, 0.14%)</title><rect x="11.0952%" y="741" width="0.1387%" height="15" fill="rgb(241,93,50)" fg:x="2319" fg:w="29"/><text x="11.3452%" y="751.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (5 samples, 0.02%)</title><rect x="11.2100%" y="725" width="0.0239%" height="15" fill="rgb(253,46,43)" fg:x="2343" fg:w="5"/><text x="11.4600%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="11.2339%" y="725" width="0.1005%" height="15" fill="rgb(226,206,43)" fg:x="2348" fg:w="21"/><text x="11.4839%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (18 samples, 0.09%)</title><rect x="11.2483%" y="709" width="0.0861%" height="15" fill="rgb(217,54,7)" fg:x="2351" fg:w="18"/><text x="11.4983%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.05%)</title><rect x="11.2818%" y="693" width="0.0526%" height="15" fill="rgb(223,5,52)" fg:x="2358" fg:w="11"/><text x="11.5318%" y="703.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (25 samples, 0.12%)</title><rect x="11.2339%" y="757" width="0.1196%" height="15" fill="rgb(206,52,46)" fg:x="2348" fg:w="25"/><text x="11.4839%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (25 samples, 0.12%)</title><rect x="11.2339%" y="741" width="0.1196%" height="15" fill="rgb(253,136,11)" fg:x="2348" fg:w="25"/><text x="11.4839%" y="751.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (4 samples, 0.02%)</title><rect x="11.3344%" y="725" width="0.0191%" height="15" fill="rgb(208,106,33)" fg:x="2369" fg:w="4"/><text x="11.5844%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="11.2339%" y="773" width="0.1244%" height="15" fill="rgb(206,54,4)" fg:x="2348" fg:w="26"/><text x="11.4839%" y="783.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="11.3583%" y="709" width="0.1340%" height="15" fill="rgb(213,3,15)" fg:x="2374" fg:w="28"/><text x="11.6083%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (24 samples, 0.11%)</title><rect x="11.3774%" y="693" width="0.1148%" height="15" fill="rgb(252,211,39)" fg:x="2378" fg:w="24"/><text x="11.6274%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.06%)</title><rect x="11.4349%" y="677" width="0.0574%" height="15" fill="rgb(223,6,36)" fg:x="2390" fg:w="12"/><text x="11.6849%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (126 samples, 0.60%)</title><rect x="10.8990%" y="885" width="0.6028%" height="15" fill="rgb(252,169,45)" fg:x="2278" fg:w="126"/><text x="11.1490%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (126 samples, 0.60%)</title><rect x="10.8990%" y="869" width="0.6028%" height="15" fill="rgb(212,48,26)" fg:x="2278" fg:w="126"/><text x="11.1490%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (126 samples, 0.60%)</title><rect x="10.8990%" y="853" width="0.6028%" height="15" fill="rgb(251,102,48)" fg:x="2278" fg:w="126"/><text x="11.1490%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (56 samples, 0.27%)</title><rect x="11.2339%" y="837" width="0.2679%" height="15" fill="rgb(243,208,16)" fg:x="2348" fg:w="56"/><text x="11.4839%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.27%)</title><rect x="11.2339%" y="821" width="0.2679%" height="15" fill="rgb(219,96,24)" fg:x="2348" fg:w="56"/><text x="11.4839%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (56 samples, 0.27%)</title><rect x="11.2339%" y="805" width="0.2679%" height="15" fill="rgb(219,33,29)" fg:x="2348" fg:w="56"/><text x="11.4839%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (56 samples, 0.27%)</title><rect x="11.2339%" y="789" width="0.2679%" height="15" fill="rgb(223,176,5)" fg:x="2348" fg:w="56"/><text x="11.4839%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (30 samples, 0.14%)</title><rect x="11.3583%" y="773" width="0.1435%" height="15" fill="rgb(228,140,14)" fg:x="2374" fg:w="30"/><text x="11.6083%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.14%)</title><rect x="11.3583%" y="757" width="0.1435%" height="15" fill="rgb(217,179,31)" fg:x="2374" fg:w="30"/><text x="11.6083%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (30 samples, 0.14%)</title><rect x="11.3583%" y="741" width="0.1435%" height="15" fill="rgb(230,9,30)" fg:x="2374" fg:w="30"/><text x="11.6083%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (30 samples, 0.14%)</title><rect x="11.3583%" y="725" width="0.1435%" height="15" fill="rgb(230,136,20)" fg:x="2374" fg:w="30"/><text x="11.6083%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="11.5066%" y="725" width="0.0861%" height="15" fill="rgb(215,210,22)" fg:x="2405" fg:w="18"/><text x="11.7566%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (17 samples, 0.08%)</title><rect x="11.5114%" y="709" width="0.0813%" height="15" fill="rgb(218,43,5)" fg:x="2406" fg:w="17"/><text x="11.7614%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.05%)</title><rect x="11.5401%" y="693" width="0.0526%" height="15" fill="rgb(216,11,5)" fg:x="2412" fg:w="11"/><text x="11.7901%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="11.5018%" y="773" width="0.0957%" height="15" fill="rgb(209,82,29)" fg:x="2404" fg:w="20"/><text x="11.7518%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (20 samples, 0.10%)</title><rect x="11.5018%" y="757" width="0.0957%" height="15" fill="rgb(244,115,12)" fg:x="2404" fg:w="20"/><text x="11.7518%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (20 samples, 0.10%)</title><rect x="11.5018%" y="741" width="0.0957%" height="15" fill="rgb(222,82,18)" fg:x="2404" fg:w="20"/><text x="11.7518%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="11.5018%" y="821" width="0.1627%" height="15" fill="rgb(249,227,8)" fg:x="2404" fg:w="34"/><text x="11.7518%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="11.5018%" y="805" width="0.1627%" height="15" fill="rgb(253,141,45)" fg:x="2404" fg:w="34"/><text x="11.7518%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (34 samples, 0.16%)</title><rect x="11.5018%" y="789" width="0.1627%" height="15" fill="rgb(234,184,4)" fg:x="2404" fg:w="34"/><text x="11.7518%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="11.5975%" y="773" width="0.0670%" height="15" fill="rgb(218,194,23)" fg:x="2424" fg:w="14"/><text x="11.8475%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="11.5975%" y="757" width="0.0670%" height="15" fill="rgb(235,66,41)" fg:x="2424" fg:w="14"/><text x="11.8475%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.07%)</title><rect x="11.5975%" y="741" width="0.0670%" height="15" fill="rgb(245,217,1)" fg:x="2424" fg:w="14"/><text x="11.8475%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (14 samples, 0.07%)</title><rect x="11.5975%" y="725" width="0.0670%" height="15" fill="rgb(229,91,1)" fg:x="2424" fg:w="14"/><text x="11.8475%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="11.5975%" y="709" width="0.0670%" height="15" fill="rgb(207,101,30)" fg:x="2424" fg:w="14"/><text x="11.8475%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.06%)</title><rect x="11.6023%" y="693" width="0.0622%" height="15" fill="rgb(223,82,49)" fg:x="2425" fg:w="13"/><text x="11.8523%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="11.6310%" y="677" width="0.0335%" height="15" fill="rgb(218,167,17)" fg:x="2431" fg:w="7"/><text x="11.8810%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="11.6645%" y="709" width="0.0813%" height="15" fill="rgb(208,103,14)" fg:x="2438" fg:w="17"/><text x="11.9145%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (16 samples, 0.08%)</title><rect x="11.6693%" y="693" width="0.0766%" height="15" fill="rgb(238,20,8)" fg:x="2439" fg:w="16"/><text x="11.9193%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (12 samples, 0.06%)</title><rect x="11.6884%" y="677" width="0.0574%" height="15" fill="rgb(218,80,54)" fg:x="2443" fg:w="12"/><text x="11.9384%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="11.7315%" y="661" width="0.0144%" height="15" fill="rgb(240,144,17)" fg:x="2452" fg:w="3"/><text x="11.9815%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="11.6645%" y="757" width="0.0861%" height="15" fill="rgb(245,27,50)" fg:x="2438" fg:w="18"/><text x="11.9145%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (18 samples, 0.09%)</title><rect x="11.6645%" y="741" width="0.0861%" height="15" fill="rgb(251,51,7)" fg:x="2438" fg:w="18"/><text x="11.9145%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (18 samples, 0.09%)</title><rect x="11.6645%" y="725" width="0.0861%" height="15" fill="rgb(245,217,29)" fg:x="2438" fg:w="18"/><text x="11.9145%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="11.7506%" y="693" width="0.0526%" height="15" fill="rgb(221,176,29)" fg:x="2456" fg:w="11"/><text x="12.0006%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="11.7602%" y="677" width="0.0431%" height="15" fill="rgb(212,180,24)" fg:x="2458" fg:w="9"/><text x="12.0102%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="11.7889%" y="661" width="0.0144%" height="15" fill="rgb(254,24,2)" fg:x="2464" fg:w="3"/><text x="12.0389%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (192 samples, 0.92%)</title><rect x="10.8990%" y="933" width="0.9186%" height="15" fill="rgb(230,100,2)" fg:x="2278" fg:w="192"/><text x="11.1490%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (192 samples, 0.92%)</title><rect x="10.8990%" y="917" width="0.9186%" height="15" fill="rgb(219,142,25)" fg:x="2278" fg:w="192"/><text x="11.1490%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (192 samples, 0.92%)</title><rect x="10.8990%" y="901" width="0.9186%" height="15" fill="rgb(240,73,43)" fg:x="2278" fg:w="192"/><text x="11.1490%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (66 samples, 0.32%)</title><rect x="11.5018%" y="885" width="0.3158%" height="15" fill="rgb(214,114,15)" fg:x="2404" fg:w="66"/><text x="11.7518%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.32%)</title><rect x="11.5018%" y="869" width="0.3158%" height="15" fill="rgb(207,130,4)" fg:x="2404" fg:w="66"/><text x="11.7518%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (66 samples, 0.32%)</title><rect x="11.5018%" y="853" width="0.3158%" height="15" fill="rgb(221,25,40)" fg:x="2404" fg:w="66"/><text x="11.7518%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (66 samples, 0.32%)</title><rect x="11.5018%" y="837" width="0.3158%" height="15" fill="rgb(241,184,7)" fg:x="2404" fg:w="66"/><text x="11.7518%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.15%)</title><rect x="11.6645%" y="821" width="0.1531%" height="15" fill="rgb(235,159,4)" fg:x="2438" fg:w="32"/><text x="11.9145%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.15%)</title><rect x="11.6645%" y="805" width="0.1531%" height="15" fill="rgb(214,87,48)" fg:x="2438" fg:w="32"/><text x="11.9145%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.15%)</title><rect x="11.6645%" y="789" width="0.1531%" height="15" fill="rgb(246,198,24)" fg:x="2438" fg:w="32"/><text x="11.9145%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (32 samples, 0.15%)</title><rect x="11.6645%" y="773" width="0.1531%" height="15" fill="rgb(209,66,40)" fg:x="2438" fg:w="32"/><text x="11.9145%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="11.7506%" y="757" width="0.0670%" height="15" fill="rgb(233,147,39)" fg:x="2456" fg:w="14"/><text x="12.0006%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="11.7506%" y="741" width="0.0670%" height="15" fill="rgb(231,145,52)" fg:x="2456" fg:w="14"/><text x="12.0006%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (14 samples, 0.07%)</title><rect x="11.7506%" y="725" width="0.0670%" height="15" fill="rgb(206,20,26)" fg:x="2456" fg:w="14"/><text x="12.0006%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (14 samples, 0.07%)</title><rect x="11.7506%" y="709" width="0.0670%" height="15" fill="rgb(238,220,4)" fg:x="2456" fg:w="14"/><text x="12.0006%" y="719.50"></text></g><g><title>criterion::stats::univariate::resamples::Resamples&lt;A&gt;::next (3 samples, 0.01%)</title><rect x="11.8033%" y="693" width="0.0144%" height="15" fill="rgb(252,195,42)" fg:x="2467" fg:w="3"/><text x="12.0533%" y="703.50"></text></g><g><title>oorandom::Rand64::rand_range (3 samples, 0.01%)</title><rect x="11.8033%" y="677" width="0.0144%" height="15" fill="rgb(209,10,6)" fg:x="2467" fg:w="3"/><text x="12.0533%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="11.8176%" y="725" width="0.0478%" height="15" fill="rgb(229,3,52)" fg:x="2470" fg:w="10"/><text x="12.0676%" y="735.50"></text></g><g><title>rayon::slice::quicksort::recurse (10 samples, 0.05%)</title><rect x="11.8176%" y="709" width="0.0478%" height="15" fill="rgb(253,49,37)" fg:x="2470" fg:w="10"/><text x="12.0676%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="11.8368%" y="693" width="0.0287%" height="15" fill="rgb(240,103,49)" fg:x="2474" fg:w="6"/><text x="12.0868%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="11.8176%" y="773" width="0.0574%" height="15" fill="rgb(250,182,30)" fg:x="2470" fg:w="12"/><text x="12.0676%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (12 samples, 0.06%)</title><rect x="11.8176%" y="757" width="0.0574%" height="15" fill="rgb(248,8,30)" fg:x="2470" fg:w="12"/><text x="12.0676%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (12 samples, 0.06%)</title><rect x="11.8176%" y="741" width="0.0574%" height="15" fill="rgb(237,120,30)" fg:x="2470" fg:w="12"/><text x="12.0676%" y="751.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="11.8750%" y="709" width="0.0478%" height="15" fill="rgb(221,146,34)" fg:x="2482" fg:w="10"/><text x="12.1250%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (9 samples, 0.04%)</title><rect x="11.8798%" y="693" width="0.0431%" height="15" fill="rgb(242,55,13)" fg:x="2483" fg:w="9"/><text x="12.1298%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (6 samples, 0.03%)</title><rect x="11.8942%" y="677" width="0.0287%" height="15" fill="rgb(242,112,31)" fg:x="2486" fg:w="6"/><text x="12.1442%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="11.8176%" y="821" width="0.1100%" height="15" fill="rgb(249,192,27)" fg:x="2470" fg:w="23"/><text x="12.0676%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="11.8176%" y="805" width="0.1100%" height="15" fill="rgb(208,204,44)" fg:x="2470" fg:w="23"/><text x="12.0676%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="11.8176%" y="789" width="0.1100%" height="15" fill="rgb(208,93,54)" fg:x="2470" fg:w="23"/><text x="12.0676%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="11.8750%" y="773" width="0.0526%" height="15" fill="rgb(242,1,31)" fg:x="2482" fg:w="11"/><text x="12.1250%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="11.8750%" y="757" width="0.0526%" height="15" fill="rgb(241,83,25)" fg:x="2482" fg:w="11"/><text x="12.1250%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (11 samples, 0.05%)</title><rect x="11.8750%" y="741" width="0.0526%" height="15" fill="rgb(205,169,50)" fg:x="2482" fg:w="11"/><text x="12.1250%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (11 samples, 0.05%)</title><rect x="11.8750%" y="725" width="0.0526%" height="15" fill="rgb(239,186,37)" fg:x="2482" fg:w="11"/><text x="12.1250%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="11.9277%" y="757" width="0.0622%" height="15" fill="rgb(205,221,10)" fg:x="2493" fg:w="13"/><text x="12.1777%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (13 samples, 0.06%)</title><rect x="11.9277%" y="741" width="0.0622%" height="15" fill="rgb(218,196,15)" fg:x="2493" fg:w="13"/><text x="12.1777%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (13 samples, 0.06%)</title><rect x="11.9277%" y="725" width="0.0622%" height="15" fill="rgb(218,196,35)" fg:x="2493" fg:w="13"/><text x="12.1777%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="11.9277%" y="709" width="0.0622%" height="15" fill="rgb(233,63,24)" fg:x="2493" fg:w="13"/><text x="12.1777%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (11 samples, 0.05%)</title><rect x="11.9372%" y="693" width="0.0526%" height="15" fill="rgb(225,8,4)" fg:x="2495" fg:w="11"/><text x="12.1872%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="11.9659%" y="677" width="0.0239%" height="15" fill="rgb(234,105,35)" fg:x="2501" fg:w="5"/><text x="12.2159%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="11.9899%" y="693" width="0.0335%" height="15" fill="rgb(236,21,32)" fg:x="2506" fg:w="7"/><text x="12.2399%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="11.9994%" y="677" width="0.0239%" height="15" fill="rgb(228,109,6)" fg:x="2508" fg:w="5"/><text x="12.2494%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="12.0042%" y="661" width="0.0191%" height="15" fill="rgb(229,215,31)" fg:x="2509" fg:w="4"/><text x="12.2542%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="11.9899%" y="757" width="0.0383%" height="15" fill="rgb(221,52,54)" fg:x="2506" fg:w="8"/><text x="12.2399%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="11.9899%" y="741" width="0.0383%" height="15" fill="rgb(252,129,43)" fg:x="2506" fg:w="8"/><text x="12.2399%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (8 samples, 0.04%)</title><rect x="11.9899%" y="725" width="0.0383%" height="15" fill="rgb(248,183,27)" fg:x="2506" fg:w="8"/><text x="12.2399%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (8 samples, 0.04%)</title><rect x="11.9899%" y="709" width="0.0383%" height="15" fill="rgb(250,0,22)" fg:x="2506" fg:w="8"/><text x="12.2399%" y="719.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.0425%" y="693" width="0.0239%" height="15" fill="rgb(213,166,10)" fg:x="2517" fg:w="5"/><text x="12.2925%" y="703.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.0425%" y="677" width="0.0239%" height="15" fill="rgb(207,163,36)" fg:x="2517" fg:w="5"/><text x="12.2925%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.27%)</title><rect x="11.8176%" y="869" width="0.2727%" height="15" fill="rgb(208,122,22)" fg:x="2470" fg:w="57"/><text x="12.0676%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (57 samples, 0.27%)</title><rect x="11.8176%" y="853" width="0.2727%" height="15" fill="rgb(207,104,49)" fg:x="2470" fg:w="57"/><text x="12.0676%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (57 samples, 0.27%)</title><rect x="11.8176%" y="837" width="0.2727%" height="15" fill="rgb(248,211,50)" fg:x="2470" fg:w="57"/><text x="12.0676%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (34 samples, 0.16%)</title><rect x="11.9277%" y="821" width="0.1627%" height="15" fill="rgb(217,13,45)" fg:x="2493" fg:w="34"/><text x="12.1777%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="11.9277%" y="805" width="0.1627%" height="15" fill="rgb(211,216,49)" fg:x="2493" fg:w="34"/><text x="12.1777%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="11.9277%" y="789" width="0.1627%" height="15" fill="rgb(221,58,53)" fg:x="2493" fg:w="34"/><text x="12.1777%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (34 samples, 0.16%)</title><rect x="11.9277%" y="773" width="0.1627%" height="15" fill="rgb(220,112,41)" fg:x="2493" fg:w="34"/><text x="12.1777%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="12.0281%" y="757" width="0.0622%" height="15" fill="rgb(236,38,28)" fg:x="2514" fg:w="13"/><text x="12.2781%" y="767.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (10 samples, 0.05%)</title><rect x="12.0425%" y="741" width="0.0478%" height="15" fill="rgb(227,195,22)" fg:x="2517" fg:w="10"/><text x="12.2925%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (10 samples, 0.05%)</title><rect x="12.0425%" y="725" width="0.0478%" height="15" fill="rgb(214,55,33)" fg:x="2517" fg:w="10"/><text x="12.2925%" y="735.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (10 samples, 0.05%)</title><rect x="12.0425%" y="709" width="0.0478%" height="15" fill="rgb(248,80,13)" fg:x="2517" fg:w="10"/><text x="12.2925%" y="719.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (5 samples, 0.02%)</title><rect x="12.0664%" y="693" width="0.0239%" height="15" fill="rgb(238,52,6)" fg:x="2522" fg:w="5"/><text x="12.3164%" y="703.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (5 samples, 0.02%)</title><rect x="12.0664%" y="677" width="0.0239%" height="15" fill="rgb(224,198,47)" fg:x="2522" fg:w="5"/><text x="12.3164%" y="687.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.0664%" y="661" width="0.0239%" height="15" fill="rgb(233,171,20)" fg:x="2522" fg:w="5"/><text x="12.3164%" y="671.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.0664%" y="645" width="0.0239%" height="15" fill="rgb(241,30,25)" fg:x="2522" fg:w="5"/><text x="12.3164%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="12.0951%" y="709" width="0.0287%" height="15" fill="rgb(207,171,38)" fg:x="2528" fg:w="6"/><text x="12.3451%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="12.0999%" y="693" width="0.0239%" height="15" fill="rgb(234,70,1)" fg:x="2529" fg:w="5"/><text x="12.3499%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="12.0951%" y="757" width="0.0335%" height="15" fill="rgb(232,178,18)" fg:x="2528" fg:w="7"/><text x="12.3451%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (7 samples, 0.03%)</title><rect x="12.0951%" y="741" width="0.0335%" height="15" fill="rgb(241,78,40)" fg:x="2528" fg:w="7"/><text x="12.3451%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (7 samples, 0.03%)</title><rect x="12.0951%" y="725" width="0.0335%" height="15" fill="rgb(222,35,25)" fg:x="2528" fg:w="7"/><text x="12.3451%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="12.1286%" y="693" width="0.0335%" height="15" fill="rgb(207,92,16)" fg:x="2535" fg:w="7"/><text x="12.3786%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (7 samples, 0.03%)</title><rect x="12.1286%" y="677" width="0.0335%" height="15" fill="rgb(216,59,51)" fg:x="2535" fg:w="7"/><text x="12.3786%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.1477%" y="661" width="0.0144%" height="15" fill="rgb(213,80,28)" fg:x="2539" fg:w="3"/><text x="12.3977%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="12.0951%" y="805" width="0.0766%" height="15" fill="rgb(220,93,7)" fg:x="2528" fg:w="16"/><text x="12.3451%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="12.0951%" y="789" width="0.0766%" height="15" fill="rgb(225,24,44)" fg:x="2528" fg:w="16"/><text x="12.3451%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="12.0951%" y="773" width="0.0766%" height="15" fill="rgb(243,74,40)" fg:x="2528" fg:w="16"/><text x="12.3451%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="12.1286%" y="757" width="0.0431%" height="15" fill="rgb(228,39,7)" fg:x="2535" fg:w="9"/><text x="12.3786%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="12.1286%" y="741" width="0.0431%" height="15" fill="rgb(227,79,8)" fg:x="2535" fg:w="9"/><text x="12.3786%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (9 samples, 0.04%)</title><rect x="12.1286%" y="725" width="0.0431%" height="15" fill="rgb(236,58,11)" fg:x="2535" fg:w="9"/><text x="12.3786%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (9 samples, 0.04%)</title><rect x="12.1286%" y="709" width="0.0431%" height="15" fill="rgb(249,63,35)" fg:x="2535" fg:w="9"/><text x="12.3786%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.1717%" y="741" width="0.0239%" height="15" fill="rgb(252,114,16)" fg:x="2544" fg:w="5"/><text x="12.4217%" y="751.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="12.1717%" y="725" width="0.0239%" height="15" fill="rgb(254,151,24)" fg:x="2544" fg:w="5"/><text x="12.4217%" y="735.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="12.1717%" y="709" width="0.0239%" height="15" fill="rgb(253,54,39)" fg:x="2544" fg:w="5"/><text x="12.4217%" y="719.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.1717%" y="693" width="0.0239%" height="15" fill="rgb(243,25,45)" fg:x="2544" fg:w="5"/><text x="12.4217%" y="703.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="12.1765%" y="677" width="0.0191%" height="15" fill="rgb(234,134,9)" fg:x="2545" fg:w="4"/><text x="12.4265%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.1956%" y="677" width="0.0191%" height="15" fill="rgb(227,166,31)" fg:x="2549" fg:w="4"/><text x="12.4456%" y="687.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="12.1956%" y="661" width="0.0191%" height="15" fill="rgb(245,143,41)" fg:x="2549" fg:w="4"/><text x="12.4456%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="12.1717%" y="805" width="0.0478%" height="15" fill="rgb(238,181,32)" fg:x="2544" fg:w="10"/><text x="12.4217%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="12.1717%" y="789" width="0.0478%" height="15" fill="rgb(224,113,18)" fg:x="2544" fg:w="10"/><text x="12.4217%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="12.1717%" y="773" width="0.0478%" height="15" fill="rgb(240,229,28)" fg:x="2544" fg:w="10"/><text x="12.4217%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="12.1717%" y="757" width="0.0478%" height="15" fill="rgb(250,185,3)" fg:x="2544" fg:w="10"/><text x="12.4217%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="12.1956%" y="741" width="0.0239%" height="15" fill="rgb(212,59,25)" fg:x="2549" fg:w="5"/><text x="12.4456%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.1956%" y="725" width="0.0239%" height="15" fill="rgb(221,87,20)" fg:x="2549" fg:w="5"/><text x="12.4456%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="12.1956%" y="709" width="0.0239%" height="15" fill="rgb(213,74,28)" fg:x="2549" fg:w="5"/><text x="12.4456%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="12.1956%" y="693" width="0.0239%" height="15" fill="rgb(224,132,34)" fg:x="2549" fg:w="5"/><text x="12.4456%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (89 samples, 0.43%)</title><rect x="11.8176%" y="933" width="0.4258%" height="15" fill="rgb(222,101,24)" fg:x="2470" fg:w="89"/><text x="12.0676%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (89 samples, 0.43%)</title><rect x="11.8176%" y="917" width="0.4258%" height="15" fill="rgb(254,142,4)" fg:x="2470" fg:w="89"/><text x="12.0676%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (89 samples, 0.43%)</title><rect x="11.8176%" y="901" width="0.4258%" height="15" fill="rgb(230,229,49)" fg:x="2470" fg:w="89"/><text x="12.0676%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (89 samples, 0.43%)</title><rect x="11.8176%" y="885" width="0.4258%" height="15" fill="rgb(238,70,47)" fg:x="2470" fg:w="89"/><text x="12.0676%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (32 samples, 0.15%)</title><rect x="12.0903%" y="869" width="0.1531%" height="15" fill="rgb(231,160,17)" fg:x="2527" fg:w="32"/><text x="12.3403%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.15%)</title><rect x="12.0903%" y="853" width="0.1531%" height="15" fill="rgb(218,68,53)" fg:x="2527" fg:w="32"/><text x="12.3403%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="12.0951%" y="837" width="0.1483%" height="15" fill="rgb(236,111,10)" fg:x="2528" fg:w="31"/><text x="12.3451%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="12.0951%" y="821" width="0.1483%" height="15" fill="rgb(224,34,41)" fg:x="2528" fg:w="31"/><text x="12.3451%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="12.2195%" y="805" width="0.0239%" height="15" fill="rgb(241,118,19)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="815.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="12.2195%" y="789" width="0.0239%" height="15" fill="rgb(238,129,25)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="799.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="12.2195%" y="773" width="0.0239%" height="15" fill="rgb(238,22,31)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="783.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="12.2195%" y="757" width="0.0239%" height="15" fill="rgb(222,174,48)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="767.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.2195%" y="741" width="0.0239%" height="15" fill="rgb(206,152,40)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="751.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.2195%" y="725" width="0.0239%" height="15" fill="rgb(218,99,54)" fg:x="2554" fg:w="5"/><text x="12.4695%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.2530%" y="693" width="0.0144%" height="15" fill="rgb(220,174,26)" fg:x="2561" fg:w="3"/><text x="12.5030%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.2530%" y="677" width="0.0144%" height="15" fill="rgb(245,116,9)" fg:x="2561" fg:w="3"/><text x="12.5030%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.2530%" y="661" width="0.0144%" height="15" fill="rgb(209,72,35)" fg:x="2561" fg:w="3"/><text x="12.5030%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.2530%" y="741" width="0.0191%" height="15" fill="rgb(226,126,21)" fg:x="2561" fg:w="4"/><text x="12.5030%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.2530%" y="725" width="0.0191%" height="15" fill="rgb(227,192,1)" fg:x="2561" fg:w="4"/><text x="12.5030%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.2530%" y="709" width="0.0191%" height="15" fill="rgb(237,180,29)" fg:x="2561" fg:w="4"/><text x="12.5030%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="12.2434%" y="853" width="0.0335%" height="15" fill="rgb(230,197,35)" fg:x="2559" fg:w="7"/><text x="12.4934%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="12.2434%" y="837" width="0.0335%" height="15" fill="rgb(246,193,31)" fg:x="2559" fg:w="7"/><text x="12.4934%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="12.2434%" y="821" width="0.0335%" height="15" fill="rgb(241,36,4)" fg:x="2559" fg:w="7"/><text x="12.4934%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="12.2530%" y="805" width="0.0239%" height="15" fill="rgb(241,130,17)" fg:x="2561" fg:w="5"/><text x="12.5030%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.2530%" y="789" width="0.0239%" height="15" fill="rgb(206,137,32)" fg:x="2561" fg:w="5"/><text x="12.5030%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.2530%" y="773" width="0.0239%" height="15" fill="rgb(237,228,51)" fg:x="2561" fg:w="5"/><text x="12.5030%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.2530%" y="757" width="0.0239%" height="15" fill="rgb(243,6,42)" fg:x="2561" fg:w="5"/><text x="12.5030%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.2769%" y="789" width="0.0144%" height="15" fill="rgb(251,74,28)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.2769%" y="773" width="0.0144%" height="15" fill="rgb(218,20,49)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.2769%" y="757" width="0.0144%" height="15" fill="rgb(238,28,14)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.2769%" y="741" width="0.0144%" height="15" fill="rgb(229,40,46)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.2769%" y="725" width="0.0144%" height="15" fill="rgb(244,195,20)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.2769%" y="709" width="0.0144%" height="15" fill="rgb(253,56,35)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.2769%" y="693" width="0.0144%" height="15" fill="rgb(210,149,44)" fg:x="2566" fg:w="3"/><text x="12.5269%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (294 samples, 1.41%)</title><rect x="10.8990%" y="981" width="1.4066%" height="15" fill="rgb(240,135,12)" fg:x="2278" fg:w="294"/><text x="11.1490%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (294 samples, 1.41%)</title><rect x="10.8990%" y="965" width="1.4066%" height="15" fill="rgb(251,24,50)" fg:x="2278" fg:w="294"/><text x="11.1490%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (294 samples, 1.41%)</title><rect x="10.8990%" y="949" width="1.4066%" height="15" fill="rgb(243,200,47)" fg:x="2278" fg:w="294"/><text x="11.1490%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="12.2434%" y="933" width="0.0622%" height="15" fill="rgb(224,166,26)" fg:x="2559" fg:w="13"/><text x="12.4934%" y="943.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="12.2434%" y="917" width="0.0622%" height="15" fill="rgb(233,0,47)" fg:x="2559" fg:w="13"/><text x="12.4934%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="12.2434%" y="901" width="0.0622%" height="15" fill="rgb(253,80,5)" fg:x="2559" fg:w="13"/><text x="12.4934%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="12.2434%" y="885" width="0.0622%" height="15" fill="rgb(214,133,25)" fg:x="2559" fg:w="13"/><text x="12.4934%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="12.2434%" y="869" width="0.0622%" height="15" fill="rgb(209,27,14)" fg:x="2559" fg:w="13"/><text x="12.4934%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="12.2769%" y="853" width="0.0287%" height="15" fill="rgb(219,102,51)" fg:x="2566" fg:w="6"/><text x="12.5269%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.2769%" y="837" width="0.0287%" height="15" fill="rgb(237,18,16)" fg:x="2566" fg:w="6"/><text x="12.5269%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.2769%" y="821" width="0.0287%" height="15" fill="rgb(241,85,17)" fg:x="2566" fg:w="6"/><text x="12.5269%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="12.2769%" y="805" width="0.0287%" height="15" fill="rgb(236,90,42)" fg:x="2566" fg:w="6"/><text x="12.5269%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.2913%" y="789" width="0.0144%" height="15" fill="rgb(249,57,21)" fg:x="2569" fg:w="3"/><text x="12.5413%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.2913%" y="773" width="0.0144%" height="15" fill="rgb(243,12,36)" fg:x="2569" fg:w="3"/><text x="12.5413%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.2913%" y="757" width="0.0144%" height="15" fill="rgb(253,128,47)" fg:x="2569" fg:w="3"/><text x="12.5413%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.2913%" y="741" width="0.0144%" height="15" fill="rgb(207,33,20)" fg:x="2569" fg:w="3"/><text x="12.5413%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.3104%" y="773" width="0.0144%" height="15" fill="rgb(233,215,35)" fg:x="2573" fg:w="3"/><text x="12.5604%" y="783.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.3104%" y="757" width="0.0144%" height="15" fill="rgb(249,188,52)" fg:x="2573" fg:w="3"/><text x="12.5604%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.3104%" y="741" width="0.0144%" height="15" fill="rgb(225,12,32)" fg:x="2573" fg:w="3"/><text x="12.5604%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.3104%" y="821" width="0.0239%" height="15" fill="rgb(247,98,14)" fg:x="2573" fg:w="5"/><text x="12.5604%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.3104%" y="805" width="0.0239%" height="15" fill="rgb(247,219,48)" fg:x="2573" fg:w="5"/><text x="12.5604%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.3104%" y="789" width="0.0239%" height="15" fill="rgb(253,60,48)" fg:x="2573" fg:w="5"/><text x="12.5604%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.3343%" y="757" width="0.0144%" height="15" fill="rgb(245,15,52)" fg:x="2578" fg:w="3"/><text x="12.5843%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.3343%" y="741" width="0.0144%" height="15" fill="rgb(220,133,28)" fg:x="2578" fg:w="3"/><text x="12.5843%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.3343%" y="725" width="0.0144%" height="15" fill="rgb(217,180,4)" fg:x="2578" fg:w="3"/><text x="12.5843%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.3343%" y="709" width="0.0144%" height="15" fill="rgb(251,24,1)" fg:x="2578" fg:w="3"/><text x="12.5843%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.3343%" y="693" width="0.0144%" height="15" fill="rgb(212,185,49)" fg:x="2578" fg:w="3"/><text x="12.5843%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="12.3104%" y="869" width="0.0478%" height="15" fill="rgb(215,175,22)" fg:x="2573" fg:w="10"/><text x="12.5604%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="12.3104%" y="853" width="0.0478%" height="15" fill="rgb(250,205,14)" fg:x="2573" fg:w="10"/><text x="12.5604%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="12.3104%" y="837" width="0.0478%" height="15" fill="rgb(225,211,22)" fg:x="2573" fg:w="10"/><text x="12.5604%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="12.3343%" y="821" width="0.0239%" height="15" fill="rgb(251,179,42)" fg:x="2578" fg:w="5"/><text x="12.5843%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.3343%" y="805" width="0.0239%" height="15" fill="rgb(208,216,51)" fg:x="2578" fg:w="5"/><text x="12.5843%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.3343%" y="789" width="0.0239%" height="15" fill="rgb(235,36,11)" fg:x="2578" fg:w="5"/><text x="12.5843%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.3343%" y="773" width="0.0239%" height="15" fill="rgb(213,189,28)" fg:x="2578" fg:w="5"/><text x="12.5843%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.3583%" y="757" width="0.0191%" height="15" fill="rgb(227,203,42)" fg:x="2583" fg:w="4"/><text x="12.6083%" y="767.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="12.3583%" y="741" width="0.0191%" height="15" fill="rgb(244,72,36)" fg:x="2583" fg:w="4"/><text x="12.6083%" y="751.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="12.3583%" y="725" width="0.0191%" height="15" fill="rgb(213,53,17)" fg:x="2583" fg:w="4"/><text x="12.6083%" y="735.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.3583%" y="709" width="0.0191%" height="15" fill="rgb(207,167,3)" fg:x="2583" fg:w="4"/><text x="12.6083%" y="719.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="12.3583%" y="693" width="0.0191%" height="15" fill="rgb(216,98,30)" fg:x="2583" fg:w="4"/><text x="12.6083%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.3583%" y="805" width="0.0239%" height="15" fill="rgb(236,123,15)" fg:x="2583" fg:w="5"/><text x="12.6083%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.3583%" y="789" width="0.0239%" height="15" fill="rgb(248,81,50)" fg:x="2583" fg:w="5"/><text x="12.6083%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.3583%" y="773" width="0.0239%" height="15" fill="rgb(214,120,4)" fg:x="2583" fg:w="5"/><text x="12.6083%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="12.3104%" y="917" width="0.0909%" height="15" fill="rgb(208,179,34)" fg:x="2573" fg:w="19"/><text x="12.5604%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="12.3104%" y="901" width="0.0909%" height="15" fill="rgb(227,140,7)" fg:x="2573" fg:w="19"/><text x="12.5604%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="12.3104%" y="885" width="0.0909%" height="15" fill="rgb(214,22,6)" fg:x="2573" fg:w="19"/><text x="12.5604%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="12.3583%" y="869" width="0.0431%" height="15" fill="rgb(207,137,27)" fg:x="2583" fg:w="9"/><text x="12.6083%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="12.3583%" y="853" width="0.0431%" height="15" fill="rgb(210,8,46)" fg:x="2583" fg:w="9"/><text x="12.6083%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="12.3583%" y="837" width="0.0431%" height="15" fill="rgb(240,16,54)" fg:x="2583" fg:w="9"/><text x="12.6083%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="12.3583%" y="821" width="0.0431%" height="15" fill="rgb(211,209,29)" fg:x="2583" fg:w="9"/><text x="12.6083%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="12.3822%" y="805" width="0.0191%" height="15" fill="rgb(226,228,24)" fg:x="2588" fg:w="4"/><text x="12.6322%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.3822%" y="789" width="0.0191%" height="15" fill="rgb(222,84,9)" fg:x="2588" fg:w="4"/><text x="12.6322%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.3822%" y="773" width="0.0191%" height="15" fill="rgb(234,203,30)" fg:x="2588" fg:w="4"/><text x="12.6322%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.3822%" y="757" width="0.0191%" height="15" fill="rgb(238,109,14)" fg:x="2588" fg:w="4"/><text x="12.6322%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.3870%" y="741" width="0.0144%" height="15" fill="rgb(233,206,34)" fg:x="2589" fg:w="3"/><text x="12.6370%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.3870%" y="725" width="0.0144%" height="15" fill="rgb(220,167,47)" fg:x="2589" fg:w="3"/><text x="12.6370%" y="735.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.3870%" y="709" width="0.0144%" height="15" fill="rgb(238,105,10)" fg:x="2589" fg:w="3"/><text x="12.6370%" y="719.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.3870%" y="693" width="0.0144%" height="15" fill="rgb(213,227,17)" fg:x="2589" fg:w="3"/><text x="12.6370%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="12.4013%" y="917" width="0.0191%" height="15" fill="rgb(217,132,38)" fg:x="2592" fg:w="4"/><text x="12.6513%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.4013%" y="901" width="0.0191%" height="15" fill="rgb(242,146,4)" fg:x="2592" fg:w="4"/><text x="12.6513%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.4013%" y="885" width="0.0191%" height="15" fill="rgb(212,61,9)" fg:x="2592" fg:w="4"/><text x="12.6513%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.4013%" y="869" width="0.0191%" height="15" fill="rgb(247,126,22)" fg:x="2592" fg:w="4"/><text x="12.6513%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.14%)</title><rect x="12.3056%" y="981" width="0.1387%" height="15" fill="rgb(220,196,2)" fg:x="2572" fg:w="29"/><text x="12.5556%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="12.3056%" y="965" width="0.1387%" height="15" fill="rgb(208,46,4)" fg:x="2572" fg:w="29"/><text x="12.5556%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="12.3104%" y="949" width="0.1340%" height="15" fill="rgb(252,104,46)" fg:x="2573" fg:w="28"/><text x="12.5604%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="12.3104%" y="933" width="0.1340%" height="15" fill="rgb(237,152,48)" fg:x="2573" fg:w="28"/><text x="12.5604%" y="943.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="12.4205%" y="917" width="0.0239%" height="15" fill="rgb(221,59,37)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="927.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="12.4205%" y="901" width="0.0239%" height="15" fill="rgb(209,202,51)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="911.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="12.4205%" y="885" width="0.0239%" height="15" fill="rgb(228,81,30)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="895.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="12.4205%" y="869" width="0.0239%" height="15" fill="rgb(227,42,39)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="879.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.4205%" y="853" width="0.0239%" height="15" fill="rgb(221,26,2)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="863.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.4205%" y="837" width="0.0239%" height="15" fill="rgb(254,61,31)" fg:x="2596" fg:w="5"/><text x="12.6705%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.4444%" y="757" width="0.0191%" height="15" fill="rgb(222,173,38)" fg:x="2601" fg:w="4"/><text x="12.6944%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.4444%" y="741" width="0.0191%" height="15" fill="rgb(218,50,12)" fg:x="2601" fg:w="4"/><text x="12.6944%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.4444%" y="725" width="0.0191%" height="15" fill="rgb(223,88,40)" fg:x="2601" fg:w="4"/><text x="12.6944%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.4635%" y="693" width="0.0144%" height="15" fill="rgb(237,54,19)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="703.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.4635%" y="677" width="0.0144%" height="15" fill="rgb(251,129,25)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.4635%" y="661" width="0.0144%" height="15" fill="rgb(238,97,19)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.4635%" y="645" width="0.0144%" height="15" fill="rgb(240,169,18)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.4635%" y="629" width="0.0144%" height="15" fill="rgb(230,187,49)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.4635%" y="613" width="0.0144%" height="15" fill="rgb(209,44,26)" fg:x="2605" fg:w="3"/><text x="12.7135%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="12.4444%" y="805" width="0.0478%" height="15" fill="rgb(244,0,6)" fg:x="2601" fg:w="10"/><text x="12.6944%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="12.4444%" y="789" width="0.0478%" height="15" fill="rgb(248,18,21)" fg:x="2601" fg:w="10"/><text x="12.6944%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="12.4444%" y="773" width="0.0478%" height="15" fill="rgb(245,180,19)" fg:x="2601" fg:w="10"/><text x="12.6944%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="12.4635%" y="757" width="0.0287%" height="15" fill="rgb(252,118,36)" fg:x="2605" fg:w="6"/><text x="12.7135%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.4635%" y="741" width="0.0287%" height="15" fill="rgb(210,224,19)" fg:x="2605" fg:w="6"/><text x="12.7135%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.4635%" y="725" width="0.0287%" height="15" fill="rgb(218,30,24)" fg:x="2605" fg:w="6"/><text x="12.7135%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="12.4635%" y="709" width="0.0287%" height="15" fill="rgb(219,75,50)" fg:x="2605" fg:w="6"/><text x="12.7135%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.4779%" y="693" width="0.0144%" height="15" fill="rgb(234,72,50)" fg:x="2608" fg:w="3"/><text x="12.7279%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.4779%" y="677" width="0.0144%" height="15" fill="rgb(219,100,48)" fg:x="2608" fg:w="3"/><text x="12.7279%" y="687.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.4779%" y="661" width="0.0144%" height="15" fill="rgb(253,5,41)" fg:x="2608" fg:w="3"/><text x="12.7279%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.4779%" y="645" width="0.0144%" height="15" fill="rgb(247,181,11)" fg:x="2608" fg:w="3"/><text x="12.7279%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.4922%" y="693" width="0.0144%" height="15" fill="rgb(222,223,25)" fg:x="2611" fg:w="3"/><text x="12.7422%" y="703.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.4922%" y="677" width="0.0144%" height="15" fill="rgb(214,198,28)" fg:x="2611" fg:w="3"/><text x="12.7422%" y="687.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.4922%" y="661" width="0.0144%" height="15" fill="rgb(230,46,43)" fg:x="2611" fg:w="3"/><text x="12.7422%" y="671.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.4922%" y="645" width="0.0144%" height="15" fill="rgb(233,65,53)" fg:x="2611" fg:w="3"/><text x="12.7422%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="12.4922%" y="741" width="0.0335%" height="15" fill="rgb(221,121,27)" fg:x="2611" fg:w="7"/><text x="12.7422%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="12.4922%" y="725" width="0.0335%" height="15" fill="rgb(247,70,47)" fg:x="2611" fg:w="7"/><text x="12.7422%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="12.4922%" y="709" width="0.0335%" height="15" fill="rgb(228,85,35)" fg:x="2611" fg:w="7"/><text x="12.7422%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="12.5066%" y="693" width="0.0191%" height="15" fill="rgb(209,50,18)" fg:x="2614" fg:w="4"/><text x="12.7566%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.5066%" y="677" width="0.0191%" height="15" fill="rgb(250,19,35)" fg:x="2614" fg:w="4"/><text x="12.7566%" y="687.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (4 samples, 0.02%)</title><rect x="12.5066%" y="661" width="0.0191%" height="15" fill="rgb(253,107,29)" fg:x="2614" fg:w="4"/><text x="12.7566%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (4 samples, 0.02%)</title><rect x="12.5066%" y="645" width="0.0191%" height="15" fill="rgb(252,179,29)" fg:x="2614" fg:w="4"/><text x="12.7566%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.5066%" y="629" width="0.0191%" height="15" fill="rgb(238,194,6)" fg:x="2614" fg:w="4"/><text x="12.7566%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.5114%" y="613" width="0.0144%" height="15" fill="rgb(238,164,29)" fg:x="2615" fg:w="3"/><text x="12.7614%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5257%" y="677" width="0.0144%" height="15" fill="rgb(224,25,9)" fg:x="2618" fg:w="3"/><text x="12.7757%" y="687.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.5257%" y="661" width="0.0144%" height="15" fill="rgb(244,153,23)" fg:x="2618" fg:w="3"/><text x="12.7757%" y="671.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.5257%" y="645" width="0.0144%" height="15" fill="rgb(212,203,14)" fg:x="2618" fg:w="3"/><text x="12.7757%" y="655.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.5257%" y="629" width="0.0144%" height="15" fill="rgb(220,164,20)" fg:x="2618" fg:w="3"/><text x="12.7757%" y="639.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.5257%" y="613" width="0.0144%" height="15" fill="rgb(222,203,48)" fg:x="2618" fg:w="3"/><text x="12.7757%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="12.4444%" y="853" width="0.1100%" height="15" fill="rgb(215,159,22)" fg:x="2601" fg:w="23"/><text x="12.6944%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="12.4444%" y="837" width="0.1100%" height="15" fill="rgb(216,183,47)" fg:x="2601" fg:w="23"/><text x="12.6944%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="12.4444%" y="821" width="0.1100%" height="15" fill="rgb(229,195,25)" fg:x="2601" fg:w="23"/><text x="12.6944%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.06%)</title><rect x="12.4922%" y="805" width="0.0622%" height="15" fill="rgb(224,132,51)" fg:x="2611" fg:w="13"/><text x="12.7422%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="12.4922%" y="789" width="0.0622%" height="15" fill="rgb(240,63,7)" fg:x="2611" fg:w="13"/><text x="12.7422%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="12.4922%" y="773" width="0.0622%" height="15" fill="rgb(249,182,41)" fg:x="2611" fg:w="13"/><text x="12.7422%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="12.4922%" y="757" width="0.0622%" height="15" fill="rgb(243,47,26)" fg:x="2611" fg:w="13"/><text x="12.7422%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="12.5257%" y="741" width="0.0287%" height="15" fill="rgb(233,48,2)" fg:x="2618" fg:w="6"/><text x="12.7757%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.5257%" y="725" width="0.0287%" height="15" fill="rgb(244,165,34)" fg:x="2618" fg:w="6"/><text x="12.7757%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.5257%" y="709" width="0.0287%" height="15" fill="rgb(207,89,7)" fg:x="2618" fg:w="6"/><text x="12.7757%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="12.5257%" y="693" width="0.0287%" height="15" fill="rgb(244,117,36)" fg:x="2618" fg:w="6"/><text x="12.7757%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.5401%" y="677" width="0.0144%" height="15" fill="rgb(226,144,34)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5401%" y="661" width="0.0144%" height="15" fill="rgb(213,23,19)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="12.5401%" y="645" width="0.0144%" height="15" fill="rgb(217,75,12)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="12.5401%" y="629" width="0.0144%" height="15" fill="rgb(224,159,17)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="639.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.5401%" y="613" width="0.0144%" height="15" fill="rgb(217,118,1)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.5401%" y="597" width="0.0144%" height="15" fill="rgb(232,180,48)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="12.5401%" y="581" width="0.0144%" height="15" fill="rgb(230,27,33)" fg:x="2621" fg:w="3"/><text x="12.7901%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.5544%" y="789" width="0.0144%" height="15" fill="rgb(205,31,21)" fg:x="2624" fg:w="3"/><text x="12.8044%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.5544%" y="773" width="0.0144%" height="15" fill="rgb(253,59,4)" fg:x="2624" fg:w="3"/><text x="12.8044%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.5544%" y="757" width="0.0144%" height="15" fill="rgb(224,201,9)" fg:x="2624" fg:w="3"/><text x="12.8044%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="12.5544%" y="853" width="0.0335%" height="15" fill="rgb(229,206,30)" fg:x="2624" fg:w="7"/><text x="12.8044%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="12.5544%" y="837" width="0.0335%" height="15" fill="rgb(212,67,47)" fg:x="2624" fg:w="7"/><text x="12.8044%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="12.5544%" y="821" width="0.0335%" height="15" fill="rgb(211,96,50)" fg:x="2624" fg:w="7"/><text x="12.8044%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="12.5544%" y="805" width="0.0335%" height="15" fill="rgb(252,114,18)" fg:x="2624" fg:w="7"/><text x="12.8044%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="12.5688%" y="789" width="0.0191%" height="15" fill="rgb(223,58,37)" fg:x="2627" fg:w="4"/><text x="12.8188%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.5688%" y="773" width="0.0191%" height="15" fill="rgb(237,70,4)" fg:x="2627" fg:w="4"/><text x="12.8188%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.5688%" y="757" width="0.0191%" height="15" fill="rgb(244,85,46)" fg:x="2627" fg:w="4"/><text x="12.8188%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.5688%" y="741" width="0.0191%" height="15" fill="rgb(223,39,52)" fg:x="2627" fg:w="4"/><text x="12.8188%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.18%)</title><rect x="12.4444%" y="901" width="0.1770%" height="15" fill="rgb(218,200,14)" fg:x="2601" fg:w="37"/><text x="12.6944%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (37 samples, 0.18%)</title><rect x="12.4444%" y="885" width="0.1770%" height="15" fill="rgb(208,171,16)" fg:x="2601" fg:w="37"/><text x="12.6944%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (37 samples, 0.18%)</title><rect x="12.4444%" y="869" width="0.1770%" height="15" fill="rgb(234,200,18)" fg:x="2601" fg:w="37"/><text x="12.6944%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="12.5879%" y="853" width="0.0335%" height="15" fill="rgb(228,45,11)" fg:x="2631" fg:w="7"/><text x="12.8379%" y="863.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="12.5975%" y="837" width="0.0239%" height="15" fill="rgb(237,182,11)" fg:x="2633" fg:w="5"/><text x="12.8475%" y="847.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="12.5975%" y="821" width="0.0239%" height="15" fill="rgb(241,175,49)" fg:x="2633" fg:w="5"/><text x="12.8475%" y="831.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="12.5975%" y="805" width="0.0239%" height="15" fill="rgb(247,38,35)" fg:x="2633" fg:w="5"/><text x="12.8475%" y="815.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="12.5975%" y="789" width="0.0239%" height="15" fill="rgb(228,39,49)" fg:x="2633" fg:w="5"/><text x="12.8475%" y="799.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="12.5975%" y="773" width="0.0239%" height="15" fill="rgb(226,101,26)" fg:x="2633" fg:w="5"/><text x="12.8475%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.6214%" y="741" width="0.0191%" height="15" fill="rgb(206,141,19)" fg:x="2638" fg:w="4"/><text x="12.8714%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.6214%" y="725" width="0.0191%" height="15" fill="rgb(211,200,13)" fg:x="2638" fg:w="4"/><text x="12.8714%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.6214%" y="709" width="0.0191%" height="15" fill="rgb(241,121,6)" fg:x="2638" fg:w="4"/><text x="12.8714%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.6214%" y="789" width="0.0239%" height="15" fill="rgb(234,221,29)" fg:x="2638" fg:w="5"/><text x="12.8714%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.6214%" y="773" width="0.0239%" height="15" fill="rgb(229,136,5)" fg:x="2638" fg:w="5"/><text x="12.8714%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.6214%" y="757" width="0.0239%" height="15" fill="rgb(238,36,11)" fg:x="2638" fg:w="5"/><text x="12.8714%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="12.6214%" y="837" width="0.0478%" height="15" fill="rgb(251,55,41)" fg:x="2638" fg:w="10"/><text x="12.8714%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="12.6214%" y="821" width="0.0478%" height="15" fill="rgb(242,34,40)" fg:x="2638" fg:w="10"/><text x="12.8714%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="12.6214%" y="805" width="0.0478%" height="15" fill="rgb(215,42,17)" fg:x="2638" fg:w="10"/><text x="12.8714%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="12.6453%" y="789" width="0.0239%" height="15" fill="rgb(207,44,46)" fg:x="2643" fg:w="5"/><text x="12.8953%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="12.6453%" y="773" width="0.0239%" height="15" fill="rgb(211,206,28)" fg:x="2643" fg:w="5"/><text x="12.8953%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="12.6453%" y="757" width="0.0239%" height="15" fill="rgb(237,167,16)" fg:x="2643" fg:w="5"/><text x="12.8953%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="12.6453%" y="741" width="0.0239%" height="15" fill="rgb(233,66,6)" fg:x="2643" fg:w="5"/><text x="12.8953%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="12.6501%" y="725" width="0.0191%" height="15" fill="rgb(246,123,29)" fg:x="2644" fg:w="4"/><text x="12.9001%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="12.6501%" y="709" width="0.0191%" height="15" fill="rgb(209,62,40)" fg:x="2644" fg:w="4"/><text x="12.9001%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="12.6501%" y="693" width="0.0191%" height="15" fill="rgb(218,4,25)" fg:x="2644" fg:w="4"/><text x="12.9001%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="12.6501%" y="677" width="0.0191%" height="15" fill="rgb(253,91,49)" fg:x="2644" fg:w="4"/><text x="12.9001%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.6693%" y="773" width="0.0144%" height="15" fill="rgb(228,155,29)" fg:x="2648" fg:w="3"/><text x="12.9193%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.6693%" y="757" width="0.0144%" height="15" fill="rgb(243,57,37)" fg:x="2648" fg:w="3"/><text x="12.9193%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.6693%" y="741" width="0.0144%" height="15" fill="rgb(244,167,17)" fg:x="2648" fg:w="3"/><text x="12.9193%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="12.6693%" y="837" width="0.0287%" height="15" fill="rgb(207,181,38)" fg:x="2648" fg:w="6"/><text x="12.9193%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="12.6693%" y="821" width="0.0287%" height="15" fill="rgb(211,8,23)" fg:x="2648" fg:w="6"/><text x="12.9193%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="12.6693%" y="805" width="0.0287%" height="15" fill="rgb(235,11,44)" fg:x="2648" fg:w="6"/><text x="12.9193%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="12.6693%" y="789" width="0.0287%" height="15" fill="rgb(248,18,52)" fg:x="2648" fg:w="6"/><text x="12.9193%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="12.6836%" y="773" width="0.0144%" height="15" fill="rgb(208,4,7)" fg:x="2651" fg:w="3"/><text x="12.9336%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="12.6836%" y="757" width="0.0144%" height="15" fill="rgb(240,17,39)" fg:x="2651" fg:w="3"/><text x="12.9336%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="12.6836%" y="741" width="0.0144%" height="15" fill="rgb(207,170,3)" fg:x="2651" fg:w="3"/><text x="12.9336%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="12.6836%" y="725" width="0.0144%" height="15" fill="rgb(236,100,52)" fg:x="2651" fg:w="3"/><text x="12.9336%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (54 samples, 0.26%)</title><rect x="12.4444%" y="965" width="0.2584%" height="15" fill="rgb(246,78,51)" fg:x="2601" fg:w="54"/><text x="12.6944%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (54 samples, 0.26%)</title><rect x="12.4444%" y="949" width="0.2584%" height="15" fill="rgb(211,17,15)" fg:x="2601" fg:w="54"/><text x="12.6944%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (54 samples, 0.26%)</title><rect x="12.4444%" y="933" width="0.2584%" height="15" fill="rgb(209,59,46)" fg:x="2601" fg:w="54"/><text x="12.6944%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (54 samples, 0.26%)</title><rect x="12.4444%" y="917" width="0.2584%" height="15" fill="rgb(210,92,25)" fg:x="2601" fg:w="54"/><text x="12.6944%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.08%)</title><rect x="12.6214%" y="901" width="0.0813%" height="15" fill="rgb(238,174,52)" fg:x="2638" fg:w="17"/><text x="12.8714%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="12.6214%" y="885" width="0.0813%" height="15" fill="rgb(230,73,7)" fg:x="2638" fg:w="17"/><text x="12.8714%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="12.6214%" y="869" width="0.0813%" height="15" fill="rgb(243,124,40)" fg:x="2638" fg:w="17"/><text x="12.8714%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="12.6214%" y="853" width="0.0813%" height="15" fill="rgb(244,170,11)" fg:x="2638" fg:w="17"/><text x="12.8714%" y="863.50"></text></g><g><title>std::sys::unix::futex::futex_wait (24 samples, 0.11%)</title><rect x="12.7075%" y="917" width="0.1148%" height="15" fill="rgb(207,114,54)" fg:x="2656" fg:w="24"/><text x="12.9575%" y="927.50"></text></g><g><title>syscall (24 samples, 0.11%)</title><rect x="12.7075%" y="901" width="0.1148%" height="15" fill="rgb(205,42,20)" fg:x="2656" fg:w="24"/><text x="12.9575%" y="911.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (25 samples, 0.12%)</title><rect x="12.7075%" y="965" width="0.1196%" height="15" fill="rgb(230,30,28)" fg:x="2656" fg:w="25"/><text x="12.9575%" y="975.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (25 samples, 0.12%)</title><rect x="12.7075%" y="949" width="0.1196%" height="15" fill="rgb(205,73,54)" fg:x="2656" fg:w="25"/><text x="12.9575%" y="959.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (25 samples, 0.12%)</title><rect x="12.7075%" y="933" width="0.1196%" height="15" fill="rgb(254,227,23)" fg:x="2656" fg:w="25"/><text x="12.9575%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (404 samples, 1.93%)</title><rect x="10.8990%" y="997" width="1.9329%" height="15" fill="rgb(228,202,34)" fg:x="2278" fg:w="404"/><text x="11.1490%" y="1007.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (81 samples, 0.39%)</title><rect x="12.4444%" y="981" width="0.3875%" height="15" fill="rgb(222,225,37)" fg:x="2601" fg:w="81"/><text x="12.6944%" y="991.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="12.8558%" y="965" width="0.0191%" height="15" fill="rgb(221,14,54)" fg:x="2687" fg:w="4"/><text x="13.1058%" y="975.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="12.8606%" y="949" width="0.0144%" height="15" fill="rgb(254,102,2)" fg:x="2688" fg:w="3"/><text x="13.1106%" y="959.50"></text></g><g><title>exp (12 samples, 0.06%)</title><rect x="12.9276%" y="917" width="0.0574%" height="15" fill="rgb(232,104,17)" fg:x="2702" fg:w="12"/><text x="13.1776%" y="927.50"></text></g><g><title>[libm.so.6] (12 samples, 0.06%)</title><rect x="12.9276%" y="901" width="0.0574%" height="15" fill="rgb(250,220,14)" fg:x="2702" fg:w="12"/><text x="13.1776%" y="911.50"></text></g><g><title>exp (24 samples, 0.11%)</title><rect x="13.0855%" y="869" width="0.1148%" height="15" fill="rgb(241,158,9)" fg:x="2735" fg:w="24"/><text x="13.3355%" y="879.50"></text></g><g><title>[libm.so.6] (19 samples, 0.09%)</title><rect x="13.1094%" y="853" width="0.0909%" height="15" fill="rgb(246,9,43)" fg:x="2740" fg:w="19"/><text x="13.3594%" y="863.50"></text></g><g><title>exp (38 samples, 0.18%)</title><rect x="13.4252%" y="821" width="0.1818%" height="15" fill="rgb(206,73,33)" fg:x="2806" fg:w="38"/><text x="13.6752%" y="831.50"></text></g><g><title>[libm.so.6] (28 samples, 0.13%)</title><rect x="13.4730%" y="805" width="0.1340%" height="15" fill="rgb(222,79,8)" fg:x="2816" fg:w="28"/><text x="13.7230%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (211 samples, 1.01%)</title><rect x="13.6070%" y="789" width="1.0095%" height="15" fill="rgb(234,8,54)" fg:x="2844" fg:w="211"/><text x="13.8570%" y="799.50"></text></g><g><title>exp (88 samples, 0.42%)</title><rect x="14.1955%" y="773" width="0.4210%" height="15" fill="rgb(209,134,38)" fg:x="2967" fg:w="88"/><text x="14.4455%" y="783.50"></text></g><g><title>[libm.so.6] (69 samples, 0.33%)</title><rect x="14.2864%" y="757" width="0.3301%" height="15" fill="rgb(230,127,29)" fg:x="2986" fg:w="69"/><text x="14.5364%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (563 samples, 2.69%)</title><rect x="13.2003%" y="837" width="2.6937%" height="15" fill="rgb(242,44,41)" fg:x="2759" fg:w="563"/><text x="13.4503%" y="847.50">ra..</text></g><g><title>rayon_core::registry::in_worker (478 samples, 2.29%)</title><rect x="13.6070%" y="821" width="2.2870%" height="15" fill="rgb(222,56,43)" fg:x="2844" fg:w="478"/><text x="13.8570%" y="831.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (478 samples, 2.29%)</title><rect x="13.6070%" y="805" width="2.2870%" height="15" fill="rgb(238,39,47)" fg:x="2844" fg:w="478"/><text x="13.8570%" y="815.50">_..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (267 samples, 1.28%)</title><rect x="14.6165%" y="789" width="1.2775%" height="15" fill="rgb(226,79,43)" fg:x="3055" fg:w="267"/><text x="14.8665%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (267 samples, 1.28%)</title><rect x="14.6165%" y="773" width="1.2775%" height="15" fill="rgb(242,105,53)" fg:x="3055" fg:w="267"/><text x="14.8665%" y="783.50"></text></g><g><title>exp (111 samples, 0.53%)</title><rect x="15.3629%" y="757" width="0.5311%" height="15" fill="rgb(251,132,46)" fg:x="3211" fg:w="111"/><text x="15.6129%" y="767.50"></text></g><g><title>[libm.so.6] (89 samples, 0.43%)</title><rect x="15.4682%" y="741" width="0.4258%" height="15" fill="rgb(231,77,14)" fg:x="3233" fg:w="89"/><text x="15.7182%" y="751.50"></text></g><g><title>exp (25 samples, 0.12%)</title><rect x="16.0088%" y="805" width="0.1196%" height="15" fill="rgb(240,135,9)" fg:x="3346" fg:w="25"/><text x="16.2588%" y="815.50"></text></g><g><title>[libm.so.6] (22 samples, 0.11%)</title><rect x="16.0232%" y="789" width="0.1053%" height="15" fill="rgb(248,109,14)" fg:x="3349" fg:w="22"/><text x="16.2732%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (242 samples, 1.16%)</title><rect x="16.1284%" y="773" width="1.1578%" height="15" fill="rgb(227,146,52)" fg:x="3371" fg:w="242"/><text x="16.3784%" y="783.50"></text></g><g><title>exp (93 samples, 0.44%)</title><rect x="16.8413%" y="757" width="0.4450%" height="15" fill="rgb(232,54,3)" fg:x="3520" fg:w="93"/><text x="17.0913%" y="767.50"></text></g><g><title>[libm.so.6] (81 samples, 0.39%)</title><rect x="16.8987%" y="741" width="0.3875%" height="15" fill="rgb(229,201,43)" fg:x="3532" fg:w="81"/><text x="17.1487%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (244 samples, 1.17%)</title><rect x="17.2863%" y="773" width="1.1674%" height="15" fill="rgb(252,161,33)" fg:x="3613" fg:w="244"/><text x="17.5363%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (244 samples, 1.17%)</title><rect x="17.2863%" y="757" width="1.1674%" height="15" fill="rgb(226,146,40)" fg:x="3613" fg:w="244"/><text x="17.5363%" y="767.50"></text></g><g><title>exp (98 samples, 0.47%)</title><rect x="17.9848%" y="741" width="0.4689%" height="15" fill="rgb(219,47,25)" fg:x="3759" fg:w="98"/><text x="18.2348%" y="751.50"></text></g><g><title>[libm.so.6] (72 samples, 0.34%)</title><rect x="18.1092%" y="725" width="0.3445%" height="15" fill="rgb(250,135,13)" fg:x="3785" fg:w="72"/><text x="18.3592%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.4584%" y="597" width="0.0191%" height="15" fill="rgb(219,229,18)" fg:x="3858" fg:w="4"/><text x="18.7084%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.4584%" y="581" width="0.0191%" height="15" fill="rgb(217,152,27)" fg:x="3858" fg:w="4"/><text x="18.7084%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.4584%" y="565" width="0.0191%" height="15" fill="rgb(225,71,47)" fg:x="3858" fg:w="4"/><text x="18.7084%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.4584%" y="645" width="0.0335%" height="15" fill="rgb(220,139,14)" fg:x="3858" fg:w="7"/><text x="18.7084%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.4584%" y="629" width="0.0335%" height="15" fill="rgb(247,54,32)" fg:x="3858" fg:w="7"/><text x="18.7084%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="18.4584%" y="613" width="0.0335%" height="15" fill="rgb(252,131,39)" fg:x="3858" fg:w="7"/><text x="18.7084%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="18.4776%" y="597" width="0.0144%" height="15" fill="rgb(210,108,39)" fg:x="3862" fg:w="3"/><text x="18.7276%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.4776%" y="581" width="0.0144%" height="15" fill="rgb(205,23,29)" fg:x="3862" fg:w="3"/><text x="18.7276%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.4776%" y="565" width="0.0144%" height="15" fill="rgb(246,139,46)" fg:x="3862" fg:w="3"/><text x="18.7276%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="18.4776%" y="549" width="0.0144%" height="15" fill="rgb(250,81,26)" fg:x="3862" fg:w="3"/><text x="18.7276%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.4919%" y="581" width="0.0191%" height="15" fill="rgb(214,104,7)" fg:x="3865" fg:w="4"/><text x="18.7419%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.4919%" y="565" width="0.0191%" height="15" fill="rgb(233,189,8)" fg:x="3865" fg:w="4"/><text x="18.7419%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.4919%" y="549" width="0.0191%" height="15" fill="rgb(228,141,17)" fg:x="3865" fg:w="4"/><text x="18.7419%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="18.4537%" y="693" width="0.0766%" height="15" fill="rgb(247,157,1)" fg:x="3857" fg:w="16"/><text x="18.7037%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="18.4584%" y="677" width="0.0718%" height="15" fill="rgb(249,225,5)" fg:x="3858" fg:w="15"/><text x="18.7084%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="18.4584%" y="661" width="0.0718%" height="15" fill="rgb(242,55,13)" fg:x="3858" fg:w="15"/><text x="18.7084%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="18.4919%" y="645" width="0.0383%" height="15" fill="rgb(230,49,50)" fg:x="3865" fg:w="8"/><text x="18.7419%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="18.4919%" y="629" width="0.0383%" height="15" fill="rgb(241,111,38)" fg:x="3865" fg:w="8"/><text x="18.7419%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="18.4919%" y="613" width="0.0383%" height="15" fill="rgb(252,155,4)" fg:x="3865" fg:w="8"/><text x="18.7419%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="18.4919%" y="597" width="0.0383%" height="15" fill="rgb(212,69,32)" fg:x="3865" fg:w="8"/><text x="18.7419%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.5111%" y="581" width="0.0191%" height="15" fill="rgb(243,107,47)" fg:x="3869" fg:w="4"/><text x="18.7611%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.5111%" y="565" width="0.0191%" height="15" fill="rgb(247,130,12)" fg:x="3869" fg:w="4"/><text x="18.7611%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.5111%" y="549" width="0.0191%" height="15" fill="rgb(233,74,16)" fg:x="3869" fg:w="4"/><text x="18.7611%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.5111%" y="533" width="0.0191%" height="15" fill="rgb(208,58,18)" fg:x="3869" fg:w="4"/><text x="18.7611%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.5398%" y="517" width="0.0191%" height="15" fill="rgb(242,225,1)" fg:x="3875" fg:w="4"/><text x="18.7898%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.5398%" y="501" width="0.0191%" height="15" fill="rgb(249,39,40)" fg:x="3875" fg:w="4"/><text x="18.7898%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.5398%" y="485" width="0.0191%" height="15" fill="rgb(207,72,44)" fg:x="3875" fg:w="4"/><text x="18.7898%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="18.5398%" y="565" width="0.0383%" height="15" fill="rgb(215,193,12)" fg:x="3875" fg:w="8"/><text x="18.7898%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="18.5398%" y="549" width="0.0383%" height="15" fill="rgb(248,41,39)" fg:x="3875" fg:w="8"/><text x="18.7898%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="18.5398%" y="533" width="0.0383%" height="15" fill="rgb(253,85,4)" fg:x="3875" fg:w="8"/><text x="18.7898%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.5589%" y="517" width="0.0191%" height="15" fill="rgb(243,70,31)" fg:x="3879" fg:w="4"/><text x="18.8089%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.5589%" y="501" width="0.0191%" height="15" fill="rgb(253,195,26)" fg:x="3879" fg:w="4"/><text x="18.8089%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.5589%" y="485" width="0.0191%" height="15" fill="rgb(243,42,11)" fg:x="3879" fg:w="4"/><text x="18.8089%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.5589%" y="469" width="0.0191%" height="15" fill="rgb(239,66,17)" fg:x="3879" fg:w="4"/><text x="18.8089%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.5781%" y="501" width="0.0191%" height="15" fill="rgb(217,132,21)" fg:x="3883" fg:w="4"/><text x="18.8281%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.5781%" y="485" width="0.0191%" height="15" fill="rgb(252,202,21)" fg:x="3883" fg:w="4"/><text x="18.8281%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.5781%" y="469" width="0.0191%" height="15" fill="rgb(233,98,36)" fg:x="3883" fg:w="4"/><text x="18.8281%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="18.5398%" y="613" width="0.0766%" height="15" fill="rgb(216,153,54)" fg:x="3875" fg:w="16"/><text x="18.7898%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="18.5398%" y="597" width="0.0766%" height="15" fill="rgb(250,99,7)" fg:x="3875" fg:w="16"/><text x="18.7898%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="18.5398%" y="581" width="0.0766%" height="15" fill="rgb(207,56,50)" fg:x="3875" fg:w="16"/><text x="18.7898%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="18.5781%" y="565" width="0.0383%" height="15" fill="rgb(244,61,34)" fg:x="3883" fg:w="8"/><text x="18.8281%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="18.5781%" y="549" width="0.0383%" height="15" fill="rgb(241,50,38)" fg:x="3883" fg:w="8"/><text x="18.8281%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="18.5781%" y="533" width="0.0383%" height="15" fill="rgb(212,166,30)" fg:x="3883" fg:w="8"/><text x="18.8281%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="18.5781%" y="517" width="0.0383%" height="15" fill="rgb(249,127,32)" fg:x="3883" fg:w="8"/><text x="18.8281%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.5972%" y="501" width="0.0191%" height="15" fill="rgb(209,103,0)" fg:x="3887" fg:w="4"/><text x="18.8472%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.5972%" y="485" width="0.0191%" height="15" fill="rgb(238,209,51)" fg:x="3887" fg:w="4"/><text x="18.8472%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.5972%" y="469" width="0.0191%" height="15" fill="rgb(237,56,23)" fg:x="3887" fg:w="4"/><text x="18.8472%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.5972%" y="453" width="0.0191%" height="15" fill="rgb(215,153,46)" fg:x="3887" fg:w="4"/><text x="18.8472%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.6259%" y="533" width="0.0144%" height="15" fill="rgb(224,49,31)" fg:x="3893" fg:w="3"/><text x="18.8759%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.6259%" y="517" width="0.0144%" height="15" fill="rgb(250,18,42)" fg:x="3893" fg:w="3"/><text x="18.8759%" y="527.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="18.6259%" y="501" width="0.0144%" height="15" fill="rgb(215,176,39)" fg:x="3893" fg:w="3"/><text x="18.8759%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (575 samples, 2.75%)</title><rect x="15.8940%" y="837" width="2.7511%" height="15" fill="rgb(223,77,29)" fg:x="3322" fg:w="575"/><text x="16.1440%" y="847.50">ra..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (575 samples, 2.75%)</title><rect x="15.8940%" y="821" width="2.7511%" height="15" fill="rgb(234,94,52)" fg:x="3322" fg:w="575"/><text x="16.1440%" y="831.50">ra..</text></g><g><title>rayon_core::registry::in_worker (526 samples, 2.52%)</title><rect x="16.1284%" y="805" width="2.5166%" height="15" fill="rgb(220,154,50)" fg:x="3371" fg:w="526"/><text x="16.3784%" y="815.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (526 samples, 2.52%)</title><rect x="16.1284%" y="789" width="2.5166%" height="15" fill="rgb(212,11,10)" fg:x="3371" fg:w="526"/><text x="16.3784%" y="799.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (40 samples, 0.19%)</title><rect x="18.4537%" y="773" width="0.1914%" height="15" fill="rgb(205,166,19)" fg:x="3857" fg:w="40"/><text x="18.7037%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40 samples, 0.19%)</title><rect x="18.4537%" y="757" width="0.1914%" height="15" fill="rgb(244,198,16)" fg:x="3857" fg:w="40"/><text x="18.7037%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.19%)</title><rect x="18.4537%" y="741" width="0.1914%" height="15" fill="rgb(219,69,12)" fg:x="3857" fg:w="40"/><text x="18.7037%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.19%)</title><rect x="18.4537%" y="725" width="0.1914%" height="15" fill="rgb(245,30,7)" fg:x="3857" fg:w="40"/><text x="18.7037%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.19%)</title><rect x="18.4537%" y="709" width="0.1914%" height="15" fill="rgb(218,221,48)" fg:x="3857" fg:w="40"/><text x="18.7037%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.11%)</title><rect x="18.5398%" y="693" width="0.1053%" height="15" fill="rgb(216,66,15)" fg:x="3875" fg:w="22"/><text x="18.7898%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.11%)</title><rect x="18.5398%" y="677" width="0.1053%" height="15" fill="rgb(226,122,50)" fg:x="3875" fg:w="22"/><text x="18.7898%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="18.5398%" y="661" width="0.1053%" height="15" fill="rgb(239,156,16)" fg:x="3875" fg:w="22"/><text x="18.7898%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.11%)</title><rect x="18.5398%" y="645" width="0.1053%" height="15" fill="rgb(224,27,38)" fg:x="3875" fg:w="22"/><text x="18.7898%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.11%)</title><rect x="18.5398%" y="629" width="0.1053%" height="15" fill="rgb(224,39,27)" fg:x="3875" fg:w="22"/><text x="18.7898%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="18.6163%" y="613" width="0.0287%" height="15" fill="rgb(215,92,29)" fg:x="3891" fg:w="6"/><text x="18.8663%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="18.6163%" y="597" width="0.0287%" height="15" fill="rgb(207,159,16)" fg:x="3891" fg:w="6"/><text x="18.8663%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.6163%" y="581" width="0.0287%" height="15" fill="rgb(238,163,47)" fg:x="3891" fg:w="6"/><text x="18.8663%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.6259%" y="565" width="0.0191%" height="15" fill="rgb(219,91,49)" fg:x="3893" fg:w="4"/><text x="18.8759%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.6259%" y="549" width="0.0191%" height="15" fill="rgb(227,167,31)" fg:x="3893" fg:w="4"/><text x="18.8759%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.6737%" y="613" width="0.0287%" height="15" fill="rgb(234,80,54)" fg:x="3903" fg:w="6"/><text x="18.9237%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="18.6737%" y="597" width="0.0287%" height="15" fill="rgb(212,114,2)" fg:x="3903" fg:w="6"/><text x="18.9237%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="18.6737%" y="581" width="0.0287%" height="15" fill="rgb(234,50,24)" fg:x="3903" fg:w="6"/><text x="18.9237%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.6833%" y="565" width="0.0191%" height="15" fill="rgb(221,68,8)" fg:x="3905" fg:w="4"/><text x="18.9333%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.6833%" y="549" width="0.0191%" height="15" fill="rgb(254,180,31)" fg:x="3905" fg:w="4"/><text x="18.9333%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.6881%" y="533" width="0.0144%" height="15" fill="rgb(247,130,50)" fg:x="3906" fg:w="3"/><text x="18.9381%" y="543.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="18.6881%" y="517" width="0.0144%" height="15" fill="rgb(211,109,4)" fg:x="3906" fg:w="3"/><text x="18.9381%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.7025%" y="549" width="0.0287%" height="15" fill="rgb(238,50,21)" fg:x="3909" fg:w="6"/><text x="18.9525%" y="559.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="18.7120%" y="533" width="0.0191%" height="15" fill="rgb(225,57,45)" fg:x="3911" fg:w="4"/><text x="18.9620%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="18.6690%" y="661" width="0.0861%" height="15" fill="rgb(209,196,50)" fg:x="3902" fg:w="18"/><text x="18.9190%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="18.6737%" y="645" width="0.0813%" height="15" fill="rgb(242,140,13)" fg:x="3903" fg:w="17"/><text x="18.9237%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="18.6737%" y="629" width="0.0813%" height="15" fill="rgb(217,111,7)" fg:x="3903" fg:w="17"/><text x="18.9237%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="18.7025%" y="613" width="0.0526%" height="15" fill="rgb(253,193,51)" fg:x="3909" fg:w="11"/><text x="18.9525%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="18.7025%" y="597" width="0.0526%" height="15" fill="rgb(252,70,29)" fg:x="3909" fg:w="11"/><text x="18.9525%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="18.7025%" y="581" width="0.0526%" height="15" fill="rgb(232,127,12)" fg:x="3909" fg:w="11"/><text x="18.9525%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="18.7025%" y="565" width="0.0526%" height="15" fill="rgb(211,180,21)" fg:x="3909" fg:w="11"/><text x="18.9525%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="18.7312%" y="549" width="0.0239%" height="15" fill="rgb(229,72,13)" fg:x="3915" fg:w="5"/><text x="18.9812%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.7312%" y="533" width="0.0239%" height="15" fill="rgb(240,211,49)" fg:x="3915" fg:w="5"/><text x="18.9812%" y="543.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="18.7312%" y="517" width="0.0239%" height="15" fill="rgb(219,149,40)" fg:x="3915" fg:w="5"/><text x="18.9812%" y="527.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="18.7312%" y="501" width="0.0239%" height="15" fill="rgb(210,127,46)" fg:x="3915" fg:w="5"/><text x="18.9812%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.7647%" y="597" width="0.0144%" height="15" fill="rgb(220,106,7)" fg:x="3922" fg:w="3"/><text x="19.0147%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.7647%" y="581" width="0.0144%" height="15" fill="rgb(249,31,22)" fg:x="3922" fg:w="3"/><text x="19.0147%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="18.7647%" y="565" width="0.0144%" height="15" fill="rgb(253,1,49)" fg:x="3922" fg:w="3"/><text x="19.0147%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="18.7551%" y="661" width="0.0335%" height="15" fill="rgb(227,144,33)" fg:x="3920" fg:w="7"/><text x="19.0051%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="18.7551%" y="645" width="0.0335%" height="15" fill="rgb(249,163,44)" fg:x="3920" fg:w="7"/><text x="19.0051%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.7647%" y="629" width="0.0239%" height="15" fill="rgb(234,15,39)" fg:x="3922" fg:w="5"/><text x="19.0147%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="18.7647%" y="613" width="0.0239%" height="15" fill="rgb(207,66,16)" fg:x="3922" fg:w="5"/><text x="19.0147%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.7886%" y="437" width="0.0239%" height="15" fill="rgb(233,112,24)" fg:x="3927" fg:w="5"/><text x="19.0386%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.7886%" y="421" width="0.0239%" height="15" fill="rgb(230,90,22)" fg:x="3927" fg:w="5"/><text x="19.0386%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="18.7886%" y="405" width="0.0239%" height="15" fill="rgb(229,61,13)" fg:x="3927" fg:w="5"/><text x="19.0386%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.7934%" y="389" width="0.0191%" height="15" fill="rgb(225,57,24)" fg:x="3928" fg:w="4"/><text x="19.0434%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.7934%" y="373" width="0.0191%" height="15" fill="rgb(208,169,48)" fg:x="3928" fg:w="4"/><text x="19.0434%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8125%" y="373" width="0.0191%" height="15" fill="rgb(244,218,51)" fg:x="3932" fg:w="4"/><text x="19.0625%" y="383.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.8173%" y="357" width="0.0144%" height="15" fill="rgb(214,148,10)" fg:x="3933" fg:w="3"/><text x="19.0673%" y="367.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="18.8173%" y="341" width="0.0144%" height="15" fill="rgb(225,174,27)" fg:x="3933" fg:w="3"/><text x="19.0673%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="18.7886%" y="485" width="0.0622%" height="15" fill="rgb(230,96,26)" fg:x="3927" fg:w="13"/><text x="19.0386%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="18.7886%" y="469" width="0.0622%" height="15" fill="rgb(232,10,30)" fg:x="3927" fg:w="13"/><text x="19.0386%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="18.7886%" y="453" width="0.0622%" height="15" fill="rgb(222,8,50)" fg:x="3927" fg:w="13"/><text x="19.0386%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="18.8125%" y="437" width="0.0383%" height="15" fill="rgb(213,81,27)" fg:x="3932" fg:w="8"/><text x="19.0625%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="18.8125%" y="421" width="0.0383%" height="15" fill="rgb(245,50,10)" fg:x="3932" fg:w="8"/><text x="19.0625%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="18.8125%" y="405" width="0.0383%" height="15" fill="rgb(216,100,18)" fg:x="3932" fg:w="8"/><text x="19.0625%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="18.8125%" y="389" width="0.0383%" height="15" fill="rgb(236,147,54)" fg:x="3932" fg:w="8"/><text x="19.0625%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="18.8316%" y="373" width="0.0191%" height="15" fill="rgb(205,143,26)" fg:x="3936" fg:w="4"/><text x="19.0816%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8316%" y="357" width="0.0191%" height="15" fill="rgb(236,26,9)" fg:x="3936" fg:w="4"/><text x="19.0816%" y="367.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="18.8364%" y="341" width="0.0144%" height="15" fill="rgb(221,165,53)" fg:x="3937" fg:w="3"/><text x="19.0864%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.8508%" y="373" width="0.0144%" height="15" fill="rgb(214,110,17)" fg:x="3940" fg:w="3"/><text x="19.1008%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.8508%" y="421" width="0.0287%" height="15" fill="rgb(237,197,12)" fg:x="3940" fg:w="6"/><text x="19.1008%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="18.8508%" y="405" width="0.0287%" height="15" fill="rgb(205,84,17)" fg:x="3940" fg:w="6"/><text x="19.1008%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="18.8508%" y="389" width="0.0287%" height="15" fill="rgb(237,18,45)" fg:x="3940" fg:w="6"/><text x="19.1008%" y="399.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="18.8651%" y="373" width="0.0144%" height="15" fill="rgb(221,87,14)" fg:x="3943" fg:w="3"/><text x="19.1151%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.8651%" y="357" width="0.0144%" height="15" fill="rgb(238,186,15)" fg:x="3943" fg:w="3"/><text x="19.1151%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="18.8795%" y="341" width="0.0191%" height="15" fill="rgb(208,115,11)" fg:x="3946" fg:w="4"/><text x="19.1295%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.8843%" y="325" width="0.0144%" height="15" fill="rgb(254,175,0)" fg:x="3947" fg:w="3"/><text x="19.1343%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="18.8843%" y="309" width="0.0144%" height="15" fill="rgb(227,24,42)" fg:x="3947" fg:w="3"/><text x="19.1343%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.8843%" y="293" width="0.0144%" height="15" fill="rgb(223,211,37)" fg:x="3947" fg:w="3"/><text x="19.1343%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.23%)</title><rect x="18.6690%" y="709" width="0.2344%" height="15" fill="rgb(235,49,27)" fg:x="3902" fg:w="49"/><text x="18.9190%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (49 samples, 0.23%)</title><rect x="18.6690%" y="693" width="0.2344%" height="15" fill="rgb(254,97,51)" fg:x="3902" fg:w="49"/><text x="18.9190%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (49 samples, 0.23%)</title><rect x="18.6690%" y="677" width="0.2344%" height="15" fill="rgb(249,51,40)" fg:x="3902" fg:w="49"/><text x="18.9190%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.11%)</title><rect x="18.7886%" y="661" width="0.1148%" height="15" fill="rgb(210,128,45)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (24 samples, 0.11%)</title><rect x="18.7886%" y="645" width="0.1148%" height="15" fill="rgb(224,137,50)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="18.7886%" y="629" width="0.1148%" height="15" fill="rgb(242,15,9)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="18.7886%" y="613" width="0.1148%" height="15" fill="rgb(233,187,41)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="18.7886%" y="597" width="0.1148%" height="15" fill="rgb(227,2,29)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="18.7886%" y="581" width="0.1148%" height="15" fill="rgb(222,70,3)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="18.7886%" y="565" width="0.1148%" height="15" fill="rgb(213,11,42)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="18.7886%" y="549" width="0.1148%" height="15" fill="rgb(225,150,9)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="18.7886%" y="533" width="0.1148%" height="15" fill="rgb(230,162,45)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="18.7886%" y="517" width="0.1148%" height="15" fill="rgb(222,14,52)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="18.7886%" y="501" width="0.1148%" height="15" fill="rgb(254,198,14)" fg:x="3927" fg:w="24"/><text x="19.0386%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="18.8508%" y="485" width="0.0526%" height="15" fill="rgb(220,217,30)" fg:x="3940" fg:w="11"/><text x="19.1008%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="18.8508%" y="469" width="0.0526%" height="15" fill="rgb(215,146,41)" fg:x="3940" fg:w="11"/><text x="19.1008%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="18.8508%" y="453" width="0.0526%" height="15" fill="rgb(217,27,36)" fg:x="3940" fg:w="11"/><text x="19.1008%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="18.8508%" y="437" width="0.0526%" height="15" fill="rgb(219,218,39)" fg:x="3940" fg:w="11"/><text x="19.1008%" y="447.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="18.8795%" y="421" width="0.0239%" height="15" fill="rgb(219,4,42)" fg:x="3946" fg:w="5"/><text x="19.1295%" y="431.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="18.8795%" y="405" width="0.0239%" height="15" fill="rgb(249,119,36)" fg:x="3946" fg:w="5"/><text x="19.1295%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.8795%" y="389" width="0.0239%" height="15" fill="rgb(209,23,33)" fg:x="3946" fg:w="5"/><text x="19.1295%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.8795%" y="373" width="0.0239%" height="15" fill="rgb(211,10,0)" fg:x="3946" fg:w="5"/><text x="19.1295%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="18.8795%" y="357" width="0.0239%" height="15" fill="rgb(208,99,37)" fg:x="3946" fg:w="5"/><text x="19.1295%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.9130%" y="597" width="0.0144%" height="15" fill="rgb(213,132,31)" fg:x="3953" fg:w="3"/><text x="19.1630%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.9130%" y="581" width="0.0144%" height="15" fill="rgb(243,129,40)" fg:x="3953" fg:w="3"/><text x="19.1630%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="18.9130%" y="565" width="0.0144%" height="15" fill="rgb(210,66,33)" fg:x="3953" fg:w="3"/><text x="19.1630%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="18.9034%" y="645" width="0.0383%" height="15" fill="rgb(209,189,4)" fg:x="3951" fg:w="8"/><text x="19.1534%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="18.9130%" y="629" width="0.0287%" height="15" fill="rgb(214,107,37)" fg:x="3953" fg:w="6"/><text x="19.1630%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="18.9130%" y="613" width="0.0287%" height="15" fill="rgb(245,88,54)" fg:x="3953" fg:w="6"/><text x="19.1630%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="18.9273%" y="597" width="0.0144%" height="15" fill="rgb(205,146,20)" fg:x="3956" fg:w="3"/><text x="19.1773%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.9273%" y="581" width="0.0144%" height="15" fill="rgb(220,161,25)" fg:x="3956" fg:w="3"/><text x="19.1773%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="18.9273%" y="565" width="0.0144%" height="15" fill="rgb(215,152,15)" fg:x="3956" fg:w="3"/><text x="19.1773%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="18.9273%" y="549" width="0.0144%" height="15" fill="rgb(233,192,44)" fg:x="3956" fg:w="3"/><text x="19.1773%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.31%)</title><rect x="18.6594%" y="757" width="0.3110%" height="15" fill="rgb(240,170,46)" fg:x="3900" fg:w="65"/><text x="18.9094%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (63 samples, 0.30%)</title><rect x="18.6690%" y="741" width="0.3014%" height="15" fill="rgb(207,104,33)" fg:x="3902" fg:w="63"/><text x="18.9190%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (63 samples, 0.30%)</title><rect x="18.6690%" y="725" width="0.3014%" height="15" fill="rgb(219,21,39)" fg:x="3902" fg:w="63"/><text x="18.9190%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="18.9034%" y="709" width="0.0670%" height="15" fill="rgb(214,133,29)" fg:x="3951" fg:w="14"/><text x="19.1534%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="18.9034%" y="693" width="0.0670%" height="15" fill="rgb(226,93,6)" fg:x="3951" fg:w="14"/><text x="19.1534%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="18.9034%" y="677" width="0.0670%" height="15" fill="rgb(252,222,34)" fg:x="3951" fg:w="14"/><text x="19.1534%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="18.9034%" y="661" width="0.0670%" height="15" fill="rgb(252,92,48)" fg:x="3951" fg:w="14"/><text x="19.1534%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="18.9417%" y="645" width="0.0287%" height="15" fill="rgb(245,223,24)" fg:x="3959" fg:w="6"/><text x="19.1917%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="18.9417%" y="629" width="0.0287%" height="15" fill="rgb(205,176,3)" fg:x="3959" fg:w="6"/><text x="19.1917%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="18.9512%" y="613" width="0.0191%" height="15" fill="rgb(235,151,15)" fg:x="3961" fg:w="4"/><text x="19.2012%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="18.9512%" y="597" width="0.0191%" height="15" fill="rgb(237,209,11)" fg:x="3961" fg:w="4"/><text x="19.2012%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="18.9800%" y="645" width="0.0144%" height="15" fill="rgb(243,227,24)" fg:x="3967" fg:w="3"/><text x="19.2300%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="18.9800%" y="693" width="0.0239%" height="15" fill="rgb(239,193,16)" fg:x="3967" fg:w="5"/><text x="19.2300%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="18.9800%" y="677" width="0.0239%" height="15" fill="rgb(231,27,9)" fg:x="3967" fg:w="5"/><text x="19.2300%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="18.9800%" y="661" width="0.0239%" height="15" fill="rgb(219,169,10)" fg:x="3967" fg:w="5"/><text x="19.2300%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="18.9704%" y="757" width="0.0431%" height="15" fill="rgb(244,229,43)" fg:x="3965" fg:w="9"/><text x="19.2204%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="18.9704%" y="741" width="0.0431%" height="15" fill="rgb(254,38,20)" fg:x="3965" fg:w="9"/><text x="19.2204%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="18.9800%" y="725" width="0.0335%" height="15" fill="rgb(250,47,30)" fg:x="3967" fg:w="7"/><text x="19.2300%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="18.9800%" y="709" width="0.0335%" height="15" fill="rgb(224,124,36)" fg:x="3967" fg:w="7"/><text x="19.2300%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0230%" y="629" width="0.0191%" height="15" fill="rgb(246,68,51)" fg:x="3976" fg:w="4"/><text x="19.2730%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.0278%" y="613" width="0.0144%" height="15" fill="rgb(253,43,49)" fg:x="3977" fg:w="3"/><text x="19.2778%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="19.0278%" y="597" width="0.0144%" height="15" fill="rgb(219,54,36)" fg:x="3977" fg:w="3"/><text x="19.2778%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="19.0134%" y="677" width="0.0478%" height="15" fill="rgb(227,133,34)" fg:x="3974" fg:w="10"/><text x="19.2634%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="19.0230%" y="661" width="0.0383%" height="15" fill="rgb(247,227,15)" fg:x="3976" fg:w="8"/><text x="19.2730%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="19.0230%" y="645" width="0.0383%" height="15" fill="rgb(229,96,14)" fg:x="3976" fg:w="8"/><text x="19.2730%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="19.0422%" y="629" width="0.0191%" height="15" fill="rgb(220,79,17)" fg:x="3980" fg:w="4"/><text x="19.2922%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="19.0422%" y="613" width="0.0191%" height="15" fill="rgb(205,131,53)" fg:x="3980" fg:w="4"/><text x="19.2922%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.0469%" y="597" width="0.0144%" height="15" fill="rgb(209,50,29)" fg:x="3981" fg:w="3"/><text x="19.2969%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="19.0469%" y="581" width="0.0144%" height="15" fill="rgb(245,86,46)" fg:x="3981" fg:w="3"/><text x="19.2969%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="19.0613%" y="645" width="0.0144%" height="15" fill="rgb(235,66,46)" fg:x="3984" fg:w="3"/><text x="19.3113%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="19.0613%" y="629" width="0.0144%" height="15" fill="rgb(232,148,31)" fg:x="3984" fg:w="3"/><text x="19.3113%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="19.0756%" y="613" width="0.0239%" height="15" fill="rgb(217,149,8)" fg:x="3987" fg:w="5"/><text x="19.3256%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="19.0852%" y="597" width="0.0144%" height="15" fill="rgb(209,183,11)" fg:x="3989" fg:w="3"/><text x="19.3352%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="19.0852%" y="581" width="0.0144%" height="15" fill="rgb(208,55,20)" fg:x="3989" fg:w="3"/><text x="19.3352%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.0996%" y="485" width="0.0144%" height="15" fill="rgb(218,39,14)" fg:x="3992" fg:w="3"/><text x="19.3496%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="19.0996%" y="533" width="0.0287%" height="15" fill="rgb(216,169,33)" fg:x="3992" fg:w="6"/><text x="19.3496%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="19.0996%" y="517" width="0.0287%" height="15" fill="rgb(233,80,24)" fg:x="3992" fg:w="6"/><text x="19.3496%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="19.0996%" y="501" width="0.0287%" height="15" fill="rgb(213,179,31)" fg:x="3992" fg:w="6"/><text x="19.3496%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="19.1139%" y="485" width="0.0144%" height="15" fill="rgb(209,19,5)" fg:x="3995" fg:w="3"/><text x="19.3639%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="19.1139%" y="469" width="0.0144%" height="15" fill="rgb(219,18,35)" fg:x="3995" fg:w="3"/><text x="19.3639%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1,288 samples, 6.16%)</title><rect x="12.9850%" y="885" width="6.1624%" height="15" fill="rgb(209,169,16)" fg:x="2714" fg:w="1288"/><text x="13.2350%" y="895.50">rayon::i..</text></g><g><title>rayon_core::registry::in_worker (1,243 samples, 5.95%)</title><rect x="13.2003%" y="869" width="5.9471%" height="15" fill="rgb(245,90,51)" fg:x="2759" fg:w="1243"/><text x="13.4503%" y="879.50">rayon_co..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (1,243 samples, 5.95%)</title><rect x="13.2003%" y="853" width="5.9471%" height="15" fill="rgb(220,99,45)" fg:x="2759" fg:w="1243"/><text x="13.4503%" y="863.50">_ZN10ray..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (105 samples, 0.50%)</title><rect x="18.6450%" y="837" width="0.5024%" height="15" fill="rgb(249,89,25)" fg:x="3897" fg:w="105"/><text x="18.8950%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (105 samples, 0.50%)</title><rect x="18.6450%" y="821" width="0.5024%" height="15" fill="rgb(239,193,0)" fg:x="3897" fg:w="105"/><text x="18.8950%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (105 samples, 0.50%)</title><rect x="18.6450%" y="805" width="0.5024%" height="15" fill="rgb(231,126,1)" fg:x="3897" fg:w="105"/><text x="18.8950%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (102 samples, 0.49%)</title><rect x="18.6594%" y="789" width="0.4880%" height="15" fill="rgb(243,166,3)" fg:x="3900" fg:w="102"/><text x="18.9094%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (102 samples, 0.49%)</title><rect x="18.6594%" y="773" width="0.4880%" height="15" fill="rgb(223,22,34)" fg:x="3900" fg:w="102"/><text x="18.9094%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (28 samples, 0.13%)</title><rect x="19.0134%" y="757" width="0.1340%" height="15" fill="rgb(251,52,51)" fg:x="3974" fg:w="28"/><text x="19.2634%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (28 samples, 0.13%)</title><rect x="19.0134%" y="741" width="0.1340%" height="15" fill="rgb(221,165,28)" fg:x="3974" fg:w="28"/><text x="19.2634%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.13%)</title><rect x="19.0134%" y="725" width="0.1340%" height="15" fill="rgb(218,121,47)" fg:x="3974" fg:w="28"/><text x="19.2634%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="19.0134%" y="709" width="0.1340%" height="15" fill="rgb(209,120,9)" fg:x="3974" fg:w="28"/><text x="19.2634%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="19.0134%" y="693" width="0.1340%" height="15" fill="rgb(236,68,12)" fg:x="3974" fg:w="28"/><text x="19.2634%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="19.0613%" y="677" width="0.0861%" height="15" fill="rgb(225,194,26)" fg:x="3984" fg:w="18"/><text x="19.3113%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="19.0613%" y="661" width="0.0861%" height="15" fill="rgb(231,84,39)" fg:x="3984" fg:w="18"/><text x="19.3113%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="19.0756%" y="645" width="0.0718%" height="15" fill="rgb(210,11,45)" fg:x="3987" fg:w="15"/><text x="19.3256%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="19.0756%" y="629" width="0.0718%" height="15" fill="rgb(224,54,52)" fg:x="3987" fg:w="15"/><text x="19.3256%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.05%)</title><rect x="19.0996%" y="613" width="0.0478%" height="15" fill="rgb(238,102,14)" fg:x="3992" fg:w="10"/><text x="19.3496%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.05%)</title><rect x="19.0996%" y="597" width="0.0478%" height="15" fill="rgb(243,160,52)" fg:x="3992" fg:w="10"/><text x="19.3496%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="19.0996%" y="581" width="0.0478%" height="15" fill="rgb(216,114,19)" fg:x="3992" fg:w="10"/><text x="19.3496%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="19.0996%" y="565" width="0.0478%" height="15" fill="rgb(244,166,37)" fg:x="3992" fg:w="10"/><text x="19.3496%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="19.0996%" y="549" width="0.0478%" height="15" fill="rgb(246,29,44)" fg:x="3992" fg:w="10"/><text x="19.3496%" y="559.50"></text></g><g><title>exp (26 samples, 0.12%)</title><rect x="19.2479%" y="853" width="0.1244%" height="15" fill="rgb(215,56,53)" fg:x="4023" fg:w="26"/><text x="19.4979%" y="863.50"></text></g><g><title>[libm.so.6] (21 samples, 0.10%)</title><rect x="19.2718%" y="837" width="0.1005%" height="15" fill="rgb(217,60,2)" fg:x="4028" fg:w="21"/><text x="19.5218%" y="847.50"></text></g><g><title>exp (26 samples, 0.12%)</title><rect x="19.4680%" y="805" width="0.1244%" height="15" fill="rgb(207,26,24)" fg:x="4069" fg:w="26"/><text x="19.7180%" y="815.50"></text></g><g><title>[libm.so.6] (25 samples, 0.12%)</title><rect x="19.4728%" y="789" width="0.1196%" height="15" fill="rgb(252,210,15)" fg:x="4070" fg:w="25"/><text x="19.7228%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (193 samples, 0.92%)</title><rect x="19.5924%" y="773" width="0.9234%" height="15" fill="rgb(253,209,26)" fg:x="4095" fg:w="193"/><text x="19.8424%" y="783.50"></text></g><g><title>exp (85 samples, 0.41%)</title><rect x="20.1091%" y="757" width="0.4067%" height="15" fill="rgb(238,170,14)" fg:x="4203" fg:w="85"/><text x="20.3591%" y="767.50"></text></g><g><title>[libm.so.6] (66 samples, 0.32%)</title><rect x="20.2000%" y="741" width="0.3158%" height="15" fill="rgb(216,178,15)" fg:x="4222" fg:w="66"/><text x="20.4500%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (419 samples, 2.00%)</title><rect x="19.3723%" y="821" width="2.0047%" height="15" fill="rgb(250,197,2)" fg:x="4049" fg:w="419"/><text x="19.6223%" y="831.50">r..</text></g><g><title>rayon_core::registry::in_worker (373 samples, 1.78%)</title><rect x="19.5924%" y="805" width="1.7846%" height="15" fill="rgb(212,70,42)" fg:x="4095" fg:w="373"/><text x="19.8424%" y="815.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (373 samples, 1.78%)</title><rect x="19.5924%" y="789" width="1.7846%" height="15" fill="rgb(227,213,9)" fg:x="4095" fg:w="373"/><text x="19.8424%" y="799.50">_..</text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (180 samples, 0.86%)</title><rect x="20.5158%" y="773" width="0.8612%" height="15" fill="rgb(245,99,25)" fg:x="4288" fg:w="180"/><text x="20.7658%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (180 samples, 0.86%)</title><rect x="20.5158%" y="757" width="0.8612%" height="15" fill="rgb(250,82,29)" fg:x="4288" fg:w="180"/><text x="20.7658%" y="767.50"></text></g><g><title>exp (85 samples, 0.41%)</title><rect x="20.9703%" y="741" width="0.4067%" height="15" fill="rgb(241,226,54)" fg:x="4383" fg:w="85"/><text x="21.2203%" y="751.50"></text></g><g><title>[libm.so.6] (67 samples, 0.32%)</title><rect x="21.0564%" y="725" width="0.3206%" height="15" fill="rgb(221,99,41)" fg:x="4401" fg:w="67"/><text x="21.3064%" y="735.50"></text></g><g><title>exp (23 samples, 0.11%)</title><rect x="21.4870%" y="789" width="0.1100%" height="15" fill="rgb(213,90,21)" fg:x="4491" fg:w="23"/><text x="21.7370%" y="799.50"></text></g><g><title>[libm.so.6] (18 samples, 0.09%)</title><rect x="21.5109%" y="773" width="0.0861%" height="15" fill="rgb(205,208,24)" fg:x="4496" fg:w="18"/><text x="21.7609%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (144 samples, 0.69%)</title><rect x="21.5971%" y="757" width="0.6890%" height="15" fill="rgb(246,31,12)" fg:x="4514" fg:w="144"/><text x="21.8471%" y="767.50"></text></g><g><title>exp (62 samples, 0.30%)</title><rect x="21.9894%" y="741" width="0.2966%" height="15" fill="rgb(213,154,6)" fg:x="4596" fg:w="62"/><text x="22.2394%" y="751.50"></text></g><g><title>[libm.so.6] (48 samples, 0.23%)</title><rect x="22.0564%" y="725" width="0.2297%" height="15" fill="rgb(222,163,29)" fg:x="4610" fg:w="48"/><text x="22.3064%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (130 samples, 0.62%)</title><rect x="22.2860%" y="757" width="0.6220%" height="15" fill="rgb(227,201,8)" fg:x="4658" fg:w="130"/><text x="22.5360%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (130 samples, 0.62%)</title><rect x="22.2860%" y="741" width="0.6220%" height="15" fill="rgb(233,9,32)" fg:x="4658" fg:w="130"/><text x="22.5360%" y="751.50"></text></g><g><title>exp (60 samples, 0.29%)</title><rect x="22.6209%" y="725" width="0.2871%" height="15" fill="rgb(217,54,24)" fg:x="4728" fg:w="60"/><text x="22.8709%" y="735.50"></text></g><g><title>[libm.so.6] (45 samples, 0.22%)</title><rect x="22.6927%" y="709" width="0.2153%" height="15" fill="rgb(235,192,0)" fg:x="4743" fg:w="45"/><text x="22.9427%" y="719.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="22.9223%" y="709" width="0.0144%" height="15" fill="rgb(235,45,9)" fg:x="4791" fg:w="3"/><text x="23.1723%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="22.9463%" y="533" width="0.0335%" height="15" fill="rgb(246,42,40)" fg:x="4796" fg:w="7"/><text x="23.1963%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="22.9511%" y="517" width="0.0287%" height="15" fill="rgb(248,111,24)" fg:x="4797" fg:w="6"/><text x="23.2011%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="22.9511%" y="501" width="0.0287%" height="15" fill="rgb(249,65,22)" fg:x="4797" fg:w="6"/><text x="23.2011%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="22.9606%" y="485" width="0.0191%" height="15" fill="rgb(238,111,51)" fg:x="4799" fg:w="4"/><text x="23.2106%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.9606%" y="469" width="0.0191%" height="15" fill="rgb(250,118,22)" fg:x="4799" fg:w="4"/><text x="23.2106%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="22.9845%" y="469" width="0.0191%" height="15" fill="rgb(234,84,26)" fg:x="4804" fg:w="4"/><text x="23.2345%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="22.9463%" y="581" width="0.0670%" height="15" fill="rgb(243,172,12)" fg:x="4796" fg:w="14"/><text x="23.1963%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="22.9463%" y="565" width="0.0670%" height="15" fill="rgb(236,150,49)" fg:x="4796" fg:w="14"/><text x="23.1963%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="22.9463%" y="549" width="0.0670%" height="15" fill="rgb(225,197,26)" fg:x="4796" fg:w="14"/><text x="23.1963%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="22.9798%" y="533" width="0.0335%" height="15" fill="rgb(214,17,42)" fg:x="4803" fg:w="7"/><text x="23.2298%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="22.9798%" y="517" width="0.0335%" height="15" fill="rgb(224,165,40)" fg:x="4803" fg:w="7"/><text x="23.2298%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="22.9845%" y="501" width="0.0287%" height="15" fill="rgb(246,100,4)" fg:x="4804" fg:w="6"/><text x="23.2345%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="22.9845%" y="485" width="0.0287%" height="15" fill="rgb(222,103,0)" fg:x="4804" fg:w="6"/><text x="23.2345%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.0228%" y="469" width="0.0191%" height="15" fill="rgb(227,189,26)" fg:x="4812" fg:w="4"/><text x="23.2728%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.0276%" y="453" width="0.0144%" height="15" fill="rgb(214,202,17)" fg:x="4813" fg:w="3"/><text x="23.2776%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="23.0133%" y="517" width="0.0478%" height="15" fill="rgb(229,111,3)" fg:x="4810" fg:w="10"/><text x="23.2633%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="23.0228%" y="501" width="0.0383%" height="15" fill="rgb(229,172,15)" fg:x="4812" fg:w="8"/><text x="23.2728%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="23.0228%" y="485" width="0.0383%" height="15" fill="rgb(230,224,35)" fg:x="4812" fg:w="8"/><text x="23.2728%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.0420%" y="469" width="0.0191%" height="15" fill="rgb(251,141,6)" fg:x="4816" fg:w="4"/><text x="23.2920%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.0420%" y="453" width="0.0191%" height="15" fill="rgb(225,208,6)" fg:x="4816" fg:w="4"/><text x="23.2920%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.0659%" y="453" width="0.0144%" height="15" fill="rgb(246,181,16)" fg:x="4821" fg:w="3"/><text x="23.3159%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.15%)</title><rect x="22.9463%" y="629" width="0.1531%" height="15" fill="rgb(227,129,36)" fg:x="4796" fg:w="32"/><text x="23.1963%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.15%)</title><rect x="22.9463%" y="613" width="0.1531%" height="15" fill="rgb(248,117,24)" fg:x="4796" fg:w="32"/><text x="23.1963%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (32 samples, 0.15%)</title><rect x="22.9463%" y="597" width="0.1531%" height="15" fill="rgb(214,185,35)" fg:x="4796" fg:w="32"/><text x="23.1963%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="23.0133%" y="581" width="0.0861%" height="15" fill="rgb(236,150,34)" fg:x="4810" fg:w="18"/><text x="23.2633%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="23.0133%" y="565" width="0.0861%" height="15" fill="rgb(243,228,27)" fg:x="4810" fg:w="18"/><text x="23.2633%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="23.0133%" y="549" width="0.0861%" height="15" fill="rgb(245,77,44)" fg:x="4810" fg:w="18"/><text x="23.2633%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="23.0133%" y="533" width="0.0861%" height="15" fill="rgb(235,214,42)" fg:x="4810" fg:w="18"/><text x="23.2633%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="23.0611%" y="517" width="0.0383%" height="15" fill="rgb(221,74,3)" fg:x="4820" fg:w="8"/><text x="23.3111%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="23.0611%" y="501" width="0.0383%" height="15" fill="rgb(206,121,29)" fg:x="4820" fg:w="8"/><text x="23.3111%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="23.0659%" y="485" width="0.0335%" height="15" fill="rgb(249,131,53)" fg:x="4821" fg:w="7"/><text x="23.3159%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="23.0659%" y="469" width="0.0335%" height="15" fill="rgb(236,170,29)" fg:x="4821" fg:w="7"/><text x="23.3159%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.0802%" y="453" width="0.0191%" height="15" fill="rgb(247,96,15)" fg:x="4824" fg:w="4"/><text x="23.3302%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.0802%" y="437" width="0.0191%" height="15" fill="rgb(211,210,7)" fg:x="4824" fg:w="4"/><text x="23.3302%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.0994%" y="629" width="0.0191%" height="15" fill="rgb(240,88,50)" fg:x="4828" fg:w="4"/><text x="23.3494%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.0994%" y="613" width="0.0191%" height="15" fill="rgb(209,229,26)" fg:x="4828" fg:w="4"/><text x="23.3494%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.0994%" y="597" width="0.0191%" height="15" fill="rgb(210,68,23)" fg:x="4828" fg:w="4"/><text x="23.3494%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.0994%" y="581" width="0.0191%" height="15" fill="rgb(229,180,13)" fg:x="4828" fg:w="4"/><text x="23.3494%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="23.1042%" y="565" width="0.0144%" height="15" fill="rgb(236,53,44)" fg:x="4829" fg:w="3"/><text x="23.3542%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.1042%" y="549" width="0.0144%" height="15" fill="rgb(244,214,29)" fg:x="4829" fg:w="3"/><text x="23.3542%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.1042%" y="533" width="0.0144%" height="15" fill="rgb(220,75,29)" fg:x="4829" fg:w="3"/><text x="23.3542%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.1042%" y="517" width="0.0144%" height="15" fill="rgb(214,183,37)" fg:x="4829" fg:w="3"/><text x="23.3542%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.1233%" y="549" width="0.0239%" height="15" fill="rgb(239,117,29)" fg:x="4833" fg:w="5"/><text x="23.3733%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.1329%" y="533" width="0.0144%" height="15" fill="rgb(237,171,35)" fg:x="4835" fg:w="3"/><text x="23.3829%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.1329%" y="517" width="0.0144%" height="15" fill="rgb(229,178,53)" fg:x="4835" fg:w="3"/><text x="23.3829%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.1472%" y="549" width="0.0191%" height="15" fill="rgb(210,102,19)" fg:x="4838" fg:w="4"/><text x="23.3972%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.1472%" y="533" width="0.0191%" height="15" fill="rgb(235,127,22)" fg:x="4838" fg:w="4"/><text x="23.3972%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.1472%" y="517" width="0.0191%" height="15" fill="rgb(244,31,31)" fg:x="4838" fg:w="4"/><text x="23.3972%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.1472%" y="501" width="0.0191%" height="15" fill="rgb(231,43,21)" fg:x="4838" fg:w="4"/><text x="23.3972%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.1855%" y="325" width="0.0144%" height="15" fill="rgb(217,131,35)" fg:x="4846" fg:w="3"/><text x="23.4355%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.1855%" y="309" width="0.0144%" height="15" fill="rgb(221,149,4)" fg:x="4846" fg:w="3"/><text x="23.4355%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.1855%" y="293" width="0.0144%" height="15" fill="rgb(232,170,28)" fg:x="4846" fg:w="3"/><text x="23.4355%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.27%)</title><rect x="22.9367%" y="677" width="0.2679%" height="15" fill="rgb(238,56,10)" fg:x="4794" fg:w="56"/><text x="23.1867%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (54 samples, 0.26%)</title><rect x="22.9463%" y="661" width="0.2584%" height="15" fill="rgb(235,196,14)" fg:x="4796" fg:w="54"/><text x="23.1963%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (54 samples, 0.26%)</title><rect x="22.9463%" y="645" width="0.2584%" height="15" fill="rgb(216,45,48)" fg:x="4796" fg:w="54"/><text x="23.1963%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.09%)</title><rect x="23.1185%" y="629" width="0.0861%" height="15" fill="rgb(238,213,17)" fg:x="4832" fg:w="18"/><text x="23.3685%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.09%)</title><rect x="23.1185%" y="613" width="0.0861%" height="15" fill="rgb(212,13,2)" fg:x="4832" fg:w="18"/><text x="23.3685%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="23.1185%" y="597" width="0.0861%" height="15" fill="rgb(240,114,20)" fg:x="4832" fg:w="18"/><text x="23.3685%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="23.1233%" y="581" width="0.0813%" height="15" fill="rgb(228,41,40)" fg:x="4833" fg:w="17"/><text x="23.3733%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="23.1233%" y="565" width="0.0813%" height="15" fill="rgb(244,132,35)" fg:x="4833" fg:w="17"/><text x="23.3733%" y="575.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="23.1664%" y="549" width="0.0383%" height="15" fill="rgb(253,189,4)" fg:x="4842" fg:w="8"/><text x="23.4164%" y="559.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="23.1664%" y="533" width="0.0383%" height="15" fill="rgb(224,37,19)" fg:x="4842" fg:w="8"/><text x="23.4164%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="23.1664%" y="517" width="0.0383%" height="15" fill="rgb(235,223,18)" fg:x="4842" fg:w="8"/><text x="23.4164%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="23.1664%" y="501" width="0.0383%" height="15" fill="rgb(235,163,25)" fg:x="4842" fg:w="8"/><text x="23.4164%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="23.1664%" y="485" width="0.0383%" height="15" fill="rgb(217,145,28)" fg:x="4842" fg:w="8"/><text x="23.4164%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="23.1759%" y="469" width="0.0287%" height="15" fill="rgb(223,223,32)" fg:x="4844" fg:w="6"/><text x="23.4259%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="23.1759%" y="453" width="0.0287%" height="15" fill="rgb(227,189,39)" fg:x="4844" fg:w="6"/><text x="23.4259%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="23.1759%" y="437" width="0.0287%" height="15" fill="rgb(248,10,22)" fg:x="4844" fg:w="6"/><text x="23.4259%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="23.1759%" y="421" width="0.0287%" height="15" fill="rgb(248,46,39)" fg:x="4844" fg:w="6"/><text x="23.4259%" y="431.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="23.1855%" y="405" width="0.0191%" height="15" fill="rgb(248,113,48)" fg:x="4846" fg:w="4"/><text x="23.4355%" y="415.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="23.1855%" y="389" width="0.0191%" height="15" fill="rgb(245,16,25)" fg:x="4846" fg:w="4"/><text x="23.4355%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.1855%" y="373" width="0.0191%" height="15" fill="rgb(249,152,16)" fg:x="4846" fg:w="4"/><text x="23.4355%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.1855%" y="357" width="0.0191%" height="15" fill="rgb(250,16,1)" fg:x="4846" fg:w="4"/><text x="23.4355%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.1855%" y="341" width="0.0191%" height="15" fill="rgb(249,138,3)" fg:x="4846" fg:w="4"/><text x="23.4355%" y="351.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="23.2046%" y="677" width="0.0144%" height="15" fill="rgb(227,71,41)" fg:x="4850" fg:w="3"/><text x="23.4546%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.2046%" y="661" width="0.0144%" height="15" fill="rgb(209,184,23)" fg:x="4850" fg:w="3"/><text x="23.4546%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.2238%" y="549" width="0.0191%" height="15" fill="rgb(223,215,31)" fg:x="4854" fg:w="4"/><text x="23.4738%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.2286%" y="533" width="0.0144%" height="15" fill="rgb(210,146,28)" fg:x="4855" fg:w="3"/><text x="23.4786%" y="543.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="23.2286%" y="517" width="0.0144%" height="15" fill="rgb(209,183,41)" fg:x="4855" fg:w="3"/><text x="23.4786%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="23.2238%" y="597" width="0.0383%" height="15" fill="rgb(209,224,45)" fg:x="4854" fg:w="8"/><text x="23.4738%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="23.2238%" y="581" width="0.0383%" height="15" fill="rgb(224,209,51)" fg:x="4854" fg:w="8"/><text x="23.4738%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="23.2238%" y="565" width="0.0383%" height="15" fill="rgb(223,17,39)" fg:x="4854" fg:w="8"/><text x="23.4738%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.2429%" y="549" width="0.0191%" height="15" fill="rgb(234,204,37)" fg:x="4858" fg:w="4"/><text x="23.4929%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.2429%" y="533" width="0.0191%" height="15" fill="rgb(236,120,5)" fg:x="4858" fg:w="4"/><text x="23.4929%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.2620%" y="533" width="0.0191%" height="15" fill="rgb(248,97,27)" fg:x="4862" fg:w="4"/><text x="23.5120%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (402 samples, 1.92%)</title><rect x="21.3770%" y="821" width="1.9234%" height="15" fill="rgb(240,66,17)" fg:x="4468" fg:w="402"/><text x="21.6270%" y="831.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (402 samples, 1.92%)</title><rect x="21.3770%" y="805" width="1.9234%" height="15" fill="rgb(210,79,3)" fg:x="4468" fg:w="402"/><text x="21.6270%" y="815.50">r..</text></g><g><title>rayon_core::registry::in_worker (356 samples, 1.70%)</title><rect x="21.5971%" y="789" width="1.7033%" height="15" fill="rgb(214,176,27)" fg:x="4514" fg:w="356"/><text x="21.8471%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (356 samples, 1.70%)</title><rect x="21.5971%" y="773" width="1.7033%" height="15" fill="rgb(235,185,3)" fg:x="4514" fg:w="356"/><text x="21.8471%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (82 samples, 0.39%)</title><rect x="22.9080%" y="757" width="0.3923%" height="15" fill="rgb(227,24,12)" fg:x="4788" fg:w="82"/><text x="23.1580%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (82 samples, 0.39%)</title><rect x="22.9080%" y="741" width="0.3923%" height="15" fill="rgb(252,169,48)" fg:x="4788" fg:w="82"/><text x="23.1580%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.39%)</title><rect x="22.9080%" y="725" width="0.3923%" height="15" fill="rgb(212,65,1)" fg:x="4788" fg:w="82"/><text x="23.1580%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (76 samples, 0.36%)</title><rect x="22.9367%" y="709" width="0.3636%" height="15" fill="rgb(242,39,24)" fg:x="4794" fg:w="76"/><text x="23.1867%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (76 samples, 0.36%)</title><rect x="22.9367%" y="693" width="0.3636%" height="15" fill="rgb(249,32,23)" fg:x="4794" fg:w="76"/><text x="23.1867%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="23.2190%" y="677" width="0.0813%" height="15" fill="rgb(251,195,23)" fg:x="4853" fg:w="17"/><text x="23.4690%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="23.2190%" y="661" width="0.0813%" height="15" fill="rgb(236,174,8)" fg:x="4853" fg:w="17"/><text x="23.4690%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="23.2190%" y="645" width="0.0813%" height="15" fill="rgb(220,197,8)" fg:x="4853" fg:w="17"/><text x="23.4690%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="23.2238%" y="629" width="0.0766%" height="15" fill="rgb(240,108,37)" fg:x="4854" fg:w="16"/><text x="23.4738%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="23.2238%" y="613" width="0.0766%" height="15" fill="rgb(232,176,24)" fg:x="4854" fg:w="16"/><text x="23.4738%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="23.2620%" y="597" width="0.0383%" height="15" fill="rgb(243,35,29)" fg:x="4862" fg:w="8"/><text x="23.5120%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="23.2620%" y="581" width="0.0383%" height="15" fill="rgb(210,37,18)" fg:x="4862" fg:w="8"/><text x="23.5120%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="23.2620%" y="565" width="0.0383%" height="15" fill="rgb(224,184,40)" fg:x="4862" fg:w="8"/><text x="23.5120%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="23.2620%" y="549" width="0.0383%" height="15" fill="rgb(236,39,29)" fg:x="4862" fg:w="8"/><text x="23.5120%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="23.2860%" y="533" width="0.0144%" height="15" fill="rgb(232,48,39)" fg:x="4867" fg:w="3"/><text x="23.5360%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="23.2860%" y="517" width="0.0144%" height="15" fill="rgb(236,34,42)" fg:x="4867" fg:w="3"/><text x="23.5360%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.2860%" y="501" width="0.0144%" height="15" fill="rgb(243,106,37)" fg:x="4867" fg:w="3"/><text x="23.5360%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.2860%" y="485" width="0.0144%" height="15" fill="rgb(218,96,6)" fg:x="4867" fg:w="3"/><text x="23.5360%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.2860%" y="469" width="0.0144%" height="15" fill="rgb(235,130,12)" fg:x="4867" fg:w="3"/><text x="23.5360%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.3099%" y="773" width="0.0144%" height="15" fill="rgb(231,95,0)" fg:x="4872" fg:w="3"/><text x="23.5599%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.3434%" y="597" width="0.0191%" height="15" fill="rgb(228,12,23)" fg:x="4879" fg:w="4"/><text x="23.5934%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="23.3338%" y="645" width="0.0526%" height="15" fill="rgb(216,12,1)" fg:x="4877" fg:w="11"/><text x="23.5838%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="23.3434%" y="629" width="0.0431%" height="15" fill="rgb(219,59,3)" fg:x="4879" fg:w="9"/><text x="23.5934%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="23.3434%" y="613" width="0.0431%" height="15" fill="rgb(215,208,46)" fg:x="4879" fg:w="9"/><text x="23.5934%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="23.3625%" y="597" width="0.0239%" height="15" fill="rgb(254,224,29)" fg:x="4883" fg:w="5"/><text x="23.6125%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.3625%" y="581" width="0.0239%" height="15" fill="rgb(232,14,29)" fg:x="4883" fg:w="5"/><text x="23.6125%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.3721%" y="565" width="0.0144%" height="15" fill="rgb(208,45,52)" fg:x="4885" fg:w="3"/><text x="23.6221%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.3721%" y="549" width="0.0144%" height="15" fill="rgb(234,191,28)" fg:x="4885" fg:w="3"/><text x="23.6221%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="23.4008%" y="581" width="0.0287%" height="15" fill="rgb(244,67,43)" fg:x="4891" fg:w="6"/><text x="23.6508%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.4151%" y="565" width="0.0144%" height="15" fill="rgb(236,189,24)" fg:x="4894" fg:w="3"/><text x="23.6651%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.4151%" y="549" width="0.0144%" height="15" fill="rgb(239,214,33)" fg:x="4894" fg:w="3"/><text x="23.6651%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.4439%" y="341" width="0.0144%" height="15" fill="rgb(226,176,41)" fg:x="4900" fg:w="3"/><text x="23.6939%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.4439%" y="325" width="0.0144%" height="15" fill="rgb(248,47,8)" fg:x="4900" fg:w="3"/><text x="23.6939%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.4439%" y="309" width="0.0144%" height="15" fill="rgb(218,81,44)" fg:x="4900" fg:w="3"/><text x="23.6939%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.4439%" y="389" width="0.0335%" height="15" fill="rgb(213,98,6)" fg:x="4900" fg:w="7"/><text x="23.6939%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="23.4439%" y="373" width="0.0335%" height="15" fill="rgb(222,85,22)" fg:x="4900" fg:w="7"/><text x="23.6939%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="23.4439%" y="357" width="0.0335%" height="15" fill="rgb(239,46,39)" fg:x="4900" fg:w="7"/><text x="23.6939%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.4582%" y="341" width="0.0191%" height="15" fill="rgb(237,12,29)" fg:x="4903" fg:w="4"/><text x="23.7082%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.4582%" y="325" width="0.0191%" height="15" fill="rgb(214,77,8)" fg:x="4903" fg:w="4"/><text x="23.7082%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.4582%" y="309" width="0.0191%" height="15" fill="rgb(217,168,37)" fg:x="4903" fg:w="4"/><text x="23.7082%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.4582%" y="293" width="0.0191%" height="15" fill="rgb(221,217,23)" fg:x="4903" fg:w="4"/><text x="23.7082%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.4773%" y="325" width="0.0191%" height="15" fill="rgb(243,229,36)" fg:x="4907" fg:w="4"/><text x="23.7273%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.4773%" y="309" width="0.0191%" height="15" fill="rgb(251,163,40)" fg:x="4907" fg:w="4"/><text x="23.7273%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.4773%" y="293" width="0.0191%" height="15" fill="rgb(237,222,12)" fg:x="4907" fg:w="4"/><text x="23.7273%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="23.4439%" y="437" width="0.0670%" height="15" fill="rgb(248,132,6)" fg:x="4900" fg:w="14"/><text x="23.6939%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="23.4439%" y="421" width="0.0670%" height="15" fill="rgb(227,167,50)" fg:x="4900" fg:w="14"/><text x="23.6939%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="23.4439%" y="405" width="0.0670%" height="15" fill="rgb(242,84,37)" fg:x="4900" fg:w="14"/><text x="23.6939%" y="415.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="23.4773%" y="389" width="0.0335%" height="15" fill="rgb(212,4,50)" fg:x="4907" fg:w="7"/><text x="23.7273%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.4773%" y="373" width="0.0335%" height="15" fill="rgb(230,228,32)" fg:x="4907" fg:w="7"/><text x="23.7273%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="23.4773%" y="357" width="0.0335%" height="15" fill="rgb(248,217,23)" fg:x="4907" fg:w="7"/><text x="23.7273%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="23.4773%" y="341" width="0.0335%" height="15" fill="rgb(238,197,32)" fg:x="4907" fg:w="7"/><text x="23.7273%" y="351.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="23.4965%" y="325" width="0.0144%" height="15" fill="rgb(236,106,1)" fg:x="4911" fg:w="3"/><text x="23.7465%" y="335.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="23.4965%" y="309" width="0.0144%" height="15" fill="rgb(219,228,13)" fg:x="4911" fg:w="3"/><text x="23.7465%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.4965%" y="293" width="0.0144%" height="15" fill="rgb(238,30,35)" fg:x="4911" fg:w="3"/><text x="23.7465%" y="303.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.4965%" y="277" width="0.0144%" height="15" fill="rgb(236,70,23)" fg:x="4911" fg:w="3"/><text x="23.7465%" y="287.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.4965%" y="261" width="0.0144%" height="15" fill="rgb(249,104,48)" fg:x="4911" fg:w="3"/><text x="23.7465%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.18%)</title><rect x="23.3338%" y="693" width="0.1818%" height="15" fill="rgb(254,117,50)" fg:x="4877" fg:w="38"/><text x="23.5838%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="23.3338%" y="677" width="0.1818%" height="15" fill="rgb(223,152,4)" fg:x="4877" fg:w="38"/><text x="23.5838%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="23.3338%" y="661" width="0.1818%" height="15" fill="rgb(245,6,2)" fg:x="4877" fg:w="38"/><text x="23.5838%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.13%)</title><rect x="23.3864%" y="645" width="0.1292%" height="15" fill="rgb(249,150,24)" fg:x="4888" fg:w="27"/><text x="23.6364%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.13%)</title><rect x="23.3864%" y="629" width="0.1292%" height="15" fill="rgb(228,185,42)" fg:x="4888" fg:w="27"/><text x="23.6364%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="23.4008%" y="613" width="0.1148%" height="15" fill="rgb(226,39,33)" fg:x="4891" fg:w="24"/><text x="23.6508%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="23.4008%" y="597" width="0.1148%" height="15" fill="rgb(221,166,19)" fg:x="4891" fg:w="24"/><text x="23.6508%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="23.4295%" y="581" width="0.0861%" height="15" fill="rgb(209,109,2)" fg:x="4897" fg:w="18"/><text x="23.6795%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="23.4295%" y="565" width="0.0861%" height="15" fill="rgb(252,216,26)" fg:x="4897" fg:w="18"/><text x="23.6795%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="23.4391%" y="549" width="0.0766%" height="15" fill="rgb(227,173,36)" fg:x="4899" fg:w="16"/><text x="23.6891%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="23.4391%" y="533" width="0.0766%" height="15" fill="rgb(209,90,7)" fg:x="4899" fg:w="16"/><text x="23.6891%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="23.4439%" y="517" width="0.0718%" height="15" fill="rgb(250,194,11)" fg:x="4900" fg:w="15"/><text x="23.6939%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="23.4439%" y="501" width="0.0718%" height="15" fill="rgb(220,72,50)" fg:x="4900" fg:w="15"/><text x="23.6939%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="23.4439%" y="485" width="0.0718%" height="15" fill="rgb(222,106,48)" fg:x="4900" fg:w="15"/><text x="23.6939%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="23.4439%" y="469" width="0.0718%" height="15" fill="rgb(216,220,45)" fg:x="4900" fg:w="15"/><text x="23.6939%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="23.4439%" y="453" width="0.0718%" height="15" fill="rgb(234,112,18)" fg:x="4900" fg:w="15"/><text x="23.6939%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.5156%" y="629" width="0.0144%" height="15" fill="rgb(206,179,9)" fg:x="4915" fg:w="3"/><text x="23.7656%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="23.5156%" y="693" width="0.0239%" height="15" fill="rgb(215,115,40)" fg:x="4915" fg:w="5"/><text x="23.7656%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5156%" y="677" width="0.0239%" height="15" fill="rgb(222,69,34)" fg:x="4915" fg:w="5"/><text x="23.7656%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.5156%" y="661" width="0.0239%" height="15" fill="rgb(209,161,10)" fg:x="4915" fg:w="5"/><text x="23.7656%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.5156%" y="645" width="0.0239%" height="15" fill="rgb(217,6,38)" fg:x="4915" fg:w="5"/><text x="23.7656%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5395%" y="613" width="0.0239%" height="15" fill="rgb(229,229,48)" fg:x="4920" fg:w="5"/><text x="23.7895%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.5491%" y="597" width="0.0144%" height="15" fill="rgb(225,21,28)" fg:x="4922" fg:w="3"/><text x="23.7991%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.5491%" y="581" width="0.0144%" height="15" fill="rgb(206,33,13)" fg:x="4922" fg:w="3"/><text x="23.7991%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.25%)</title><rect x="23.3242%" y="741" width="0.2536%" height="15" fill="rgb(242,178,17)" fg:x="4875" fg:w="53"/><text x="23.5742%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.24%)</title><rect x="23.3338%" y="725" width="0.2440%" height="15" fill="rgb(220,162,5)" fg:x="4877" fg:w="51"/><text x="23.5838%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (51 samples, 0.24%)</title><rect x="23.3338%" y="709" width="0.2440%" height="15" fill="rgb(210,33,43)" fg:x="4877" fg:w="51"/><text x="23.5838%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="23.5395%" y="693" width="0.0383%" height="15" fill="rgb(216,116,54)" fg:x="4920" fg:w="8"/><text x="23.7895%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="23.5395%" y="677" width="0.0383%" height="15" fill="rgb(249,92,24)" fg:x="4920" fg:w="8"/><text x="23.7895%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="23.5395%" y="661" width="0.0383%" height="15" fill="rgb(231,189,14)" fg:x="4920" fg:w="8"/><text x="23.7895%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="23.5395%" y="645" width="0.0383%" height="15" fill="rgb(230,8,41)" fg:x="4920" fg:w="8"/><text x="23.7895%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="23.5395%" y="629" width="0.0383%" height="15" fill="rgb(249,7,27)" fg:x="4920" fg:w="8"/><text x="23.7895%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="23.5778%" y="741" width="0.0239%" height="15" fill="rgb(232,86,5)" fg:x="4928" fg:w="5"/><text x="23.8278%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.5778%" y="725" width="0.0239%" height="15" fill="rgb(224,175,18)" fg:x="4928" fg:w="5"/><text x="23.8278%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.5874%" y="709" width="0.0144%" height="15" fill="rgb(220,129,12)" fg:x="4930" fg:w="3"/><text x="23.8374%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.5874%" y="693" width="0.0144%" height="15" fill="rgb(210,19,36)" fg:x="4930" fg:w="3"/><text x="23.8374%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.5874%" y="677" width="0.0144%" height="15" fill="rgb(219,96,14)" fg:x="4930" fg:w="3"/><text x="23.8374%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.5874%" y="661" width="0.0144%" height="15" fill="rgb(249,106,1)" fg:x="4930" fg:w="3"/><text x="23.8374%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.5874%" y="645" width="0.0144%" height="15" fill="rgb(249,155,20)" fg:x="4930" fg:w="3"/><text x="23.8374%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.6017%" y="565" width="0.0144%" height="15" fill="rgb(244,168,9)" fg:x="4933" fg:w="3"/><text x="23.8517%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.6017%" y="549" width="0.0144%" height="15" fill="rgb(216,23,50)" fg:x="4933" fg:w="3"/><text x="23.8517%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.6017%" y="613" width="0.0239%" height="15" fill="rgb(224,219,20)" fg:x="4933" fg:w="5"/><text x="23.8517%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.6017%" y="597" width="0.0239%" height="15" fill="rgb(222,156,15)" fg:x="4933" fg:w="5"/><text x="23.8517%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.6017%" y="581" width="0.0239%" height="15" fill="rgb(231,97,17)" fg:x="4933" fg:w="5"/><text x="23.8517%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="23.6017%" y="661" width="0.0478%" height="15" fill="rgb(218,70,48)" fg:x="4933" fg:w="10"/><text x="23.8517%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="23.6017%" y="645" width="0.0478%" height="15" fill="rgb(212,196,52)" fg:x="4933" fg:w="10"/><text x="23.8517%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="23.6017%" y="629" width="0.0478%" height="15" fill="rgb(243,203,18)" fg:x="4933" fg:w="10"/><text x="23.8517%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="23.6257%" y="613" width="0.0239%" height="15" fill="rgb(252,125,41)" fg:x="4938" fg:w="5"/><text x="23.8757%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="23.6257%" y="597" width="0.0239%" height="15" fill="rgb(223,180,33)" fg:x="4938" fg:w="5"/><text x="23.8757%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.6257%" y="581" width="0.0239%" height="15" fill="rgb(254,159,46)" fg:x="4938" fg:w="5"/><text x="23.8757%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.6257%" y="565" width="0.0239%" height="15" fill="rgb(254,38,10)" fg:x="4938" fg:w="5"/><text x="23.8757%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="23.6352%" y="549" width="0.0144%" height="15" fill="rgb(208,217,32)" fg:x="4940" fg:w="3"/><text x="23.8852%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.6352%" y="533" width="0.0144%" height="15" fill="rgb(221,120,13)" fg:x="4940" fg:w="3"/><text x="23.8852%" y="543.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.6352%" y="517" width="0.0144%" height="15" fill="rgb(246,54,52)" fg:x="4940" fg:w="3"/><text x="23.8852%" y="527.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="23.6352%" y="501" width="0.0144%" height="15" fill="rgb(242,34,25)" fg:x="4940" fg:w="3"/><text x="23.8852%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.6496%" y="597" width="0.0144%" height="15" fill="rgb(247,209,9)" fg:x="4943" fg:w="3"/><text x="23.8996%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="23.6496%" y="581" width="0.0144%" height="15" fill="rgb(228,71,26)" fg:x="4943" fg:w="3"/><text x="23.8996%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="23.6496%" y="565" width="0.0144%" height="15" fill="rgb(222,145,49)" fg:x="4943" fg:w="3"/><text x="23.8996%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (948 samples, 4.54%)</title><rect x="19.1474%" y="885" width="4.5357%" height="15" fill="rgb(218,121,17)" fg:x="4002" fg:w="948"/><text x="19.3974%" y="895.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (948 samples, 4.54%)</title><rect x="19.1474%" y="869" width="4.5357%" height="15" fill="rgb(244,50,7)" fg:x="4002" fg:w="948"/><text x="19.3974%" y="879.50">rayon..</text></g><g><title>rayon_core::registry::in_worker (901 samples, 4.31%)</title><rect x="19.3723%" y="853" width="4.3108%" height="15" fill="rgb(246,229,37)" fg:x="4049" fg:w="901"/><text x="19.6223%" y="863.50">rayon..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (901 samples, 4.31%)</title><rect x="19.3723%" y="837" width="4.3108%" height="15" fill="rgb(225,18,5)" fg:x="4049" fg:w="901"/><text x="19.6223%" y="847.50">_ZN10..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (80 samples, 0.38%)</title><rect x="23.3003%" y="821" width="0.3828%" height="15" fill="rgb(213,204,8)" fg:x="4870" fg:w="80"/><text x="23.5503%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (80 samples, 0.38%)</title><rect x="23.3003%" y="805" width="0.3828%" height="15" fill="rgb(238,103,6)" fg:x="4870" fg:w="80"/><text x="23.5503%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (80 samples, 0.38%)</title><rect x="23.3003%" y="789" width="0.3828%" height="15" fill="rgb(222,25,35)" fg:x="4870" fg:w="80"/><text x="23.5503%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (75 samples, 0.36%)</title><rect x="23.3242%" y="773" width="0.3588%" height="15" fill="rgb(213,203,35)" fg:x="4875" fg:w="75"/><text x="23.5742%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (75 samples, 0.36%)</title><rect x="23.3242%" y="757" width="0.3588%" height="15" fill="rgb(221,79,53)" fg:x="4875" fg:w="75"/><text x="23.5742%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="23.6017%" y="741" width="0.0813%" height="15" fill="rgb(243,200,35)" fg:x="4933" fg:w="17"/><text x="23.8517%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="23.6017%" y="725" width="0.0813%" height="15" fill="rgb(248,60,25)" fg:x="4933" fg:w="17"/><text x="23.8517%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="23.6017%" y="709" width="0.0813%" height="15" fill="rgb(227,53,46)" fg:x="4933" fg:w="17"/><text x="23.8517%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="23.6017%" y="693" width="0.0813%" height="15" fill="rgb(216,120,32)" fg:x="4933" fg:w="17"/><text x="23.8517%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="23.6017%" y="677" width="0.0813%" height="15" fill="rgb(220,134,1)" fg:x="4933" fg:w="17"/><text x="23.8517%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="23.6496%" y="661" width="0.0335%" height="15" fill="rgb(237,168,5)" fg:x="4943" fg:w="7"/><text x="23.8996%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.6496%" y="645" width="0.0335%" height="15" fill="rgb(231,100,33)" fg:x="4943" fg:w="7"/><text x="23.8996%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="23.6496%" y="629" width="0.0335%" height="15" fill="rgb(236,177,47)" fg:x="4943" fg:w="7"/><text x="23.8996%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="23.6496%" y="613" width="0.0335%" height="15" fill="rgb(235,7,49)" fg:x="4943" fg:w="7"/><text x="23.8996%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="23.6639%" y="597" width="0.0191%" height="15" fill="rgb(232,119,22)" fg:x="4946" fg:w="4"/><text x="23.9139%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="23.6639%" y="581" width="0.0191%" height="15" fill="rgb(254,73,53)" fg:x="4946" fg:w="4"/><text x="23.9139%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.6639%" y="565" width="0.0191%" height="15" fill="rgb(251,35,20)" fg:x="4946" fg:w="4"/><text x="23.9139%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.6639%" y="549" width="0.0191%" height="15" fill="rgb(241,119,20)" fg:x="4946" fg:w="4"/><text x="23.9139%" y="559.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="23.7596%" y="645" width="0.0191%" height="15" fill="rgb(207,102,14)" fg:x="4966" fg:w="4"/><text x="24.0096%" y="655.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="23.7596%" y="629" width="0.0191%" height="15" fill="rgb(248,201,50)" fg:x="4966" fg:w="4"/><text x="24.0096%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="23.7501%" y="661" width="0.0478%" height="15" fill="rgb(222,185,44)" fg:x="4964" fg:w="10"/><text x="24.0001%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="23.7788%" y="645" width="0.0191%" height="15" fill="rgb(218,107,18)" fg:x="4970" fg:w="4"/><text x="24.0288%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="23.7788%" y="629" width="0.0191%" height="15" fill="rgb(237,177,39)" fg:x="4970" fg:w="4"/><text x="24.0288%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.8266%" y="597" width="0.0144%" height="15" fill="rgb(246,69,6)" fg:x="4980" fg:w="3"/><text x="24.0766%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="23.7309%" y="709" width="0.1196%" height="15" fill="rgb(234,208,37)" fg:x="4960" fg:w="25"/><text x="23.9809%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="23.7501%" y="693" width="0.1005%" height="15" fill="rgb(225,4,6)" fg:x="4964" fg:w="21"/><text x="24.0001%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="23.7501%" y="677" width="0.1005%" height="15" fill="rgb(233,45,0)" fg:x="4964" fg:w="21"/><text x="24.0001%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="23.7979%" y="661" width="0.0526%" height="15" fill="rgb(226,136,5)" fg:x="4974" fg:w="11"/><text x="24.0479%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="23.7979%" y="645" width="0.0526%" height="15" fill="rgb(211,91,47)" fg:x="4974" fg:w="11"/><text x="24.0479%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.8266%" y="629" width="0.0239%" height="15" fill="rgb(242,88,51)" fg:x="4980" fg:w="5"/><text x="24.0766%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.8266%" y="613" width="0.0239%" height="15" fill="rgb(230,91,28)" fg:x="4980" fg:w="5"/><text x="24.0766%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="23.8888%" y="629" width="0.0144%" height="15" fill="rgb(254,186,29)" fg:x="4993" fg:w="3"/><text x="24.1388%" y="639.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="23.8888%" y="613" width="0.0144%" height="15" fill="rgb(238,6,4)" fg:x="4993" fg:w="3"/><text x="24.1388%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="23.8745%" y="645" width="0.0526%" height="15" fill="rgb(221,151,16)" fg:x="4990" fg:w="11"/><text x="24.1245%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.9032%" y="629" width="0.0239%" height="15" fill="rgb(251,143,52)" fg:x="4996" fg:w="5"/><text x="24.1532%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.9032%" y="613" width="0.0239%" height="15" fill="rgb(206,90,15)" fg:x="4996" fg:w="5"/><text x="24.1532%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="23.9127%" y="597" width="0.0144%" height="15" fill="rgb(218,35,8)" fg:x="4998" fg:w="3"/><text x="24.1627%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.9127%" y="581" width="0.0144%" height="15" fill="rgb(239,215,6)" fg:x="4998" fg:w="3"/><text x="24.1627%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.25%)</title><rect x="23.7070%" y="757" width="0.2536%" height="15" fill="rgb(245,116,39)" fg:x="4955" fg:w="53"/><text x="23.9570%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.23%)</title><rect x="23.7309%" y="741" width="0.2297%" height="15" fill="rgb(242,65,28)" fg:x="4960" fg:w="48"/><text x="23.9809%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (48 samples, 0.23%)</title><rect x="23.7309%" y="725" width="0.2297%" height="15" fill="rgb(252,132,53)" fg:x="4960" fg:w="48"/><text x="23.9809%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.11%)</title><rect x="23.8505%" y="709" width="0.1100%" height="15" fill="rgb(224,159,50)" fg:x="4985" fg:w="23"/><text x="24.1005%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="23.8505%" y="693" width="0.1100%" height="15" fill="rgb(224,93,4)" fg:x="4985" fg:w="23"/><text x="24.1005%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="23.8745%" y="677" width="0.0861%" height="15" fill="rgb(208,81,34)" fg:x="4990" fg:w="18"/><text x="24.1245%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="23.8745%" y="661" width="0.0861%" height="15" fill="rgb(233,92,54)" fg:x="4990" fg:w="18"/><text x="24.1245%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="23.9271%" y="645" width="0.0335%" height="15" fill="rgb(237,21,14)" fg:x="5001" fg:w="7"/><text x="24.1771%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="23.9271%" y="629" width="0.0335%" height="15" fill="rgb(249,128,51)" fg:x="5001" fg:w="7"/><text x="24.1771%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="23.9367%" y="613" width="0.0239%" height="15" fill="rgb(223,129,24)" fg:x="5003" fg:w="5"/><text x="24.1867%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="23.9367%" y="597" width="0.0239%" height="15" fill="rgb(231,168,25)" fg:x="5003" fg:w="5"/><text x="24.1867%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="23.9462%" y="581" width="0.0144%" height="15" fill="rgb(224,39,20)" fg:x="5005" fg:w="3"/><text x="24.1962%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="23.9462%" y="565" width="0.0144%" height="15" fill="rgb(225,152,53)" fg:x="5005" fg:w="3"/><text x="24.1962%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.0036%" y="629" width="0.0144%" height="15" fill="rgb(252,17,24)" fg:x="5017" fg:w="3"/><text x="24.2536%" y="639.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="24.0036%" y="613" width="0.0144%" height="15" fill="rgb(250,114,30)" fg:x="5017" fg:w="3"/><text x="24.2536%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="23.9941%" y="645" width="0.0431%" height="15" fill="rgb(229,5,4)" fg:x="5015" fg:w="9"/><text x="24.2441%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.0180%" y="629" width="0.0191%" height="15" fill="rgb(225,176,49)" fg:x="5020" fg:w="4"/><text x="24.2680%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.0180%" y="613" width="0.0191%" height="15" fill="rgb(224,221,49)" fg:x="5020" fg:w="4"/><text x="24.2680%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.0467%" y="613" width="0.0144%" height="15" fill="rgb(253,169,27)" fg:x="5026" fg:w="3"/><text x="24.2967%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="24.0467%" y="597" width="0.0144%" height="15" fill="rgb(211,206,16)" fg:x="5026" fg:w="3"/><text x="24.2967%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.0610%" y="581" width="0.0144%" height="15" fill="rgb(244,87,35)" fg:x="5029" fg:w="3"/><text x="24.3110%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="23.9701%" y="693" width="0.1148%" height="15" fill="rgb(246,28,10)" fg:x="5010" fg:w="24"/><text x="24.2201%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="23.9941%" y="677" width="0.0909%" height="15" fill="rgb(229,12,44)" fg:x="5015" fg:w="19"/><text x="24.2441%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="23.9941%" y="661" width="0.0909%" height="15" fill="rgb(210,145,37)" fg:x="5015" fg:w="19"/><text x="24.2441%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="24.0371%" y="645" width="0.0478%" height="15" fill="rgb(227,112,52)" fg:x="5024" fg:w="10"/><text x="24.2871%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="24.0371%" y="629" width="0.0478%" height="15" fill="rgb(238,155,34)" fg:x="5024" fg:w="10"/><text x="24.2871%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.0610%" y="613" width="0.0239%" height="15" fill="rgb(239,226,36)" fg:x="5029" fg:w="5"/><text x="24.3110%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.0610%" y="597" width="0.0239%" height="15" fill="rgb(230,16,23)" fg:x="5029" fg:w="5"/><text x="24.3110%" y="607.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="24.1089%" y="613" width="0.0191%" height="15" fill="rgb(236,171,36)" fg:x="5039" fg:w="4"/><text x="24.3589%" y="623.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="24.1089%" y="597" width="0.0191%" height="15" fill="rgb(221,22,14)" fg:x="5039" fg:w="4"/><text x="24.3589%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="24.1041%" y="629" width="0.0431%" height="15" fill="rgb(242,43,11)" fg:x="5038" fg:w="9"/><text x="24.3541%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.1280%" y="613" width="0.0191%" height="15" fill="rgb(232,69,23)" fg:x="5043" fg:w="4"/><text x="24.3780%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.1280%" y="597" width="0.0191%" height="15" fill="rgb(216,180,54)" fg:x="5043" fg:w="4"/><text x="24.3780%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.1663%" y="565" width="0.0144%" height="15" fill="rgb(216,5,24)" fg:x="5051" fg:w="3"/><text x="24.4163%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.1663%" y="549" width="0.0144%" height="15" fill="rgb(225,89,9)" fg:x="5051" fg:w="3"/><text x="24.4163%" y="559.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="24.1663%" y="533" width="0.0144%" height="15" fill="rgb(243,75,33)" fg:x="5051" fg:w="3"/><text x="24.4163%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (105 samples, 0.50%)</title><rect x="23.6879%" y="805" width="0.5024%" height="15" fill="rgb(247,141,45)" fg:x="4951" fg:w="105"/><text x="23.9379%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (101 samples, 0.48%)</title><rect x="23.7070%" y="789" width="0.4832%" height="15" fill="rgb(232,177,36)" fg:x="4955" fg:w="101"/><text x="23.9570%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (101 samples, 0.48%)</title><rect x="23.7070%" y="773" width="0.4832%" height="15" fill="rgb(219,125,36)" fg:x="4955" fg:w="101"/><text x="23.9570%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (48 samples, 0.23%)</title><rect x="23.9606%" y="757" width="0.2297%" height="15" fill="rgb(227,94,9)" fg:x="5008" fg:w="48"/><text x="24.2106%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.23%)</title><rect x="23.9606%" y="741" width="0.2297%" height="15" fill="rgb(240,34,52)" fg:x="5008" fg:w="48"/><text x="24.2106%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.22%)</title><rect x="23.9701%" y="725" width="0.2201%" height="15" fill="rgb(216,45,12)" fg:x="5010" fg:w="46"/><text x="24.2201%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.22%)</title><rect x="23.9701%" y="709" width="0.2201%" height="15" fill="rgb(246,21,19)" fg:x="5010" fg:w="46"/><text x="24.2201%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.11%)</title><rect x="24.0850%" y="693" width="0.1053%" height="15" fill="rgb(213,98,42)" fg:x="5034" fg:w="22"/><text x="24.3350%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="24.0850%" y="677" width="0.1053%" height="15" fill="rgb(250,136,47)" fg:x="5034" fg:w="22"/><text x="24.3350%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="24.1041%" y="661" width="0.0861%" height="15" fill="rgb(251,124,27)" fg:x="5038" fg:w="18"/><text x="24.3541%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="24.1041%" y="645" width="0.0861%" height="15" fill="rgb(229,180,14)" fg:x="5038" fg:w="18"/><text x="24.3541%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="24.1472%" y="629" width="0.0431%" height="15" fill="rgb(245,216,25)" fg:x="5047" fg:w="9"/><text x="24.3972%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="24.1472%" y="613" width="0.0431%" height="15" fill="rgb(251,43,5)" fg:x="5047" fg:w="9"/><text x="24.3972%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.1663%" y="597" width="0.0239%" height="15" fill="rgb(250,128,24)" fg:x="5051" fg:w="5"/><text x="24.4163%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.1663%" y="581" width="0.0239%" height="15" fill="rgb(217,117,27)" fg:x="5051" fg:w="5"/><text x="24.4163%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="24.2094%" y="693" width="0.0335%" height="15" fill="rgb(245,147,4)" fg:x="5060" fg:w="7"/><text x="24.4594%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.2285%" y="677" width="0.0144%" height="15" fill="rgb(242,201,35)" fg:x="5064" fg:w="3"/><text x="24.4785%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.2285%" y="661" width="0.0144%" height="15" fill="rgb(218,181,1)" fg:x="5064" fg:w="3"/><text x="24.4785%" y="671.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.2572%" y="661" width="0.0144%" height="15" fill="rgb(222,6,29)" fg:x="5070" fg:w="3"/><text x="24.5072%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="24.1902%" y="741" width="0.0957%" height="15" fill="rgb(208,186,3)" fg:x="5056" fg:w="20"/><text x="24.4402%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="24.2094%" y="725" width="0.0766%" height="15" fill="rgb(216,36,26)" fg:x="5060" fg:w="16"/><text x="24.4594%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="24.2094%" y="709" width="0.0766%" height="15" fill="rgb(248,201,23)" fg:x="5060" fg:w="16"/><text x="24.4594%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="24.2429%" y="693" width="0.0431%" height="15" fill="rgb(251,170,31)" fg:x="5067" fg:w="9"/><text x="24.4929%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="24.2429%" y="677" width="0.0431%" height="15" fill="rgb(207,110,25)" fg:x="5067" fg:w="9"/><text x="24.4929%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.2716%" y="661" width="0.0144%" height="15" fill="rgb(250,54,15)" fg:x="5073" fg:w="3"/><text x="24.5216%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.2716%" y="645" width="0.0144%" height="15" fill="rgb(227,68,33)" fg:x="5073" fg:w="3"/><text x="24.5216%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.3003%" y="677" width="0.0191%" height="15" fill="rgb(238,34,41)" fg:x="5079" fg:w="4"/><text x="24.5503%" y="687.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="24.3051%" y="661" width="0.0144%" height="15" fill="rgb(220,11,15)" fg:x="5080" fg:w="3"/><text x="24.5551%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="24.2859%" y="741" width="0.0478%" height="15" fill="rgb(246,111,35)" fg:x="5076" fg:w="10"/><text x="24.5359%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="24.2859%" y="725" width="0.0478%" height="15" fill="rgb(209,88,53)" fg:x="5076" fg:w="10"/><text x="24.5359%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="24.3003%" y="709" width="0.0335%" height="15" fill="rgb(231,185,47)" fg:x="5079" fg:w="7"/><text x="24.5503%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="24.3003%" y="693" width="0.0335%" height="15" fill="rgb(233,154,1)" fg:x="5079" fg:w="7"/><text x="24.5503%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="24.3194%" y="677" width="0.0144%" height="15" fill="rgb(225,15,46)" fg:x="5083" fg:w="3"/><text x="24.5694%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.3194%" y="661" width="0.0144%" height="15" fill="rgb(211,135,41)" fg:x="5083" fg:w="3"/><text x="24.5694%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.3338%" y="517" width="0.0144%" height="15" fill="rgb(208,54,0)" fg:x="5086" fg:w="3"/><text x="24.5838%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.3338%" y="501" width="0.0144%" height="15" fill="rgb(244,136,14)" fg:x="5086" fg:w="3"/><text x="24.5838%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.3338%" y="485" width="0.0144%" height="15" fill="rgb(241,56,14)" fg:x="5086" fg:w="3"/><text x="24.5838%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.3338%" y="565" width="0.0191%" height="15" fill="rgb(205,80,24)" fg:x="5086" fg:w="4"/><text x="24.5838%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.3338%" y="549" width="0.0191%" height="15" fill="rgb(220,57,4)" fg:x="5086" fg:w="4"/><text x="24.5838%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.3338%" y="533" width="0.0191%" height="15" fill="rgb(226,193,50)" fg:x="5086" fg:w="4"/><text x="24.5838%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="24.3338%" y="613" width="0.0431%" height="15" fill="rgb(231,168,22)" fg:x="5086" fg:w="9"/><text x="24.5838%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="24.3338%" y="597" width="0.0431%" height="15" fill="rgb(254,215,14)" fg:x="5086" fg:w="9"/><text x="24.5838%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="24.3338%" y="581" width="0.0431%" height="15" fill="rgb(211,115,16)" fg:x="5086" fg:w="9"/><text x="24.5838%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="24.3529%" y="565" width="0.0239%" height="15" fill="rgb(236,210,16)" fg:x="5090" fg:w="5"/><text x="24.6029%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.3529%" y="549" width="0.0239%" height="15" fill="rgb(221,94,12)" fg:x="5090" fg:w="5"/><text x="24.6029%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.3529%" y="533" width="0.0239%" height="15" fill="rgb(235,218,49)" fg:x="5090" fg:w="5"/><text x="24.6029%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.3529%" y="517" width="0.0239%" height="15" fill="rgb(217,114,14)" fg:x="5090" fg:w="5"/><text x="24.6029%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="24.3625%" y="501" width="0.0144%" height="15" fill="rgb(216,145,22)" fg:x="5092" fg:w="3"/><text x="24.6125%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.3625%" y="485" width="0.0144%" height="15" fill="rgb(217,112,39)" fg:x="5092" fg:w="3"/><text x="24.6125%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.3625%" y="469" width="0.0144%" height="15" fill="rgb(225,85,32)" fg:x="5092" fg:w="3"/><text x="24.6125%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.3625%" y="453" width="0.0144%" height="15" fill="rgb(245,209,47)" fg:x="5092" fg:w="3"/><text x="24.6125%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.3768%" y="501" width="0.0144%" height="15" fill="rgb(218,220,15)" fg:x="5095" fg:w="3"/><text x="24.6268%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.3768%" y="485" width="0.0144%" height="15" fill="rgb(222,202,31)" fg:x="5095" fg:w="3"/><text x="24.6268%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.3768%" y="469" width="0.0144%" height="15" fill="rgb(243,203,4)" fg:x="5095" fg:w="3"/><text x="24.6268%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="24.3768%" y="549" width="0.0239%" height="15" fill="rgb(237,92,17)" fg:x="5095" fg:w="5"/><text x="24.6268%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="24.3768%" y="533" width="0.0239%" height="15" fill="rgb(231,119,7)" fg:x="5095" fg:w="5"/><text x="24.6268%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="24.3768%" y="517" width="0.0239%" height="15" fill="rgb(237,82,41)" fg:x="5095" fg:w="5"/><text x="24.6268%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.4007%" y="485" width="0.0144%" height="15" fill="rgb(226,81,48)" fg:x="5100" fg:w="3"/><text x="24.6507%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.4007%" y="469" width="0.0144%" height="15" fill="rgb(234,70,51)" fg:x="5100" fg:w="3"/><text x="24.6507%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.4007%" y="453" width="0.0144%" height="15" fill="rgb(251,86,4)" fg:x="5100" fg:w="3"/><text x="24.6507%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="24.3338%" y="661" width="0.0957%" height="15" fill="rgb(244,144,28)" fg:x="5086" fg:w="20"/><text x="24.5838%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="24.3338%" y="645" width="0.0957%" height="15" fill="rgb(232,161,39)" fg:x="5086" fg:w="20"/><text x="24.5838%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="24.3338%" y="629" width="0.0957%" height="15" fill="rgb(247,34,51)" fg:x="5086" fg:w="20"/><text x="24.5838%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="24.3768%" y="613" width="0.0526%" height="15" fill="rgb(225,132,2)" fg:x="5095" fg:w="11"/><text x="24.6268%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="24.3768%" y="597" width="0.0526%" height="15" fill="rgb(209,159,44)" fg:x="5095" fg:w="11"/><text x="24.6268%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="24.3768%" y="581" width="0.0526%" height="15" fill="rgb(251,214,1)" fg:x="5095" fg:w="11"/><text x="24.6268%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="24.3768%" y="565" width="0.0526%" height="15" fill="rgb(247,84,47)" fg:x="5095" fg:w="11"/><text x="24.6268%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="24.4007%" y="549" width="0.0287%" height="15" fill="rgb(240,111,43)" fg:x="5100" fg:w="6"/><text x="24.6507%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="24.4007%" y="533" width="0.0287%" height="15" fill="rgb(215,214,35)" fg:x="5100" fg:w="6"/><text x="24.6507%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="24.4007%" y="517" width="0.0287%" height="15" fill="rgb(248,207,23)" fg:x="5100" fg:w="6"/><text x="24.6507%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="24.4007%" y="501" width="0.0287%" height="15" fill="rgb(214,186,4)" fg:x="5100" fg:w="6"/><text x="24.6507%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="24.4151%" y="485" width="0.0144%" height="15" fill="rgb(220,133,22)" fg:x="5103" fg:w="3"/><text x="24.6651%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.4151%" y="469" width="0.0144%" height="15" fill="rgb(239,134,19)" fg:x="5103" fg:w="3"/><text x="24.6651%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.4151%" y="453" width="0.0144%" height="15" fill="rgb(250,140,9)" fg:x="5103" fg:w="3"/><text x="24.6651%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.4151%" y="437" width="0.0144%" height="15" fill="rgb(225,59,14)" fg:x="5103" fg:w="3"/><text x="24.6651%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="24.4342%" y="581" width="0.0191%" height="15" fill="rgb(214,152,51)" fg:x="5107" fg:w="4"/><text x="24.6842%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.4390%" y="565" width="0.0144%" height="15" fill="rgb(251,227,43)" fg:x="5108" fg:w="3"/><text x="24.6890%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.4390%" y="549" width="0.0144%" height="15" fill="rgb(241,96,17)" fg:x="5108" fg:w="3"/><text x="24.6890%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (57 samples, 0.27%)</title><rect x="24.1902%" y="805" width="0.2727%" height="15" fill="rgb(234,198,43)" fg:x="5056" fg:w="57"/><text x="24.4402%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.27%)</title><rect x="24.1902%" y="789" width="0.2727%" height="15" fill="rgb(220,108,29)" fg:x="5056" fg:w="57"/><text x="24.4402%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (57 samples, 0.27%)</title><rect x="24.1902%" y="773" width="0.2727%" height="15" fill="rgb(226,163,33)" fg:x="5056" fg:w="57"/><text x="24.4402%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (57 samples, 0.27%)</title><rect x="24.1902%" y="757" width="0.2727%" height="15" fill="rgb(205,194,45)" fg:x="5056" fg:w="57"/><text x="24.4402%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (27 samples, 0.13%)</title><rect x="24.3338%" y="741" width="0.1292%" height="15" fill="rgb(206,143,44)" fg:x="5086" fg:w="27"/><text x="24.5838%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (27 samples, 0.13%)</title><rect x="24.3338%" y="725" width="0.1292%" height="15" fill="rgb(236,136,36)" fg:x="5086" fg:w="27"/><text x="24.5838%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.13%)</title><rect x="24.3338%" y="709" width="0.1292%" height="15" fill="rgb(249,172,42)" fg:x="5086" fg:w="27"/><text x="24.5838%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.13%)</title><rect x="24.3338%" y="693" width="0.1292%" height="15" fill="rgb(216,139,23)" fg:x="5086" fg:w="27"/><text x="24.5838%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.13%)</title><rect x="24.3338%" y="677" width="0.1292%" height="15" fill="rgb(207,166,20)" fg:x="5086" fg:w="27"/><text x="24.5838%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="24.4295%" y="661" width="0.0335%" height="15" fill="rgb(210,209,22)" fg:x="5106" fg:w="7"/><text x="24.6795%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="24.4295%" y="645" width="0.0335%" height="15" fill="rgb(232,118,20)" fg:x="5106" fg:w="7"/><text x="24.6795%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="24.4295%" y="629" width="0.0335%" height="15" fill="rgb(238,113,42)" fg:x="5106" fg:w="7"/><text x="24.6795%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="24.4342%" y="613" width="0.0287%" height="15" fill="rgb(231,42,5)" fg:x="5107" fg:w="6"/><text x="24.6842%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="24.4342%" y="597" width="0.0287%" height="15" fill="rgb(243,166,24)" fg:x="5107" fg:w="6"/><text x="24.6842%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="24.4964%" y="677" width="0.0335%" height="15" fill="rgb(237,226,12)" fg:x="5120" fg:w="7"/><text x="24.7464%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="24.5108%" y="661" width="0.0191%" height="15" fill="rgb(229,133,24)" fg:x="5123" fg:w="4"/><text x="24.7608%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="24.5108%" y="645" width="0.0191%" height="15" fill="rgb(238,33,43)" fg:x="5123" fg:w="4"/><text x="24.7608%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="24.4869%" y="725" width="0.0526%" height="15" fill="rgb(227,59,38)" fg:x="5118" fg:w="11"/><text x="24.7369%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="24.4964%" y="709" width="0.0431%" height="15" fill="rgb(230,97,0)" fg:x="5120" fg:w="9"/><text x="24.7464%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="24.4964%" y="693" width="0.0431%" height="15" fill="rgb(250,173,50)" fg:x="5120" fg:w="9"/><text x="24.7464%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.5634%" y="597" width="0.0144%" height="15" fill="rgb(240,15,50)" fg:x="5134" fg:w="3"/><text x="24.8134%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.5634%" y="581" width="0.0144%" height="15" fill="rgb(221,93,22)" fg:x="5134" fg:w="3"/><text x="24.8134%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.5634%" y="565" width="0.0144%" height="15" fill="rgb(245,180,53)" fg:x="5134" fg:w="3"/><text x="24.8134%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="24.5443%" y="645" width="0.0478%" height="15" fill="rgb(231,88,51)" fg:x="5130" fg:w="10"/><text x="24.7943%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="24.5634%" y="629" width="0.0287%" height="15" fill="rgb(240,58,21)" fg:x="5134" fg:w="6"/><text x="24.8134%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="24.5634%" y="613" width="0.0287%" height="15" fill="rgb(237,21,10)" fg:x="5134" fg:w="6"/><text x="24.8134%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="24.5778%" y="597" width="0.0144%" height="15" fill="rgb(218,43,11)" fg:x="5137" fg:w="3"/><text x="24.8278%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="24.5778%" y="581" width="0.0144%" height="15" fill="rgb(218,221,29)" fg:x="5137" fg:w="3"/><text x="24.8278%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="24.5778%" y="565" width="0.0144%" height="15" fill="rgb(214,118,42)" fg:x="5137" fg:w="3"/><text x="24.8278%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="24.5778%" y="549" width="0.0144%" height="15" fill="rgb(251,200,26)" fg:x="5137" fg:w="3"/><text x="24.8278%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="24.5778%" y="533" width="0.0144%" height="15" fill="rgb(237,101,39)" fg:x="5137" fg:w="3"/><text x="24.8278%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (2,451 samples, 11.73%)</title><rect x="12.8750%" y="933" width="11.7267%" height="15" fill="rgb(251,117,11)" fg:x="2691" fg:w="2451"/><text x="13.1250%" y="943.50">rayon::iter::plum..</text></g><g><title>rayon_core::registry::in_worker (2,428 samples, 11.62%)</title><rect x="12.9850%" y="917" width="11.6167%" height="15" fill="rgb(216,223,23)" fg:x="2714" fg:w="2428"/><text x="13.2350%" y="927.50">rayon_core::regis..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (2,428 samples, 11.62%)</title><rect x="12.9850%" y="901" width="11.6167%" height="15" fill="rgb(251,54,12)" fg:x="2714" fg:w="2428"/><text x="13.2350%" y="911.50">_ZN10rayon_core4j..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (192 samples, 0.92%)</title><rect x="23.6831%" y="885" width="0.9186%" height="15" fill="rgb(254,176,54)" fg:x="4950" fg:w="192"/><text x="23.9331%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (192 samples, 0.92%)</title><rect x="23.6831%" y="869" width="0.9186%" height="15" fill="rgb(210,32,8)" fg:x="4950" fg:w="192"/><text x="23.9331%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (192 samples, 0.92%)</title><rect x="23.6831%" y="853" width="0.9186%" height="15" fill="rgb(235,52,38)" fg:x="4950" fg:w="192"/><text x="23.9331%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (191 samples, 0.91%)</title><rect x="23.6879%" y="837" width="0.9138%" height="15" fill="rgb(231,4,44)" fg:x="4951" fg:w="191"/><text x="23.9379%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (191 samples, 0.91%)</title><rect x="23.6879%" y="821" width="0.9138%" height="15" fill="rgb(249,2,32)" fg:x="4951" fg:w="191"/><text x="23.9379%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (29 samples, 0.14%)</title><rect x="24.4629%" y="805" width="0.1387%" height="15" fill="rgb(224,65,26)" fg:x="5113" fg:w="29"/><text x="24.7129%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (29 samples, 0.14%)</title><rect x="24.4629%" y="789" width="0.1387%" height="15" fill="rgb(250,73,40)" fg:x="5113" fg:w="29"/><text x="24.7129%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="24.4629%" y="773" width="0.1387%" height="15" fill="rgb(253,177,16)" fg:x="5113" fg:w="29"/><text x="24.7129%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="24.4869%" y="757" width="0.1148%" height="15" fill="rgb(217,32,34)" fg:x="5118" fg:w="24"/><text x="24.7369%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="24.4869%" y="741" width="0.1148%" height="15" fill="rgb(212,7,10)" fg:x="5118" fg:w="24"/><text x="24.7369%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.06%)</title><rect x="24.5443%" y="725" width="0.0574%" height="15" fill="rgb(245,89,8)" fg:x="5130" fg:w="12"/><text x="24.7943%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.06%)</title><rect x="24.5443%" y="709" width="0.0574%" height="15" fill="rgb(237,16,53)" fg:x="5130" fg:w="12"/><text x="24.7943%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="24.5443%" y="693" width="0.0574%" height="15" fill="rgb(250,204,30)" fg:x="5130" fg:w="12"/><text x="24.7943%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="24.5443%" y="677" width="0.0574%" height="15" fill="rgb(208,77,27)" fg:x="5130" fg:w="12"/><text x="24.7943%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="24.5443%" y="661" width="0.0574%" height="15" fill="rgb(250,204,28)" fg:x="5130" fg:w="12"/><text x="24.7943%" y="671.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="24.6639%" y="901" width="0.0431%" height="15" fill="rgb(244,63,21)" fg:x="5155" fg:w="9"/><text x="24.9139%" y="911.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="24.6735%" y="885" width="0.0335%" height="15" fill="rgb(236,85,44)" fg:x="5157" fg:w="7"/><text x="24.9235%" y="895.50"></text></g><g><title>exp (21 samples, 0.10%)</title><rect x="24.8074%" y="853" width="0.1005%" height="15" fill="rgb(215,98,4)" fg:x="5185" fg:w="21"/><text x="25.0574%" y="863.50"></text></g><g><title>[libm.so.6] (19 samples, 0.09%)</title><rect x="24.8170%" y="837" width="0.0909%" height="15" fill="rgb(235,38,11)" fg:x="5187" fg:w="19"/><text x="25.0670%" y="847.50"></text></g><g><title>exp (21 samples, 0.10%)</title><rect x="25.0084%" y="805" width="0.1005%" height="15" fill="rgb(254,186,25)" fg:x="5227" fg:w="21"/><text x="25.2584%" y="815.50"></text></g><g><title>[libm.so.6] (15 samples, 0.07%)</title><rect x="25.0371%" y="789" width="0.0718%" height="15" fill="rgb(225,55,31)" fg:x="5233" fg:w="15"/><text x="25.2871%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.32%)</title><rect x="25.1088%" y="773" width="0.3158%" height="15" fill="rgb(211,15,21)" fg:x="5248" fg:w="66"/><text x="25.3588%" y="783.50"></text></g><g><title>exp (21 samples, 0.10%)</title><rect x="25.3241%" y="757" width="0.1005%" height="15" fill="rgb(215,187,41)" fg:x="5293" fg:w="21"/><text x="25.5741%" y="767.50"></text></g><g><title>[libm.so.6] (19 samples, 0.09%)</title><rect x="25.3337%" y="741" width="0.0909%" height="15" fill="rgb(248,69,32)" fg:x="5295" fg:w="19"/><text x="25.5837%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (177 samples, 0.85%)</title><rect x="24.9079%" y="821" width="0.8468%" height="15" fill="rgb(252,102,52)" fg:x="5206" fg:w="177"/><text x="25.1579%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (135 samples, 0.65%)</title><rect x="25.1088%" y="805" width="0.6459%" height="15" fill="rgb(253,140,32)" fg:x="5248" fg:w="135"/><text x="25.3588%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (135 samples, 0.65%)</title><rect x="25.1088%" y="789" width="0.6459%" height="15" fill="rgb(216,56,42)" fg:x="5248" fg:w="135"/><text x="25.3588%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (69 samples, 0.33%)</title><rect x="25.4246%" y="773" width="0.3301%" height="15" fill="rgb(216,184,14)" fg:x="5314" fg:w="69"/><text x="25.6746%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (69 samples, 0.33%)</title><rect x="25.4246%" y="757" width="0.3301%" height="15" fill="rgb(237,187,27)" fg:x="5314" fg:w="69"/><text x="25.6746%" y="767.50"></text></g><g><title>exp (33 samples, 0.16%)</title><rect x="25.5969%" y="741" width="0.1579%" height="15" fill="rgb(219,65,3)" fg:x="5350" fg:w="33"/><text x="25.8469%" y="751.50"></text></g><g><title>[libm.so.6] (25 samples, 0.12%)</title><rect x="25.6351%" y="725" width="0.1196%" height="15" fill="rgb(245,83,25)" fg:x="5358" fg:w="25"/><text x="25.8851%" y="735.50"></text></g><g><title>exp (23 samples, 0.11%)</title><rect x="25.8504%" y="789" width="0.1100%" height="15" fill="rgb(214,205,45)" fg:x="5403" fg:w="23"/><text x="26.1004%" y="799.50"></text></g><g><title>[libm.so.6] (20 samples, 0.10%)</title><rect x="25.8648%" y="773" width="0.0957%" height="15" fill="rgb(241,20,18)" fg:x="5406" fg:w="20"/><text x="26.1148%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (73 samples, 0.35%)</title><rect x="25.9605%" y="757" width="0.3493%" height="15" fill="rgb(232,163,23)" fg:x="5426" fg:w="73"/><text x="26.2105%" y="767.50"></text></g><g><title>exp (29 samples, 0.14%)</title><rect x="26.1710%" y="741" width="0.1387%" height="15" fill="rgb(214,5,46)" fg:x="5470" fg:w="29"/><text x="26.4210%" y="751.50"></text></g><g><title>[libm.so.6] (24 samples, 0.11%)</title><rect x="26.1949%" y="725" width="0.1148%" height="15" fill="rgb(229,78,17)" fg:x="5475" fg:w="24"/><text x="26.4449%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (62 samples, 0.30%)</title><rect x="26.3097%" y="757" width="0.2966%" height="15" fill="rgb(248,89,10)" fg:x="5499" fg:w="62"/><text x="26.5597%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (62 samples, 0.30%)</title><rect x="26.3097%" y="741" width="0.2966%" height="15" fill="rgb(248,54,15)" fg:x="5499" fg:w="62"/><text x="26.5597%" y="751.50"></text></g><g><title>exp (32 samples, 0.15%)</title><rect x="26.4533%" y="725" width="0.1531%" height="15" fill="rgb(223,116,6)" fg:x="5529" fg:w="32"/><text x="26.7033%" y="735.50"></text></g><g><title>[libm.so.6] (25 samples, 0.12%)</title><rect x="26.4868%" y="709" width="0.1196%" height="15" fill="rgb(205,125,38)" fg:x="5536" fg:w="25"/><text x="26.7368%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (183 samples, 0.88%)</title><rect x="25.7547%" y="821" width="0.8756%" height="15" fill="rgb(251,78,38)" fg:x="5383" fg:w="183"/><text x="26.0047%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (183 samples, 0.88%)</title><rect x="25.7547%" y="805" width="0.8756%" height="15" fill="rgb(253,78,28)" fg:x="5383" fg:w="183"/><text x="26.0047%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (140 samples, 0.67%)</title><rect x="25.9605%" y="789" width="0.6698%" height="15" fill="rgb(209,120,3)" fg:x="5426" fg:w="140"/><text x="26.2105%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (140 samples, 0.67%)</title><rect x="25.9605%" y="773" width="0.6698%" height="15" fill="rgb(238,229,9)" fg:x="5426" fg:w="140"/><text x="26.2105%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="26.6064%" y="757" width="0.0239%" height="15" fill="rgb(253,159,18)" fg:x="5561" fg:w="5"/><text x="26.8564%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="26.6064%" y="741" width="0.0239%" height="15" fill="rgb(244,42,34)" fg:x="5561" fg:w="5"/><text x="26.8564%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="26.6064%" y="725" width="0.0239%" height="15" fill="rgb(224,8,7)" fg:x="5561" fg:w="5"/><text x="26.8564%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="26.6064%" y="709" width="0.0239%" height="15" fill="rgb(210,201,45)" fg:x="5561" fg:w="5"/><text x="26.8564%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="26.6064%" y="693" width="0.0239%" height="15" fill="rgb(252,185,21)" fg:x="5561" fg:w="5"/><text x="26.8564%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (405 samples, 1.94%)</title><rect x="24.7070%" y="869" width="1.9377%" height="15" fill="rgb(223,131,1)" fg:x="5164" fg:w="405"/><text x="24.9570%" y="879.50">r..</text></g><g><title>rayon_core::registry::in_worker (363 samples, 1.74%)</title><rect x="24.9079%" y="853" width="1.7368%" height="15" fill="rgb(245,141,16)" fg:x="5206" fg:w="363"/><text x="25.1579%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (363 samples, 1.74%)</title><rect x="24.9079%" y="837" width="1.7368%" height="15" fill="rgb(229,55,45)" fg:x="5206" fg:w="363"/><text x="25.1579%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="26.6303%" y="821" width="0.0144%" height="15" fill="rgb(208,92,15)" fg:x="5566" fg:w="3"/><text x="26.8803%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="26.6303%" y="805" width="0.0144%" height="15" fill="rgb(234,185,47)" fg:x="5566" fg:w="3"/><text x="26.8803%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="26.6303%" y="789" width="0.0144%" height="15" fill="rgb(253,104,50)" fg:x="5566" fg:w="3"/><text x="26.8803%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="26.6303%" y="773" width="0.0144%" height="15" fill="rgb(205,70,7)" fg:x="5566" fg:w="3"/><text x="26.8803%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="26.6303%" y="757" width="0.0144%" height="15" fill="rgb(240,178,43)" fg:x="5566" fg:w="3"/><text x="26.8803%" y="767.50"></text></g><g><title>exp (21 samples, 0.10%)</title><rect x="26.7116%" y="837" width="0.1005%" height="15" fill="rgb(214,112,2)" fg:x="5583" fg:w="21"/><text x="26.9616%" y="847.50"></text></g><g><title>[libm.so.6] (16 samples, 0.08%)</title><rect x="26.7356%" y="821" width="0.0766%" height="15" fill="rgb(206,46,17)" fg:x="5588" fg:w="16"/><text x="26.9856%" y="831.50"></text></g><g><title>exp (23 samples, 0.11%)</title><rect x="26.9030%" y="789" width="0.1100%" height="15" fill="rgb(225,220,16)" fg:x="5623" fg:w="23"/><text x="27.1530%" y="799.50"></text></g><g><title>[libm.so.6] (18 samples, 0.09%)</title><rect x="26.9269%" y="773" width="0.0861%" height="15" fill="rgb(238,65,40)" fg:x="5628" fg:w="18"/><text x="27.1769%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.25%)</title><rect x="27.0131%" y="757" width="0.2488%" height="15" fill="rgb(230,151,21)" fg:x="5646" fg:w="52"/><text x="27.2631%" y="767.50"></text></g><g><title>exp (12 samples, 0.06%)</title><rect x="27.2044%" y="741" width="0.0574%" height="15" fill="rgb(218,58,49)" fg:x="5686" fg:w="12"/><text x="27.4544%" y="751.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="27.2188%" y="725" width="0.0431%" height="15" fill="rgb(219,179,14)" fg:x="5689" fg:w="9"/><text x="27.4688%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (144 samples, 0.69%)</title><rect x="26.8121%" y="805" width="0.6890%" height="15" fill="rgb(223,72,1)" fg:x="5604" fg:w="144"/><text x="27.0621%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (102 samples, 0.49%)</title><rect x="27.0131%" y="789" width="0.4880%" height="15" fill="rgb(238,126,10)" fg:x="5646" fg:w="102"/><text x="27.2631%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (102 samples, 0.49%)</title><rect x="27.0131%" y="773" width="0.4880%" height="15" fill="rgb(224,206,38)" fg:x="5646" fg:w="102"/><text x="27.2631%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (50 samples, 0.24%)</title><rect x="27.2619%" y="757" width="0.2392%" height="15" fill="rgb(212,201,54)" fg:x="5698" fg:w="50"/><text x="27.5119%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.24%)</title><rect x="27.2619%" y="741" width="0.2392%" height="15" fill="rgb(218,154,48)" fg:x="5698" fg:w="50"/><text x="27.5119%" y="751.50"></text></g><g><title>exp (18 samples, 0.09%)</title><rect x="27.4150%" y="725" width="0.0861%" height="15" fill="rgb(232,93,24)" fg:x="5730" fg:w="18"/><text x="27.6650%" y="735.50"></text></g><g><title>[libm.so.6] (14 samples, 0.07%)</title><rect x="27.4341%" y="709" width="0.0670%" height="15" fill="rgb(245,30,21)" fg:x="5734" fg:w="14"/><text x="27.6841%" y="719.50"></text></g><g><title>exp (22 samples, 0.11%)</title><rect x="27.5728%" y="773" width="0.1053%" height="15" fill="rgb(242,148,29)" fg:x="5763" fg:w="22"/><text x="27.8228%" y="783.50"></text></g><g><title>[libm.so.6] (19 samples, 0.09%)</title><rect x="27.5872%" y="757" width="0.0909%" height="15" fill="rgb(244,153,54)" fg:x="5766" fg:w="19"/><text x="27.8372%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.26%)</title><rect x="27.6781%" y="741" width="0.2631%" height="15" fill="rgb(252,87,22)" fg:x="5785" fg:w="55"/><text x="27.9281%" y="751.50"></text></g><g><title>exp (17 samples, 0.08%)</title><rect x="27.8599%" y="725" width="0.0813%" height="15" fill="rgb(210,51,29)" fg:x="5823" fg:w="17"/><text x="28.1099%" y="735.50"></text></g><g><title>[libm.so.6] (14 samples, 0.07%)</title><rect x="27.8743%" y="709" width="0.0670%" height="15" fill="rgb(242,136,47)" fg:x="5826" fg:w="14"/><text x="28.1243%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (49 samples, 0.23%)</title><rect x="27.9412%" y="741" width="0.2344%" height="15" fill="rgb(238,68,4)" fg:x="5840" fg:w="49"/><text x="28.1912%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (49 samples, 0.23%)</title><rect x="27.9412%" y="725" width="0.2344%" height="15" fill="rgb(242,161,30)" fg:x="5840" fg:w="49"/><text x="28.1912%" y="735.50"></text></g><g><title>exp (17 samples, 0.08%)</title><rect x="28.0943%" y="709" width="0.0813%" height="15" fill="rgb(218,58,44)" fg:x="5872" fg:w="17"/><text x="28.3443%" y="719.50"></text></g><g><title>[libm.so.6] (13 samples, 0.06%)</title><rect x="28.1135%" y="693" width="0.0622%" height="15" fill="rgb(252,125,32)" fg:x="5876" fg:w="13"/><text x="28.3635%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.1757%" y="613" width="0.0144%" height="15" fill="rgb(219,178,0)" fg:x="5889" fg:w="3"/><text x="28.4257%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.1757%" y="597" width="0.0144%" height="15" fill="rgb(213,152,7)" fg:x="5889" fg:w="3"/><text x="28.4257%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.1757%" y="581" width="0.0144%" height="15" fill="rgb(249,109,34)" fg:x="5889" fg:w="3"/><text x="28.4257%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.1757%" y="661" width="0.0287%" height="15" fill="rgb(232,96,21)" fg:x="5889" fg:w="6"/><text x="28.4257%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.1757%" y="645" width="0.0287%" height="15" fill="rgb(228,27,39)" fg:x="5889" fg:w="6"/><text x="28.4257%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.1757%" y="629" width="0.0287%" height="15" fill="rgb(211,182,52)" fg:x="5889" fg:w="6"/><text x="28.4257%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.1900%" y="613" width="0.0144%" height="15" fill="rgb(234,178,38)" fg:x="5892" fg:w="3"/><text x="28.4400%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.1900%" y="597" width="0.0144%" height="15" fill="rgb(221,111,3)" fg:x="5892" fg:w="3"/><text x="28.4400%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.1900%" y="581" width="0.0144%" height="15" fill="rgb(228,175,21)" fg:x="5892" fg:w="3"/><text x="28.4400%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.1900%" y="565" width="0.0144%" height="15" fill="rgb(228,174,43)" fg:x="5892" fg:w="3"/><text x="28.4400%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2044%" y="597" width="0.0144%" height="15" fill="rgb(211,191,0)" fg:x="5895" fg:w="3"/><text x="28.4544%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2044%" y="581" width="0.0144%" height="15" fill="rgb(253,117,3)" fg:x="5895" fg:w="3"/><text x="28.4544%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2044%" y="565" width="0.0144%" height="15" fill="rgb(241,127,19)" fg:x="5895" fg:w="3"/><text x="28.4544%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.2187%" y="421" width="0.0191%" height="15" fill="rgb(218,103,12)" fg:x="5898" fg:w="4"/><text x="28.4687%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.2187%" y="405" width="0.0191%" height="15" fill="rgb(236,214,43)" fg:x="5898" fg:w="4"/><text x="28.4687%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.2187%" y="389" width="0.0191%" height="15" fill="rgb(244,144,19)" fg:x="5898" fg:w="4"/><text x="28.4687%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2379%" y="357" width="0.0144%" height="15" fill="rgb(246,188,10)" fg:x="5902" fg:w="3"/><text x="28.4879%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2379%" y="341" width="0.0144%" height="15" fill="rgb(212,193,33)" fg:x="5902" fg:w="3"/><text x="28.4879%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2379%" y="325" width="0.0144%" height="15" fill="rgb(241,51,29)" fg:x="5902" fg:w="3"/><text x="28.4879%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="28.2187%" y="469" width="0.0478%" height="15" fill="rgb(211,58,19)" fg:x="5898" fg:w="10"/><text x="28.4687%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="28.2187%" y="453" width="0.0478%" height="15" fill="rgb(229,111,26)" fg:x="5898" fg:w="10"/><text x="28.4687%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="28.2187%" y="437" width="0.0478%" height="15" fill="rgb(213,115,40)" fg:x="5898" fg:w="10"/><text x="28.4687%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.2379%" y="421" width="0.0287%" height="15" fill="rgb(209,56,44)" fg:x="5902" fg:w="6"/><text x="28.4879%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.2379%" y="405" width="0.0287%" height="15" fill="rgb(230,108,32)" fg:x="5902" fg:w="6"/><text x="28.4879%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.2379%" y="389" width="0.0287%" height="15" fill="rgb(216,165,31)" fg:x="5902" fg:w="6"/><text x="28.4879%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.2379%" y="373" width="0.0287%" height="15" fill="rgb(218,122,21)" fg:x="5902" fg:w="6"/><text x="28.4879%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.2522%" y="357" width="0.0144%" height="15" fill="rgb(223,224,47)" fg:x="5905" fg:w="3"/><text x="28.5022%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2522%" y="341" width="0.0144%" height="15" fill="rgb(238,102,44)" fg:x="5905" fg:w="3"/><text x="28.5022%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2522%" y="325" width="0.0144%" height="15" fill="rgb(236,46,40)" fg:x="5905" fg:w="3"/><text x="28.5022%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2522%" y="309" width="0.0144%" height="15" fill="rgb(247,202,50)" fg:x="5905" fg:w="3"/><text x="28.5022%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2666%" y="357" width="0.0144%" height="15" fill="rgb(209,99,20)" fg:x="5908" fg:w="3"/><text x="28.5166%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2666%" y="341" width="0.0144%" height="15" fill="rgb(252,27,34)" fg:x="5908" fg:w="3"/><text x="28.5166%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2666%" y="325" width="0.0144%" height="15" fill="rgb(215,206,23)" fg:x="5908" fg:w="3"/><text x="28.5166%" y="335.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (167 samples, 0.80%)</title><rect x="27.5011%" y="805" width="0.7990%" height="15" fill="rgb(212,135,36)" fg:x="5748" fg:w="167"/><text x="27.7511%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (167 samples, 0.80%)</title><rect x="27.5011%" y="789" width="0.7990%" height="15" fill="rgb(240,189,1)" fg:x="5748" fg:w="167"/><text x="27.7511%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (130 samples, 0.62%)</title><rect x="27.6781%" y="773" width="0.6220%" height="15" fill="rgb(242,56,20)" fg:x="5785" fg:w="130"/><text x="27.9281%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (130 samples, 0.62%)</title><rect x="27.6781%" y="757" width="0.6220%" height="15" fill="rgb(247,132,33)" fg:x="5785" fg:w="130"/><text x="27.9281%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.12%)</title><rect x="28.1757%" y="741" width="0.1244%" height="15" fill="rgb(208,149,11)" fg:x="5889" fg:w="26"/><text x="28.4257%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.12%)</title><rect x="28.1757%" y="725" width="0.1244%" height="15" fill="rgb(211,33,11)" fg:x="5889" fg:w="26"/><text x="28.4257%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="28.1757%" y="709" width="0.1244%" height="15" fill="rgb(221,29,38)" fg:x="5889" fg:w="26"/><text x="28.4257%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="28.1757%" y="693" width="0.1244%" height="15" fill="rgb(206,182,49)" fg:x="5889" fg:w="26"/><text x="28.4257%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="28.1757%" y="677" width="0.1244%" height="15" fill="rgb(216,140,1)" fg:x="5889" fg:w="26"/><text x="28.4257%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.10%)</title><rect x="28.2044%" y="661" width="0.0957%" height="15" fill="rgb(232,57,40)" fg:x="5895" fg:w="20"/><text x="28.4544%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="28.2044%" y="645" width="0.0957%" height="15" fill="rgb(224,186,18)" fg:x="5895" fg:w="20"/><text x="28.4544%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="28.2044%" y="629" width="0.0957%" height="15" fill="rgb(215,121,11)" fg:x="5895" fg:w="20"/><text x="28.4544%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="28.2044%" y="613" width="0.0957%" height="15" fill="rgb(245,147,10)" fg:x="5895" fg:w="20"/><text x="28.4544%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="28.2187%" y="597" width="0.0813%" height="15" fill="rgb(238,153,13)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="28.2187%" y="581" width="0.0813%" height="15" fill="rgb(233,108,0)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="28.2187%" y="565" width="0.0813%" height="15" fill="rgb(212,157,17)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="28.2187%" y="549" width="0.0813%" height="15" fill="rgb(225,213,38)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="28.2187%" y="533" width="0.0813%" height="15" fill="rgb(248,16,11)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="28.2187%" y="517" width="0.0813%" height="15" fill="rgb(241,33,4)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="28.2187%" y="501" width="0.0813%" height="15" fill="rgb(222,26,43)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="28.2187%" y="485" width="0.0813%" height="15" fill="rgb(243,29,36)" fg:x="5898" fg:w="17"/><text x="28.4687%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="28.2666%" y="469" width="0.0335%" height="15" fill="rgb(241,9,27)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.2666%" y="453" width="0.0335%" height="15" fill="rgb(205,117,26)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.2666%" y="437" width="0.0335%" height="15" fill="rgb(209,80,39)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.2666%" y="421" width="0.0335%" height="15" fill="rgb(239,155,6)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.2666%" y="405" width="0.0335%" height="15" fill="rgb(212,104,12)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.2666%" y="389" width="0.0335%" height="15" fill="rgb(234,204,3)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.2666%" y="373" width="0.0335%" height="15" fill="rgb(251,218,7)" fg:x="5908" fg:w="7"/><text x="28.5166%" y="383.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="28.2809%" y="357" width="0.0191%" height="15" fill="rgb(221,81,32)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="367.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="28.2809%" y="341" width="0.0191%" height="15" fill="rgb(214,152,26)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.2809%" y="325" width="0.0191%" height="15" fill="rgb(223,22,3)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.2809%" y="309" width="0.0191%" height="15" fill="rgb(207,174,7)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.2809%" y="293" width="0.0191%" height="15" fill="rgb(224,19,52)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="28.2809%" y="277" width="0.0191%" height="15" fill="rgb(228,24,14)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="287.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="28.2809%" y="261" width="0.0191%" height="15" fill="rgb(230,153,43)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.2809%" y="245" width="0.0191%" height="15" fill="rgb(231,106,12)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="255.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.2809%" y="229" width="0.0191%" height="15" fill="rgb(215,92,2)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="239.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.2809%" y="213" width="0.0191%" height="15" fill="rgb(249,143,25)" fg:x="5911" fg:w="4"/><text x="28.5309%" y="223.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="28.2857%" y="197" width="0.0144%" height="15" fill="rgb(252,7,35)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="207.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="28.2857%" y="181" width="0.0144%" height="15" fill="rgb(216,69,40)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2857%" y="165" width="0.0144%" height="15" fill="rgb(240,36,33)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="175.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2857%" y="149" width="0.0144%" height="15" fill="rgb(231,128,14)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="159.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2857%" y="133" width="0.0144%" height="15" fill="rgb(245,143,14)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="143.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2857%" y="117" width="0.0144%" height="15" fill="rgb(222,130,28)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="127.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2857%" y="101" width="0.0144%" height="15" fill="rgb(212,10,48)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="111.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2857%" y="85" width="0.0144%" height="15" fill="rgb(254,118,45)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="95.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.2857%" y="69" width="0.0144%" height="15" fill="rgb(228,6,45)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="79.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.2857%" y="53" width="0.0144%" height="15" fill="rgb(241,18,35)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="63.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.2857%" y="37" width="0.0144%" height="15" fill="rgb(227,214,53)" fg:x="5912" fg:w="3"/><text x="28.5357%" y="47.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3001%" y="581" width="0.0144%" height="15" fill="rgb(224,107,51)" fg:x="5915" fg:w="3"/><text x="28.5501%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3001%" y="565" width="0.0144%" height="15" fill="rgb(248,60,28)" fg:x="5915" fg:w="3"/><text x="28.5501%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.3001%" y="549" width="0.0144%" height="15" fill="rgb(249,101,23)" fg:x="5915" fg:w="3"/><text x="28.5501%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.3001%" y="629" width="0.0239%" height="15" fill="rgb(228,51,19)" fg:x="5915" fg:w="5"/><text x="28.5501%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.3001%" y="613" width="0.0239%" height="15" fill="rgb(213,20,6)" fg:x="5915" fg:w="5"/><text x="28.5501%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.3001%" y="597" width="0.0239%" height="15" fill="rgb(212,124,10)" fg:x="5915" fg:w="5"/><text x="28.5501%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.3240%" y="565" width="0.0191%" height="15" fill="rgb(248,3,40)" fg:x="5920" fg:w="4"/><text x="28.5740%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.3240%" y="549" width="0.0191%" height="15" fill="rgb(223,178,23)" fg:x="5920" fg:w="4"/><text x="28.5740%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.3240%" y="533" width="0.0191%" height="15" fill="rgb(240,132,45)" fg:x="5920" fg:w="4"/><text x="28.5740%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="28.3001%" y="677" width="0.0526%" height="15" fill="rgb(245,164,36)" fg:x="5915" fg:w="11"/><text x="28.5501%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="28.3001%" y="661" width="0.0526%" height="15" fill="rgb(231,188,53)" fg:x="5915" fg:w="11"/><text x="28.5501%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="28.3001%" y="645" width="0.0526%" height="15" fill="rgb(237,198,39)" fg:x="5915" fg:w="11"/><text x="28.5501%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.3240%" y="629" width="0.0287%" height="15" fill="rgb(223,120,35)" fg:x="5920" fg:w="6"/><text x="28.5740%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.3240%" y="613" width="0.0287%" height="15" fill="rgb(253,107,49)" fg:x="5920" fg:w="6"/><text x="28.5740%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.3240%" y="597" width="0.0287%" height="15" fill="rgb(216,44,31)" fg:x="5920" fg:w="6"/><text x="28.5740%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.3240%" y="581" width="0.0287%" height="15" fill="rgb(253,87,21)" fg:x="5920" fg:w="6"/><text x="28.5740%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3527%" y="565" width="0.0144%" height="15" fill="rgb(226,18,2)" fg:x="5926" fg:w="3"/><text x="28.6027%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3527%" y="549" width="0.0144%" height="15" fill="rgb(216,8,46)" fg:x="5926" fg:w="3"/><text x="28.6027%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.3527%" y="533" width="0.0144%" height="15" fill="rgb(226,140,39)" fg:x="5926" fg:w="3"/><text x="28.6027%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.3527%" y="613" width="0.0287%" height="15" fill="rgb(221,194,54)" fg:x="5926" fg:w="6"/><text x="28.6027%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.3527%" y="597" width="0.0287%" height="15" fill="rgb(213,92,11)" fg:x="5926" fg:w="6"/><text x="28.6027%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.3527%" y="581" width="0.0287%" height="15" fill="rgb(229,162,46)" fg:x="5926" fg:w="6"/><text x="28.6027%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.3671%" y="565" width="0.0144%" height="15" fill="rgb(214,111,36)" fg:x="5929" fg:w="3"/><text x="28.6171%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3671%" y="549" width="0.0144%" height="15" fill="rgb(207,6,21)" fg:x="5929" fg:w="3"/><text x="28.6171%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3671%" y="533" width="0.0144%" height="15" fill="rgb(213,127,38)" fg:x="5929" fg:w="3"/><text x="28.6171%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.3671%" y="517" width="0.0144%" height="15" fill="rgb(238,118,32)" fg:x="5929" fg:w="3"/><text x="28.6171%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3814%" y="549" width="0.0144%" height="15" fill="rgb(240,139,39)" fg:x="5932" fg:w="3"/><text x="28.6314%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3814%" y="533" width="0.0144%" height="15" fill="rgb(235,10,37)" fg:x="5932" fg:w="3"/><text x="28.6314%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.3814%" y="517" width="0.0144%" height="15" fill="rgb(249,171,38)" fg:x="5932" fg:w="3"/><text x="28.6314%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="28.3001%" y="725" width="0.1100%" height="15" fill="rgb(242,144,32)" fg:x="5915" fg:w="23"/><text x="28.5501%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="28.3001%" y="709" width="0.1100%" height="15" fill="rgb(217,117,21)" fg:x="5915" fg:w="23"/><text x="28.5501%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="28.3001%" y="693" width="0.1100%" height="15" fill="rgb(249,87,1)" fg:x="5915" fg:w="23"/><text x="28.5501%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="28.3527%" y="677" width="0.0574%" height="15" fill="rgb(248,196,48)" fg:x="5926" fg:w="12"/><text x="28.6027%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="28.3527%" y="661" width="0.0574%" height="15" fill="rgb(251,206,33)" fg:x="5926" fg:w="12"/><text x="28.6027%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="28.3527%" y="645" width="0.0574%" height="15" fill="rgb(232,141,28)" fg:x="5926" fg:w="12"/><text x="28.6027%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="28.3527%" y="629" width="0.0574%" height="15" fill="rgb(209,167,14)" fg:x="5926" fg:w="12"/><text x="28.6027%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.3814%" y="613" width="0.0287%" height="15" fill="rgb(225,11,50)" fg:x="5932" fg:w="6"/><text x="28.6314%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.3814%" y="597" width="0.0287%" height="15" fill="rgb(209,50,20)" fg:x="5932" fg:w="6"/><text x="28.6314%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.3814%" y="581" width="0.0287%" height="15" fill="rgb(212,17,46)" fg:x="5932" fg:w="6"/><text x="28.6314%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.3814%" y="565" width="0.0287%" height="15" fill="rgb(216,101,39)" fg:x="5932" fg:w="6"/><text x="28.6314%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.3958%" y="549" width="0.0144%" height="15" fill="rgb(212,228,48)" fg:x="5935" fg:w="3"/><text x="28.6458%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.3958%" y="533" width="0.0144%" height="15" fill="rgb(250,6,50)" fg:x="5935" fg:w="3"/><text x="28.6458%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.3958%" y="517" width="0.0144%" height="15" fill="rgb(250,160,48)" fg:x="5935" fg:w="3"/><text x="28.6458%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.3958%" y="501" width="0.0144%" height="15" fill="rgb(244,216,33)" fg:x="5935" fg:w="3"/><text x="28.6458%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.4101%" y="565" width="0.0144%" height="15" fill="rgb(207,157,5)" fg:x="5938" fg:w="3"/><text x="28.6601%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.4101%" y="549" width="0.0144%" height="15" fill="rgb(228,199,8)" fg:x="5938" fg:w="3"/><text x="28.6601%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.4101%" y="533" width="0.0144%" height="15" fill="rgb(227,80,20)" fg:x="5938" fg:w="3"/><text x="28.6601%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.4101%" y="613" width="0.0239%" height="15" fill="rgb(222,9,33)" fg:x="5938" fg:w="5"/><text x="28.6601%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.4101%" y="597" width="0.0239%" height="15" fill="rgb(239,44,28)" fg:x="5938" fg:w="5"/><text x="28.6601%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.4101%" y="581" width="0.0239%" height="15" fill="rgb(249,187,43)" fg:x="5938" fg:w="5"/><text x="28.6601%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.4340%" y="549" width="0.0144%" height="15" fill="rgb(216,141,28)" fg:x="5943" fg:w="3"/><text x="28.6840%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.4340%" y="533" width="0.0144%" height="15" fill="rgb(230,154,53)" fg:x="5943" fg:w="3"/><text x="28.6840%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.4340%" y="517" width="0.0144%" height="15" fill="rgb(227,82,4)" fg:x="5943" fg:w="3"/><text x="28.6840%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="28.4101%" y="661" width="0.0478%" height="15" fill="rgb(220,107,16)" fg:x="5938" fg:w="10"/><text x="28.6601%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="28.4101%" y="645" width="0.0478%" height="15" fill="rgb(207,187,2)" fg:x="5938" fg:w="10"/><text x="28.6601%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="28.4101%" y="629" width="0.0478%" height="15" fill="rgb(210,162,52)" fg:x="5938" fg:w="10"/><text x="28.6601%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="28.4340%" y="613" width="0.0239%" height="15" fill="rgb(217,216,49)" fg:x="5943" fg:w="5"/><text x="28.6840%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.4340%" y="597" width="0.0239%" height="15" fill="rgb(218,146,49)" fg:x="5943" fg:w="5"/><text x="28.6840%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.4340%" y="581" width="0.0239%" height="15" fill="rgb(216,55,40)" fg:x="5943" fg:w="5"/><text x="28.6840%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.4340%" y="565" width="0.0239%" height="15" fill="rgb(208,196,21)" fg:x="5943" fg:w="5"/><text x="28.6840%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.4580%" y="357" width="0.0191%" height="15" fill="rgb(242,117,42)" fg:x="5948" fg:w="4"/><text x="28.7080%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="28.4580%" y="341" width="0.0191%" height="15" fill="rgb(210,11,23)" fg:x="5948" fg:w="4"/><text x="28.7080%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="28.4580%" y="325" width="0.0191%" height="15" fill="rgb(217,110,2)" fg:x="5948" fg:w="4"/><text x="28.7080%" y="335.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (386 samples, 1.85%)</title><rect x="26.6447%" y="869" width="1.8468%" height="15" fill="rgb(229,77,54)" fg:x="5569" fg:w="386"/><text x="26.8947%" y="879.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (386 samples, 1.85%)</title><rect x="26.6447%" y="853" width="1.8468%" height="15" fill="rgb(218,53,16)" fg:x="5569" fg:w="386"/><text x="26.8947%" y="863.50">r..</text></g><g><title>rayon_core::registry::in_worker (351 samples, 1.68%)</title><rect x="26.8121%" y="837" width="1.6793%" height="15" fill="rgb(215,38,13)" fg:x="5604" fg:w="351"/><text x="27.0621%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (351 samples, 1.68%)</title><rect x="26.8121%" y="821" width="1.6793%" height="15" fill="rgb(235,42,18)" fg:x="5604" fg:w="351"/><text x="27.0621%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (40 samples, 0.19%)</title><rect x="28.3001%" y="805" width="0.1914%" height="15" fill="rgb(219,66,54)" fg:x="5915" fg:w="40"/><text x="28.5501%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (40 samples, 0.19%)</title><rect x="28.3001%" y="789" width="0.1914%" height="15" fill="rgb(222,205,4)" fg:x="5915" fg:w="40"/><text x="28.5501%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (40 samples, 0.19%)</title><rect x="28.3001%" y="773" width="0.1914%" height="15" fill="rgb(227,213,46)" fg:x="5915" fg:w="40"/><text x="28.5501%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.19%)</title><rect x="28.3001%" y="757" width="0.1914%" height="15" fill="rgb(250,145,42)" fg:x="5915" fg:w="40"/><text x="28.5501%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.19%)</title><rect x="28.3001%" y="741" width="0.1914%" height="15" fill="rgb(219,15,2)" fg:x="5915" fg:w="40"/><text x="28.5501%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.08%)</title><rect x="28.4101%" y="725" width="0.0813%" height="15" fill="rgb(231,181,52)" fg:x="5938" fg:w="17"/><text x="28.6601%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="28.4101%" y="709" width="0.0813%" height="15" fill="rgb(235,1,42)" fg:x="5938" fg:w="17"/><text x="28.6601%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="28.4101%" y="693" width="0.0813%" height="15" fill="rgb(249,88,27)" fg:x="5938" fg:w="17"/><text x="28.6601%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="28.4101%" y="677" width="0.0813%" height="15" fill="rgb(235,145,16)" fg:x="5938" fg:w="17"/><text x="28.6601%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="28.4580%" y="661" width="0.0335%" height="15" fill="rgb(237,114,19)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="28.4580%" y="645" width="0.0335%" height="15" fill="rgb(238,51,50)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.4580%" y="629" width="0.0335%" height="15" fill="rgb(205,194,25)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.4580%" y="613" width="0.0335%" height="15" fill="rgb(215,203,17)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.4580%" y="597" width="0.0335%" height="15" fill="rgb(233,112,49)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.4580%" y="581" width="0.0335%" height="15" fill="rgb(241,130,26)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.4580%" y="565" width="0.0335%" height="15" fill="rgb(252,223,19)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.4580%" y="549" width="0.0335%" height="15" fill="rgb(211,95,25)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="559.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="28.4580%" y="533" width="0.0335%" height="15" fill="rgb(251,182,27)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="28.4580%" y="517" width="0.0335%" height="15" fill="rgb(238,24,4)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.4580%" y="501" width="0.0335%" height="15" fill="rgb(224,220,25)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.4580%" y="485" width="0.0335%" height="15" fill="rgb(239,133,26)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.4580%" y="469" width="0.0335%" height="15" fill="rgb(211,94,48)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.4580%" y="453" width="0.0335%" height="15" fill="rgb(239,87,6)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.4580%" y="437" width="0.0335%" height="15" fill="rgb(227,62,0)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.4580%" y="421" width="0.0335%" height="15" fill="rgb(211,226,4)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="28.4580%" y="405" width="0.0335%" height="15" fill="rgb(253,38,52)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="415.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.4580%" y="389" width="0.0335%" height="15" fill="rgb(229,126,40)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="399.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.4580%" y="373" width="0.0335%" height="15" fill="rgb(229,165,44)" fg:x="5948" fg:w="7"/><text x="28.7080%" y="383.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.4771%" y="357" width="0.0144%" height="15" fill="rgb(247,95,47)" fg:x="5952" fg:w="3"/><text x="28.7271%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.4771%" y="341" width="0.0144%" height="15" fill="rgb(216,140,30)" fg:x="5952" fg:w="3"/><text x="28.7271%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.4771%" y="325" width="0.0144%" height="15" fill="rgb(246,214,8)" fg:x="5952" fg:w="3"/><text x="28.7271%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.4771%" y="309" width="0.0144%" height="15" fill="rgb(227,224,15)" fg:x="5952" fg:w="3"/><text x="28.7271%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.5537%" y="597" width="0.0144%" height="15" fill="rgb(233,175,4)" fg:x="5968" fg:w="3"/><text x="28.8037%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="28.5297%" y="645" width="0.0574%" height="15" fill="rgb(221,66,45)" fg:x="5963" fg:w="12"/><text x="28.7797%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="28.5537%" y="629" width="0.0335%" height="15" fill="rgb(221,178,18)" fg:x="5968" fg:w="7"/><text x="28.8037%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="28.5537%" y="613" width="0.0335%" height="15" fill="rgb(213,81,29)" fg:x="5968" fg:w="7"/><text x="28.8037%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="28.5680%" y="597" width="0.0191%" height="15" fill="rgb(220,89,49)" fg:x="5971" fg:w="4"/><text x="28.8180%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.5680%" y="581" width="0.0191%" height="15" fill="rgb(227,60,33)" fg:x="5971" fg:w="4"/><text x="28.8180%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.5919%" y="581" width="0.0239%" height="15" fill="rgb(205,113,12)" fg:x="5976" fg:w="5"/><text x="28.8419%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="28.6015%" y="565" width="0.0144%" height="15" fill="rgb(211,32,1)" fg:x="5978" fg:w="3"/><text x="28.8515%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="28.5202%" y="693" width="0.1244%" height="15" fill="rgb(246,2,12)" fg:x="5961" fg:w="26"/><text x="28.7702%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="28.5297%" y="677" width="0.1148%" height="15" fill="rgb(243,37,27)" fg:x="5963" fg:w="24"/><text x="28.7797%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="28.5297%" y="661" width="0.1148%" height="15" fill="rgb(248,211,31)" fg:x="5963" fg:w="24"/><text x="28.7797%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="28.5871%" y="645" width="0.0574%" height="15" fill="rgb(242,146,47)" fg:x="5975" fg:w="12"/><text x="28.8371%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="28.5871%" y="629" width="0.0574%" height="15" fill="rgb(206,70,20)" fg:x="5975" fg:w="12"/><text x="28.8371%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="28.5919%" y="613" width="0.0526%" height="15" fill="rgb(215,10,51)" fg:x="5976" fg:w="11"/><text x="28.8419%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="28.5919%" y="597" width="0.0526%" height="15" fill="rgb(243,178,53)" fg:x="5976" fg:w="11"/><text x="28.8419%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.6159%" y="581" width="0.0287%" height="15" fill="rgb(233,221,20)" fg:x="5981" fg:w="6"/><text x="28.8659%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.6159%" y="565" width="0.0287%" height="15" fill="rgb(218,95,35)" fg:x="5981" fg:w="6"/><text x="28.8659%" y="575.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="28.6637%" y="613" width="0.0144%" height="15" fill="rgb(229,13,5)" fg:x="5991" fg:w="3"/><text x="28.9137%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="28.6637%" y="597" width="0.0144%" height="15" fill="rgb(252,164,30)" fg:x="5991" fg:w="3"/><text x="28.9137%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.6781%" y="581" width="0.0287%" height="15" fill="rgb(232,68,36)" fg:x="5994" fg:w="6"/><text x="28.9281%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="28.6924%" y="565" width="0.0144%" height="15" fill="rgb(219,59,54)" fg:x="5997" fg:w="3"/><text x="28.9424%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="28.6589%" y="629" width="0.0718%" height="15" fill="rgb(250,92,33)" fg:x="5990" fg:w="15"/><text x="28.9089%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="28.6781%" y="613" width="0.0526%" height="15" fill="rgb(229,162,54)" fg:x="5994" fg:w="11"/><text x="28.9281%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="28.6781%" y="597" width="0.0526%" height="15" fill="rgb(244,114,52)" fg:x="5994" fg:w="11"/><text x="28.9281%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="28.7163%" y="581" width="0.0144%" height="15" fill="rgb(212,211,43)" fg:x="6002" fg:w="3"/><text x="28.9663%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="28.7163%" y="565" width="0.0144%" height="15" fill="rgb(226,147,8)" fg:x="6002" fg:w="3"/><text x="28.9663%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.7163%" y="549" width="0.0144%" height="15" fill="rgb(226,23,13)" fg:x="6002" fg:w="3"/><text x="28.9663%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.7163%" y="533" width="0.0144%" height="15" fill="rgb(240,63,4)" fg:x="6002" fg:w="3"/><text x="28.9663%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.7163%" y="517" width="0.0144%" height="15" fill="rgb(221,1,32)" fg:x="6002" fg:w="3"/><text x="28.9663%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.7450%" y="565" width="0.0144%" height="15" fill="rgb(242,117,10)" fg:x="6008" fg:w="3"/><text x="28.9950%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.26%)</title><rect x="28.5106%" y="741" width="0.2631%" height="15" fill="rgb(249,172,44)" fg:x="5959" fg:w="55"/><text x="28.7606%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (53 samples, 0.25%)</title><rect x="28.5202%" y="725" width="0.2536%" height="15" fill="rgb(244,46,45)" fg:x="5961" fg:w="53"/><text x="28.7702%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (53 samples, 0.25%)</title><rect x="28.5202%" y="709" width="0.2536%" height="15" fill="rgb(206,43,17)" fg:x="5961" fg:w="53"/><text x="28.7702%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.13%)</title><rect x="28.6446%" y="693" width="0.1292%" height="15" fill="rgb(239,218,39)" fg:x="5987" fg:w="27"/><text x="28.8946%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.13%)</title><rect x="28.6446%" y="677" width="0.1292%" height="15" fill="rgb(208,169,54)" fg:x="5987" fg:w="27"/><text x="28.8946%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="28.6589%" y="661" width="0.1148%" height="15" fill="rgb(247,25,42)" fg:x="5990" fg:w="24"/><text x="28.9089%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="28.6589%" y="645" width="0.1148%" height="15" fill="rgb(226,23,31)" fg:x="5990" fg:w="24"/><text x="28.9089%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="28.7307%" y="629" width="0.0431%" height="15" fill="rgb(247,16,28)" fg:x="6005" fg:w="9"/><text x="28.9807%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="28.7307%" y="613" width="0.0431%" height="15" fill="rgb(231,147,38)" fg:x="6005" fg:w="9"/><text x="28.9807%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.7450%" y="597" width="0.0287%" height="15" fill="rgb(253,81,48)" fg:x="6008" fg:w="6"/><text x="28.9950%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.7450%" y="581" width="0.0287%" height="15" fill="rgb(249,222,43)" fg:x="6008" fg:w="6"/><text x="28.9950%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="28.7594%" y="565" width="0.0144%" height="15" fill="rgb(221,3,27)" fg:x="6011" fg:w="3"/><text x="29.0094%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.7594%" y="549" width="0.0144%" height="15" fill="rgb(228,180,5)" fg:x="6011" fg:w="3"/><text x="29.0094%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.7833%" y="629" width="0.0191%" height="15" fill="rgb(227,131,42)" fg:x="6016" fg:w="4"/><text x="29.0333%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="28.7785%" y="677" width="0.0526%" height="15" fill="rgb(212,3,39)" fg:x="6015" fg:w="11"/><text x="29.0285%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="28.7833%" y="661" width="0.0478%" height="15" fill="rgb(226,45,5)" fg:x="6016" fg:w="10"/><text x="29.0333%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="28.7833%" y="645" width="0.0478%" height="15" fill="rgb(215,167,45)" fg:x="6016" fg:w="10"/><text x="29.0333%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.8024%" y="629" width="0.0287%" height="15" fill="rgb(250,218,53)" fg:x="6020" fg:w="6"/><text x="29.0524%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.8024%" y="613" width="0.0287%" height="15" fill="rgb(207,140,0)" fg:x="6020" fg:w="6"/><text x="29.0524%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="28.8168%" y="597" width="0.0144%" height="15" fill="rgb(238,133,51)" fg:x="6023" fg:w="3"/><text x="29.0668%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="28.8168%" y="581" width="0.0144%" height="15" fill="rgb(218,203,53)" fg:x="6023" fg:w="3"/><text x="29.0668%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.8503%" y="565" width="0.0144%" height="15" fill="rgb(226,184,25)" fg:x="6030" fg:w="3"/><text x="29.1003%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="28.8359%" y="613" width="0.0383%" height="15" fill="rgb(231,121,21)" fg:x="6027" fg:w="8"/><text x="29.0859%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.8503%" y="597" width="0.0239%" height="15" fill="rgb(251,14,34)" fg:x="6030" fg:w="5"/><text x="29.1003%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.8503%" y="581" width="0.0239%" height="15" fill="rgb(249,193,11)" fg:x="6030" fg:w="5"/><text x="29.1003%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.8790%" y="549" width="0.0144%" height="15" fill="rgb(220,172,37)" fg:x="6036" fg:w="3"/><text x="29.1290%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (27 samples, 0.13%)</title><rect x="28.7737%" y="741" width="0.1292%" height="15" fill="rgb(231,229,43)" fg:x="6014" fg:w="27"/><text x="29.0237%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.13%)</title><rect x="28.7737%" y="725" width="0.1292%" height="15" fill="rgb(250,161,5)" fg:x="6014" fg:w="27"/><text x="29.0237%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="28.7785%" y="709" width="0.1244%" height="15" fill="rgb(218,225,18)" fg:x="6015" fg:w="26"/><text x="29.0285%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="28.7785%" y="693" width="0.1244%" height="15" fill="rgb(245,45,42)" fg:x="6015" fg:w="26"/><text x="29.0285%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="28.8312%" y="677" width="0.0718%" height="15" fill="rgb(211,115,1)" fg:x="6026" fg:w="15"/><text x="29.0812%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="28.8312%" y="661" width="0.0718%" height="15" fill="rgb(248,133,52)" fg:x="6026" fg:w="15"/><text x="29.0812%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="28.8359%" y="645" width="0.0670%" height="15" fill="rgb(238,100,21)" fg:x="6027" fg:w="14"/><text x="29.0859%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="28.8359%" y="629" width="0.0670%" height="15" fill="rgb(247,144,11)" fg:x="6027" fg:w="14"/><text x="29.0859%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.8742%" y="613" width="0.0287%" height="15" fill="rgb(206,164,16)" fg:x="6035" fg:w="6"/><text x="29.1242%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.8742%" y="597" width="0.0287%" height="15" fill="rgb(222,34,3)" fg:x="6035" fg:w="6"/><text x="29.1242%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.8790%" y="581" width="0.0239%" height="15" fill="rgb(248,82,4)" fg:x="6036" fg:w="5"/><text x="29.1290%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.8790%" y="565" width="0.0239%" height="15" fill="rgb(228,81,46)" fg:x="6036" fg:w="5"/><text x="29.1290%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="28.9125%" y="661" width="0.0191%" height="15" fill="rgb(227,67,47)" fg:x="6043" fg:w="4"/><text x="29.1625%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.46%)</title><rect x="28.4915%" y="789" width="0.4593%" height="15" fill="rgb(215,93,53)" fg:x="5955" fg:w="96"/><text x="28.7415%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (92 samples, 0.44%)</title><rect x="28.5106%" y="773" width="0.4402%" height="15" fill="rgb(248,194,39)" fg:x="5959" fg:w="92"/><text x="28.7606%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (92 samples, 0.44%)</title><rect x="28.5106%" y="757" width="0.4402%" height="15" fill="rgb(215,5,19)" fg:x="5959" fg:w="92"/><text x="28.7606%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.05%)</title><rect x="28.9029%" y="741" width="0.0478%" height="15" fill="rgb(226,215,51)" fg:x="6041" fg:w="10"/><text x="29.1529%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.05%)</title><rect x="28.9029%" y="725" width="0.0478%" height="15" fill="rgb(225,56,26)" fg:x="6041" fg:w="10"/><text x="29.1529%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="28.9029%" y="709" width="0.0478%" height="15" fill="rgb(222,75,29)" fg:x="6041" fg:w="10"/><text x="29.1529%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="28.9125%" y="693" width="0.0383%" height="15" fill="rgb(236,139,6)" fg:x="6043" fg:w="8"/><text x="29.1625%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="28.9125%" y="677" width="0.0383%" height="15" fill="rgb(223,137,36)" fg:x="6043" fg:w="8"/><text x="29.1625%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.9747%" y="629" width="0.0144%" height="15" fill="rgb(226,99,2)" fg:x="6056" fg:w="3"/><text x="29.2247%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="28.9747%" y="677" width="0.0239%" height="15" fill="rgb(206,133,23)" fg:x="6056" fg:w="5"/><text x="29.2247%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="28.9747%" y="661" width="0.0239%" height="15" fill="rgb(243,173,15)" fg:x="6056" fg:w="5"/><text x="29.2247%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="28.9747%" y="645" width="0.0239%" height="15" fill="rgb(228,69,28)" fg:x="6056" fg:w="5"/><text x="29.2247%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="28.9986%" y="613" width="0.0144%" height="15" fill="rgb(212,51,22)" fg:x="6061" fg:w="3"/><text x="29.2486%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="28.9747%" y="725" width="0.0526%" height="15" fill="rgb(227,113,0)" fg:x="6056" fg:w="11"/><text x="29.2247%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="28.9747%" y="709" width="0.0526%" height="15" fill="rgb(252,84,27)" fg:x="6056" fg:w="11"/><text x="29.2247%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="28.9747%" y="693" width="0.0526%" height="15" fill="rgb(223,145,39)" fg:x="6056" fg:w="11"/><text x="29.2247%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="28.9986%" y="677" width="0.0287%" height="15" fill="rgb(239,219,30)" fg:x="6061" fg:w="6"/><text x="29.2486%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="28.9986%" y="661" width="0.0287%" height="15" fill="rgb(224,196,39)" fg:x="6061" fg:w="6"/><text x="29.2486%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="28.9986%" y="645" width="0.0287%" height="15" fill="rgb(205,35,43)" fg:x="6061" fg:w="6"/><text x="29.2486%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="28.9986%" y="629" width="0.0287%" height="15" fill="rgb(228,201,21)" fg:x="6061" fg:w="6"/><text x="29.2486%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="29.0130%" y="613" width="0.0144%" height="15" fill="rgb(237,118,16)" fg:x="6064" fg:w="3"/><text x="29.2630%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.0130%" y="597" width="0.0144%" height="15" fill="rgb(241,17,19)" fg:x="6064" fg:w="3"/><text x="29.2630%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="29.0130%" y="581" width="0.0144%" height="15" fill="rgb(214,10,25)" fg:x="6064" fg:w="3"/><text x="29.2630%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.0273%" y="613" width="0.0144%" height="15" fill="rgb(238,37,29)" fg:x="6067" fg:w="3"/><text x="29.2773%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.0273%" y="661" width="0.0239%" height="15" fill="rgb(253,83,25)" fg:x="6067" fg:w="5"/><text x="29.2773%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="29.0273%" y="645" width="0.0239%" height="15" fill="rgb(234,192,12)" fg:x="6067" fg:w="5"/><text x="29.2773%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="29.0273%" y="629" width="0.0239%" height="15" fill="rgb(241,216,45)" fg:x="6067" fg:w="5"/><text x="29.2773%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.0512%" y="597" width="0.0144%" height="15" fill="rgb(242,22,33)" fg:x="6072" fg:w="3"/><text x="29.3012%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.14%)</title><rect x="28.9508%" y="789" width="0.1387%" height="15" fill="rgb(231,105,49)" fg:x="6051" fg:w="29"/><text x="29.2008%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="28.9508%" y="773" width="0.1387%" height="15" fill="rgb(218,204,15)" fg:x="6051" fg:w="29"/><text x="29.2008%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="28.9747%" y="757" width="0.1148%" height="15" fill="rgb(235,138,41)" fg:x="6056" fg:w="24"/><text x="29.2247%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="28.9747%" y="741" width="0.1148%" height="15" fill="rgb(246,0,9)" fg:x="6056" fg:w="24"/><text x="29.2247%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.06%)</title><rect x="29.0273%" y="725" width="0.0622%" height="15" fill="rgb(210,74,4)" fg:x="6067" fg:w="13"/><text x="29.2773%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="29.0273%" y="709" width="0.0622%" height="15" fill="rgb(250,60,41)" fg:x="6067" fg:w="13"/><text x="29.2773%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="29.0273%" y="693" width="0.0622%" height="15" fill="rgb(220,115,12)" fg:x="6067" fg:w="13"/><text x="29.2773%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="29.0273%" y="677" width="0.0622%" height="15" fill="rgb(237,100,13)" fg:x="6067" fg:w="13"/><text x="29.2773%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="29.0512%" y="661" width="0.0383%" height="15" fill="rgb(213,55,26)" fg:x="6072" fg:w="8"/><text x="29.3012%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="29.0512%" y="645" width="0.0383%" height="15" fill="rgb(216,17,4)" fg:x="6072" fg:w="8"/><text x="29.3012%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="29.0512%" y="629" width="0.0383%" height="15" fill="rgb(220,153,47)" fg:x="6072" fg:w="8"/><text x="29.3012%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="29.0512%" y="613" width="0.0383%" height="15" fill="rgb(215,131,9)" fg:x="6072" fg:w="8"/><text x="29.3012%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="29.0752%" y="597" width="0.0144%" height="15" fill="rgb(233,46,42)" fg:x="6077" fg:w="3"/><text x="29.3252%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="29.0752%" y="581" width="0.0144%" height="15" fill="rgb(226,86,7)" fg:x="6077" fg:w="3"/><text x="29.3252%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.0752%" y="565" width="0.0144%" height="15" fill="rgb(239,226,21)" fg:x="6077" fg:w="3"/><text x="29.3252%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="29.0752%" y="549" width="0.0144%" height="15" fill="rgb(244,137,22)" fg:x="6077" fg:w="3"/><text x="29.3252%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="29.0752%" y="533" width="0.0144%" height="15" fill="rgb(211,139,35)" fg:x="6077" fg:w="3"/><text x="29.3252%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.1039%" y="565" width="0.0144%" height="15" fill="rgb(214,62,50)" fg:x="6083" fg:w="3"/><text x="29.3539%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="29.1039%" y="549" width="0.0144%" height="15" fill="rgb(212,113,44)" fg:x="6083" fg:w="3"/><text x="29.3539%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="29.1039%" y="533" width="0.0144%" height="15" fill="rgb(226,150,43)" fg:x="6083" fg:w="3"/><text x="29.3539%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="29.1039%" y="613" width="0.0335%" height="15" fill="rgb(250,71,37)" fg:x="6083" fg:w="7"/><text x="29.3539%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="29.1039%" y="597" width="0.0335%" height="15" fill="rgb(219,76,19)" fg:x="6083" fg:w="7"/><text x="29.3539%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="29.1039%" y="581" width="0.0335%" height="15" fill="rgb(250,39,11)" fg:x="6083" fg:w="7"/><text x="29.3539%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="29.1182%" y="565" width="0.0191%" height="15" fill="rgb(230,64,31)" fg:x="6086" fg:w="4"/><text x="29.3682%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="29.1182%" y="549" width="0.0191%" height="15" fill="rgb(208,222,23)" fg:x="6086" fg:w="4"/><text x="29.3682%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="29.1182%" y="533" width="0.0191%" height="15" fill="rgb(227,125,18)" fg:x="6086" fg:w="4"/><text x="29.3682%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="29.1182%" y="517" width="0.0191%" height="15" fill="rgb(234,210,9)" fg:x="6086" fg:w="4"/><text x="29.3682%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="29.1374%" y="549" width="0.0191%" height="15" fill="rgb(217,127,24)" fg:x="6090" fg:w="4"/><text x="29.3874%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="29.1374%" y="533" width="0.0191%" height="15" fill="rgb(239,141,48)" fg:x="6090" fg:w="4"/><text x="29.3874%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="29.1374%" y="517" width="0.0191%" height="15" fill="rgb(227,109,8)" fg:x="6090" fg:w="4"/><text x="29.3874%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="29.0991%" y="661" width="0.0718%" height="15" fill="rgb(235,184,23)" fg:x="6082" fg:w="15"/><text x="29.3491%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="29.1039%" y="645" width="0.0670%" height="15" fill="rgb(227,226,48)" fg:x="6083" fg:w="14"/><text x="29.3539%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="29.1039%" y="629" width="0.0670%" height="15" fill="rgb(206,150,11)" fg:x="6083" fg:w="14"/><text x="29.3539%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="29.1374%" y="613" width="0.0335%" height="15" fill="rgb(254,2,33)" fg:x="6090" fg:w="7"/><text x="29.3874%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="29.1374%" y="597" width="0.0335%" height="15" fill="rgb(243,160,20)" fg:x="6090" fg:w="7"/><text x="29.3874%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="29.1374%" y="581" width="0.0335%" height="15" fill="rgb(218,208,30)" fg:x="6090" fg:w="7"/><text x="29.3874%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="29.1374%" y="565" width="0.0335%" height="15" fill="rgb(224,120,49)" fg:x="6090" fg:w="7"/><text x="29.3874%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="29.1565%" y="549" width="0.0144%" height="15" fill="rgb(246,12,2)" fg:x="6094" fg:w="3"/><text x="29.4065%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.1565%" y="533" width="0.0144%" height="15" fill="rgb(236,117,3)" fg:x="6094" fg:w="3"/><text x="29.4065%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="29.1565%" y="517" width="0.0144%" height="15" fill="rgb(216,128,52)" fg:x="6094" fg:w="3"/><text x="29.4065%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="29.1565%" y="501" width="0.0144%" height="15" fill="rgb(246,145,19)" fg:x="6094" fg:w="3"/><text x="29.4065%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="29.1804%" y="581" width="0.0335%" height="15" fill="rgb(222,11,46)" fg:x="6099" fg:w="7"/><text x="29.4304%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="29.1948%" y="565" width="0.0191%" height="15" fill="rgb(245,82,36)" fg:x="6102" fg:w="4"/><text x="29.4448%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="29.1948%" y="549" width="0.0191%" height="15" fill="rgb(250,73,51)" fg:x="6102" fg:w="4"/><text x="29.4448%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="29.0895%" y="709" width="0.1387%" height="15" fill="rgb(221,189,23)" fg:x="6080" fg:w="29"/><text x="29.3395%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.13%)</title><rect x="29.0991%" y="693" width="0.1292%" height="15" fill="rgb(210,33,7)" fg:x="6082" fg:w="27"/><text x="29.3491%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.13%)</title><rect x="29.0991%" y="677" width="0.1292%" height="15" fill="rgb(210,107,22)" fg:x="6082" fg:w="27"/><text x="29.3491%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.05%)</title><rect x="29.1804%" y="661" width="0.0478%" height="15" fill="rgb(222,116,37)" fg:x="6099" fg:w="10"/><text x="29.4304%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (10 samples, 0.05%)</title><rect x="29.1804%" y="645" width="0.0478%" height="15" fill="rgb(254,17,48)" fg:x="6099" fg:w="10"/><text x="29.4304%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="29.1804%" y="629" width="0.0478%" height="15" fill="rgb(224,36,32)" fg:x="6099" fg:w="10"/><text x="29.4304%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="29.1804%" y="613" width="0.0478%" height="15" fill="rgb(232,90,46)" fg:x="6099" fg:w="10"/><text x="29.4304%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="29.1804%" y="597" width="0.0478%" height="15" fill="rgb(241,66,40)" fg:x="6099" fg:w="10"/><text x="29.4304%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="29.2139%" y="581" width="0.0144%" height="15" fill="rgb(249,184,29)" fg:x="6106" fg:w="3"/><text x="29.4639%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.2139%" y="565" width="0.0144%" height="15" fill="rgb(231,181,1)" fg:x="6106" fg:w="3"/><text x="29.4639%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (973 samples, 4.66%)</title><rect x="24.6017%" y="933" width="4.6553%" height="15" fill="rgb(224,94,2)" fg:x="5142" fg:w="973"/><text x="24.8517%" y="943.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (973 samples, 4.66%)</title><rect x="24.6017%" y="917" width="4.6553%" height="15" fill="rgb(229,170,15)" fg:x="5142" fg:w="973"/><text x="24.8517%" y="927.50">rayon..</text></g><g><title>rayon_core::registry::in_worker (951 samples, 4.55%)</title><rect x="24.7070%" y="901" width="4.5500%" height="15" fill="rgb(240,127,35)" fg:x="5164" fg:w="951"/><text x="24.9570%" y="911.50">rayon..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (951 samples, 4.55%)</title><rect x="24.7070%" y="885" width="4.5500%" height="15" fill="rgb(248,196,34)" fg:x="5164" fg:w="951"/><text x="24.9570%" y="895.50">_ZN10..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (160 samples, 0.77%)</title><rect x="28.4915%" y="869" width="0.7655%" height="15" fill="rgb(236,137,7)" fg:x="5955" fg:w="160"/><text x="28.7415%" y="879.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (160 samples, 0.77%)</title><rect x="28.4915%" y="853" width="0.7655%" height="15" fill="rgb(235,127,16)" fg:x="5955" fg:w="160"/><text x="28.7415%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (160 samples, 0.77%)</title><rect x="28.4915%" y="837" width="0.7655%" height="15" fill="rgb(250,192,54)" fg:x="5955" fg:w="160"/><text x="28.7415%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (160 samples, 0.77%)</title><rect x="28.4915%" y="821" width="0.7655%" height="15" fill="rgb(218,98,20)" fg:x="5955" fg:w="160"/><text x="28.7415%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (160 samples, 0.77%)</title><rect x="28.4915%" y="805" width="0.7655%" height="15" fill="rgb(230,176,47)" fg:x="5955" fg:w="160"/><text x="28.7415%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (35 samples, 0.17%)</title><rect x="29.0895%" y="789" width="0.1675%" height="15" fill="rgb(244,2,33)" fg:x="6080" fg:w="35"/><text x="29.3395%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (35 samples, 0.17%)</title><rect x="29.0895%" y="773" width="0.1675%" height="15" fill="rgb(231,100,17)" fg:x="6080" fg:w="35"/><text x="29.3395%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.17%)</title><rect x="29.0895%" y="757" width="0.1675%" height="15" fill="rgb(245,23,12)" fg:x="6080" fg:w="35"/><text x="29.3395%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.17%)</title><rect x="29.0895%" y="741" width="0.1675%" height="15" fill="rgb(249,55,22)" fg:x="6080" fg:w="35"/><text x="29.3395%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (35 samples, 0.17%)</title><rect x="29.0895%" y="725" width="0.1675%" height="15" fill="rgb(207,134,9)" fg:x="6080" fg:w="35"/><text x="29.3395%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="29.2283%" y="709" width="0.0287%" height="15" fill="rgb(218,134,0)" fg:x="6109" fg:w="6"/><text x="29.4783%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="29.2283%" y="693" width="0.0287%" height="15" fill="rgb(213,212,33)" fg:x="6109" fg:w="6"/><text x="29.4783%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="29.2378%" y="677" width="0.0191%" height="15" fill="rgb(252,106,18)" fg:x="6111" fg:w="4"/><text x="29.4878%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="29.2378%" y="661" width="0.0191%" height="15" fill="rgb(208,126,42)" fg:x="6111" fg:w="4"/><text x="29.4878%" y="671.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="29.2761%" y="837" width="0.0144%" height="15" fill="rgb(246,175,29)" fg:x="6119" fg:w="3"/><text x="29.5261%" y="847.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="29.3335%" y="741" width="0.0239%" height="15" fill="rgb(215,13,50)" fg:x="6131" fg:w="5"/><text x="29.5835%" y="751.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="29.3335%" y="725" width="0.0239%" height="15" fill="rgb(216,172,15)" fg:x="6131" fg:w="5"/><text x="29.5835%" y="735.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="29.4196%" y="693" width="0.0335%" height="15" fill="rgb(212,103,13)" fg:x="6149" fg:w="7"/><text x="29.6696%" y="703.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="29.4196%" y="677" width="0.0335%" height="15" fill="rgb(231,171,36)" fg:x="6149" fg:w="7"/><text x="29.6696%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="29.3574%" y="709" width="0.1100%" height="15" fill="rgb(250,123,20)" fg:x="6136" fg:w="23"/><text x="29.6074%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="29.4531%" y="693" width="0.0144%" height="15" fill="rgb(212,53,50)" fg:x="6156" fg:w="3"/><text x="29.7031%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="29.4531%" y="677" width="0.0144%" height="15" fill="rgb(243,54,12)" fg:x="6156" fg:w="3"/><text x="29.7031%" y="687.50"></text></g><g><title>exp (8 samples, 0.04%)</title><rect x="29.4914%" y="677" width="0.0383%" height="15" fill="rgb(234,101,34)" fg:x="6164" fg:w="8"/><text x="29.7414%" y="687.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="29.4962%" y="661" width="0.0335%" height="15" fill="rgb(254,67,22)" fg:x="6165" fg:w="7"/><text x="29.7462%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.5297%" y="645" width="0.0239%" height="15" fill="rgb(250,35,47)" fg:x="6172" fg:w="5"/><text x="29.7797%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.25%)</title><rect x="29.3144%" y="757" width="0.2536%" height="15" fill="rgb(226,126,38)" fg:x="6127" fg:w="53"/><text x="29.5644%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (44 samples, 0.21%)</title><rect x="29.3574%" y="741" width="0.2105%" height="15" fill="rgb(216,138,53)" fg:x="6136" fg:w="44"/><text x="29.6074%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (44 samples, 0.21%)</title><rect x="29.3574%" y="725" width="0.2105%" height="15" fill="rgb(246,199,43)" fg:x="6136" fg:w="44"/><text x="29.6074%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.10%)</title><rect x="29.4675%" y="709" width="0.1005%" height="15" fill="rgb(232,125,11)" fg:x="6159" fg:w="21"/><text x="29.7175%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="29.4675%" y="693" width="0.1005%" height="15" fill="rgb(218,219,45)" fg:x="6159" fg:w="21"/><text x="29.7175%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="29.5297%" y="677" width="0.0383%" height="15" fill="rgb(216,102,54)" fg:x="6172" fg:w="8"/><text x="29.7797%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="29.5297%" y="661" width="0.0383%" height="15" fill="rgb(250,228,7)" fg:x="6172" fg:w="8"/><text x="29.7797%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="29.5536%" y="645" width="0.0144%" height="15" fill="rgb(226,125,25)" fg:x="6177" fg:w="3"/><text x="29.8036%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="29.5536%" y="629" width="0.0144%" height="15" fill="rgb(224,165,27)" fg:x="6177" fg:w="3"/><text x="29.8036%" y="639.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="29.5967%" y="725" width="0.0239%" height="15" fill="rgb(233,86,3)" fg:x="6186" fg:w="5"/><text x="29.8467%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="29.5967%" y="709" width="0.0239%" height="15" fill="rgb(228,116,20)" fg:x="6186" fg:w="5"/><text x="29.8467%" y="719.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="29.6589%" y="677" width="0.0287%" height="15" fill="rgb(209,192,17)" fg:x="6199" fg:w="6"/><text x="29.9089%" y="687.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="29.6589%" y="661" width="0.0287%" height="15" fill="rgb(224,88,34)" fg:x="6199" fg:w="6"/><text x="29.9089%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.6876%" y="645" width="0.0239%" height="15" fill="rgb(233,38,6)" fg:x="6205" fg:w="5"/><text x="29.9376%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="29.6206%" y="693" width="0.1100%" height="15" fill="rgb(212,59,30)" fg:x="6191" fg:w="23"/><text x="29.8706%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="29.6876%" y="677" width="0.0431%" height="15" fill="rgb(213,80,3)" fg:x="6205" fg:w="9"/><text x="29.9376%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="29.6876%" y="661" width="0.0431%" height="15" fill="rgb(251,178,7)" fg:x="6205" fg:w="9"/><text x="29.9376%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="29.7115%" y="645" width="0.0191%" height="15" fill="rgb(213,154,26)" fg:x="6210" fg:w="4"/><text x="29.9615%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="29.7115%" y="629" width="0.0191%" height="15" fill="rgb(238,165,49)" fg:x="6210" fg:w="4"/><text x="29.9615%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="29.7163%" y="613" width="0.0144%" height="15" fill="rgb(248,91,46)" fg:x="6211" fg:w="3"/><text x="29.9663%" y="623.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="29.7163%" y="597" width="0.0144%" height="15" fill="rgb(244,21,52)" fg:x="6211" fg:w="3"/><text x="29.9663%" y="607.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="29.7737%" y="661" width="0.0239%" height="15" fill="rgb(247,122,20)" fg:x="6223" fg:w="5"/><text x="30.0237%" y="671.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="29.7785%" y="645" width="0.0191%" height="15" fill="rgb(218,27,9)" fg:x="6224" fg:w="4"/><text x="30.0285%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.7976%" y="629" width="0.0239%" height="15" fill="rgb(246,7,6)" fg:x="6228" fg:w="5"/><text x="30.0476%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (115 samples, 0.55%)</title><rect x="29.2905%" y="805" width="0.5502%" height="15" fill="rgb(227,135,54)" fg:x="6122" fg:w="115"/><text x="29.5405%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (110 samples, 0.53%)</title><rect x="29.3144%" y="789" width="0.5263%" height="15" fill="rgb(247,14,11)" fg:x="6127" fg:w="110"/><text x="29.5644%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (110 samples, 0.53%)</title><rect x="29.3144%" y="773" width="0.5263%" height="15" fill="rgb(206,149,34)" fg:x="6127" fg:w="110"/><text x="29.5644%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (57 samples, 0.27%)</title><rect x="29.5680%" y="757" width="0.2727%" height="15" fill="rgb(227,228,4)" fg:x="6180" fg:w="57"/><text x="29.8180%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (57 samples, 0.27%)</title><rect x="29.5680%" y="741" width="0.2727%" height="15" fill="rgb(238,218,28)" fg:x="6180" fg:w="57"/><text x="29.8180%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.22%)</title><rect x="29.6206%" y="725" width="0.2201%" height="15" fill="rgb(252,86,40)" fg:x="6191" fg:w="46"/><text x="29.8706%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.22%)</title><rect x="29.6206%" y="709" width="0.2201%" height="15" fill="rgb(251,225,11)" fg:x="6191" fg:w="46"/><text x="29.8706%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.11%)</title><rect x="29.7306%" y="693" width="0.1100%" height="15" fill="rgb(206,46,49)" fg:x="6214" fg:w="23"/><text x="29.9806%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="29.7306%" y="677" width="0.1100%" height="15" fill="rgb(245,128,24)" fg:x="6214" fg:w="23"/><text x="29.9806%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="29.7976%" y="661" width="0.0431%" height="15" fill="rgb(219,177,34)" fg:x="6228" fg:w="9"/><text x="30.0476%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="29.7976%" y="645" width="0.0431%" height="15" fill="rgb(218,60,48)" fg:x="6228" fg:w="9"/><text x="30.0476%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="29.8215%" y="629" width="0.0191%" height="15" fill="rgb(221,11,5)" fg:x="6233" fg:w="4"/><text x="30.0715%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="29.8215%" y="613" width="0.0191%" height="15" fill="rgb(220,148,13)" fg:x="6233" fg:w="4"/><text x="30.0715%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="29.8263%" y="597" width="0.0144%" height="15" fill="rgb(210,16,3)" fg:x="6234" fg:w="3"/><text x="30.0763%" y="607.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="29.8263%" y="581" width="0.0144%" height="15" fill="rgb(236,80,2)" fg:x="6234" fg:w="3"/><text x="30.0763%" y="591.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="29.8837%" y="725" width="0.0287%" height="15" fill="rgb(239,129,19)" fg:x="6246" fg:w="6"/><text x="30.1337%" y="735.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="29.8837%" y="709" width="0.0287%" height="15" fill="rgb(220,106,35)" fg:x="6246" fg:w="6"/><text x="30.1337%" y="719.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="29.9316%" y="677" width="0.0287%" height="15" fill="rgb(252,139,45)" fg:x="6256" fg:w="6"/><text x="30.1816%" y="687.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="29.9412%" y="661" width="0.0191%" height="15" fill="rgb(229,8,36)" fg:x="6258" fg:w="4"/><text x="30.1912%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.9603%" y="645" width="0.0239%" height="15" fill="rgb(230,126,33)" fg:x="6262" fg:w="5"/><text x="30.2103%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="29.9124%" y="693" width="0.0957%" height="15" fill="rgb(239,140,21)" fg:x="6252" fg:w="20"/><text x="30.1624%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="29.9603%" y="677" width="0.0478%" height="15" fill="rgb(254,104,9)" fg:x="6262" fg:w="10"/><text x="30.2103%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="29.9603%" y="661" width="0.0478%" height="15" fill="rgb(239,52,14)" fg:x="6262" fg:w="10"/><text x="30.2103%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="29.9842%" y="645" width="0.0239%" height="15" fill="rgb(208,227,44)" fg:x="6267" fg:w="5"/><text x="30.2342%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="29.9842%" y="629" width="0.0239%" height="15" fill="rgb(246,18,19)" fg:x="6267" fg:w="5"/><text x="30.2342%" y="639.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="30.0225%" y="661" width="0.0287%" height="15" fill="rgb(235,228,25)" fg:x="6275" fg:w="6"/><text x="30.2725%" y="671.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="30.0321%" y="645" width="0.0191%" height="15" fill="rgb(240,156,20)" fg:x="6277" fg:w="4"/><text x="30.2821%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.0512%" y="629" width="0.0191%" height="15" fill="rgb(224,8,20)" fg:x="6281" fg:w="4"/><text x="30.3012%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 0.23%)</title><rect x="29.8646%" y="741" width="0.2297%" height="15" fill="rgb(214,12,52)" fg:x="6242" fg:w="48"/><text x="30.1146%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="29.9124%" y="725" width="0.1818%" height="15" fill="rgb(211,220,47)" fg:x="6252" fg:w="38"/><text x="30.1624%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="29.9124%" y="709" width="0.1818%" height="15" fill="rgb(250,173,5)" fg:x="6252" fg:w="38"/><text x="30.1624%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="30.0081%" y="693" width="0.0861%" height="15" fill="rgb(250,125,52)" fg:x="6272" fg:w="18"/><text x="30.2581%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="30.0081%" y="677" width="0.0861%" height="15" fill="rgb(209,133,18)" fg:x="6272" fg:w="18"/><text x="30.2581%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.0512%" y="661" width="0.0431%" height="15" fill="rgb(216,173,22)" fg:x="6281" fg:w="9"/><text x="30.3012%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="30.0512%" y="645" width="0.0431%" height="15" fill="rgb(205,3,22)" fg:x="6281" fg:w="9"/><text x="30.3012%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.0703%" y="629" width="0.0239%" height="15" fill="rgb(248,22,20)" fg:x="6285" fg:w="5"/><text x="30.3203%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.0703%" y="613" width="0.0239%" height="15" fill="rgb(233,6,29)" fg:x="6285" fg:w="5"/><text x="30.3203%" y="623.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="30.1134%" y="709" width="0.0335%" height="15" fill="rgb(240,22,54)" fg:x="6294" fg:w="7"/><text x="30.3634%" y="719.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="30.1134%" y="693" width="0.0335%" height="15" fill="rgb(231,133,32)" fg:x="6294" fg:w="7"/><text x="30.3634%" y="703.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="30.1708%" y="661" width="0.0191%" height="15" fill="rgb(248,193,4)" fg:x="6306" fg:w="4"/><text x="30.4208%" y="671.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="30.1708%" y="645" width="0.0191%" height="15" fill="rgb(211,178,46)" fg:x="6306" fg:w="4"/><text x="30.4208%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="30.1469%" y="677" width="0.0670%" height="15" fill="rgb(224,5,42)" fg:x="6301" fg:w="14"/><text x="30.3969%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.1899%" y="661" width="0.0239%" height="15" fill="rgb(239,176,25)" fg:x="6310" fg:w="5"/><text x="30.4399%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.1899%" y="645" width="0.0239%" height="15" fill="rgb(245,187,50)" fg:x="6310" fg:w="5"/><text x="30.4399%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.1995%" y="629" width="0.0144%" height="15" fill="rgb(248,24,15)" fg:x="6312" fg:w="3"/><text x="30.4495%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.1995%" y="613" width="0.0144%" height="15" fill="rgb(205,166,13)" fg:x="6312" fg:w="3"/><text x="30.4495%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="30.2139%" y="677" width="0.0335%" height="15" fill="rgb(208,114,23)" fg:x="6315" fg:w="7"/><text x="30.4639%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.2139%" y="661" width="0.0335%" height="15" fill="rgb(239,127,18)" fg:x="6315" fg:w="7"/><text x="30.4639%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.2474%" y="549" width="0.0144%" height="15" fill="rgb(219,154,28)" fg:x="6322" fg:w="3"/><text x="30.4974%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.2474%" y="533" width="0.0144%" height="15" fill="rgb(225,157,23)" fg:x="6322" fg:w="3"/><text x="30.4974%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.2474%" y="517" width="0.0144%" height="15" fill="rgb(219,8,6)" fg:x="6322" fg:w="3"/><text x="30.4974%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.2474%" y="597" width="0.0335%" height="15" fill="rgb(212,47,6)" fg:x="6322" fg:w="7"/><text x="30.4974%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="30.2474%" y="581" width="0.0335%" height="15" fill="rgb(224,190,4)" fg:x="6322" fg:w="7"/><text x="30.4974%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="30.2474%" y="565" width="0.0335%" height="15" fill="rgb(239,183,29)" fg:x="6322" fg:w="7"/><text x="30.4974%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="30.2617%" y="549" width="0.0191%" height="15" fill="rgb(213,57,7)" fg:x="6325" fg:w="4"/><text x="30.5117%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.2617%" y="533" width="0.0191%" height="15" fill="rgb(216,148,1)" fg:x="6325" fg:w="4"/><text x="30.5117%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.2617%" y="517" width="0.0191%" height="15" fill="rgb(236,182,29)" fg:x="6325" fg:w="4"/><text x="30.5117%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.2617%" y="501" width="0.0191%" height="15" fill="rgb(244,120,48)" fg:x="6325" fg:w="4"/><text x="30.5117%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.2808%" y="421" width="0.0144%" height="15" fill="rgb(206,71,34)" fg:x="6329" fg:w="3"/><text x="30.5308%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.2808%" y="405" width="0.0144%" height="15" fill="rgb(242,32,6)" fg:x="6329" fg:w="3"/><text x="30.5308%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.2808%" y="389" width="0.0144%" height="15" fill="rgb(241,35,3)" fg:x="6329" fg:w="3"/><text x="30.5308%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.2808%" y="469" width="0.0239%" height="15" fill="rgb(222,62,19)" fg:x="6329" fg:w="5"/><text x="30.5308%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.2808%" y="453" width="0.0239%" height="15" fill="rgb(223,110,41)" fg:x="6329" fg:w="5"/><text x="30.5308%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.2808%" y="437" width="0.0239%" height="15" fill="rgb(208,224,4)" fg:x="6329" fg:w="5"/><text x="30.5308%" y="447.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (47 samples, 0.22%)</title><rect x="30.0943%" y="741" width="0.2249%" height="15" fill="rgb(241,137,19)" fg:x="6290" fg:w="47"/><text x="30.3443%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (47 samples, 0.22%)</title><rect x="30.0943%" y="725" width="0.2249%" height="15" fill="rgb(244,24,17)" fg:x="6290" fg:w="47"/><text x="30.3443%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.17%)</title><rect x="30.1469%" y="709" width="0.1722%" height="15" fill="rgb(245,178,49)" fg:x="6301" fg:w="36"/><text x="30.3969%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (36 samples, 0.17%)</title><rect x="30.1469%" y="693" width="0.1722%" height="15" fill="rgb(219,160,38)" fg:x="6301" fg:w="36"/><text x="30.3969%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="30.2474%" y="677" width="0.0718%" height="15" fill="rgb(228,137,14)" fg:x="6322" fg:w="15"/><text x="30.4974%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="30.2474%" y="661" width="0.0718%" height="15" fill="rgb(237,134,11)" fg:x="6322" fg:w="15"/><text x="30.4974%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="30.2474%" y="645" width="0.0718%" height="15" fill="rgb(211,126,44)" fg:x="6322" fg:w="15"/><text x="30.4974%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.2474%" y="629" width="0.0718%" height="15" fill="rgb(226,171,33)" fg:x="6322" fg:w="15"/><text x="30.4974%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.2474%" y="613" width="0.0718%" height="15" fill="rgb(253,99,13)" fg:x="6322" fg:w="15"/><text x="30.4974%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="30.2808%" y="597" width="0.0383%" height="15" fill="rgb(244,48,7)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="30.2808%" y="581" width="0.0383%" height="15" fill="rgb(244,217,54)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="30.2808%" y="565" width="0.0383%" height="15" fill="rgb(224,15,18)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="30.2808%" y="549" width="0.0383%" height="15" fill="rgb(244,99,12)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="30.2808%" y="533" width="0.0383%" height="15" fill="rgb(233,226,8)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="30.2808%" y="517" width="0.0383%" height="15" fill="rgb(229,211,3)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="30.2808%" y="501" width="0.0383%" height="15" fill="rgb(216,140,21)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="30.2808%" y="485" width="0.0383%" height="15" fill="rgb(234,122,30)" fg:x="6329" fg:w="8"/><text x="30.5308%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="30.3048%" y="469" width="0.0144%" height="15" fill="rgb(236,25,46)" fg:x="6334" fg:w="3"/><text x="30.5548%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="30.3048%" y="453" width="0.0144%" height="15" fill="rgb(217,52,54)" fg:x="6334" fg:w="3"/><text x="30.5548%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.3048%" y="437" width="0.0144%" height="15" fill="rgb(222,29,26)" fg:x="6334" fg:w="3"/><text x="30.5548%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.3287%" y="565" width="0.0144%" height="15" fill="rgb(216,177,29)" fg:x="6339" fg:w="3"/><text x="30.5787%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.3287%" y="549" width="0.0144%" height="15" fill="rgb(247,136,51)" fg:x="6339" fg:w="3"/><text x="30.5787%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.3287%" y="533" width="0.0144%" height="15" fill="rgb(231,47,47)" fg:x="6339" fg:w="3"/><text x="30.5787%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.3191%" y="613" width="0.0335%" height="15" fill="rgb(211,192,36)" fg:x="6337" fg:w="7"/><text x="30.5691%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.3287%" y="597" width="0.0239%" height="15" fill="rgb(229,156,32)" fg:x="6339" fg:w="5"/><text x="30.5787%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.3287%" y="581" width="0.0239%" height="15" fill="rgb(248,213,20)" fg:x="6339" fg:w="5"/><text x="30.5787%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.3622%" y="549" width="0.0144%" height="15" fill="rgb(217,64,7)" fg:x="6346" fg:w="3"/><text x="30.6122%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.3622%" y="533" width="0.0144%" height="15" fill="rgb(232,142,8)" fg:x="6346" fg:w="3"/><text x="30.6122%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.3622%" y="517" width="0.0144%" height="15" fill="rgb(224,92,44)" fg:x="6346" fg:w="3"/><text x="30.6122%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="30.3191%" y="661" width="0.0718%" height="15" fill="rgb(214,169,17)" fg:x="6337" fg:w="15"/><text x="30.5691%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.3191%" y="645" width="0.0718%" height="15" fill="rgb(210,59,37)" fg:x="6337" fg:w="15"/><text x="30.5691%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.3191%" y="629" width="0.0718%" height="15" fill="rgb(214,116,48)" fg:x="6337" fg:w="15"/><text x="30.5691%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="30.3526%" y="613" width="0.0383%" height="15" fill="rgb(244,191,6)" fg:x="6344" fg:w="8"/><text x="30.6026%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="30.3526%" y="597" width="0.0383%" height="15" fill="rgb(241,50,52)" fg:x="6344" fg:w="8"/><text x="30.6026%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.3622%" y="581" width="0.0287%" height="15" fill="rgb(236,75,39)" fg:x="6346" fg:w="6"/><text x="30.6122%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.3622%" y="565" width="0.0287%" height="15" fill="rgb(236,99,0)" fg:x="6346" fg:w="6"/><text x="30.6122%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.3765%" y="549" width="0.0144%" height="15" fill="rgb(207,202,15)" fg:x="6349" fg:w="3"/><text x="30.6265%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.3765%" y="533" width="0.0144%" height="15" fill="rgb(233,207,14)" fg:x="6349" fg:w="3"/><text x="30.6265%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.3765%" y="517" width="0.0144%" height="15" fill="rgb(226,27,51)" fg:x="6349" fg:w="3"/><text x="30.6265%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.3765%" y="501" width="0.0144%" height="15" fill="rgb(206,104,42)" fg:x="6349" fg:w="3"/><text x="30.6265%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.4005%" y="581" width="0.0191%" height="15" fill="rgb(212,225,4)" fg:x="6354" fg:w="4"/><text x="30.6505%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (122 samples, 0.58%)</title><rect x="29.8407%" y="805" width="0.5837%" height="15" fill="rgb(233,96,42)" fg:x="6237" fg:w="122"/><text x="30.0907%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (122 samples, 0.58%)</title><rect x="29.8407%" y="789" width="0.5837%" height="15" fill="rgb(229,21,32)" fg:x="6237" fg:w="122"/><text x="30.0907%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (117 samples, 0.56%)</title><rect x="29.8646%" y="773" width="0.5598%" height="15" fill="rgb(226,216,24)" fg:x="6242" fg:w="117"/><text x="30.1146%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (117 samples, 0.56%)</title><rect x="29.8646%" y="757" width="0.5598%" height="15" fill="rgb(221,163,17)" fg:x="6242" fg:w="117"/><text x="30.1146%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.11%)</title><rect x="30.3191%" y="741" width="0.1053%" height="15" fill="rgb(216,216,42)" fg:x="6337" fg:w="22"/><text x="30.5691%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.11%)</title><rect x="30.3191%" y="725" width="0.1053%" height="15" fill="rgb(240,118,7)" fg:x="6337" fg:w="22"/><text x="30.5691%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="30.3191%" y="709" width="0.1053%" height="15" fill="rgb(221,67,37)" fg:x="6337" fg:w="22"/><text x="30.5691%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.11%)</title><rect x="30.3191%" y="693" width="0.1053%" height="15" fill="rgb(241,32,44)" fg:x="6337" fg:w="22"/><text x="30.5691%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.11%)</title><rect x="30.3191%" y="677" width="0.1053%" height="15" fill="rgb(235,204,43)" fg:x="6337" fg:w="22"/><text x="30.5691%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="30.3909%" y="661" width="0.0335%" height="15" fill="rgb(213,116,10)" fg:x="6352" fg:w="7"/><text x="30.6409%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="30.3909%" y="645" width="0.0335%" height="15" fill="rgb(239,15,48)" fg:x="6352" fg:w="7"/><text x="30.6409%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.3909%" y="629" width="0.0335%" height="15" fill="rgb(207,123,36)" fg:x="6352" fg:w="7"/><text x="30.6409%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.4005%" y="613" width="0.0239%" height="15" fill="rgb(209,103,30)" fg:x="6354" fg:w="5"/><text x="30.6505%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.4005%" y="597" width="0.0239%" height="15" fill="rgb(238,100,19)" fg:x="6354" fg:w="5"/><text x="30.6505%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.4722%" y="517" width="0.0144%" height="15" fill="rgb(244,30,14)" fg:x="6369" fg:w="3"/><text x="30.7222%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.4627%" y="629" width="0.0287%" height="15" fill="rgb(249,174,6)" fg:x="6367" fg:w="6"/><text x="30.7127%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.4627%" y="613" width="0.0287%" height="15" fill="rgb(235,213,41)" fg:x="6367" fg:w="6"/><text x="30.7127%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.4627%" y="597" width="0.0287%" height="15" fill="rgb(213,118,6)" fg:x="6367" fg:w="6"/><text x="30.7127%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="30.4722%" y="581" width="0.0191%" height="15" fill="rgb(235,44,51)" fg:x="6369" fg:w="4"/><text x="30.7222%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.4722%" y="565" width="0.0191%" height="15" fill="rgb(217,9,53)" fg:x="6369" fg:w="4"/><text x="30.7222%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.4722%" y="549" width="0.0191%" height="15" fill="rgb(237,172,34)" fg:x="6369" fg:w="4"/><text x="30.7222%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.4722%" y="533" width="0.0191%" height="15" fill="rgb(206,206,11)" fg:x="6369" fg:w="4"/><text x="30.7222%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.4914%" y="565" width="0.0191%" height="15" fill="rgb(214,149,29)" fg:x="6373" fg:w="4"/><text x="30.7414%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.4914%" y="549" width="0.0191%" height="15" fill="rgb(208,123,3)" fg:x="6373" fg:w="4"/><text x="30.7414%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.4914%" y="533" width="0.0191%" height="15" fill="rgb(229,126,4)" fg:x="6373" fg:w="4"/><text x="30.7414%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="30.4531%" y="677" width="0.0813%" height="15" fill="rgb(222,92,36)" fg:x="6365" fg:w="17"/><text x="30.7031%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.4627%" y="661" width="0.0718%" height="15" fill="rgb(216,39,41)" fg:x="6367" fg:w="15"/><text x="30.7127%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.4627%" y="645" width="0.0718%" height="15" fill="rgb(253,127,28)" fg:x="6367" fg:w="15"/><text x="30.7127%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="30.4914%" y="629" width="0.0431%" height="15" fill="rgb(249,152,51)" fg:x="6373" fg:w="9"/><text x="30.7414%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="30.4914%" y="613" width="0.0431%" height="15" fill="rgb(209,123,42)" fg:x="6373" fg:w="9"/><text x="30.7414%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.4914%" y="597" width="0.0431%" height="15" fill="rgb(241,118,22)" fg:x="6373" fg:w="9"/><text x="30.7414%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="30.4914%" y="581" width="0.0431%" height="15" fill="rgb(208,25,7)" fg:x="6373" fg:w="9"/><text x="30.7414%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.5105%" y="565" width="0.0239%" height="15" fill="rgb(243,144,39)" fg:x="6377" fg:w="5"/><text x="30.7605%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.5105%" y="549" width="0.0239%" height="15" fill="rgb(250,50,5)" fg:x="6377" fg:w="5"/><text x="30.7605%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.5105%" y="533" width="0.0239%" height="15" fill="rgb(207,67,11)" fg:x="6377" fg:w="5"/><text x="30.7605%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.5105%" y="517" width="0.0239%" height="15" fill="rgb(245,204,40)" fg:x="6377" fg:w="5"/><text x="30.7605%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5201%" y="501" width="0.0144%" height="15" fill="rgb(238,228,24)" fg:x="6379" fg:w="3"/><text x="30.7701%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5201%" y="485" width="0.0144%" height="15" fill="rgb(217,116,22)" fg:x="6379" fg:w="3"/><text x="30.7701%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.5440%" y="341" width="0.0287%" height="15" fill="rgb(234,98,12)" fg:x="6384" fg:w="6"/><text x="30.7940%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.5440%" y="325" width="0.0287%" height="15" fill="rgb(242,170,50)" fg:x="6384" fg:w="6"/><text x="30.7940%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.5440%" y="309" width="0.0287%" height="15" fill="rgb(235,7,5)" fg:x="6384" fg:w="6"/><text x="30.7940%" y="319.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="30.5536%" y="293" width="0.0191%" height="15" fill="rgb(241,114,28)" fg:x="6386" fg:w="4"/><text x="30.8036%" y="303.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.5536%" y="277" width="0.0191%" height="15" fill="rgb(246,112,42)" fg:x="6386" fg:w="4"/><text x="30.8036%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="30.5440%" y="389" width="0.0526%" height="15" fill="rgb(248,228,14)" fg:x="6384" fg:w="11"/><text x="30.7940%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="30.5440%" y="373" width="0.0526%" height="15" fill="rgb(208,133,18)" fg:x="6384" fg:w="11"/><text x="30.7940%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="30.5440%" y="357" width="0.0526%" height="15" fill="rgb(207,35,49)" fg:x="6384" fg:w="11"/><text x="30.7940%" y="367.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.5727%" y="341" width="0.0239%" height="15" fill="rgb(205,68,36)" fg:x="6390" fg:w="5"/><text x="30.8227%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.5727%" y="325" width="0.0239%" height="15" fill="rgb(245,62,40)" fg:x="6390" fg:w="5"/><text x="30.8227%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.5727%" y="309" width="0.0239%" height="15" fill="rgb(228,27,24)" fg:x="6390" fg:w="5"/><text x="30.8227%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.5727%" y="293" width="0.0239%" height="15" fill="rgb(253,19,12)" fg:x="6390" fg:w="5"/><text x="30.8227%" y="303.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.5823%" y="277" width="0.0144%" height="15" fill="rgb(232,28,20)" fg:x="6392" fg:w="3"/><text x="30.8323%" y="287.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.5823%" y="261" width="0.0144%" height="15" fill="rgb(218,35,51)" fg:x="6392" fg:w="3"/><text x="30.8323%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.5966%" y="213" width="0.0239%" height="15" fill="rgb(212,90,40)" fg:x="6395" fg:w="5"/><text x="30.8466%" y="223.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="30.5966%" y="197" width="0.0239%" height="15" fill="rgb(220,172,12)" fg:x="6395" fg:w="5"/><text x="30.8466%" y="207.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="30.5966%" y="181" width="0.0239%" height="15" fill="rgb(226,159,20)" fg:x="6395" fg:w="5"/><text x="30.8466%" y="191.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.6062%" y="165" width="0.0144%" height="15" fill="rgb(234,205,16)" fg:x="6397" fg:w="3"/><text x="30.8562%" y="175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.6062%" y="149" width="0.0144%" height="15" fill="rgb(207,9,39)" fg:x="6397" fg:w="3"/><text x="30.8562%" y="159.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.6062%" y="133" width="0.0144%" height="15" fill="rgb(249,143,15)" fg:x="6397" fg:w="3"/><text x="30.8562%" y="143.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.6062%" y="117" width="0.0144%" height="15" fill="rgb(253,133,29)" fg:x="6397" fg:w="3"/><text x="30.8562%" y="127.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="30.5966%" y="261" width="0.0431%" height="15" fill="rgb(221,187,0)" fg:x="6395" fg:w="9"/><text x="30.8466%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.5966%" y="245" width="0.0431%" height="15" fill="rgb(205,204,26)" fg:x="6395" fg:w="9"/><text x="30.8466%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="30.5966%" y="229" width="0.0431%" height="15" fill="rgb(224,68,54)" fg:x="6395" fg:w="9"/><text x="30.8466%" y="239.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="30.6205%" y="213" width="0.0191%" height="15" fill="rgb(209,67,4)" fg:x="6400" fg:w="4"/><text x="30.8705%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.6205%" y="197" width="0.0191%" height="15" fill="rgb(228,229,18)" fg:x="6400" fg:w="4"/><text x="30.8705%" y="207.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.6205%" y="181" width="0.0191%" height="15" fill="rgb(231,89,13)" fg:x="6400" fg:w="4"/><text x="30.8705%" y="191.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.6205%" y="165" width="0.0191%" height="15" fill="rgb(210,182,18)" fg:x="6400" fg:w="4"/><text x="30.8705%" y="175.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.6397%" y="149" width="0.0144%" height="15" fill="rgb(240,105,2)" fg:x="6404" fg:w="3"/><text x="30.8897%" y="159.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.6397%" y="133" width="0.0144%" height="15" fill="rgb(207,170,50)" fg:x="6404" fg:w="3"/><text x="30.8897%" y="143.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.6397%" y="117" width="0.0144%" height="15" fill="rgb(232,133,24)" fg:x="6404" fg:w="3"/><text x="30.8897%" y="127.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (28 samples, 0.13%)</title><rect x="30.5344%" y="677" width="0.1340%" height="15" fill="rgb(235,166,27)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.13%)</title><rect x="30.5344%" y="661" width="0.1340%" height="15" fill="rgb(209,19,13)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="30.5344%" y="645" width="0.1340%" height="15" fill="rgb(226,79,39)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="30.5344%" y="629" width="0.1340%" height="15" fill="rgb(222,163,10)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.13%)</title><rect x="30.5344%" y="613" width="0.1340%" height="15" fill="rgb(214,44,19)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="30.5344%" y="597" width="0.1340%" height="15" fill="rgb(210,217,13)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="30.5344%" y="581" width="0.1340%" height="15" fill="rgb(237,61,54)" fg:x="6382" fg:w="28"/><text x="30.7844%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (26 samples, 0.12%)</title><rect x="30.5440%" y="565" width="0.1244%" height="15" fill="rgb(226,184,24)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (26 samples, 0.12%)</title><rect x="30.5440%" y="549" width="0.1244%" height="15" fill="rgb(223,226,4)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="30.5440%" y="533" width="0.1244%" height="15" fill="rgb(210,26,41)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="30.5440%" y="517" width="0.1244%" height="15" fill="rgb(220,221,6)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="30.5440%" y="501" width="0.1244%" height="15" fill="rgb(225,89,49)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="30.5440%" y="485" width="0.1244%" height="15" fill="rgb(218,70,45)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="30.5440%" y="469" width="0.1244%" height="15" fill="rgb(238,166,21)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="30.5440%" y="453" width="0.1244%" height="15" fill="rgb(224,141,44)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="30.5440%" y="437" width="0.1244%" height="15" fill="rgb(230,12,49)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="30.5440%" y="421" width="0.1244%" height="15" fill="rgb(212,174,12)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="30.5440%" y="405" width="0.1244%" height="15" fill="rgb(246,67,9)" fg:x="6384" fg:w="26"/><text x="30.7940%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="30.5966%" y="389" width="0.0718%" height="15" fill="rgb(239,35,23)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="399.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="30.5966%" y="373" width="0.0718%" height="15" fill="rgb(211,167,0)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="30.5966%" y="357" width="0.0718%" height="15" fill="rgb(225,119,45)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.5966%" y="341" width="0.0718%" height="15" fill="rgb(210,162,6)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.5966%" y="325" width="0.0718%" height="15" fill="rgb(208,118,35)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="30.5966%" y="309" width="0.0718%" height="15" fill="rgb(239,4,53)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.5966%" y="293" width="0.0718%" height="15" fill="rgb(213,130,21)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.5966%" y="277" width="0.0718%" height="15" fill="rgb(235,148,0)" fg:x="6395" fg:w="15"/><text x="30.8466%" y="287.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="30.6397%" y="261" width="0.0287%" height="15" fill="rgb(244,224,18)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.6397%" y="245" width="0.0287%" height="15" fill="rgb(211,214,4)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="255.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.6397%" y="229" width="0.0287%" height="15" fill="rgb(206,119,25)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="239.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.6397%" y="213" width="0.0287%" height="15" fill="rgb(243,93,47)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="223.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.6397%" y="197" width="0.0287%" height="15" fill="rgb(224,194,6)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="207.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.6397%" y="181" width="0.0287%" height="15" fill="rgb(243,229,6)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="191.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.6397%" y="165" width="0.0287%" height="15" fill="rgb(207,23,50)" fg:x="6404" fg:w="6"/><text x="30.8897%" y="175.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.6540%" y="149" width="0.0144%" height="15" fill="rgb(253,192,32)" fg:x="6407" fg:w="3"/><text x="30.9040%" y="159.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.6540%" y="133" width="0.0144%" height="15" fill="rgb(213,21,6)" fg:x="6407" fg:w="3"/><text x="30.9040%" y="143.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.6540%" y="117" width="0.0144%" height="15" fill="rgb(243,151,13)" fg:x="6407" fg:w="3"/><text x="30.9040%" y="127.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.6540%" y="101" width="0.0144%" height="15" fill="rgb(233,165,41)" fg:x="6407" fg:w="3"/><text x="30.9040%" y="111.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.6684%" y="597" width="0.0191%" height="15" fill="rgb(246,176,45)" fg:x="6410" fg:w="4"/><text x="30.9184%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.6684%" y="581" width="0.0191%" height="15" fill="rgb(217,170,52)" fg:x="6410" fg:w="4"/><text x="30.9184%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.6684%" y="565" width="0.0191%" height="15" fill="rgb(214,203,54)" fg:x="6410" fg:w="4"/><text x="30.9184%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (55 samples, 0.26%)</title><rect x="30.4387%" y="725" width="0.2631%" height="15" fill="rgb(248,215,49)" fg:x="6362" fg:w="55"/><text x="30.6887%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.25%)</title><rect x="30.4531%" y="709" width="0.2488%" height="15" fill="rgb(208,46,10)" fg:x="6365" fg:w="52"/><text x="30.7031%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.25%)</title><rect x="30.4531%" y="693" width="0.2488%" height="15" fill="rgb(254,5,31)" fg:x="6365" fg:w="52"/><text x="30.7031%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="30.6684%" y="677" width="0.0335%" height="15" fill="rgb(222,104,33)" fg:x="6410" fg:w="7"/><text x="30.9184%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="30.6684%" y="661" width="0.0335%" height="15" fill="rgb(248,49,16)" fg:x="6410" fg:w="7"/><text x="30.9184%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="30.6684%" y="645" width="0.0335%" height="15" fill="rgb(232,198,41)" fg:x="6410" fg:w="7"/><text x="30.9184%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="30.6684%" y="629" width="0.0335%" height="15" fill="rgb(214,125,3)" fg:x="6410" fg:w="7"/><text x="30.9184%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="30.6684%" y="613" width="0.0335%" height="15" fill="rgb(229,220,28)" fg:x="6410" fg:w="7"/><text x="30.9184%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="30.6875%" y="597" width="0.0144%" height="15" fill="rgb(222,64,37)" fg:x="6414" fg:w="3"/><text x="30.9375%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="30.6875%" y="581" width="0.0144%" height="15" fill="rgb(249,184,13)" fg:x="6414" fg:w="3"/><text x="30.9375%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.6875%" y="565" width="0.0144%" height="15" fill="rgb(252,176,6)" fg:x="6414" fg:w="3"/><text x="30.9375%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.6875%" y="549" width="0.0144%" height="15" fill="rgb(228,153,7)" fg:x="6414" fg:w="3"/><text x="30.9375%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.6875%" y="533" width="0.0144%" height="15" fill="rgb(242,193,5)" fg:x="6414" fg:w="3"/><text x="30.9375%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.7019%" y="725" width="0.0144%" height="15" fill="rgb(232,140,9)" fg:x="6417" fg:w="3"/><text x="30.9519%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.7019%" y="709" width="0.0144%" height="15" fill="rgb(213,222,16)" fg:x="6417" fg:w="3"/><text x="30.9519%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (306 samples, 1.46%)</title><rect x="29.2618%" y="853" width="1.4640%" height="15" fill="rgb(222,75,50)" fg:x="6116" fg:w="306"/><text x="29.5118%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (300 samples, 1.44%)</title><rect x="29.2905%" y="837" width="1.4353%" height="15" fill="rgb(205,180,2)" fg:x="6122" fg:w="300"/><text x="29.5405%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (300 samples, 1.44%)</title><rect x="29.2905%" y="821" width="1.4353%" height="15" fill="rgb(216,34,7)" fg:x="6122" fg:w="300"/><text x="29.5405%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (63 samples, 0.30%)</title><rect x="30.4244%" y="805" width="0.3014%" height="15" fill="rgb(253,16,32)" fg:x="6359" fg:w="63"/><text x="30.6744%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (63 samples, 0.30%)</title><rect x="30.4244%" y="789" width="0.3014%" height="15" fill="rgb(208,97,28)" fg:x="6359" fg:w="63"/><text x="30.6744%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (63 samples, 0.30%)</title><rect x="30.4244%" y="773" width="0.3014%" height="15" fill="rgb(225,92,11)" fg:x="6359" fg:w="63"/><text x="30.6744%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.29%)</title><rect x="30.4387%" y="757" width="0.2871%" height="15" fill="rgb(243,38,12)" fg:x="6362" fg:w="60"/><text x="30.6887%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (60 samples, 0.29%)</title><rect x="30.4387%" y="741" width="0.2871%" height="15" fill="rgb(208,139,16)" fg:x="6362" fg:w="60"/><text x="30.6887%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.7736%" y="693" width="0.0191%" height="15" fill="rgb(227,24,9)" fg:x="6432" fg:w="4"/><text x="31.0236%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="30.7449%" y="741" width="0.0718%" height="15" fill="rgb(206,62,11)" fg:x="6426" fg:w="15"/><text x="30.9949%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="30.7736%" y="725" width="0.0431%" height="15" fill="rgb(228,134,27)" fg:x="6432" fg:w="9"/><text x="31.0236%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="30.7736%" y="709" width="0.0431%" height="15" fill="rgb(205,55,33)" fg:x="6432" fg:w="9"/><text x="31.0236%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="30.7928%" y="693" width="0.0239%" height="15" fill="rgb(243,75,43)" fg:x="6436" fg:w="5"/><text x="31.0428%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="30.7928%" y="677" width="0.0239%" height="15" fill="rgb(223,27,42)" fg:x="6436" fg:w="5"/><text x="31.0428%" y="687.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="30.8311%" y="709" width="0.0191%" height="15" fill="rgb(232,189,33)" fg:x="6444" fg:w="4"/><text x="31.0811%" y="719.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="30.8311%" y="693" width="0.0191%" height="15" fill="rgb(210,9,39)" fg:x="6444" fg:w="4"/><text x="31.0811%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.8502%" y="677" width="0.0191%" height="15" fill="rgb(242,85,26)" fg:x="6448" fg:w="4"/><text x="31.1002%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="30.7354%" y="789" width="0.1483%" height="15" fill="rgb(248,44,4)" fg:x="6424" fg:w="31"/><text x="30.9854%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="30.7449%" y="773" width="0.1387%" height="15" fill="rgb(250,96,46)" fg:x="6426" fg:w="29"/><text x="30.9949%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="30.7449%" y="757" width="0.1387%" height="15" fill="rgb(229,116,26)" fg:x="6426" fg:w="29"/><text x="30.9949%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="30.8167%" y="741" width="0.0670%" height="15" fill="rgb(246,94,34)" fg:x="6441" fg:w="14"/><text x="31.0667%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="30.8167%" y="725" width="0.0670%" height="15" fill="rgb(251,73,21)" fg:x="6441" fg:w="14"/><text x="31.0667%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="30.8502%" y="709" width="0.0335%" height="15" fill="rgb(254,121,25)" fg:x="6448" fg:w="7"/><text x="31.1002%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="30.8502%" y="693" width="0.0335%" height="15" fill="rgb(215,161,49)" fg:x="6448" fg:w="7"/><text x="31.1002%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="30.8693%" y="677" width="0.0144%" height="15" fill="rgb(221,43,13)" fg:x="6452" fg:w="3"/><text x="31.1193%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="30.8693%" y="661" width="0.0144%" height="15" fill="rgb(249,5,37)" fg:x="6452" fg:w="3"/><text x="31.1193%" y="671.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.8885%" y="709" width="0.0144%" height="15" fill="rgb(226,25,44)" fg:x="6456" fg:w="3"/><text x="31.1385%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="30.8837%" y="725" width="0.0383%" height="15" fill="rgb(238,189,16)" fg:x="6455" fg:w="8"/><text x="31.1337%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="30.9028%" y="709" width="0.0191%" height="15" fill="rgb(251,186,8)" fg:x="6459" fg:w="4"/><text x="31.1528%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="30.9028%" y="693" width="0.0191%" height="15" fill="rgb(254,34,31)" fg:x="6459" fg:w="4"/><text x="31.1528%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="30.9315%" y="693" width="0.0144%" height="15" fill="rgb(225,215,27)" fg:x="6465" fg:w="3"/><text x="31.1815%" y="703.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="30.9315%" y="677" width="0.0144%" height="15" fill="rgb(221,192,48)" fg:x="6465" fg:w="3"/><text x="31.1815%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="30.9459%" y="661" width="0.0191%" height="15" fill="rgb(219,137,20)" fg:x="6468" fg:w="4"/><text x="31.1959%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.09%)</title><rect x="30.8837%" y="789" width="0.0909%" height="15" fill="rgb(219,84,11)" fg:x="6455" fg:w="19"/><text x="31.1337%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="30.8837%" y="773" width="0.0909%" height="15" fill="rgb(224,10,23)" fg:x="6455" fg:w="19"/><text x="31.1337%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="30.8837%" y="757" width="0.0909%" height="15" fill="rgb(248,22,39)" fg:x="6455" fg:w="19"/><text x="31.1337%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="30.8837%" y="741" width="0.0909%" height="15" fill="rgb(212,154,20)" fg:x="6455" fg:w="19"/><text x="31.1337%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="30.9220%" y="725" width="0.0526%" height="15" fill="rgb(236,199,50)" fg:x="6463" fg:w="11"/><text x="31.1720%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="30.9220%" y="709" width="0.0526%" height="15" fill="rgb(211,9,17)" fg:x="6463" fg:w="11"/><text x="31.1720%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="30.9459%" y="693" width="0.0287%" height="15" fill="rgb(243,216,36)" fg:x="6468" fg:w="6"/><text x="31.1959%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="30.9459%" y="677" width="0.0287%" height="15" fill="rgb(250,2,10)" fg:x="6468" fg:w="6"/><text x="31.1959%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="30.9842%" y="661" width="0.0287%" height="15" fill="rgb(226,50,48)" fg:x="6476" fg:w="6"/><text x="31.2342%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="30.9985%" y="645" width="0.0144%" height="15" fill="rgb(243,81,16)" fg:x="6479" fg:w="3"/><text x="31.2485%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="30.9985%" y="629" width="0.0144%" height="15" fill="rgb(250,14,2)" fg:x="6479" fg:w="3"/><text x="31.2485%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.0129%" y="661" width="0.0191%" height="15" fill="rgb(233,135,29)" fg:x="6482" fg:w="4"/><text x="31.2629%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.0129%" y="645" width="0.0191%" height="15" fill="rgb(224,64,43)" fg:x="6482" fg:w="4"/><text x="31.2629%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.0320%" y="581" width="0.0191%" height="15" fill="rgb(238,84,13)" fg:x="6486" fg:w="4"/><text x="31.2820%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.0320%" y="565" width="0.0191%" height="15" fill="rgb(253,48,26)" fg:x="6486" fg:w="4"/><text x="31.2820%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.0320%" y="549" width="0.0191%" height="15" fill="rgb(205,223,31)" fg:x="6486" fg:w="4"/><text x="31.2820%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="30.9746%" y="709" width="0.0813%" height="15" fill="rgb(221,41,32)" fg:x="6474" fg:w="17"/><text x="31.2246%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="30.9842%" y="693" width="0.0718%" height="15" fill="rgb(213,158,31)" fg:x="6476" fg:w="15"/><text x="31.2342%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="30.9842%" y="677" width="0.0718%" height="15" fill="rgb(245,126,43)" fg:x="6476" fg:w="15"/><text x="31.2342%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="31.0320%" y="661" width="0.0239%" height="15" fill="rgb(227,7,22)" fg:x="6486" fg:w="5"/><text x="31.2820%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="31.0320%" y="645" width="0.0239%" height="15" fill="rgb(252,90,44)" fg:x="6486" fg:w="5"/><text x="31.2820%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.0320%" y="629" width="0.0239%" height="15" fill="rgb(253,91,0)" fg:x="6486" fg:w="5"/><text x="31.2820%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.0320%" y="613" width="0.0239%" height="15" fill="rgb(252,175,49)" fg:x="6486" fg:w="5"/><text x="31.2820%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.0320%" y="597" width="0.0239%" height="15" fill="rgb(246,150,1)" fg:x="6486" fg:w="5"/><text x="31.2820%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.0607%" y="645" width="0.0144%" height="15" fill="rgb(241,192,25)" fg:x="6492" fg:w="3"/><text x="31.3107%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.0607%" y="629" width="0.0144%" height="15" fill="rgb(239,187,11)" fg:x="6492" fg:w="3"/><text x="31.3107%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.0607%" y="613" width="0.0144%" height="15" fill="rgb(218,202,51)" fg:x="6492" fg:w="3"/><text x="31.3107%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="31.0559%" y="709" width="0.0335%" height="15" fill="rgb(225,176,8)" fg:x="6491" fg:w="7"/><text x="31.3059%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.0559%" y="693" width="0.0335%" height="15" fill="rgb(219,122,41)" fg:x="6491" fg:w="7"/><text x="31.3059%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="31.0607%" y="677" width="0.0287%" height="15" fill="rgb(248,140,20)" fg:x="6492" fg:w="6"/><text x="31.3107%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="31.0607%" y="661" width="0.0287%" height="15" fill="rgb(245,41,37)" fg:x="6492" fg:w="6"/><text x="31.3107%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.0751%" y="645" width="0.0144%" height="15" fill="rgb(235,82,39)" fg:x="6495" fg:w="3"/><text x="31.3251%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.0751%" y="629" width="0.0144%" height="15" fill="rgb(230,108,42)" fg:x="6495" fg:w="3"/><text x="31.3251%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.0751%" y="613" width="0.0144%" height="15" fill="rgb(215,150,50)" fg:x="6495" fg:w="3"/><text x="31.3251%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.0751%" y="597" width="0.0144%" height="15" fill="rgb(233,212,5)" fg:x="6495" fg:w="3"/><text x="31.3251%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.0990%" y="533" width="0.0144%" height="15" fill="rgb(245,80,22)" fg:x="6500" fg:w="3"/><text x="31.3490%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.0990%" y="517" width="0.0144%" height="15" fill="rgb(238,129,16)" fg:x="6500" fg:w="3"/><text x="31.3490%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.0990%" y="501" width="0.0144%" height="15" fill="rgb(240,19,0)" fg:x="6500" fg:w="3"/><text x="31.3490%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.0894%" y="581" width="0.0335%" height="15" fill="rgb(232,42,35)" fg:x="6498" fg:w="7"/><text x="31.3394%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.0990%" y="565" width="0.0239%" height="15" fill="rgb(223,130,24)" fg:x="6500" fg:w="5"/><text x="31.3490%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.0990%" y="549" width="0.0239%" height="15" fill="rgb(237,16,22)" fg:x="6500" fg:w="5"/><text x="31.3490%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="31.0894%" y="629" width="0.0622%" height="15" fill="rgb(248,192,20)" fg:x="6498" fg:w="13"/><text x="31.3394%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="31.0894%" y="613" width="0.0622%" height="15" fill="rgb(233,167,2)" fg:x="6498" fg:w="13"/><text x="31.3394%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="31.0894%" y="597" width="0.0622%" height="15" fill="rgb(252,71,44)" fg:x="6498" fg:w="13"/><text x="31.3394%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="31.1325%" y="581" width="0.0191%" height="15" fill="rgb(238,37,47)" fg:x="6507" fg:w="4"/><text x="31.3825%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="31.1325%" y="565" width="0.0191%" height="15" fill="rgb(214,202,54)" fg:x="6507" fg:w="4"/><text x="31.3825%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.1325%" y="549" width="0.0191%" height="15" fill="rgb(254,165,40)" fg:x="6507" fg:w="4"/><text x="31.3825%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (93 samples, 0.44%)</title><rect x="30.7258%" y="853" width="0.4450%" height="15" fill="rgb(246,173,38)" fg:x="6422" fg:w="93"/><text x="30.9758%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (93 samples, 0.44%)</title><rect x="30.7258%" y="837" width="0.4450%" height="15" fill="rgb(215,3,27)" fg:x="6422" fg:w="93"/><text x="30.9758%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (91 samples, 0.44%)</title><rect x="30.7354%" y="821" width="0.4354%" height="15" fill="rgb(239,169,51)" fg:x="6424" fg:w="91"/><text x="30.9854%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (91 samples, 0.44%)</title><rect x="30.7354%" y="805" width="0.4354%" height="15" fill="rgb(212,5,25)" fg:x="6424" fg:w="91"/><text x="30.9854%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (41 samples, 0.20%)</title><rect x="30.9746%" y="789" width="0.1962%" height="15" fill="rgb(243,45,17)" fg:x="6474" fg:w="41"/><text x="31.2246%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (41 samples, 0.20%)</title><rect x="30.9746%" y="773" width="0.1962%" height="15" fill="rgb(242,97,9)" fg:x="6474" fg:w="41"/><text x="31.2246%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (41 samples, 0.20%)</title><rect x="30.9746%" y="757" width="0.1962%" height="15" fill="rgb(228,71,31)" fg:x="6474" fg:w="41"/><text x="31.2246%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (41 samples, 0.20%)</title><rect x="30.9746%" y="741" width="0.1962%" height="15" fill="rgb(252,184,16)" fg:x="6474" fg:w="41"/><text x="31.2246%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (41 samples, 0.20%)</title><rect x="30.9746%" y="725" width="0.1962%" height="15" fill="rgb(236,169,46)" fg:x="6474" fg:w="41"/><text x="31.2246%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="31.0894%" y="709" width="0.0813%" height="15" fill="rgb(207,17,47)" fg:x="6498" fg:w="17"/><text x="31.3394%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="31.0894%" y="693" width="0.0813%" height="15" fill="rgb(206,201,28)" fg:x="6498" fg:w="17"/><text x="31.3394%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="31.0894%" y="677" width="0.0813%" height="15" fill="rgb(224,184,23)" fg:x="6498" fg:w="17"/><text x="31.3394%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="31.0894%" y="661" width="0.0813%" height="15" fill="rgb(208,139,48)" fg:x="6498" fg:w="17"/><text x="31.3394%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="31.0894%" y="645" width="0.0813%" height="15" fill="rgb(208,130,10)" fg:x="6498" fg:w="17"/><text x="31.3394%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.1516%" y="629" width="0.0191%" height="15" fill="rgb(211,213,45)" fg:x="6511" fg:w="4"/><text x="31.4016%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.1516%" y="613" width="0.0191%" height="15" fill="rgb(235,100,30)" fg:x="6511" fg:w="4"/><text x="31.4016%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.1516%" y="597" width="0.0191%" height="15" fill="rgb(206,144,31)" fg:x="6511" fg:w="4"/><text x="31.4016%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.1516%" y="581" width="0.0191%" height="15" fill="rgb(224,200,26)" fg:x="6511" fg:w="4"/><text x="31.4016%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="31.1564%" y="565" width="0.0144%" height="15" fill="rgb(247,104,53)" fg:x="6512" fg:w="3"/><text x="31.4064%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="31.1564%" y="549" width="0.0144%" height="15" fill="rgb(220,14,17)" fg:x="6512" fg:w="3"/><text x="31.4064%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.1564%" y="533" width="0.0144%" height="15" fill="rgb(230,140,40)" fg:x="6512" fg:w="3"/><text x="31.4064%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.2186%" y="629" width="0.0239%" height="15" fill="rgb(229,2,41)" fg:x="6525" fg:w="5"/><text x="31.4686%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.2234%" y="613" width="0.0191%" height="15" fill="rgb(232,89,16)" fg:x="6526" fg:w="4"/><text x="31.4734%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.2234%" y="597" width="0.0191%" height="15" fill="rgb(247,59,52)" fg:x="6526" fg:w="4"/><text x="31.4734%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="31.2090%" y="677" width="0.0670%" height="15" fill="rgb(226,110,21)" fg:x="6523" fg:w="14"/><text x="31.4590%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="31.2186%" y="661" width="0.0574%" height="15" fill="rgb(224,176,43)" fg:x="6525" fg:w="12"/><text x="31.4686%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="31.2186%" y="645" width="0.0574%" height="15" fill="rgb(221,73,6)" fg:x="6525" fg:w="12"/><text x="31.4686%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="31.2425%" y="629" width="0.0335%" height="15" fill="rgb(232,78,19)" fg:x="6530" fg:w="7"/><text x="31.4925%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.2425%" y="613" width="0.0335%" height="15" fill="rgb(233,112,48)" fg:x="6530" fg:w="7"/><text x="31.4925%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="31.2473%" y="597" width="0.0287%" height="15" fill="rgb(243,131,47)" fg:x="6531" fg:w="6"/><text x="31.4973%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="31.2473%" y="581" width="0.0287%" height="15" fill="rgb(226,51,1)" fg:x="6531" fg:w="6"/><text x="31.4973%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.2569%" y="565" width="0.0191%" height="15" fill="rgb(247,58,7)" fg:x="6533" fg:w="4"/><text x="31.5069%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.2569%" y="549" width="0.0191%" height="15" fill="rgb(209,7,32)" fg:x="6533" fg:w="4"/><text x="31.5069%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="31.2856%" y="613" width="0.0287%" height="15" fill="rgb(209,39,41)" fg:x="6539" fg:w="6"/><text x="31.5356%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.2904%" y="597" width="0.0239%" height="15" fill="rgb(226,182,46)" fg:x="6540" fg:w="5"/><text x="31.5404%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.2904%" y="581" width="0.0239%" height="15" fill="rgb(230,219,10)" fg:x="6540" fg:w="5"/><text x="31.5404%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.2999%" y="565" width="0.0144%" height="15" fill="rgb(227,175,30)" fg:x="6542" fg:w="3"/><text x="31.5499%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.2999%" y="549" width="0.0144%" height="15" fill="rgb(217,2,50)" fg:x="6542" fg:w="3"/><text x="31.5499%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (30 samples, 0.14%)</title><rect x="31.2042%" y="725" width="0.1435%" height="15" fill="rgb(229,160,0)" fg:x="6522" fg:w="30"/><text x="31.4542%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="31.2090%" y="709" width="0.1387%" height="15" fill="rgb(207,78,37)" fg:x="6523" fg:w="29"/><text x="31.4590%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="31.2090%" y="693" width="0.1387%" height="15" fill="rgb(225,57,0)" fg:x="6523" fg:w="29"/><text x="31.4590%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="31.2760%" y="677" width="0.0718%" height="15" fill="rgb(232,154,2)" fg:x="6537" fg:w="15"/><text x="31.5260%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="31.2760%" y="661" width="0.0718%" height="15" fill="rgb(241,212,25)" fg:x="6537" fg:w="15"/><text x="31.5260%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="31.2856%" y="645" width="0.0622%" height="15" fill="rgb(226,69,20)" fg:x="6539" fg:w="13"/><text x="31.5356%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="31.2856%" y="629" width="0.0622%" height="15" fill="rgb(247,184,54)" fg:x="6539" fg:w="13"/><text x="31.5356%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="31.3143%" y="613" width="0.0335%" height="15" fill="rgb(210,145,0)" fg:x="6545" fg:w="7"/><text x="31.5643%" y="623.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="31.3143%" y="597" width="0.0335%" height="15" fill="rgb(253,82,12)" fg:x="6545" fg:w="7"/><text x="31.5643%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.3143%" y="581" width="0.0335%" height="15" fill="rgb(245,42,11)" fg:x="6545" fg:w="7"/><text x="31.5643%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.3239%" y="565" width="0.0239%" height="15" fill="rgb(219,147,32)" fg:x="6547" fg:w="5"/><text x="31.5739%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.3239%" y="549" width="0.0239%" height="15" fill="rgb(246,12,7)" fg:x="6547" fg:w="5"/><text x="31.5739%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.3334%" y="533" width="0.0144%" height="15" fill="rgb(243,50,9)" fg:x="6549" fg:w="3"/><text x="31.5834%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.3334%" y="517" width="0.0144%" height="15" fill="rgb(219,149,6)" fg:x="6549" fg:w="3"/><text x="31.5834%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.3574%" y="661" width="0.0239%" height="15" fill="rgb(241,51,42)" fg:x="6554" fg:w="5"/><text x="31.6074%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.3669%" y="645" width="0.0144%" height="15" fill="rgb(226,128,27)" fg:x="6556" fg:w="3"/><text x="31.6169%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.3669%" y="629" width="0.0144%" height="15" fill="rgb(244,144,4)" fg:x="6556" fg:w="3"/><text x="31.6169%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="31.3478%" y="725" width="0.0478%" height="15" fill="rgb(221,4,13)" fg:x="6552" fg:w="10"/><text x="31.5978%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="31.3478%" y="709" width="0.0478%" height="15" fill="rgb(208,170,28)" fg:x="6552" fg:w="10"/><text x="31.5978%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="31.3574%" y="693" width="0.0383%" height="15" fill="rgb(226,131,13)" fg:x="6554" fg:w="8"/><text x="31.6074%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="31.3574%" y="677" width="0.0383%" height="15" fill="rgb(215,72,41)" fg:x="6554" fg:w="8"/><text x="31.6074%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.3813%" y="661" width="0.0144%" height="15" fill="rgb(243,108,20)" fg:x="6559" fg:w="3"/><text x="31.6313%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.3813%" y="645" width="0.0144%" height="15" fill="rgb(230,189,17)" fg:x="6559" fg:w="3"/><text x="31.6313%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.3813%" y="629" width="0.0144%" height="15" fill="rgb(220,50,17)" fg:x="6559" fg:w="3"/><text x="31.6313%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.3813%" y="613" width="0.0144%" height="15" fill="rgb(248,152,48)" fg:x="6559" fg:w="3"/><text x="31.6313%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="31.3956%" y="645" width="0.0287%" height="15" fill="rgb(244,91,11)" fg:x="6562" fg:w="6"/><text x="31.6456%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.4004%" y="629" width="0.0239%" height="15" fill="rgb(220,157,5)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.4004%" y="613" width="0.0239%" height="15" fill="rgb(253,137,8)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="31.4004%" y="597" width="0.0239%" height="15" fill="rgb(217,137,51)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="31.4004%" y="581" width="0.0239%" height="15" fill="rgb(218,209,53)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.4004%" y="565" width="0.0239%" height="15" fill="rgb(249,137,25)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="31.4004%" y="549" width="0.0239%" height="15" fill="rgb(239,155,26)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="31.4004%" y="533" width="0.0239%" height="15" fill="rgb(227,85,46)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="31.4004%" y="517" width="0.0239%" height="15" fill="rgb(251,107,43)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="527.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="31.4004%" y="501" width="0.0239%" height="15" fill="rgb(234,170,33)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="511.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="31.4004%" y="485" width="0.0239%" height="15" fill="rgb(206,29,35)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="495.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="31.4004%" y="469" width="0.0239%" height="15" fill="rgb(227,138,25)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="479.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="31.4004%" y="453" width="0.0239%" height="15" fill="rgb(249,131,35)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="463.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="31.4004%" y="437" width="0.0239%" height="15" fill="rgb(239,6,40)" fg:x="6563" fg:w="5"/><text x="31.6504%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (54 samples, 0.26%)</title><rect x="31.1755%" y="773" width="0.2584%" height="15" fill="rgb(246,136,47)" fg:x="6516" fg:w="54"/><text x="31.4255%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.23%)</title><rect x="31.2042%" y="757" width="0.2297%" height="15" fill="rgb(253,58,26)" fg:x="6522" fg:w="48"/><text x="31.4542%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (48 samples, 0.23%)</title><rect x="31.2042%" y="741" width="0.2297%" height="15" fill="rgb(237,141,10)" fg:x="6522" fg:w="48"/><text x="31.4542%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="31.3956%" y="725" width="0.0383%" height="15" fill="rgb(234,156,12)" fg:x="6562" fg:w="8"/><text x="31.6456%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="31.3956%" y="709" width="0.0383%" height="15" fill="rgb(243,224,36)" fg:x="6562" fg:w="8"/><text x="31.6456%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="31.3956%" y="693" width="0.0383%" height="15" fill="rgb(205,229,51)" fg:x="6562" fg:w="8"/><text x="31.6456%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="31.3956%" y="677" width="0.0383%" height="15" fill="rgb(223,189,4)" fg:x="6562" fg:w="8"/><text x="31.6456%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="31.3956%" y="661" width="0.0383%" height="15" fill="rgb(249,167,54)" fg:x="6562" fg:w="8"/><text x="31.6456%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="31.4339%" y="773" width="0.0191%" height="15" fill="rgb(218,34,28)" fg:x="6570" fg:w="4"/><text x="31.6839%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.4339%" y="757" width="0.0191%" height="15" fill="rgb(232,109,42)" fg:x="6570" fg:w="4"/><text x="31.6839%" y="767.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="31.4339%" y="741" width="0.0191%" height="15" fill="rgb(248,214,46)" fg:x="6570" fg:w="4"/><text x="31.6839%" y="751.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="31.4339%" y="725" width="0.0191%" height="15" fill="rgb(244,216,40)" fg:x="6570" fg:w="4"/><text x="31.6839%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="31.4578%" y="597" width="0.0239%" height="15" fill="rgb(231,226,31)" fg:x="6575" fg:w="5"/><text x="31.7078%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.4626%" y="581" width="0.0191%" height="15" fill="rgb(238,38,43)" fg:x="6576" fg:w="4"/><text x="31.7126%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.4626%" y="565" width="0.0191%" height="15" fill="rgb(208,88,43)" fg:x="6576" fg:w="4"/><text x="31.7126%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.4674%" y="549" width="0.0144%" height="15" fill="rgb(205,136,37)" fg:x="6577" fg:w="3"/><text x="31.7174%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.4674%" y="533" width="0.0144%" height="15" fill="rgb(237,34,14)" fg:x="6577" fg:w="3"/><text x="31.7174%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.4674%" y="517" width="0.0144%" height="15" fill="rgb(236,193,44)" fg:x="6577" fg:w="3"/><text x="31.7174%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.4674%" y="501" width="0.0144%" height="15" fill="rgb(231,48,10)" fg:x="6577" fg:w="3"/><text x="31.7174%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.4913%" y="533" width="0.0144%" height="15" fill="rgb(213,141,34)" fg:x="6582" fg:w="3"/><text x="31.7413%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.4913%" y="517" width="0.0144%" height="15" fill="rgb(249,130,34)" fg:x="6582" fg:w="3"/><text x="31.7413%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.4913%" y="501" width="0.0144%" height="15" fill="rgb(219,42,41)" fg:x="6582" fg:w="3"/><text x="31.7413%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="31.4578%" y="645" width="0.0526%" height="15" fill="rgb(224,100,54)" fg:x="6575" fg:w="11"/><text x="31.7078%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="31.4578%" y="629" width="0.0526%" height="15" fill="rgb(229,200,27)" fg:x="6575" fg:w="11"/><text x="31.7078%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="31.4578%" y="613" width="0.0526%" height="15" fill="rgb(217,118,10)" fg:x="6575" fg:w="11"/><text x="31.7078%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="31.4817%" y="597" width="0.0287%" height="15" fill="rgb(206,22,3)" fg:x="6580" fg:w="6"/><text x="31.7317%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="31.4817%" y="581" width="0.0287%" height="15" fill="rgb(232,163,46)" fg:x="6580" fg:w="6"/><text x="31.7317%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.4913%" y="565" width="0.0191%" height="15" fill="rgb(206,95,13)" fg:x="6582" fg:w="4"/><text x="31.7413%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.4913%" y="549" width="0.0191%" height="15" fill="rgb(253,154,18)" fg:x="6582" fg:w="4"/><text x="31.7413%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="31.4578%" y="693" width="0.0670%" height="15" fill="rgb(219,32,23)" fg:x="6575" fg:w="14"/><text x="31.7078%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="31.4578%" y="677" width="0.0670%" height="15" fill="rgb(230,191,45)" fg:x="6575" fg:w="14"/><text x="31.7078%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="31.4578%" y="661" width="0.0670%" height="15" fill="rgb(229,64,36)" fg:x="6575" fg:w="14"/><text x="31.7078%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.5105%" y="645" width="0.0144%" height="15" fill="rgb(205,129,25)" fg:x="6586" fg:w="3"/><text x="31.7605%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.5105%" y="629" width="0.0144%" height="15" fill="rgb(254,112,7)" fg:x="6586" fg:w="3"/><text x="31.7605%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.5105%" y="613" width="0.0144%" height="15" fill="rgb(226,53,48)" fg:x="6586" fg:w="3"/><text x="31.7605%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.5105%" y="597" width="0.0144%" height="15" fill="rgb(214,153,38)" fg:x="6586" fg:w="3"/><text x="31.7605%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="31.5248%" y="629" width="0.0191%" height="15" fill="rgb(243,101,7)" fg:x="6589" fg:w="4"/><text x="31.7748%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="31.5248%" y="613" width="0.0191%" height="15" fill="rgb(240,140,22)" fg:x="6589" fg:w="4"/><text x="31.7748%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="31.5248%" y="597" width="0.0191%" height="15" fill="rgb(235,114,2)" fg:x="6589" fg:w="4"/><text x="31.7748%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (481 samples, 2.30%)</title><rect x="29.2570%" y="917" width="2.3013%" height="15" fill="rgb(242,59,12)" fg:x="6115" fg:w="481"/><text x="29.5070%" y="927.50">&lt;..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (481 samples, 2.30%)</title><rect x="29.2570%" y="901" width="2.3013%" height="15" fill="rgb(252,134,9)" fg:x="6115" fg:w="481"/><text x="29.5070%" y="911.50">r..</text></g><g><title>rayon_core::registry::in_worker (480 samples, 2.30%)</title><rect x="29.2618%" y="885" width="2.2965%" height="15" fill="rgb(236,4,44)" fg:x="6116" fg:w="480"/><text x="29.5118%" y="895.50">r..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (480 samples, 2.30%)</title><rect x="29.2618%" y="869" width="2.2965%" height="15" fill="rgb(254,172,41)" fg:x="6116" fg:w="480"/><text x="29.5118%" y="879.50">_..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (81 samples, 0.39%)</title><rect x="31.1708%" y="853" width="0.3875%" height="15" fill="rgb(244,63,20)" fg:x="6515" fg:w="81"/><text x="31.4208%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (81 samples, 0.39%)</title><rect x="31.1708%" y="837" width="0.3875%" height="15" fill="rgb(250,73,31)" fg:x="6515" fg:w="81"/><text x="31.4208%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (81 samples, 0.39%)</title><rect x="31.1708%" y="821" width="0.3875%" height="15" fill="rgb(241,38,36)" fg:x="6515" fg:w="81"/><text x="31.4208%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (80 samples, 0.38%)</title><rect x="31.1755%" y="805" width="0.3828%" height="15" fill="rgb(245,211,2)" fg:x="6516" fg:w="80"/><text x="31.4255%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (80 samples, 0.38%)</title><rect x="31.1755%" y="789" width="0.3828%" height="15" fill="rgb(206,120,28)" fg:x="6516" fg:w="80"/><text x="31.4255%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.11%)</title><rect x="31.4530%" y="773" width="0.1053%" height="15" fill="rgb(211,59,34)" fg:x="6574" fg:w="22"/><text x="31.7030%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.11%)</title><rect x="31.4530%" y="757" width="0.1053%" height="15" fill="rgb(233,168,5)" fg:x="6574" fg:w="22"/><text x="31.7030%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="31.4530%" y="741" width="0.1053%" height="15" fill="rgb(234,33,13)" fg:x="6574" fg:w="22"/><text x="31.7030%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="31.4578%" y="725" width="0.1005%" height="15" fill="rgb(231,150,26)" fg:x="6575" fg:w="21"/><text x="31.7078%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="31.4578%" y="709" width="0.1005%" height="15" fill="rgb(217,191,4)" fg:x="6575" fg:w="21"/><text x="31.7078%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="31.5248%" y="693" width="0.0335%" height="15" fill="rgb(246,198,38)" fg:x="6589" fg:w="7"/><text x="31.7748%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="31.5248%" y="677" width="0.0335%" height="15" fill="rgb(245,64,37)" fg:x="6589" fg:w="7"/><text x="31.7748%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="31.5248%" y="661" width="0.0335%" height="15" fill="rgb(250,30,36)" fg:x="6589" fg:w="7"/><text x="31.7748%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="31.5248%" y="645" width="0.0335%" height="15" fill="rgb(217,86,53)" fg:x="6589" fg:w="7"/><text x="31.7748%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="31.5439%" y="629" width="0.0144%" height="15" fill="rgb(228,157,16)" fg:x="6593" fg:w="3"/><text x="31.7939%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="31.5439%" y="613" width="0.0144%" height="15" fill="rgb(217,59,31)" fg:x="6593" fg:w="3"/><text x="31.7939%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="31.5439%" y="597" width="0.0144%" height="15" fill="rgb(237,138,41)" fg:x="6593" fg:w="3"/><text x="31.7939%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="31.5439%" y="581" width="0.0144%" height="15" fill="rgb(227,91,49)" fg:x="6593" fg:w="3"/><text x="31.7939%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3,915 samples, 18.73%)</title><rect x="12.8319%" y="981" width="18.7312%" height="15" fill="rgb(247,21,44)" fg:x="2682" fg:w="3915"/><text x="13.0819%" y="991.50">rayon::iter::plumbing::bridge..</text></g><g><title>rayon_core::registry::in_worker (3,906 samples, 18.69%)</title><rect x="12.8750%" y="965" width="18.6881%" height="15" fill="rgb(219,210,51)" fg:x="2691" fg:w="3906"/><text x="13.1250%" y="975.50">rayon_core::registry::in_work..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3,906 samples, 18.69%)</title><rect x="12.8750%" y="949" width="18.6881%" height="15" fill="rgb(209,140,6)" fg:x="2691" fg:w="3906"/><text x="13.1250%" y="959.50">_ZN10rayon_core4join12join_co..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (482 samples, 2.31%)</title><rect x="29.2570%" y="933" width="2.3061%" height="15" fill="rgb(221,188,24)" fg:x="6115" fg:w="482"/><text x="29.5070%" y="943.50">r..</text></g><g><title>exp (4 samples, 0.02%)</title><rect x="31.6301%" y="901" width="0.0191%" height="15" fill="rgb(232,154,20)" fg:x="6611" fg:w="4"/><text x="31.8801%" y="911.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="31.6349%" y="885" width="0.0144%" height="15" fill="rgb(244,137,50)" fg:x="6612" fg:w="3"/><text x="31.8849%" y="895.50"></text></g><g><title>exp (16 samples, 0.08%)</title><rect x="31.7258%" y="853" width="0.0766%" height="15" fill="rgb(225,185,43)" fg:x="6631" fg:w="16"/><text x="31.9758%" y="863.50"></text></g><g><title>[libm.so.6] (14 samples, 0.07%)</title><rect x="31.7353%" y="837" width="0.0670%" height="15" fill="rgb(213,205,38)" fg:x="6633" fg:w="14"/><text x="31.9853%" y="847.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="31.8884%" y="805" width="0.0287%" height="15" fill="rgb(236,73,12)" fg:x="6665" fg:w="6"/><text x="32.1384%" y="815.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="31.8980%" y="789" width="0.0191%" height="15" fill="rgb(235,219,13)" fg:x="6667" fg:w="4"/><text x="32.1480%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="31.9171%" y="773" width="0.1148%" height="15" fill="rgb(218,59,36)" fg:x="6671" fg:w="24"/><text x="32.1671%" y="783.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="31.9985%" y="757" width="0.0335%" height="15" fill="rgb(205,110,39)" fg:x="6688" fg:w="7"/><text x="32.2485%" y="767.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="32.0033%" y="741" width="0.0287%" height="15" fill="rgb(218,206,42)" fg:x="6689" fg:w="6"/><text x="32.2533%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 0.32%)</title><rect x="31.8023%" y="821" width="0.3158%" height="15" fill="rgb(248,125,24)" fg:x="6647" fg:w="66"/><text x="32.0523%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.20%)</title><rect x="31.9171%" y="805" width="0.2009%" height="15" fill="rgb(242,28,27)" fg:x="6671" fg:w="42"/><text x="32.1671%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (42 samples, 0.20%)</title><rect x="31.9171%" y="789" width="0.2009%" height="15" fill="rgb(216,228,15)" fg:x="6671" fg:w="42"/><text x="32.1671%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="32.0320%" y="773" width="0.0861%" height="15" fill="rgb(235,116,46)" fg:x="6695" fg:w="18"/><text x="32.2820%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="32.0320%" y="757" width="0.0861%" height="15" fill="rgb(224,18,32)" fg:x="6695" fg:w="18"/><text x="32.2820%" y="767.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="32.0750%" y="741" width="0.0431%" height="15" fill="rgb(252,5,12)" fg:x="6704" fg:w="9"/><text x="32.3250%" y="751.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="32.0846%" y="725" width="0.0335%" height="15" fill="rgb(251,36,5)" fg:x="6706" fg:w="7"/><text x="32.3346%" y="735.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="32.2042%" y="789" width="0.0287%" height="15" fill="rgb(217,53,14)" fg:x="6731" fg:w="6"/><text x="32.4542%" y="799.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="32.2090%" y="773" width="0.0239%" height="15" fill="rgb(215,86,45)" fg:x="6732" fg:w="5"/><text x="32.4590%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="32.2329%" y="757" width="0.1244%" height="15" fill="rgb(242,169,11)" fg:x="6737" fg:w="26"/><text x="32.4829%" y="767.50"></text></g><g><title>exp (9 samples, 0.04%)</title><rect x="32.3142%" y="741" width="0.0431%" height="15" fill="rgb(211,213,45)" fg:x="6754" fg:w="9"/><text x="32.5642%" y="751.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="32.3286%" y="725" width="0.0287%" height="15" fill="rgb(205,88,11)" fg:x="6757" fg:w="6"/><text x="32.5786%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.10%)</title><rect x="32.3573%" y="757" width="0.0957%" height="15" fill="rgb(252,69,26)" fg:x="6763" fg:w="20"/><text x="32.6073%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="32.3573%" y="741" width="0.0957%" height="15" fill="rgb(246,123,37)" fg:x="6763" fg:w="20"/><text x="32.6073%" y="751.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="32.4004%" y="725" width="0.0526%" height="15" fill="rgb(212,205,5)" fg:x="6772" fg:w="11"/><text x="32.6504%" y="735.50"></text></g><g><title>[libm.so.6] (8 samples, 0.04%)</title><rect x="32.4147%" y="709" width="0.0383%" height="15" fill="rgb(253,148,0)" fg:x="6775" fg:w="8"/><text x="32.6647%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="32.4530%" y="629" width="0.0144%" height="15" fill="rgb(239,22,4)" fg:x="6783" fg:w="3"/><text x="32.7030%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="32.4530%" y="613" width="0.0144%" height="15" fill="rgb(226,26,53)" fg:x="6783" fg:w="3"/><text x="32.7030%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="32.4530%" y="597" width="0.0144%" height="15" fill="rgb(225,229,45)" fg:x="6783" fg:w="3"/><text x="32.7030%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (173 samples, 0.83%)</title><rect x="31.6492%" y="869" width="0.8277%" height="15" fill="rgb(220,60,37)" fg:x="6615" fg:w="173"/><text x="31.8992%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (141 samples, 0.67%)</title><rect x="31.8023%" y="853" width="0.6746%" height="15" fill="rgb(217,180,35)" fg:x="6647" fg:w="141"/><text x="32.0523%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (141 samples, 0.67%)</title><rect x="31.8023%" y="837" width="0.6746%" height="15" fill="rgb(229,7,53)" fg:x="6647" fg:w="141"/><text x="32.0523%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (75 samples, 0.36%)</title><rect x="32.1181%" y="821" width="0.3588%" height="15" fill="rgb(254,137,3)" fg:x="6713" fg:w="75"/><text x="32.3681%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (75 samples, 0.36%)</title><rect x="32.1181%" y="805" width="0.3588%" height="15" fill="rgb(215,140,41)" fg:x="6713" fg:w="75"/><text x="32.3681%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (51 samples, 0.24%)</title><rect x="32.2329%" y="789" width="0.2440%" height="15" fill="rgb(250,80,15)" fg:x="6737" fg:w="51"/><text x="32.4829%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (51 samples, 0.24%)</title><rect x="32.2329%" y="773" width="0.2440%" height="15" fill="rgb(252,191,6)" fg:x="6737" fg:w="51"/><text x="32.4829%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="32.4530%" y="757" width="0.0239%" height="15" fill="rgb(246,217,18)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="32.4530%" y="741" width="0.0239%" height="15" fill="rgb(223,93,7)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="32.4530%" y="725" width="0.0239%" height="15" fill="rgb(225,55,52)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="32.4530%" y="709" width="0.0239%" height="15" fill="rgb(240,31,24)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="32.4530%" y="693" width="0.0239%" height="15" fill="rgb(205,56,52)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="32.4530%" y="677" width="0.0239%" height="15" fill="rgb(246,146,12)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="32.4530%" y="661" width="0.0239%" height="15" fill="rgb(239,84,36)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="32.4530%" y="645" width="0.0239%" height="15" fill="rgb(207,41,40)" fg:x="6783" fg:w="5"/><text x="32.7030%" y="655.50"></text></g><g><title>exp (13 samples, 0.06%)</title><rect x="32.5487%" y="837" width="0.0622%" height="15" fill="rgb(241,179,25)" fg:x="6803" fg:w="13"/><text x="32.7987%" y="847.50"></text></g><g><title>[libm.so.6] (10 samples, 0.05%)</title><rect x="32.5630%" y="821" width="0.0478%" height="15" fill="rgb(210,0,34)" fg:x="6806" fg:w="10"/><text x="32.8130%" y="831.50"></text></g><g><title>exp (8 samples, 0.04%)</title><rect x="32.6683%" y="789" width="0.0383%" height="15" fill="rgb(225,217,29)" fg:x="6828" fg:w="8"/><text x="32.9183%" y="799.50"></text></g><g><title>[libm.so.6] (8 samples, 0.04%)</title><rect x="32.6683%" y="773" width="0.0383%" height="15" fill="rgb(216,191,38)" fg:x="6828" fg:w="8"/><text x="32.9183%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="32.7066%" y="757" width="0.0957%" height="15" fill="rgb(232,140,52)" fg:x="6836" fg:w="20"/><text x="32.9566%" y="767.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="32.7736%" y="741" width="0.0287%" height="15" fill="rgb(223,158,51)" fg:x="6850" fg:w="6"/><text x="33.0236%" y="751.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="32.7783%" y="725" width="0.0239%" height="15" fill="rgb(235,29,51)" fg:x="6851" fg:w="5"/><text x="33.0283%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (59 samples, 0.28%)</title><rect x="32.6109%" y="805" width="0.2823%" height="15" fill="rgb(215,181,18)" fg:x="6816" fg:w="59"/><text x="32.8609%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (39 samples, 0.19%)</title><rect x="32.7066%" y="789" width="0.1866%" height="15" fill="rgb(227,125,34)" fg:x="6836" fg:w="39"/><text x="32.9566%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (39 samples, 0.19%)</title><rect x="32.7066%" y="773" width="0.1866%" height="15" fill="rgb(230,197,49)" fg:x="6836" fg:w="39"/><text x="32.9566%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.09%)</title><rect x="32.8023%" y="757" width="0.0909%" height="15" fill="rgb(239,141,16)" fg:x="6856" fg:w="19"/><text x="33.0523%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="32.8023%" y="741" width="0.0909%" height="15" fill="rgb(225,105,43)" fg:x="6856" fg:w="19"/><text x="33.0523%" y="751.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="32.8645%" y="725" width="0.0287%" height="15" fill="rgb(214,131,14)" fg:x="6869" fg:w="6"/><text x="33.1145%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="32.8692%" y="709" width="0.0239%" height="15" fill="rgb(229,177,11)" fg:x="6870" fg:w="5"/><text x="33.1192%" y="719.50"></text></g><g><title>exp (10 samples, 0.05%)</title><rect x="32.9649%" y="773" width="0.0478%" height="15" fill="rgb(231,180,14)" fg:x="6890" fg:w="10"/><text x="33.2149%" y="783.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="32.9793%" y="757" width="0.0335%" height="15" fill="rgb(232,88,2)" fg:x="6893" fg:w="7"/><text x="33.2293%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="33.0128%" y="741" width="0.0718%" height="15" fill="rgb(205,220,8)" fg:x="6900" fg:w="15"/><text x="33.2628%" y="751.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="33.0558%" y="725" width="0.0287%" height="15" fill="rgb(225,23,53)" fg:x="6909" fg:w="6"/><text x="33.3058%" y="735.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="33.0606%" y="709" width="0.0239%" height="15" fill="rgb(213,62,29)" fg:x="6910" fg:w="5"/><text x="33.3106%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (14 samples, 0.07%)</title><rect x="33.0845%" y="741" width="0.0670%" height="15" fill="rgb(227,75,7)" fg:x="6915" fg:w="14"/><text x="33.3345%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="33.0845%" y="725" width="0.0670%" height="15" fill="rgb(207,105,14)" fg:x="6915" fg:w="14"/><text x="33.3345%" y="735.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="33.1276%" y="709" width="0.0239%" height="15" fill="rgb(245,62,29)" fg:x="6924" fg:w="5"/><text x="33.3776%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="33.1372%" y="693" width="0.0144%" height="15" fill="rgb(236,202,4)" fg:x="6926" fg:w="3"/><text x="33.3872%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="33.1611%" y="661" width="0.0191%" height="15" fill="rgb(250,67,1)" fg:x="6931" fg:w="4"/><text x="33.4111%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (65 samples, 0.31%)</title><rect x="32.8932%" y="805" width="0.3110%" height="15" fill="rgb(253,115,44)" fg:x="6875" fg:w="65"/><text x="33.1432%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 0.31%)</title><rect x="32.8932%" y="789" width="0.3110%" height="15" fill="rgb(251,139,18)" fg:x="6875" fg:w="65"/><text x="33.1432%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (40 samples, 0.19%)</title><rect x="33.0128%" y="773" width="0.1914%" height="15" fill="rgb(218,22,32)" fg:x="6900" fg:w="40"/><text x="33.2628%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (40 samples, 0.19%)</title><rect x="33.0128%" y="757" width="0.1914%" height="15" fill="rgb(243,53,5)" fg:x="6900" fg:w="40"/><text x="33.2628%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="33.1515%" y="741" width="0.0526%" height="15" fill="rgb(227,56,16)" fg:x="6929" fg:w="11"/><text x="33.4015%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.05%)</title><rect x="33.1515%" y="725" width="0.0526%" height="15" fill="rgb(245,53,0)" fg:x="6929" fg:w="11"/><text x="33.4015%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="33.1515%" y="709" width="0.0526%" height="15" fill="rgb(216,170,35)" fg:x="6929" fg:w="11"/><text x="33.4015%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="33.1611%" y="693" width="0.0431%" height="15" fill="rgb(211,200,8)" fg:x="6931" fg:w="9"/><text x="33.4111%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="33.1611%" y="677" width="0.0431%" height="15" fill="rgb(228,204,44)" fg:x="6931" fg:w="9"/><text x="33.4111%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="33.1898%" y="661" width="0.0144%" height="15" fill="rgb(214,121,17)" fg:x="6937" fg:w="3"/><text x="33.4398%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="33.1898%" y="645" width="0.0144%" height="15" fill="rgb(233,64,38)" fg:x="6937" fg:w="3"/><text x="33.4398%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="33.1898%" y="629" width="0.0144%" height="15" fill="rgb(253,54,19)" fg:x="6937" fg:w="3"/><text x="33.4398%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.1898%" y="613" width="0.0144%" height="15" fill="rgb(253,94,18)" fg:x="6937" fg:w="3"/><text x="33.4398%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.1898%" y="597" width="0.0144%" height="15" fill="rgb(227,57,52)" fg:x="6937" fg:w="3"/><text x="33.4398%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (158 samples, 0.76%)</title><rect x="32.4769%" y="869" width="0.7559%" height="15" fill="rgb(230,228,50)" fg:x="6788" fg:w="158"/><text x="32.7269%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (158 samples, 0.76%)</title><rect x="32.4769%" y="853" width="0.7559%" height="15" fill="rgb(217,205,27)" fg:x="6788" fg:w="158"/><text x="32.7269%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (130 samples, 0.62%)</title><rect x="32.6109%" y="837" width="0.6220%" height="15" fill="rgb(252,71,50)" fg:x="6816" fg:w="130"/><text x="32.8609%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (130 samples, 0.62%)</title><rect x="32.6109%" y="821" width="0.6220%" height="15" fill="rgb(209,86,4)" fg:x="6816" fg:w="130"/><text x="32.8609%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="33.2042%" y="805" width="0.0287%" height="15" fill="rgb(229,94,0)" fg:x="6940" fg:w="6"/><text x="33.4542%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="33.2042%" y="789" width="0.0287%" height="15" fill="rgb(252,223,21)" fg:x="6940" fg:w="6"/><text x="33.4542%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="33.2042%" y="773" width="0.0287%" height="15" fill="rgb(230,210,4)" fg:x="6940" fg:w="6"/><text x="33.4542%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="33.2042%" y="757" width="0.0287%" height="15" fill="rgb(240,149,38)" fg:x="6940" fg:w="6"/><text x="33.4542%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="33.2042%" y="741" width="0.0287%" height="15" fill="rgb(254,105,20)" fg:x="6940" fg:w="6"/><text x="33.4542%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="33.2137%" y="725" width="0.0191%" height="15" fill="rgb(253,87,46)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="735.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="33.2137%" y="709" width="0.0191%" height="15" fill="rgb(253,116,33)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="719.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="33.2137%" y="693" width="0.0191%" height="15" fill="rgb(229,198,5)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="703.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="33.2137%" y="677" width="0.0191%" height="15" fill="rgb(242,38,37)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="687.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="33.2137%" y="661" width="0.0191%" height="15" fill="rgb(242,69,53)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="671.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="33.2137%" y="645" width="0.0191%" height="15" fill="rgb(249,80,16)" fg:x="6942" fg:w="4"/><text x="33.4637%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="33.2424%" y="693" width="0.0144%" height="15" fill="rgb(206,128,11)" fg:x="6948" fg:w="3"/><text x="33.4924%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.2424%" y="677" width="0.0144%" height="15" fill="rgb(212,35,20)" fg:x="6948" fg:w="3"/><text x="33.4924%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.2424%" y="661" width="0.0144%" height="15" fill="rgb(236,79,13)" fg:x="6948" fg:w="3"/><text x="33.4924%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="33.2376%" y="741" width="0.0383%" height="15" fill="rgb(233,123,3)" fg:x="6947" fg:w="8"/><text x="33.4876%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="33.2424%" y="725" width="0.0335%" height="15" fill="rgb(214,93,52)" fg:x="6948" fg:w="7"/><text x="33.4924%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="33.2424%" y="709" width="0.0335%" height="15" fill="rgb(251,37,40)" fg:x="6948" fg:w="7"/><text x="33.4924%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="33.2568%" y="693" width="0.0191%" height="15" fill="rgb(227,80,54)" fg:x="6951" fg:w="4"/><text x="33.5068%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="33.2568%" y="677" width="0.0191%" height="15" fill="rgb(254,48,11)" fg:x="6951" fg:w="4"/><text x="33.5068%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="33.2568%" y="661" width="0.0191%" height="15" fill="rgb(235,193,26)" fg:x="6951" fg:w="4"/><text x="33.5068%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="33.2568%" y="645" width="0.0191%" height="15" fill="rgb(229,99,21)" fg:x="6951" fg:w="4"/><text x="33.5068%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="33.2855%" y="677" width="0.0191%" height="15" fill="rgb(211,140,41)" fg:x="6957" fg:w="4"/><text x="33.5355%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="33.2855%" y="661" width="0.0191%" height="15" fill="rgb(240,227,30)" fg:x="6957" fg:w="4"/><text x="33.5355%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="33.2855%" y="645" width="0.0191%" height="15" fill="rgb(215,224,45)" fg:x="6957" fg:w="4"/><text x="33.5355%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="33.2376%" y="789" width="0.0813%" height="15" fill="rgb(206,123,31)" fg:x="6947" fg:w="17"/><text x="33.4876%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="33.2376%" y="773" width="0.0813%" height="15" fill="rgb(210,138,16)" fg:x="6947" fg:w="17"/><text x="33.4876%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="33.2376%" y="757" width="0.0813%" height="15" fill="rgb(228,57,28)" fg:x="6947" fg:w="17"/><text x="33.4876%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="33.2759%" y="741" width="0.0431%" height="15" fill="rgb(242,170,10)" fg:x="6955" fg:w="9"/><text x="33.5259%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="33.2759%" y="725" width="0.0431%" height="15" fill="rgb(228,214,39)" fg:x="6955" fg:w="9"/><text x="33.5259%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="33.2855%" y="709" width="0.0335%" height="15" fill="rgb(218,179,33)" fg:x="6957" fg:w="7"/><text x="33.5355%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="33.2855%" y="693" width="0.0335%" height="15" fill="rgb(235,193,39)" fg:x="6957" fg:w="7"/><text x="33.5355%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="33.3046%" y="677" width="0.0144%" height="15" fill="rgb(219,221,36)" fg:x="6961" fg:w="3"/><text x="33.5546%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="33.3046%" y="661" width="0.0144%" height="15" fill="rgb(248,218,19)" fg:x="6961" fg:w="3"/><text x="33.5546%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.3046%" y="645" width="0.0144%" height="15" fill="rgb(205,50,9)" fg:x="6961" fg:w="3"/><text x="33.5546%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.3046%" y="629" width="0.0144%" height="15" fill="rgb(238,81,28)" fg:x="6961" fg:w="3"/><text x="33.5546%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="33.3190%" y="661" width="0.0191%" height="15" fill="rgb(235,110,19)" fg:x="6964" fg:w="4"/><text x="33.5690%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="33.3190%" y="645" width="0.0191%" height="15" fill="rgb(214,7,14)" fg:x="6964" fg:w="4"/><text x="33.5690%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="33.3190%" y="629" width="0.0191%" height="15" fill="rgb(211,77,3)" fg:x="6964" fg:w="4"/><text x="33.5690%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="33.3190%" y="709" width="0.0431%" height="15" fill="rgb(229,5,9)" fg:x="6964" fg:w="9"/><text x="33.5690%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="33.3190%" y="693" width="0.0431%" height="15" fill="rgb(225,90,11)" fg:x="6964" fg:w="9"/><text x="33.5690%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="33.3190%" y="677" width="0.0431%" height="15" fill="rgb(242,56,8)" fg:x="6964" fg:w="9"/><text x="33.5690%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="33.3381%" y="661" width="0.0239%" height="15" fill="rgb(249,212,39)" fg:x="6968" fg:w="5"/><text x="33.5881%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="33.3381%" y="645" width="0.0239%" height="15" fill="rgb(236,90,9)" fg:x="6968" fg:w="5"/><text x="33.5881%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="33.3381%" y="629" width="0.0239%" height="15" fill="rgb(206,88,35)" fg:x="6968" fg:w="5"/><text x="33.5881%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="33.3381%" y="613" width="0.0239%" height="15" fill="rgb(205,126,30)" fg:x="6968" fg:w="5"/><text x="33.5881%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="33.3477%" y="597" width="0.0144%" height="15" fill="rgb(230,176,12)" fg:x="6970" fg:w="3"/><text x="33.5977%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="33.3477%" y="581" width="0.0144%" height="15" fill="rgb(243,19,9)" fg:x="6970" fg:w="3"/><text x="33.5977%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="33.3477%" y="565" width="0.0144%" height="15" fill="rgb(245,171,17)" fg:x="6970" fg:w="3"/><text x="33.5977%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.3477%" y="549" width="0.0144%" height="15" fill="rgb(227,52,21)" fg:x="6970" fg:w="3"/><text x="33.5977%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.3477%" y="533" width="0.0144%" height="15" fill="rgb(238,69,14)" fg:x="6970" fg:w="3"/><text x="33.5977%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (374 samples, 1.79%)</title><rect x="31.5918%" y="917" width="1.7894%" height="15" fill="rgb(241,156,39)" fg:x="6603" fg:w="374"/><text x="31.8418%" y="927.50">r..</text></g><g><title>rayon_core::registry::in_worker (362 samples, 1.73%)</title><rect x="31.6492%" y="901" width="1.7320%" height="15" fill="rgb(212,227,28)" fg:x="6615" fg:w="362"/><text x="31.8992%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (362 samples, 1.73%)</title><rect x="31.6492%" y="885" width="1.7320%" height="15" fill="rgb(209,118,27)" fg:x="6615" fg:w="362"/><text x="31.8992%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.15%)</title><rect x="33.2329%" y="869" width="0.1483%" height="15" fill="rgb(226,102,5)" fg:x="6946" fg:w="31"/><text x="33.4829%" y="879.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.15%)</title><rect x="33.2329%" y="853" width="0.1483%" height="15" fill="rgb(223,34,3)" fg:x="6946" fg:w="31"/><text x="33.4829%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="33.2329%" y="837" width="0.1483%" height="15" fill="rgb(221,81,38)" fg:x="6946" fg:w="31"/><text x="33.4829%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (30 samples, 0.14%)</title><rect x="33.2376%" y="821" width="0.1435%" height="15" fill="rgb(236,219,28)" fg:x="6947" fg:w="30"/><text x="33.4876%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (30 samples, 0.14%)</title><rect x="33.2376%" y="805" width="0.1435%" height="15" fill="rgb(213,200,14)" fg:x="6947" fg:w="30"/><text x="33.4876%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="33.3190%" y="789" width="0.0622%" height="15" fill="rgb(240,33,19)" fg:x="6964" fg:w="13"/><text x="33.5690%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="33.3190%" y="773" width="0.0622%" height="15" fill="rgb(233,113,27)" fg:x="6964" fg:w="13"/><text x="33.5690%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="33.3190%" y="757" width="0.0622%" height="15" fill="rgb(220,221,18)" fg:x="6964" fg:w="13"/><text x="33.5690%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="33.3190%" y="741" width="0.0622%" height="15" fill="rgb(238,92,8)" fg:x="6964" fg:w="13"/><text x="33.5690%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="33.3190%" y="725" width="0.0622%" height="15" fill="rgb(222,164,16)" fg:x="6964" fg:w="13"/><text x="33.5690%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="33.3620%" y="709" width="0.0191%" height="15" fill="rgb(241,119,3)" fg:x="6973" fg:w="4"/><text x="33.6120%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="33.3620%" y="693" width="0.0191%" height="15" fill="rgb(241,44,8)" fg:x="6973" fg:w="4"/><text x="33.6120%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="33.3620%" y="677" width="0.0191%" height="15" fill="rgb(230,36,40)" fg:x="6973" fg:w="4"/><text x="33.6120%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.3668%" y="661" width="0.0144%" height="15" fill="rgb(243,16,36)" fg:x="6974" fg:w="3"/><text x="33.6168%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.3668%" y="645" width="0.0144%" height="15" fill="rgb(231,4,26)" fg:x="6974" fg:w="3"/><text x="33.6168%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="33.3668%" y="629" width="0.0144%" height="15" fill="rgb(240,9,31)" fg:x="6974" fg:w="3"/><text x="33.6168%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="33.3668%" y="613" width="0.0144%" height="15" fill="rgb(207,173,15)" fg:x="6974" fg:w="3"/><text x="33.6168%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="33.3668%" y="597" width="0.0144%" height="15" fill="rgb(224,192,53)" fg:x="6974" fg:w="3"/><text x="33.6168%" y="607.50"></text></g><g><title>exp (14 samples, 0.07%)</title><rect x="33.4960%" y="837" width="0.0670%" height="15" fill="rgb(223,67,28)" fg:x="7001" fg:w="14"/><text x="33.7460%" y="847.50"></text></g><g><title>[libm.so.6] (11 samples, 0.05%)</title><rect x="33.5104%" y="821" width="0.0526%" height="15" fill="rgb(211,20,47)" fg:x="7004" fg:w="11"/><text x="33.7604%" y="831.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="33.6252%" y="789" width="0.0239%" height="15" fill="rgb(240,228,2)" fg:x="7028" fg:w="5"/><text x="33.8752%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="33.6491%" y="757" width="0.0478%" height="15" fill="rgb(248,151,12)" fg:x="7033" fg:w="10"/><text x="33.8991%" y="767.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="33.6826%" y="741" width="0.0144%" height="15" fill="rgb(244,8,39)" fg:x="7040" fg:w="3"/><text x="33.9326%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.18%)</title><rect x="33.5630%" y="805" width="0.1818%" height="15" fill="rgb(222,26,8)" fg:x="7015" fg:w="38"/><text x="33.8130%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="33.6491%" y="789" width="0.0957%" height="15" fill="rgb(213,106,44)" fg:x="7033" fg:w="20"/><text x="33.8991%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="33.6491%" y="773" width="0.0957%" height="15" fill="rgb(214,129,20)" fg:x="7033" fg:w="20"/><text x="33.8991%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="33.6970%" y="757" width="0.0478%" height="15" fill="rgb(212,32,13)" fg:x="7043" fg:w="10"/><text x="33.9470%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="33.6970%" y="741" width="0.0478%" height="15" fill="rgb(208,168,33)" fg:x="7043" fg:w="10"/><text x="33.9470%" y="751.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="33.7926%" y="773" width="0.0239%" height="15" fill="rgb(231,207,8)" fg:x="7063" fg:w="5"/><text x="34.0426%" y="783.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="33.7974%" y="757" width="0.0191%" height="15" fill="rgb(235,219,23)" fg:x="7064" fg:w="4"/><text x="34.0474%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="33.8166%" y="741" width="0.0478%" height="15" fill="rgb(226,216,26)" fg:x="7068" fg:w="10"/><text x="34.0666%" y="751.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="33.8453%" y="725" width="0.0191%" height="15" fill="rgb(239,137,16)" fg:x="7074" fg:w="4"/><text x="34.0953%" y="735.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="33.8453%" y="709" width="0.0191%" height="15" fill="rgb(207,12,36)" fg:x="7074" fg:w="4"/><text x="34.0953%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (100 samples, 0.48%)</title><rect x="33.4242%" y="853" width="0.4784%" height="15" fill="rgb(210,214,24)" fg:x="6986" fg:w="100"/><text x="33.6742%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (71 samples, 0.34%)</title><rect x="33.5630%" y="837" width="0.3397%" height="15" fill="rgb(206,56,30)" fg:x="7015" fg:w="71"/><text x="33.8130%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (71 samples, 0.34%)</title><rect x="33.5630%" y="821" width="0.3397%" height="15" fill="rgb(228,143,26)" fg:x="7015" fg:w="71"/><text x="33.8130%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (33 samples, 0.16%)</title><rect x="33.7448%" y="805" width="0.1579%" height="15" fill="rgb(216,218,46)" fg:x="7053" fg:w="33"/><text x="33.9948%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.16%)</title><rect x="33.7448%" y="789" width="0.1579%" height="15" fill="rgb(206,6,19)" fg:x="7053" fg:w="33"/><text x="33.9948%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="33.8166%" y="773" width="0.0861%" height="15" fill="rgb(239,177,51)" fg:x="7068" fg:w="18"/><text x="34.0666%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="33.8166%" y="757" width="0.0861%" height="15" fill="rgb(216,55,25)" fg:x="7068" fg:w="18"/><text x="34.0666%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="33.8644%" y="741" width="0.0383%" height="15" fill="rgb(231,163,29)" fg:x="7078" fg:w="8"/><text x="34.1144%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="33.8644%" y="725" width="0.0383%" height="15" fill="rgb(232,149,50)" fg:x="7078" fg:w="8"/><text x="34.1144%" y="735.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="33.8883%" y="709" width="0.0144%" height="15" fill="rgb(223,142,48)" fg:x="7083" fg:w="3"/><text x="34.1383%" y="719.50"></text></g><g><title>exp (12 samples, 0.06%)</title><rect x="33.9745%" y="821" width="0.0574%" height="15" fill="rgb(245,83,23)" fg:x="7101" fg:w="12"/><text x="34.2245%" y="831.50"></text></g><g><title>[libm.so.6] (9 samples, 0.04%)</title><rect x="33.9888%" y="805" width="0.0431%" height="15" fill="rgb(224,63,2)" fg:x="7104" fg:w="9"/><text x="34.2388%" y="815.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="34.0654%" y="773" width="0.0287%" height="15" fill="rgb(218,65,53)" fg:x="7120" fg:w="6"/><text x="34.3154%" y="783.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="34.0749%" y="757" width="0.0191%" height="15" fill="rgb(221,84,29)" fg:x="7122" fg:w="4"/><text x="34.3249%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="34.0941%" y="741" width="0.0478%" height="15" fill="rgb(234,0,32)" fg:x="7126" fg:w="10"/><text x="34.3441%" y="751.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="34.1228%" y="725" width="0.0191%" height="15" fill="rgb(206,20,16)" fg:x="7132" fg:w="4"/><text x="34.3728%" y="735.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="34.1228%" y="709" width="0.0191%" height="15" fill="rgb(244,172,18)" fg:x="7132" fg:w="4"/><text x="34.3728%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="34.0319%" y="789" width="0.1483%" height="15" fill="rgb(254,133,1)" fg:x="7113" fg:w="31"/><text x="34.2819%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="34.0941%" y="773" width="0.0861%" height="15" fill="rgb(222,206,41)" fg:x="7126" fg:w="18"/><text x="34.3441%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="34.0941%" y="757" width="0.0861%" height="15" fill="rgb(212,3,42)" fg:x="7126" fg:w="18"/><text x="34.3441%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="34.1419%" y="741" width="0.0383%" height="15" fill="rgb(241,11,4)" fg:x="7136" fg:w="8"/><text x="34.3919%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="34.1419%" y="725" width="0.0383%" height="15" fill="rgb(205,19,26)" fg:x="7136" fg:w="8"/><text x="34.3919%" y="735.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="34.1658%" y="709" width="0.0144%" height="15" fill="rgb(210,179,32)" fg:x="7141" fg:w="3"/><text x="34.4158%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="34.1658%" y="693" width="0.0144%" height="15" fill="rgb(227,116,49)" fg:x="7141" fg:w="3"/><text x="34.4158%" y="703.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="34.2137%" y="757" width="0.0191%" height="15" fill="rgb(211,146,6)" fg:x="7151" fg:w="4"/><text x="34.4637%" y="767.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="34.2137%" y="741" width="0.0191%" height="15" fill="rgb(219,44,39)" fg:x="7151" fg:w="4"/><text x="34.4637%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="34.2328%" y="725" width="0.0431%" height="15" fill="rgb(234,128,11)" fg:x="7155" fg:w="9"/><text x="34.4828%" y="735.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="34.2567%" y="709" width="0.0191%" height="15" fill="rgb(220,183,53)" fg:x="7160" fg:w="4"/><text x="34.5067%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="34.2615%" y="693" width="0.0144%" height="15" fill="rgb(213,219,32)" fg:x="7161" fg:w="3"/><text x="34.5115%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (26 samples, 0.12%)</title><rect x="34.1802%" y="789" width="0.1244%" height="15" fill="rgb(232,156,16)" fg:x="7144" fg:w="26"/><text x="34.4302%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="34.1802%" y="773" width="0.1244%" height="15" fill="rgb(246,135,34)" fg:x="7144" fg:w="26"/><text x="34.4302%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="34.2328%" y="757" width="0.0718%" height="15" fill="rgb(241,99,0)" fg:x="7155" fg:w="15"/><text x="34.4828%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="34.2328%" y="741" width="0.0718%" height="15" fill="rgb(222,103,45)" fg:x="7155" fg:w="15"/><text x="34.4828%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="34.2759%" y="725" width="0.0287%" height="15" fill="rgb(212,57,4)" fg:x="7164" fg:w="6"/><text x="34.5259%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.2759%" y="709" width="0.0287%" height="15" fill="rgb(215,68,47)" fg:x="7164" fg:w="6"/><text x="34.5259%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="34.3189%" y="661" width="0.0191%" height="15" fill="rgb(230,84,2)" fg:x="7173" fg:w="4"/><text x="34.5689%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="34.3189%" y="645" width="0.0191%" height="15" fill="rgb(220,102,14)" fg:x="7173" fg:w="4"/><text x="34.5689%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="34.3189%" y="629" width="0.0191%" height="15" fill="rgb(240,10,32)" fg:x="7173" fg:w="4"/><text x="34.5689%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="34.3046%" y="709" width="0.0478%" height="15" fill="rgb(215,47,27)" fg:x="7170" fg:w="10"/><text x="34.5546%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="34.3189%" y="693" width="0.0335%" height="15" fill="rgb(233,188,43)" fg:x="7173" fg:w="7"/><text x="34.5689%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="34.3189%" y="677" width="0.0335%" height="15" fill="rgb(253,190,1)" fg:x="7173" fg:w="7"/><text x="34.5689%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.3381%" y="661" width="0.0144%" height="15" fill="rgb(206,114,52)" fg:x="7177" fg:w="3"/><text x="34.5881%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.3381%" y="645" width="0.0144%" height="15" fill="rgb(233,120,37)" fg:x="7177" fg:w="3"/><text x="34.5881%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.3381%" y="629" width="0.0144%" height="15" fill="rgb(214,52,39)" fg:x="7177" fg:w="3"/><text x="34.5881%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.3381%" y="613" width="0.0144%" height="15" fill="rgb(223,80,29)" fg:x="7177" fg:w="3"/><text x="34.5881%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.3668%" y="485" width="0.0144%" height="15" fill="rgb(230,101,40)" fg:x="7183" fg:w="3"/><text x="34.6168%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.3668%" y="469" width="0.0144%" height="15" fill="rgb(219,211,8)" fg:x="7183" fg:w="3"/><text x="34.6168%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.3668%" y="453" width="0.0144%" height="15" fill="rgb(252,126,28)" fg:x="7183" fg:w="3"/><text x="34.6168%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.3668%" y="533" width="0.0287%" height="15" fill="rgb(215,56,38)" fg:x="7183" fg:w="6"/><text x="34.6168%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="34.3668%" y="517" width="0.0287%" height="15" fill="rgb(249,55,44)" fg:x="7183" fg:w="6"/><text x="34.6168%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="34.3668%" y="501" width="0.0287%" height="15" fill="rgb(220,221,32)" fg:x="7183" fg:w="6"/><text x="34.6168%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.3811%" y="485" width="0.0144%" height="15" fill="rgb(212,216,41)" fg:x="7186" fg:w="3"/><text x="34.6311%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.3811%" y="469" width="0.0144%" height="15" fill="rgb(228,213,43)" fg:x="7186" fg:w="3"/><text x="34.6311%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.3811%" y="453" width="0.0144%" height="15" fill="rgb(211,31,26)" fg:x="7186" fg:w="3"/><text x="34.6311%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.3811%" y="437" width="0.0144%" height="15" fill="rgb(229,202,19)" fg:x="7186" fg:w="3"/><text x="34.6311%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="34.3620%" y="581" width="0.0574%" height="15" fill="rgb(229,105,46)" fg:x="7182" fg:w="12"/><text x="34.6120%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="34.3668%" y="565" width="0.0526%" height="15" fill="rgb(235,108,1)" fg:x="7183" fg:w="11"/><text x="34.6168%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="34.3668%" y="549" width="0.0526%" height="15" fill="rgb(245,111,35)" fg:x="7183" fg:w="11"/><text x="34.6168%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="34.3955%" y="533" width="0.0239%" height="15" fill="rgb(219,185,31)" fg:x="7189" fg:w="5"/><text x="34.6455%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="34.3955%" y="517" width="0.0239%" height="15" fill="rgb(214,4,43)" fg:x="7189" fg:w="5"/><text x="34.6455%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="34.3955%" y="501" width="0.0239%" height="15" fill="rgb(235,227,40)" fg:x="7189" fg:w="5"/><text x="34.6455%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="34.3955%" y="485" width="0.0239%" height="15" fill="rgb(230,88,30)" fg:x="7189" fg:w="5"/><text x="34.6455%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.4051%" y="469" width="0.0144%" height="15" fill="rgb(216,217,1)" fg:x="7191" fg:w="3"/><text x="34.6551%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.4051%" y="453" width="0.0144%" height="15" fill="rgb(248,139,50)" fg:x="7191" fg:w="3"/><text x="34.6551%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.4051%" y="437" width="0.0144%" height="15" fill="rgb(233,1,21)" fg:x="7191" fg:w="3"/><text x="34.6551%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.4051%" y="421" width="0.0144%" height="15" fill="rgb(215,183,12)" fg:x="7191" fg:w="3"/><text x="34.6551%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="34.4290%" y="517" width="0.0239%" height="15" fill="rgb(229,104,42)" fg:x="7196" fg:w="5"/><text x="34.6790%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="34.4290%" y="501" width="0.0239%" height="15" fill="rgb(243,34,48)" fg:x="7196" fg:w="5"/><text x="34.6790%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="34.4290%" y="485" width="0.0239%" height="15" fill="rgb(239,11,44)" fg:x="7196" fg:w="5"/><text x="34.6790%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.4385%" y="469" width="0.0144%" height="15" fill="rgb(231,98,35)" fg:x="7198" fg:w="3"/><text x="34.6885%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.4385%" y="453" width="0.0144%" height="15" fill="rgb(233,28,25)" fg:x="7198" fg:w="3"/><text x="34.6885%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.4385%" y="437" width="0.0144%" height="15" fill="rgb(234,123,11)" fg:x="7198" fg:w="3"/><text x="34.6885%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.4385%" y="421" width="0.0144%" height="15" fill="rgb(220,69,3)" fg:x="7198" fg:w="3"/><text x="34.6885%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.4529%" y="453" width="0.0144%" height="15" fill="rgb(214,64,36)" fg:x="7201" fg:w="3"/><text x="34.7029%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.4529%" y="437" width="0.0144%" height="15" fill="rgb(211,138,32)" fg:x="7201" fg:w="3"/><text x="34.7029%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.4529%" y="421" width="0.0144%" height="15" fill="rgb(213,118,47)" fg:x="7201" fg:w="3"/><text x="34.7029%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.4720%" y="261" width="0.0144%" height="15" fill="rgb(243,124,49)" fg:x="7205" fg:w="3"/><text x="34.7220%" y="271.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.4720%" y="245" width="0.0144%" height="15" fill="rgb(221,30,28)" fg:x="7205" fg:w="3"/><text x="34.7220%" y="255.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.4720%" y="229" width="0.0144%" height="15" fill="rgb(246,37,13)" fg:x="7205" fg:w="3"/><text x="34.7220%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="34.3620%" y="629" width="0.1387%" height="15" fill="rgb(249,66,14)" fg:x="7182" fg:w="29"/><text x="34.6120%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (29 samples, 0.14%)</title><rect x="34.3620%" y="613" width="0.1387%" height="15" fill="rgb(213,166,5)" fg:x="7182" fg:w="29"/><text x="34.6120%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (29 samples, 0.14%)</title><rect x="34.3620%" y="597" width="0.1387%" height="15" fill="rgb(221,66,24)" fg:x="7182" fg:w="29"/><text x="34.6120%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (17 samples, 0.08%)</title><rect x="34.4194%" y="581" width="0.0813%" height="15" fill="rgb(210,132,17)" fg:x="7194" fg:w="17"/><text x="34.6694%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="34.4194%" y="565" width="0.0813%" height="15" fill="rgb(243,202,5)" fg:x="7194" fg:w="17"/><text x="34.6694%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="34.4290%" y="549" width="0.0718%" height="15" fill="rgb(233,70,48)" fg:x="7196" fg:w="15"/><text x="34.6790%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="34.4290%" y="533" width="0.0718%" height="15" fill="rgb(238,41,26)" fg:x="7196" fg:w="15"/><text x="34.6790%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="34.4529%" y="517" width="0.0478%" height="15" fill="rgb(241,19,31)" fg:x="7201" fg:w="10"/><text x="34.7029%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="34.4529%" y="501" width="0.0478%" height="15" fill="rgb(214,76,10)" fg:x="7201" fg:w="10"/><text x="34.7029%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="34.4529%" y="485" width="0.0478%" height="15" fill="rgb(254,202,22)" fg:x="7201" fg:w="10"/><text x="34.7029%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="34.4529%" y="469" width="0.0478%" height="15" fill="rgb(214,72,24)" fg:x="7201" fg:w="10"/><text x="34.7029%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="34.4673%" y="453" width="0.0335%" height="15" fill="rgb(221,92,46)" fg:x="7204" fg:w="7"/><text x="34.7173%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="34.4673%" y="437" width="0.0335%" height="15" fill="rgb(246,13,50)" fg:x="7204" fg:w="7"/><text x="34.7173%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="34.4673%" y="421" width="0.0335%" height="15" fill="rgb(240,165,38)" fg:x="7204" fg:w="7"/><text x="34.7173%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="34.4673%" y="405" width="0.0335%" height="15" fill="rgb(241,24,51)" fg:x="7204" fg:w="7"/><text x="34.7173%" y="415.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="34.4720%" y="389" width="0.0287%" height="15" fill="rgb(227,51,44)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="399.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="34.4720%" y="373" width="0.0287%" height="15" fill="rgb(231,121,3)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="383.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.4720%" y="357" width="0.0287%" height="15" fill="rgb(245,3,41)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="367.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="34.4720%" y="341" width="0.0287%" height="15" fill="rgb(214,13,26)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="351.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="34.4720%" y="325" width="0.0287%" height="15" fill="rgb(252,75,11)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="335.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.4720%" y="309" width="0.0287%" height="15" fill="rgb(218,226,17)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="319.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="34.4720%" y="293" width="0.0287%" height="15" fill="rgb(248,89,38)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="303.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="34.4720%" y="277" width="0.0287%" height="15" fill="rgb(237,73,46)" fg:x="7205" fg:w="6"/><text x="34.7220%" y="287.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.4864%" y="261" width="0.0144%" height="15" fill="rgb(242,78,33)" fg:x="7208" fg:w="3"/><text x="34.7364%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.4864%" y="245" width="0.0144%" height="15" fill="rgb(235,60,3)" fg:x="7208" fg:w="3"/><text x="34.7364%" y="255.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.4864%" y="229" width="0.0144%" height="15" fill="rgb(216,172,19)" fg:x="7208" fg:w="3"/><text x="34.7364%" y="239.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.4864%" y="213" width="0.0144%" height="15" fill="rgb(227,6,42)" fg:x="7208" fg:w="3"/><text x="34.7364%" y="223.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (127 samples, 0.61%)</title><rect x="33.9027%" y="853" width="0.6076%" height="15" fill="rgb(223,207,42)" fg:x="7086" fg:w="127"/><text x="34.1527%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (127 samples, 0.61%)</title><rect x="33.9027%" y="837" width="0.6076%" height="15" fill="rgb(246,138,30)" fg:x="7086" fg:w="127"/><text x="34.1527%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (100 samples, 0.48%)</title><rect x="34.0319%" y="821" width="0.4784%" height="15" fill="rgb(251,199,47)" fg:x="7113" fg:w="100"/><text x="34.2819%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (100 samples, 0.48%)</title><rect x="34.0319%" y="805" width="0.4784%" height="15" fill="rgb(228,218,44)" fg:x="7113" fg:w="100"/><text x="34.2819%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43 samples, 0.21%)</title><rect x="34.3046%" y="789" width="0.2057%" height="15" fill="rgb(220,68,6)" fg:x="7170" fg:w="43"/><text x="34.5546%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43 samples, 0.21%)</title><rect x="34.3046%" y="773" width="0.2057%" height="15" fill="rgb(240,60,26)" fg:x="7170" fg:w="43"/><text x="34.5546%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.21%)</title><rect x="34.3046%" y="757" width="0.2057%" height="15" fill="rgb(211,200,19)" fg:x="7170" fg:w="43"/><text x="34.5546%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.21%)</title><rect x="34.3046%" y="741" width="0.2057%" height="15" fill="rgb(242,145,30)" fg:x="7170" fg:w="43"/><text x="34.5546%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (43 samples, 0.21%)</title><rect x="34.3046%" y="725" width="0.2057%" height="15" fill="rgb(225,64,13)" fg:x="7170" fg:w="43"/><text x="34.5546%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (31 samples, 0.15%)</title><rect x="34.3620%" y="709" width="0.1483%" height="15" fill="rgb(218,103,35)" fg:x="7182" fg:w="31"/><text x="34.6120%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (31 samples, 0.15%)</title><rect x="34.3620%" y="693" width="0.1483%" height="15" fill="rgb(216,93,46)" fg:x="7182" fg:w="31"/><text x="34.6120%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="34.3620%" y="677" width="0.1483%" height="15" fill="rgb(225,159,27)" fg:x="7182" fg:w="31"/><text x="34.6120%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="34.3620%" y="661" width="0.1483%" height="15" fill="rgb(225,204,11)" fg:x="7182" fg:w="31"/><text x="34.6120%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="34.3620%" y="645" width="0.1483%" height="15" fill="rgb(205,56,4)" fg:x="7182" fg:w="31"/><text x="34.6120%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="34.5390%" y="581" width="0.0335%" height="15" fill="rgb(206,6,35)" fg:x="7219" fg:w="7"/><text x="34.7890%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="34.5294%" y="629" width="0.0766%" height="15" fill="rgb(247,73,52)" fg:x="7217" fg:w="16"/><text x="34.7794%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="34.5390%" y="613" width="0.0670%" height="15" fill="rgb(246,97,4)" fg:x="7219" fg:w="14"/><text x="34.7890%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="34.5390%" y="597" width="0.0670%" height="15" fill="rgb(212,37,15)" fg:x="7219" fg:w="14"/><text x="34.7890%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="34.5725%" y="581" width="0.0335%" height="15" fill="rgb(208,130,40)" fg:x="7226" fg:w="7"/><text x="34.8225%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="34.5725%" y="565" width="0.0335%" height="15" fill="rgb(236,55,29)" fg:x="7226" fg:w="7"/><text x="34.8225%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="34.6108%" y="565" width="0.0383%" height="15" fill="rgb(209,156,45)" fg:x="7234" fg:w="8"/><text x="34.8608%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="34.5294%" y="677" width="0.1627%" height="15" fill="rgb(249,107,4)" fg:x="7217" fg:w="34"/><text x="34.7794%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="34.5294%" y="661" width="0.1627%" height="15" fill="rgb(227,7,13)" fg:x="7217" fg:w="34"/><text x="34.7794%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (34 samples, 0.16%)</title><rect x="34.5294%" y="645" width="0.1627%" height="15" fill="rgb(250,129,14)" fg:x="7217" fg:w="34"/><text x="34.7794%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="34.6060%" y="629" width="0.0861%" height="15" fill="rgb(229,92,13)" fg:x="7233" fg:w="18"/><text x="34.8560%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="34.6060%" y="613" width="0.0861%" height="15" fill="rgb(245,98,39)" fg:x="7233" fg:w="18"/><text x="34.8560%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="34.6108%" y="597" width="0.0813%" height="15" fill="rgb(234,135,48)" fg:x="7234" fg:w="17"/><text x="34.8608%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="34.6108%" y="581" width="0.0813%" height="15" fill="rgb(230,98,28)" fg:x="7234" fg:w="17"/><text x="34.8608%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="34.6491%" y="565" width="0.0431%" height="15" fill="rgb(223,121,0)" fg:x="7242" fg:w="9"/><text x="34.8991%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="34.6491%" y="549" width="0.0431%" height="15" fill="rgb(234,173,33)" fg:x="7242" fg:w="9"/><text x="34.8991%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="34.6921%" y="565" width="0.0431%" height="15" fill="rgb(245,47,8)" fg:x="7251" fg:w="9"/><text x="34.9421%" y="575.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="34.7160%" y="549" width="0.0191%" height="15" fill="rgb(205,17,20)" fg:x="7256" fg:w="4"/><text x="34.9660%" y="559.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="34.7208%" y="533" width="0.0144%" height="15" fill="rgb(232,151,16)" fg:x="7257" fg:w="3"/><text x="34.9708%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="34.6921%" y="613" width="0.0766%" height="15" fill="rgb(208,30,32)" fg:x="7251" fg:w="16"/><text x="34.9421%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="34.6921%" y="597" width="0.0766%" height="15" fill="rgb(254,26,3)" fg:x="7251" fg:w="16"/><text x="34.9421%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="34.6921%" y="581" width="0.0766%" height="15" fill="rgb(240,177,30)" fg:x="7251" fg:w="16"/><text x="34.9421%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="34.7352%" y="565" width="0.0335%" height="15" fill="rgb(248,76,44)" fg:x="7260" fg:w="7"/><text x="34.9852%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="34.7352%" y="549" width="0.0335%" height="15" fill="rgb(241,186,54)" fg:x="7260" fg:w="7"/><text x="34.9852%" y="559.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="34.7543%" y="533" width="0.0144%" height="15" fill="rgb(249,171,29)" fg:x="7264" fg:w="3"/><text x="35.0043%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="34.7735%" y="549" width="0.0478%" height="15" fill="rgb(237,151,44)" fg:x="7268" fg:w="10"/><text x="35.0235%" y="559.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="34.8022%" y="533" width="0.0191%" height="15" fill="rgb(228,174,30)" fg:x="7274" fg:w="4"/><text x="35.0522%" y="543.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="34.8069%" y="517" width="0.0144%" height="15" fill="rgb(252,14,37)" fg:x="7275" fg:w="3"/><text x="35.0569%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (70 samples, 0.33%)</title><rect x="34.5294%" y="725" width="0.3349%" height="15" fill="rgb(207,111,40)" fg:x="7217" fg:w="70"/><text x="34.7794%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (70 samples, 0.33%)</title><rect x="34.5294%" y="709" width="0.3349%" height="15" fill="rgb(248,171,54)" fg:x="7217" fg:w="70"/><text x="34.7794%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (70 samples, 0.33%)</title><rect x="34.5294%" y="693" width="0.3349%" height="15" fill="rgb(211,127,2)" fg:x="7217" fg:w="70"/><text x="34.7794%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (36 samples, 0.17%)</title><rect x="34.6921%" y="677" width="0.1722%" height="15" fill="rgb(236,87,47)" fg:x="7251" fg:w="36"/><text x="34.9421%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.17%)</title><rect x="34.6921%" y="661" width="0.1722%" height="15" fill="rgb(223,190,45)" fg:x="7251" fg:w="36"/><text x="34.9421%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.17%)</title><rect x="34.6921%" y="645" width="0.1722%" height="15" fill="rgb(215,5,16)" fg:x="7251" fg:w="36"/><text x="34.9421%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (36 samples, 0.17%)</title><rect x="34.6921%" y="629" width="0.1722%" height="15" fill="rgb(252,82,33)" fg:x="7251" fg:w="36"/><text x="34.9421%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (20 samples, 0.10%)</title><rect x="34.7687%" y="613" width="0.0957%" height="15" fill="rgb(247,213,44)" fg:x="7267" fg:w="20"/><text x="35.0187%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="34.7687%" y="597" width="0.0957%" height="15" fill="rgb(205,196,44)" fg:x="7267" fg:w="20"/><text x="35.0187%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="34.7735%" y="581" width="0.0909%" height="15" fill="rgb(237,96,54)" fg:x="7268" fg:w="19"/><text x="35.0235%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="34.7735%" y="565" width="0.0909%" height="15" fill="rgb(230,113,34)" fg:x="7268" fg:w="19"/><text x="35.0235%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="34.8213%" y="549" width="0.0431%" height="15" fill="rgb(221,224,12)" fg:x="7278" fg:w="9"/><text x="35.0713%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="34.8213%" y="533" width="0.0431%" height="15" fill="rgb(219,112,44)" fg:x="7278" fg:w="9"/><text x="35.0713%" y="543.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="34.8357%" y="517" width="0.0287%" height="15" fill="rgb(210,31,13)" fg:x="7281" fg:w="6"/><text x="35.0857%" y="527.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="34.8452%" y="501" width="0.0191%" height="15" fill="rgb(230,25,16)" fg:x="7283" fg:w="4"/><text x="35.0952%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="34.8644%" y="613" width="0.0191%" height="15" fill="rgb(246,108,53)" fg:x="7287" fg:w="4"/><text x="35.1144%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.8691%" y="597" width="0.0144%" height="15" fill="rgb(241,172,50)" fg:x="7288" fg:w="3"/><text x="35.1191%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.8691%" y="581" width="0.0144%" height="15" fill="rgb(235,141,10)" fg:x="7288" fg:w="3"/><text x="35.1191%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="34.8644%" y="661" width="0.0431%" height="15" fill="rgb(220,174,43)" fg:x="7287" fg:w="9"/><text x="35.1144%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="34.8644%" y="645" width="0.0431%" height="15" fill="rgb(215,181,40)" fg:x="7287" fg:w="9"/><text x="35.1144%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="34.8644%" y="629" width="0.0431%" height="15" fill="rgb(230,97,2)" fg:x="7287" fg:w="9"/><text x="35.1144%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="34.8835%" y="613" width="0.0239%" height="15" fill="rgb(211,25,27)" fg:x="7291" fg:w="5"/><text x="35.1335%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="34.8835%" y="597" width="0.0239%" height="15" fill="rgb(230,87,26)" fg:x="7291" fg:w="5"/><text x="35.1335%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="34.8883%" y="581" width="0.0191%" height="15" fill="rgb(227,160,17)" fg:x="7292" fg:w="4"/><text x="35.1383%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="34.8883%" y="565" width="0.0191%" height="15" fill="rgb(244,85,34)" fg:x="7292" fg:w="4"/><text x="35.1383%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.9074%" y="597" width="0.0287%" height="15" fill="rgb(207,70,0)" fg:x="7296" fg:w="6"/><text x="35.1574%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="34.9170%" y="581" width="0.0191%" height="15" fill="rgb(223,129,7)" fg:x="7298" fg:w="4"/><text x="35.1670%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="34.9170%" y="565" width="0.0191%" height="15" fill="rgb(246,105,7)" fg:x="7298" fg:w="4"/><text x="35.1670%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (21 samples, 0.10%)</title><rect x="34.8644%" y="725" width="0.1005%" height="15" fill="rgb(215,154,42)" fg:x="7287" fg:w="21"/><text x="35.1144%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="34.8644%" y="709" width="0.1005%" height="15" fill="rgb(220,215,30)" fg:x="7287" fg:w="21"/><text x="35.1144%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="34.8644%" y="693" width="0.1005%" height="15" fill="rgb(228,81,51)" fg:x="7287" fg:w="21"/><text x="35.1144%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="34.8644%" y="677" width="0.1005%" height="15" fill="rgb(247,71,54)" fg:x="7287" fg:w="21"/><text x="35.1144%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="34.9074%" y="661" width="0.0574%" height="15" fill="rgb(234,176,34)" fg:x="7296" fg:w="12"/><text x="35.1574%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="34.9074%" y="645" width="0.0574%" height="15" fill="rgb(241,103,54)" fg:x="7296" fg:w="12"/><text x="35.1574%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="34.9074%" y="629" width="0.0574%" height="15" fill="rgb(228,22,34)" fg:x="7296" fg:w="12"/><text x="35.1574%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="34.9074%" y="613" width="0.0574%" height="15" fill="rgb(241,179,48)" fg:x="7296" fg:w="12"/><text x="35.1574%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="34.9361%" y="597" width="0.0287%" height="15" fill="rgb(235,167,37)" fg:x="7302" fg:w="6"/><text x="35.1861%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.9361%" y="581" width="0.0287%" height="15" fill="rgb(213,109,30)" fg:x="7302" fg:w="6"/><text x="35.1861%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="34.9409%" y="565" width="0.0239%" height="15" fill="rgb(222,172,16)" fg:x="7303" fg:w="5"/><text x="35.1909%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="34.9409%" y="549" width="0.0239%" height="15" fill="rgb(233,192,5)" fg:x="7303" fg:w="5"/><text x="35.1909%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="34.9505%" y="533" width="0.0144%" height="15" fill="rgb(247,189,41)" fg:x="7305" fg:w="3"/><text x="35.2005%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.9505%" y="517" width="0.0144%" height="15" fill="rgb(218,134,47)" fg:x="7305" fg:w="3"/><text x="35.2005%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="34.9648%" y="597" width="0.0191%" height="15" fill="rgb(216,29,3)" fg:x="7308" fg:w="4"/><text x="35.2148%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.9696%" y="581" width="0.0144%" height="15" fill="rgb(246,140,12)" fg:x="7309" fg:w="3"/><text x="35.2196%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.9696%" y="565" width="0.0144%" height="15" fill="rgb(230,136,11)" fg:x="7309" fg:w="3"/><text x="35.2196%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="34.9648%" y="645" width="0.0335%" height="15" fill="rgb(247,22,47)" fg:x="7308" fg:w="7"/><text x="35.2148%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="34.9648%" y="629" width="0.0335%" height="15" fill="rgb(218,84,22)" fg:x="7308" fg:w="7"/><text x="35.2148%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="34.9648%" y="613" width="0.0335%" height="15" fill="rgb(216,87,39)" fg:x="7308" fg:w="7"/><text x="35.2148%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="34.9983%" y="581" width="0.0144%" height="15" fill="rgb(221,178,8)" fg:x="7315" fg:w="3"/><text x="35.2483%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="34.9983%" y="565" width="0.0144%" height="15" fill="rgb(230,42,11)" fg:x="7315" fg:w="3"/><text x="35.2483%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="34.9983%" y="549" width="0.0144%" height="15" fill="rgb(237,229,4)" fg:x="7315" fg:w="3"/><text x="35.2483%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="34.9983%" y="645" width="0.0287%" height="15" fill="rgb(222,31,33)" fg:x="7315" fg:w="6"/><text x="35.2483%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="34.9983%" y="629" width="0.0287%" height="15" fill="rgb(210,17,39)" fg:x="7315" fg:w="6"/><text x="35.2483%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="34.9983%" y="613" width="0.0287%" height="15" fill="rgb(244,93,20)" fg:x="7315" fg:w="6"/><text x="35.2483%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="34.9983%" y="597" width="0.0287%" height="15" fill="rgb(210,40,47)" fg:x="7315" fg:w="6"/><text x="35.2483%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.0127%" y="581" width="0.0144%" height="15" fill="rgb(239,211,47)" fg:x="7318" fg:w="3"/><text x="35.2627%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.0127%" y="565" width="0.0144%" height="15" fill="rgb(251,223,49)" fg:x="7318" fg:w="3"/><text x="35.2627%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.0127%" y="549" width="0.0144%" height="15" fill="rgb(221,149,5)" fg:x="7318" fg:w="3"/><text x="35.2627%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.0127%" y="533" width="0.0144%" height="15" fill="rgb(219,224,51)" fg:x="7318" fg:w="3"/><text x="35.2627%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (110 samples, 0.53%)</title><rect x="34.5294%" y="773" width="0.5263%" height="15" fill="rgb(223,7,8)" fg:x="7217" fg:w="110"/><text x="34.7794%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (110 samples, 0.53%)</title><rect x="34.5294%" y="757" width="0.5263%" height="15" fill="rgb(241,217,22)" fg:x="7217" fg:w="110"/><text x="34.7794%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (110 samples, 0.53%)</title><rect x="34.5294%" y="741" width="0.5263%" height="15" fill="rgb(248,209,0)" fg:x="7217" fg:w="110"/><text x="34.7794%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (19 samples, 0.09%)</title><rect x="34.9648%" y="725" width="0.0909%" height="15" fill="rgb(217,205,4)" fg:x="7308" fg:w="19"/><text x="35.2148%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.09%)</title><rect x="34.9648%" y="709" width="0.0909%" height="15" fill="rgb(228,124,39)" fg:x="7308" fg:w="19"/><text x="35.2148%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="34.9648%" y="693" width="0.0909%" height="15" fill="rgb(250,116,42)" fg:x="7308" fg:w="19"/><text x="35.2148%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="34.9648%" y="677" width="0.0909%" height="15" fill="rgb(223,202,9)" fg:x="7308" fg:w="19"/><text x="35.2148%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="34.9648%" y="661" width="0.0909%" height="15" fill="rgb(242,222,40)" fg:x="7308" fg:w="19"/><text x="35.2148%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="35.0270%" y="645" width="0.0287%" height="15" fill="rgb(229,99,46)" fg:x="7321" fg:w="6"/><text x="35.2770%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="35.0270%" y="629" width="0.0287%" height="15" fill="rgb(225,56,46)" fg:x="7321" fg:w="6"/><text x="35.2770%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.0270%" y="613" width="0.0287%" height="15" fill="rgb(227,94,5)" fg:x="7321" fg:w="6"/><text x="35.2770%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.0366%" y="597" width="0.0191%" height="15" fill="rgb(205,112,38)" fg:x="7323" fg:w="4"/><text x="35.2866%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="35.0366%" y="581" width="0.0191%" height="15" fill="rgb(231,133,46)" fg:x="7323" fg:w="4"/><text x="35.2866%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.0366%" y="565" width="0.0191%" height="15" fill="rgb(217,16,9)" fg:x="7323" fg:w="4"/><text x="35.2866%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.0366%" y="549" width="0.0191%" height="15" fill="rgb(249,173,9)" fg:x="7323" fg:w="4"/><text x="35.2866%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="35.0366%" y="533" width="0.0191%" height="15" fill="rgb(205,163,53)" fg:x="7323" fg:w="4"/><text x="35.2866%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="35.0414%" y="517" width="0.0144%" height="15" fill="rgb(217,54,41)" fg:x="7324" fg:w="3"/><text x="35.2914%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="35.0414%" y="501" width="0.0144%" height="15" fill="rgb(228,216,12)" fg:x="7324" fg:w="3"/><text x="35.2914%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.0414%" y="485" width="0.0144%" height="15" fill="rgb(244,228,15)" fg:x="7324" fg:w="3"/><text x="35.2914%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.0414%" y="469" width="0.0144%" height="15" fill="rgb(221,176,53)" fg:x="7324" fg:w="3"/><text x="35.2914%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.0414%" y="453" width="0.0144%" height="15" fill="rgb(205,94,34)" fg:x="7324" fg:w="3"/><text x="35.2914%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.0605%" y="597" width="0.0144%" height="15" fill="rgb(213,110,48)" fg:x="7328" fg:w="3"/><text x="35.3105%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="35.0605%" y="645" width="0.0383%" height="15" fill="rgb(236,142,28)" fg:x="7328" fg:w="8"/><text x="35.3105%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="35.0605%" y="629" width="0.0383%" height="15" fill="rgb(225,135,29)" fg:x="7328" fg:w="8"/><text x="35.3105%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="35.0605%" y="613" width="0.0383%" height="15" fill="rgb(252,45,31)" fg:x="7328" fg:w="8"/><text x="35.3105%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="35.0749%" y="597" width="0.0239%" height="15" fill="rgb(211,187,50)" fg:x="7331" fg:w="5"/><text x="35.3249%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.0749%" y="581" width="0.0239%" height="15" fill="rgb(229,109,7)" fg:x="7331" fg:w="5"/><text x="35.3249%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.0844%" y="565" width="0.0144%" height="15" fill="rgb(251,131,51)" fg:x="7333" fg:w="3"/><text x="35.3344%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.0844%" y="549" width="0.0144%" height="15" fill="rgb(251,180,35)" fg:x="7333" fg:w="3"/><text x="35.3344%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.0988%" y="581" width="0.0191%" height="15" fill="rgb(211,46,32)" fg:x="7336" fg:w="4"/><text x="35.3488%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="35.0557%" y="693" width="0.0718%" height="15" fill="rgb(248,123,17)" fg:x="7327" fg:w="15"/><text x="35.3057%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="35.0605%" y="677" width="0.0670%" height="15" fill="rgb(227,141,18)" fg:x="7328" fg:w="14"/><text x="35.3105%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="35.0605%" y="661" width="0.0670%" height="15" fill="rgb(216,102,9)" fg:x="7328" fg:w="14"/><text x="35.3105%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.0988%" y="645" width="0.0287%" height="15" fill="rgb(253,47,13)" fg:x="7336" fg:w="6"/><text x="35.3488%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.0988%" y="629" width="0.0287%" height="15" fill="rgb(226,93,23)" fg:x="7336" fg:w="6"/><text x="35.3488%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.0988%" y="613" width="0.0287%" height="15" fill="rgb(247,104,17)" fg:x="7336" fg:w="6"/><text x="35.3488%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="35.0988%" y="597" width="0.0287%" height="15" fill="rgb(233,203,26)" fg:x="7336" fg:w="6"/><text x="35.3488%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (19 samples, 0.09%)</title><rect x="35.0557%" y="757" width="0.0909%" height="15" fill="rgb(244,98,49)" fg:x="7327" fg:w="19"/><text x="35.3057%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="35.0557%" y="741" width="0.0909%" height="15" fill="rgb(235,134,22)" fg:x="7327" fg:w="19"/><text x="35.3057%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="35.0557%" y="725" width="0.0909%" height="15" fill="rgb(221,70,32)" fg:x="7327" fg:w="19"/><text x="35.3057%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="35.0557%" y="709" width="0.0909%" height="15" fill="rgb(238,15,50)" fg:x="7327" fg:w="19"/><text x="35.3057%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="35.1275%" y="693" width="0.0191%" height="15" fill="rgb(215,221,48)" fg:x="7342" fg:w="4"/><text x="35.3775%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="35.1275%" y="677" width="0.0191%" height="15" fill="rgb(236,73,3)" fg:x="7342" fg:w="4"/><text x="35.3775%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.1275%" y="661" width="0.0191%" height="15" fill="rgb(250,107,11)" fg:x="7342" fg:w="4"/><text x="35.3775%" y="671.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.1323%" y="645" width="0.0144%" height="15" fill="rgb(242,39,14)" fg:x="7343" fg:w="3"/><text x="35.3823%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (374 samples, 1.79%)</title><rect x="33.3812%" y="917" width="1.7894%" height="15" fill="rgb(248,164,37)" fg:x="6977" fg:w="374"/><text x="33.6312%" y="927.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (374 samples, 1.79%)</title><rect x="33.3812%" y="901" width="1.7894%" height="15" fill="rgb(217,60,12)" fg:x="6977" fg:w="374"/><text x="33.6312%" y="911.50">r..</text></g><g><title>rayon_core::registry::in_worker (365 samples, 1.75%)</title><rect x="33.4242%" y="885" width="1.7463%" height="15" fill="rgb(240,125,29)" fg:x="6986" fg:w="365"/><text x="33.6742%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (365 samples, 1.75%)</title><rect x="33.4242%" y="869" width="1.7463%" height="15" fill="rgb(208,207,28)" fg:x="6986" fg:w="365"/><text x="33.6742%" y="879.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (138 samples, 0.66%)</title><rect x="34.5103%" y="853" width="0.6603%" height="15" fill="rgb(209,159,27)" fg:x="7213" fg:w="138"/><text x="34.7603%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (138 samples, 0.66%)</title><rect x="34.5103%" y="837" width="0.6603%" height="15" fill="rgb(251,176,53)" fg:x="7213" fg:w="138"/><text x="34.7603%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (138 samples, 0.66%)</title><rect x="34.5103%" y="821" width="0.6603%" height="15" fill="rgb(211,85,7)" fg:x="7213" fg:w="138"/><text x="34.7603%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (134 samples, 0.64%)</title><rect x="34.5294%" y="805" width="0.6411%" height="15" fill="rgb(216,64,54)" fg:x="7217" fg:w="134"/><text x="34.7794%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (134 samples, 0.64%)</title><rect x="34.5294%" y="789" width="0.6411%" height="15" fill="rgb(217,54,24)" fg:x="7217" fg:w="134"/><text x="34.7794%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (24 samples, 0.11%)</title><rect x="35.0557%" y="773" width="0.1148%" height="15" fill="rgb(208,206,53)" fg:x="7327" fg:w="24"/><text x="35.3057%" y="783.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="35.1466%" y="757" width="0.0239%" height="15" fill="rgb(251,74,39)" fg:x="7346" fg:w="5"/><text x="35.3966%" y="767.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="35.1466%" y="741" width="0.0239%" height="15" fill="rgb(226,47,5)" fg:x="7346" fg:w="5"/><text x="35.3966%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="35.1466%" y="725" width="0.0239%" height="15" fill="rgb(234,111,33)" fg:x="7346" fg:w="5"/><text x="35.3966%" y="735.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="35.1466%" y="709" width="0.0239%" height="15" fill="rgb(251,14,10)" fg:x="7346" fg:w="5"/><text x="35.3966%" y="719.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="35.1514%" y="693" width="0.0191%" height="15" fill="rgb(232,43,0)" fg:x="7347" fg:w="4"/><text x="35.4014%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.1801%" y="773" width="0.0144%" height="15" fill="rgb(222,68,43)" fg:x="7353" fg:w="3"/><text x="35.4301%" y="783.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.1801%" y="757" width="0.0144%" height="15" fill="rgb(217,24,23)" fg:x="7353" fg:w="3"/><text x="35.4301%" y="767.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.2088%" y="725" width="0.0144%" height="15" fill="rgb(229,209,14)" fg:x="7359" fg:w="3"/><text x="35.4588%" y="735.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.2088%" y="709" width="0.0144%" height="15" fill="rgb(250,149,48)" fg:x="7359" fg:w="3"/><text x="35.4588%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.2232%" y="693" width="0.0335%" height="15" fill="rgb(210,120,37)" fg:x="7362" fg:w="7"/><text x="35.4732%" y="703.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.2663%" y="661" width="0.0144%" height="15" fill="rgb(210,21,8)" fg:x="7371" fg:w="3"/><text x="35.5163%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.2663%" y="645" width="0.0144%" height="15" fill="rgb(243,145,7)" fg:x="7371" fg:w="3"/><text x="35.5163%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="35.1945%" y="741" width="0.1053%" height="15" fill="rgb(238,178,32)" fg:x="7356" fg:w="22"/><text x="35.4445%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="35.2232%" y="725" width="0.0766%" height="15" fill="rgb(222,4,10)" fg:x="7362" fg:w="16"/><text x="35.4732%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="35.2232%" y="709" width="0.0766%" height="15" fill="rgb(239,7,37)" fg:x="7362" fg:w="16"/><text x="35.4732%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="35.2567%" y="693" width="0.0431%" height="15" fill="rgb(215,31,37)" fg:x="7369" fg:w="9"/><text x="35.5067%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.2567%" y="677" width="0.0431%" height="15" fill="rgb(224,83,33)" fg:x="7369" fg:w="9"/><text x="35.5067%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.2806%" y="661" width="0.0191%" height="15" fill="rgb(239,55,3)" fg:x="7374" fg:w="4"/><text x="35.5306%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="35.2806%" y="645" width="0.0191%" height="15" fill="rgb(247,92,11)" fg:x="7374" fg:w="4"/><text x="35.5306%" y="655.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.3332%" y="661" width="0.0144%" height="15" fill="rgb(239,200,7)" fg:x="7385" fg:w="3"/><text x="35.5832%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.3332%" y="645" width="0.0144%" height="15" fill="rgb(227,115,8)" fg:x="7385" fg:w="3"/><text x="35.5832%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.3237%" y="677" width="0.0431%" height="15" fill="rgb(215,189,27)" fg:x="7383" fg:w="9"/><text x="35.5737%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="35.3476%" y="661" width="0.0191%" height="15" fill="rgb(251,216,39)" fg:x="7388" fg:w="4"/><text x="35.5976%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="35.3476%" y="645" width="0.0191%" height="15" fill="rgb(207,29,47)" fg:x="7388" fg:w="4"/><text x="35.5976%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (50 samples, 0.24%)</title><rect x="35.1706%" y="789" width="0.2392%" height="15" fill="rgb(210,71,34)" fg:x="7351" fg:w="50"/><text x="35.4206%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.22%)</title><rect x="35.1945%" y="773" width="0.2153%" height="15" fill="rgb(253,217,51)" fg:x="7356" fg:w="45"/><text x="35.4445%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (45 samples, 0.22%)</title><rect x="35.1945%" y="757" width="0.2153%" height="15" fill="rgb(222,117,46)" fg:x="7356" fg:w="45"/><text x="35.4445%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (23 samples, 0.11%)</title><rect x="35.2997%" y="741" width="0.1100%" height="15" fill="rgb(226,132,6)" fg:x="7378" fg:w="23"/><text x="35.5497%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="35.2997%" y="725" width="0.1100%" height="15" fill="rgb(254,145,51)" fg:x="7378" fg:w="23"/><text x="35.5497%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="35.3237%" y="709" width="0.0861%" height="15" fill="rgb(231,199,27)" fg:x="7383" fg:w="18"/><text x="35.5737%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="35.3237%" y="693" width="0.0861%" height="15" fill="rgb(245,158,14)" fg:x="7383" fg:w="18"/><text x="35.5737%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="35.3667%" y="677" width="0.0431%" height="15" fill="rgb(240,113,14)" fg:x="7392" fg:w="9"/><text x="35.6167%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="35.3667%" y="661" width="0.0431%" height="15" fill="rgb(210,20,13)" fg:x="7392" fg:w="9"/><text x="35.6167%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.3954%" y="645" width="0.0144%" height="15" fill="rgb(241,144,13)" fg:x="7398" fg:w="3"/><text x="35.6454%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.3954%" y="629" width="0.0144%" height="15" fill="rgb(235,43,34)" fg:x="7398" fg:w="3"/><text x="35.6454%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.4624%" y="629" width="0.0144%" height="15" fill="rgb(208,36,20)" fg:x="7412" fg:w="3"/><text x="35.7124%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.4528%" y="677" width="0.0335%" height="15" fill="rgb(239,204,10)" fg:x="7410" fg:w="7"/><text x="35.7028%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.4624%" y="661" width="0.0239%" height="15" fill="rgb(217,84,43)" fg:x="7412" fg:w="5"/><text x="35.7124%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.4624%" y="645" width="0.0239%" height="15" fill="rgb(241,170,50)" fg:x="7412" fg:w="5"/><text x="35.7124%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="35.4337%" y="725" width="0.0909%" height="15" fill="rgb(226,205,29)" fg:x="7406" fg:w="19"/><text x="35.6837%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="35.4528%" y="709" width="0.0718%" height="15" fill="rgb(233,113,1)" fg:x="7410" fg:w="15"/><text x="35.7028%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="35.4528%" y="693" width="0.0718%" height="15" fill="rgb(253,98,13)" fg:x="7410" fg:w="15"/><text x="35.7028%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="35.4863%" y="677" width="0.0383%" height="15" fill="rgb(211,115,12)" fg:x="7417" fg:w="8"/><text x="35.7363%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="35.4863%" y="661" width="0.0383%" height="15" fill="rgb(208,12,16)" fg:x="7417" fg:w="8"/><text x="35.7363%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5007%" y="645" width="0.0239%" height="15" fill="rgb(237,193,54)" fg:x="7420" fg:w="5"/><text x="35.7507%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.5007%" y="629" width="0.0239%" height="15" fill="rgb(243,22,42)" fg:x="7420" fg:w="5"/><text x="35.7507%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.5103%" y="613" width="0.0144%" height="15" fill="rgb(233,151,36)" fg:x="7422" fg:w="3"/><text x="35.7603%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5103%" y="597" width="0.0144%" height="15" fill="rgb(237,57,45)" fg:x="7422" fg:w="3"/><text x="35.7603%" y="607.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.5103%" y="581" width="0.0144%" height="15" fill="rgb(221,88,17)" fg:x="7422" fg:w="3"/><text x="35.7603%" y="591.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.5103%" y="565" width="0.0144%" height="15" fill="rgb(230,79,15)" fg:x="7422" fg:w="3"/><text x="35.7603%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5485%" y="613" width="0.0144%" height="15" fill="rgb(213,57,13)" fg:x="7430" fg:w="3"/><text x="35.7985%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.5390%" y="661" width="0.0335%" height="15" fill="rgb(222,116,39)" fg:x="7428" fg:w="7"/><text x="35.7890%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5485%" y="645" width="0.0239%" height="15" fill="rgb(245,107,2)" fg:x="7430" fg:w="5"/><text x="35.7985%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.5485%" y="629" width="0.0239%" height="15" fill="rgb(238,1,10)" fg:x="7430" fg:w="5"/><text x="35.7985%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.5772%" y="597" width="0.0144%" height="15" fill="rgb(249,4,48)" fg:x="7436" fg:w="3"/><text x="35.8272%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.08%)</title><rect x="35.5246%" y="725" width="0.0766%" height="15" fill="rgb(223,151,18)" fg:x="7425" fg:w="16"/><text x="35.7746%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="35.5246%" y="709" width="0.0766%" height="15" fill="rgb(227,65,43)" fg:x="7425" fg:w="16"/><text x="35.7746%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="35.5390%" y="693" width="0.0622%" height="15" fill="rgb(218,40,45)" fg:x="7428" fg:w="13"/><text x="35.7890%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="35.5390%" y="677" width="0.0622%" height="15" fill="rgb(252,121,31)" fg:x="7428" fg:w="13"/><text x="35.7890%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.5725%" y="661" width="0.0287%" height="15" fill="rgb(219,158,43)" fg:x="7435" fg:w="6"/><text x="35.8225%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.5725%" y="645" width="0.0287%" height="15" fill="rgb(231,162,42)" fg:x="7435" fg:w="6"/><text x="35.8225%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.5772%" y="629" width="0.0239%" height="15" fill="rgb(217,179,25)" fg:x="7436" fg:w="5"/><text x="35.8272%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.5772%" y="613" width="0.0239%" height="15" fill="rgb(206,212,31)" fg:x="7436" fg:w="5"/><text x="35.8272%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (43 samples, 0.21%)</title><rect x="35.4098%" y="789" width="0.2057%" height="15" fill="rgb(235,144,12)" fg:x="7401" fg:w="43"/><text x="35.6598%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.21%)</title><rect x="35.4098%" y="773" width="0.2057%" height="15" fill="rgb(213,51,10)" fg:x="7401" fg:w="43"/><text x="35.6598%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="35.4337%" y="757" width="0.1818%" height="15" fill="rgb(231,145,14)" fg:x="7406" fg:w="38"/><text x="35.6837%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="35.4337%" y="741" width="0.1818%" height="15" fill="rgb(235,15,28)" fg:x="7406" fg:w="38"/><text x="35.6837%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="35.6012%" y="725" width="0.0144%" height="15" fill="rgb(237,206,10)" fg:x="7441" fg:w="3"/><text x="35.8512%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="35.6012%" y="709" width="0.0144%" height="15" fill="rgb(236,227,27)" fg:x="7441" fg:w="3"/><text x="35.8512%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6012%" y="693" width="0.0144%" height="15" fill="rgb(246,83,35)" fg:x="7441" fg:w="3"/><text x="35.8512%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.6012%" y="677" width="0.0144%" height="15" fill="rgb(220,136,24)" fg:x="7441" fg:w="3"/><text x="35.8512%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.6012%" y="661" width="0.0144%" height="15" fill="rgb(217,3,25)" fg:x="7441" fg:w="3"/><text x="35.8512%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (96 samples, 0.46%)</title><rect x="35.1706%" y="837" width="0.4593%" height="15" fill="rgb(239,24,14)" fg:x="7351" fg:w="96"/><text x="35.4206%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (96 samples, 0.46%)</title><rect x="35.1706%" y="821" width="0.4593%" height="15" fill="rgb(244,16,53)" fg:x="7351" fg:w="96"/><text x="35.4206%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (96 samples, 0.46%)</title><rect x="35.1706%" y="805" width="0.4593%" height="15" fill="rgb(208,175,44)" fg:x="7351" fg:w="96"/><text x="35.4206%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="35.6155%" y="789" width="0.0144%" height="15" fill="rgb(252,18,48)" fg:x="7444" fg:w="3"/><text x="35.8655%" y="799.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="35.6155%" y="773" width="0.0144%" height="15" fill="rgb(234,199,32)" fg:x="7444" fg:w="3"/><text x="35.8655%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6155%" y="757" width="0.0144%" height="15" fill="rgb(225,77,54)" fg:x="7444" fg:w="3"/><text x="35.8655%" y="767.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.6347%" y="757" width="0.0144%" height="15" fill="rgb(225,42,25)" fg:x="7448" fg:w="3"/><text x="35.8847%" y="767.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.6347%" y="741" width="0.0144%" height="15" fill="rgb(242,227,46)" fg:x="7448" fg:w="3"/><text x="35.8847%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6586%" y="677" width="0.0144%" height="15" fill="rgb(246,197,35)" fg:x="7453" fg:w="3"/><text x="35.9086%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.6586%" y="661" width="0.0144%" height="15" fill="rgb(215,159,26)" fg:x="7453" fg:w="3"/><text x="35.9086%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.6586%" y="645" width="0.0144%" height="15" fill="rgb(212,194,50)" fg:x="7453" fg:w="3"/><text x="35.9086%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.6490%" y="725" width="0.0335%" height="15" fill="rgb(246,132,1)" fg:x="7451" fg:w="7"/><text x="35.8990%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.6586%" y="709" width="0.0239%" height="15" fill="rgb(217,71,7)" fg:x="7453" fg:w="5"/><text x="35.9086%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.6586%" y="693" width="0.0239%" height="15" fill="rgb(252,59,32)" fg:x="7453" fg:w="5"/><text x="35.9086%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.6873%" y="661" width="0.0144%" height="15" fill="rgb(253,204,25)" fg:x="7459" fg:w="3"/><text x="35.9373%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.6873%" y="645" width="0.0144%" height="15" fill="rgb(232,21,16)" fg:x="7459" fg:w="3"/><text x="35.9373%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.6873%" y="629" width="0.0144%" height="15" fill="rgb(248,90,29)" fg:x="7459" fg:w="3"/><text x="35.9373%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="35.6299%" y="773" width="0.0813%" height="15" fill="rgb(249,223,7)" fg:x="7447" fg:w="17"/><text x="35.8799%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="35.6490%" y="757" width="0.0622%" height="15" fill="rgb(231,119,42)" fg:x="7451" fg:w="13"/><text x="35.8990%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="35.6490%" y="741" width="0.0622%" height="15" fill="rgb(215,41,35)" fg:x="7451" fg:w="13"/><text x="35.8990%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.6825%" y="725" width="0.0287%" height="15" fill="rgb(220,44,45)" fg:x="7458" fg:w="6"/><text x="35.9325%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.6825%" y="709" width="0.0287%" height="15" fill="rgb(253,197,36)" fg:x="7458" fg:w="6"/><text x="35.9325%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.6873%" y="693" width="0.0239%" height="15" fill="rgb(245,225,54)" fg:x="7459" fg:w="5"/><text x="35.9373%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.6873%" y="677" width="0.0239%" height="15" fill="rgb(239,94,37)" fg:x="7459" fg:w="5"/><text x="35.9373%" y="687.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.7208%" y="741" width="0.0144%" height="15" fill="rgb(242,217,10)" fg:x="7466" fg:w="3"/><text x="35.9708%" y="751.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.7208%" y="725" width="0.0144%" height="15" fill="rgb(250,193,7)" fg:x="7466" fg:w="3"/><text x="35.9708%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.7112%" y="773" width="0.0287%" height="15" fill="rgb(230,104,19)" fg:x="7464" fg:w="6"/><text x="35.9612%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.7112%" y="757" width="0.0287%" height="15" fill="rgb(230,181,4)" fg:x="7464" fg:w="6"/><text x="35.9612%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.7399%" y="693" width="0.0239%" height="15" fill="rgb(216,219,49)" fg:x="7470" fg:w="5"/><text x="35.9899%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.7495%" y="677" width="0.0144%" height="15" fill="rgb(254,144,0)" fg:x="7472" fg:w="3"/><text x="35.9995%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.7495%" y="661" width="0.0144%" height="15" fill="rgb(205,209,38)" fg:x="7472" fg:w="3"/><text x="35.9995%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.15%)</title><rect x="35.6299%" y="837" width="0.1483%" height="15" fill="rgb(240,21,42)" fg:x="7447" fg:w="31"/><text x="35.8799%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="35.6299%" y="821" width="0.1483%" height="15" fill="rgb(241,132,3)" fg:x="7447" fg:w="31"/><text x="35.8799%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="35.6299%" y="805" width="0.1483%" height="15" fill="rgb(225,14,2)" fg:x="7447" fg:w="31"/><text x="35.8799%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="35.6299%" y="789" width="0.1483%" height="15" fill="rgb(210,141,35)" fg:x="7447" fg:w="31"/><text x="35.8799%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="35.7399%" y="773" width="0.0383%" height="15" fill="rgb(251,14,44)" fg:x="7470" fg:w="8"/><text x="35.9899%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="35.7399%" y="757" width="0.0383%" height="15" fill="rgb(247,48,18)" fg:x="7470" fg:w="8"/><text x="35.9899%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="35.7399%" y="741" width="0.0383%" height="15" fill="rgb(225,0,40)" fg:x="7470" fg:w="8"/><text x="35.9899%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="35.7399%" y="725" width="0.0383%" height="15" fill="rgb(221,31,33)" fg:x="7470" fg:w="8"/><text x="35.9899%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="35.7399%" y="709" width="0.0383%" height="15" fill="rgb(237,42,40)" fg:x="7470" fg:w="8"/><text x="35.9899%" y="719.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="35.8069%" y="741" width="0.0144%" height="15" fill="rgb(233,51,29)" fg:x="7484" fg:w="3"/><text x="36.0569%" y="751.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="35.8069%" y="725" width="0.0144%" height="15" fill="rgb(226,58,20)" fg:x="7484" fg:w="3"/><text x="36.0569%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8213%" y="613" width="0.0144%" height="15" fill="rgb(208,98,7)" fg:x="7487" fg:w="3"/><text x="36.0713%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="35.8213%" y="661" width="0.0335%" height="15" fill="rgb(228,143,44)" fg:x="7487" fg:w="7"/><text x="36.0713%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="35.8213%" y="645" width="0.0335%" height="15" fill="rgb(246,55,38)" fg:x="7487" fg:w="7"/><text x="36.0713%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="35.8213%" y="629" width="0.0335%" height="15" fill="rgb(247,87,16)" fg:x="7487" fg:w="7"/><text x="36.0713%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="35.8356%" y="613" width="0.0191%" height="15" fill="rgb(234,129,42)" fg:x="7490" fg:w="4"/><text x="36.0856%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.8356%" y="597" width="0.0191%" height="15" fill="rgb(220,82,16)" fg:x="7490" fg:w="4"/><text x="36.0856%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="35.8213%" y="709" width="0.0622%" height="15" fill="rgb(211,88,4)" fg:x="7487" fg:w="13"/><text x="36.0713%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="35.8213%" y="693" width="0.0622%" height="15" fill="rgb(248,151,21)" fg:x="7487" fg:w="13"/><text x="36.0713%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="35.8213%" y="677" width="0.0622%" height="15" fill="rgb(238,163,6)" fg:x="7487" fg:w="13"/><text x="36.0713%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.8547%" y="661" width="0.0287%" height="15" fill="rgb(209,183,11)" fg:x="7494" fg:w="6"/><text x="36.1047%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.8547%" y="645" width="0.0287%" height="15" fill="rgb(219,37,20)" fg:x="7494" fg:w="6"/><text x="36.1047%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.8547%" y="629" width="0.0287%" height="15" fill="rgb(210,158,4)" fg:x="7494" fg:w="6"/><text x="36.1047%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="35.8547%" y="613" width="0.0287%" height="15" fill="rgb(221,167,53)" fg:x="7494" fg:w="6"/><text x="36.1047%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="35.8643%" y="597" width="0.0191%" height="15" fill="rgb(237,151,45)" fg:x="7496" fg:w="4"/><text x="36.1143%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="35.8643%" y="581" width="0.0191%" height="15" fill="rgb(231,39,3)" fg:x="7496" fg:w="4"/><text x="36.1143%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="35.8835%" y="709" width="0.0239%" height="15" fill="rgb(212,167,28)" fg:x="7500" fg:w="5"/><text x="36.1335%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.8835%" y="693" width="0.0239%" height="15" fill="rgb(232,178,8)" fg:x="7500" fg:w="5"/><text x="36.1335%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.8835%" y="677" width="0.0239%" height="15" fill="rgb(225,151,20)" fg:x="7500" fg:w="5"/><text x="36.1335%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.8835%" y="661" width="0.0239%" height="15" fill="rgb(238,3,37)" fg:x="7500" fg:w="5"/><text x="36.1335%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.8930%" y="645" width="0.0144%" height="15" fill="rgb(251,147,42)" fg:x="7502" fg:w="3"/><text x="36.1430%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.8930%" y="629" width="0.0144%" height="15" fill="rgb(208,173,10)" fg:x="7502" fg:w="3"/><text x="36.1430%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.8930%" y="613" width="0.0144%" height="15" fill="rgb(246,225,4)" fg:x="7502" fg:w="3"/><text x="36.1430%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.8930%" y="597" width="0.0144%" height="15" fill="rgb(248,102,6)" fg:x="7502" fg:w="3"/><text x="36.1430%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.9074%" y="581" width="0.0144%" height="15" fill="rgb(232,6,21)" fg:x="7505" fg:w="3"/><text x="36.1574%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="35.9074%" y="629" width="0.0383%" height="15" fill="rgb(221,179,22)" fg:x="7505" fg:w="8"/><text x="36.1574%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="35.9074%" y="613" width="0.0383%" height="15" fill="rgb(252,50,20)" fg:x="7505" fg:w="8"/><text x="36.1574%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="35.9074%" y="597" width="0.0383%" height="15" fill="rgb(222,56,38)" fg:x="7505" fg:w="8"/><text x="36.1574%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="35.9217%" y="581" width="0.0239%" height="15" fill="rgb(206,193,29)" fg:x="7508" fg:w="5"/><text x="36.1717%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.9217%" y="565" width="0.0239%" height="15" fill="rgb(239,192,45)" fg:x="7508" fg:w="5"/><text x="36.1717%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.9313%" y="549" width="0.0144%" height="15" fill="rgb(254,18,36)" fg:x="7510" fg:w="3"/><text x="36.1813%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.9313%" y="533" width="0.0144%" height="15" fill="rgb(221,127,11)" fg:x="7510" fg:w="3"/><text x="36.1813%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.9456%" y="565" width="0.0144%" height="15" fill="rgb(234,146,35)" fg:x="7513" fg:w="3"/><text x="36.1956%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.9456%" y="549" width="0.0144%" height="15" fill="rgb(254,201,37)" fg:x="7513" fg:w="3"/><text x="36.1956%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.9456%" y="533" width="0.0144%" height="15" fill="rgb(211,202,23)" fg:x="7513" fg:w="3"/><text x="36.1956%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.17%)</title><rect x="35.8021%" y="757" width="0.1722%" height="15" fill="rgb(237,91,2)" fg:x="7483" fg:w="36"/><text x="36.0521%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (32 samples, 0.15%)</title><rect x="35.8213%" y="741" width="0.1531%" height="15" fill="rgb(226,228,36)" fg:x="7487" fg:w="32"/><text x="36.0713%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (32 samples, 0.15%)</title><rect x="35.8213%" y="725" width="0.1531%" height="15" fill="rgb(213,63,50)" fg:x="7487" fg:w="32"/><text x="36.0713%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.07%)</title><rect x="35.9074%" y="709" width="0.0670%" height="15" fill="rgb(235,194,19)" fg:x="7505" fg:w="14"/><text x="36.1574%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.07%)</title><rect x="35.9074%" y="693" width="0.0670%" height="15" fill="rgb(207,204,18)" fg:x="7505" fg:w="14"/><text x="36.1574%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="35.9074%" y="677" width="0.0670%" height="15" fill="rgb(248,8,7)" fg:x="7505" fg:w="14"/><text x="36.1574%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="35.9074%" y="661" width="0.0670%" height="15" fill="rgb(223,145,47)" fg:x="7505" fg:w="14"/><text x="36.1574%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="35.9074%" y="645" width="0.0670%" height="15" fill="rgb(228,84,11)" fg:x="7505" fg:w="14"/><text x="36.1574%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="35.9456%" y="629" width="0.0287%" height="15" fill="rgb(218,76,45)" fg:x="7513" fg:w="6"/><text x="36.1956%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="35.9456%" y="613" width="0.0287%" height="15" fill="rgb(223,80,15)" fg:x="7513" fg:w="6"/><text x="36.1956%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="35.9456%" y="597" width="0.0287%" height="15" fill="rgb(219,218,33)" fg:x="7513" fg:w="6"/><text x="36.1956%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="35.9456%" y="581" width="0.0287%" height="15" fill="rgb(208,51,11)" fg:x="7513" fg:w="6"/><text x="36.1956%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.9600%" y="565" width="0.0144%" height="15" fill="rgb(229,165,39)" fg:x="7516" fg:w="3"/><text x="36.2100%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.9600%" y="549" width="0.0144%" height="15" fill="rgb(241,100,24)" fg:x="7516" fg:w="3"/><text x="36.2100%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="35.9791%" y="693" width="0.0239%" height="15" fill="rgb(228,14,23)" fg:x="7520" fg:w="5"/><text x="36.2291%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="35.9791%" y="677" width="0.0239%" height="15" fill="rgb(247,116,52)" fg:x="7520" fg:w="5"/><text x="36.2291%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="35.9791%" y="661" width="0.0239%" height="15" fill="rgb(216,149,33)" fg:x="7520" fg:w="5"/><text x="36.2291%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="35.9887%" y="645" width="0.0144%" height="15" fill="rgb(238,142,29)" fg:x="7522" fg:w="3"/><text x="36.2387%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="35.9887%" y="629" width="0.0144%" height="15" fill="rgb(224,83,40)" fg:x="7522" fg:w="3"/><text x="36.2387%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="35.9887%" y="613" width="0.0144%" height="15" fill="rgb(234,165,11)" fg:x="7522" fg:w="3"/><text x="36.2387%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="35.9887%" y="597" width="0.0144%" height="15" fill="rgb(215,96,23)" fg:x="7522" fg:w="3"/><text x="36.2387%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="35.9744%" y="757" width="0.0383%" height="15" fill="rgb(233,179,26)" fg:x="7519" fg:w="8"/><text x="36.2244%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="35.9744%" y="741" width="0.0383%" height="15" fill="rgb(225,129,33)" fg:x="7519" fg:w="8"/><text x="36.2244%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="35.9791%" y="725" width="0.0335%" height="15" fill="rgb(237,49,13)" fg:x="7520" fg:w="7"/><text x="36.2291%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="35.9791%" y="709" width="0.0335%" height="15" fill="rgb(211,3,31)" fg:x="7520" fg:w="7"/><text x="36.2291%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (933 samples, 4.46%)</title><rect x="31.5631%" y="981" width="4.4639%" height="15" fill="rgb(216,152,19)" fg:x="6597" fg:w="933"/><text x="31.8131%" y="991.50">rayon..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (933 samples, 4.46%)</title><rect x="31.5631%" y="965" width="4.4639%" height="15" fill="rgb(251,121,35)" fg:x="6597" fg:w="933"/><text x="31.8131%" y="975.50">rayon..</text></g><g><title>rayon_core::registry::in_worker (927 samples, 4.44%)</title><rect x="31.5918%" y="949" width="4.4352%" height="15" fill="rgb(210,217,47)" fg:x="6603" fg:w="927"/><text x="31.8418%" y="959.50">rayon..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (927 samples, 4.44%)</title><rect x="31.5918%" y="933" width="4.4352%" height="15" fill="rgb(244,116,22)" fg:x="6603" fg:w="927"/><text x="31.8418%" y="943.50">_ZN10..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (179 samples, 0.86%)</title><rect x="35.1706%" y="917" width="0.8564%" height="15" fill="rgb(228,17,21)" fg:x="7351" fg:w="179"/><text x="35.4206%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (179 samples, 0.86%)</title><rect x="35.1706%" y="901" width="0.8564%" height="15" fill="rgb(240,149,34)" fg:x="7351" fg:w="179"/><text x="35.4206%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (179 samples, 0.86%)</title><rect x="35.1706%" y="885" width="0.8564%" height="15" fill="rgb(208,125,47)" fg:x="7351" fg:w="179"/><text x="35.4206%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (179 samples, 0.86%)</title><rect x="35.1706%" y="869" width="0.8564%" height="15" fill="rgb(249,186,39)" fg:x="7351" fg:w="179"/><text x="35.4206%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (179 samples, 0.86%)</title><rect x="35.1706%" y="853" width="0.8564%" height="15" fill="rgb(240,220,33)" fg:x="7351" fg:w="179"/><text x="35.4206%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.25%)</title><rect x="35.7782%" y="837" width="0.2488%" height="15" fill="rgb(243,110,23)" fg:x="7478" fg:w="52"/><text x="36.0282%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (52 samples, 0.25%)</title><rect x="35.7782%" y="821" width="0.2488%" height="15" fill="rgb(219,163,46)" fg:x="7478" fg:w="52"/><text x="36.0282%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.25%)</title><rect x="35.7782%" y="805" width="0.2488%" height="15" fill="rgb(216,126,30)" fg:x="7478" fg:w="52"/><text x="36.0282%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (47 samples, 0.22%)</title><rect x="35.8021%" y="789" width="0.2249%" height="15" fill="rgb(208,139,11)" fg:x="7483" fg:w="47"/><text x="36.0521%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (47 samples, 0.22%)</title><rect x="35.8021%" y="773" width="0.2249%" height="15" fill="rgb(213,118,36)" fg:x="7483" fg:w="47"/><text x="36.0521%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="36.0126%" y="757" width="0.0144%" height="15" fill="rgb(226,43,17)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="36.0126%" y="741" width="0.0144%" height="15" fill="rgb(254,217,4)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.0126%" y="725" width="0.0144%" height="15" fill="rgb(210,134,47)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="36.0126%" y="709" width="0.0144%" height="15" fill="rgb(237,24,49)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="36.0126%" y="693" width="0.0144%" height="15" fill="rgb(251,39,46)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="36.0126%" y="677" width="0.0144%" height="15" fill="rgb(251,220,3)" fg:x="7527" fg:w="3"/><text x="36.2626%" y="687.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.0748%" y="933" width="0.0287%" height="15" fill="rgb(228,105,12)" fg:x="7540" fg:w="6"/><text x="36.3248%" y="943.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="36.0844%" y="917" width="0.0191%" height="15" fill="rgb(215,196,1)" fg:x="7542" fg:w="4"/><text x="36.3344%" y="927.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.1705%" y="885" width="0.0287%" height="15" fill="rgb(214,33,39)" fg:x="7560" fg:w="6"/><text x="36.4205%" y="895.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="36.1753%" y="869" width="0.0239%" height="15" fill="rgb(220,19,52)" fg:x="7561" fg:w="5"/><text x="36.4253%" y="879.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="36.2519%" y="837" width="0.0335%" height="15" fill="rgb(221,78,38)" fg:x="7577" fg:w="7"/><text x="36.5019%" y="847.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="36.2614%" y="821" width="0.0239%" height="15" fill="rgb(253,30,16)" fg:x="7579" fg:w="5"/><text x="36.5114%" y="831.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="36.3141%" y="789" width="0.0239%" height="15" fill="rgb(242,65,0)" fg:x="7590" fg:w="5"/><text x="36.5641%" y="799.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="36.3141%" y="773" width="0.0239%" height="15" fill="rgb(235,201,12)" fg:x="7590" fg:w="5"/><text x="36.5641%" y="783.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.3762%" y="741" width="0.0287%" height="15" fill="rgb(233,161,9)" fg:x="7603" fg:w="6"/><text x="36.6262%" y="751.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="36.3810%" y="725" width="0.0239%" height="15" fill="rgb(241,207,41)" fg:x="7604" fg:w="5"/><text x="36.6310%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="36.4050%" y="709" width="0.0574%" height="15" fill="rgb(212,69,46)" fg:x="7609" fg:w="12"/><text x="36.6550%" y="719.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="36.4432%" y="693" width="0.0191%" height="15" fill="rgb(239,69,45)" fg:x="7617" fg:w="4"/><text x="36.6932%" y="703.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="36.4432%" y="677" width="0.0191%" height="15" fill="rgb(242,117,48)" fg:x="7617" fg:w="4"/><text x="36.6932%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (45 samples, 0.22%)</title><rect x="36.3380%" y="757" width="0.2153%" height="15" fill="rgb(228,41,36)" fg:x="7595" fg:w="45"/><text x="36.5880%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="36.4050%" y="741" width="0.1483%" height="15" fill="rgb(212,3,32)" fg:x="7609" fg:w="31"/><text x="36.6550%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="36.4050%" y="725" width="0.1483%" height="15" fill="rgb(233,41,49)" fg:x="7609" fg:w="31"/><text x="36.6550%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.09%)</title><rect x="36.4624%" y="709" width="0.0909%" height="15" fill="rgb(252,170,49)" fg:x="7621" fg:w="19"/><text x="36.7124%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="36.4624%" y="693" width="0.0909%" height="15" fill="rgb(229,53,26)" fg:x="7621" fg:w="19"/><text x="36.7124%" y="703.50"></text></g><g><title>exp (10 samples, 0.05%)</title><rect x="36.5054%" y="677" width="0.0478%" height="15" fill="rgb(217,157,12)" fg:x="7630" fg:w="10"/><text x="36.7554%" y="687.50"></text></g><g><title>[libm.so.6] (10 samples, 0.05%)</title><rect x="36.5054%" y="661" width="0.0478%" height="15" fill="rgb(227,17,9)" fg:x="7630" fg:w="10"/><text x="36.7554%" y="671.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="36.5916%" y="725" width="0.0287%" height="15" fill="rgb(218,84,12)" fg:x="7648" fg:w="6"/><text x="36.8416%" y="735.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="36.6011%" y="709" width="0.0191%" height="15" fill="rgb(212,79,24)" fg:x="7650" fg:w="4"/><text x="36.8511%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="36.6203%" y="693" width="0.1053%" height="15" fill="rgb(217,222,37)" fg:x="7654" fg:w="22"/><text x="36.8703%" y="703.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="36.6920%" y="677" width="0.0335%" height="15" fill="rgb(246,208,8)" fg:x="7669" fg:w="7"/><text x="36.9420%" y="687.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="36.6968%" y="661" width="0.0287%" height="15" fill="rgb(244,133,10)" fg:x="7670" fg:w="6"/><text x="36.9468%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (114 samples, 0.55%)</title><rect x="36.2853%" y="805" width="0.5454%" height="15" fill="rgb(209,219,41)" fg:x="7584" fg:w="114"/><text x="36.5353%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (103 samples, 0.49%)</title><rect x="36.3380%" y="789" width="0.4928%" height="15" fill="rgb(253,175,45)" fg:x="7595" fg:w="103"/><text x="36.5880%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (103 samples, 0.49%)</title><rect x="36.3380%" y="773" width="0.4928%" height="15" fill="rgb(235,100,37)" fg:x="7595" fg:w="103"/><text x="36.5880%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (58 samples, 0.28%)</title><rect x="36.5533%" y="757" width="0.2775%" height="15" fill="rgb(225,87,19)" fg:x="7640" fg:w="58"/><text x="36.8033%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (58 samples, 0.28%)</title><rect x="36.5533%" y="741" width="0.2775%" height="15" fill="rgb(217,152,17)" fg:x="7640" fg:w="58"/><text x="36.8033%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (44 samples, 0.21%)</title><rect x="36.6203%" y="725" width="0.2105%" height="15" fill="rgb(235,72,13)" fg:x="7654" fg:w="44"/><text x="36.8703%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (44 samples, 0.21%)</title><rect x="36.6203%" y="709" width="0.2105%" height="15" fill="rgb(233,140,18)" fg:x="7654" fg:w="44"/><text x="36.8703%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.11%)</title><rect x="36.7255%" y="693" width="0.1053%" height="15" fill="rgb(207,212,28)" fg:x="7676" fg:w="22"/><text x="36.9755%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="36.7255%" y="677" width="0.1053%" height="15" fill="rgb(220,130,25)" fg:x="7676" fg:w="22"/><text x="36.9755%" y="687.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="36.7781%" y="661" width="0.0526%" height="15" fill="rgb(205,55,34)" fg:x="7687" fg:w="11"/><text x="37.0281%" y="671.50"></text></g><g><title>[libm.so.6] (8 samples, 0.04%)</title><rect x="36.7925%" y="645" width="0.0383%" height="15" fill="rgb(237,54,35)" fg:x="7690" fg:w="8"/><text x="37.0425%" y="655.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="36.9025%" y="725" width="0.0191%" height="15" fill="rgb(208,67,23)" fg:x="7713" fg:w="4"/><text x="37.1525%" y="735.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="36.9073%" y="709" width="0.0144%" height="15" fill="rgb(206,207,50)" fg:x="7714" fg:w="3"/><text x="37.1573%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="36.9217%" y="693" width="0.1100%" height="15" fill="rgb(213,211,42)" fg:x="7717" fg:w="23"/><text x="37.1717%" y="703.50"></text></g><g><title>exp (10 samples, 0.05%)</title><rect x="36.9839%" y="677" width="0.0478%" height="15" fill="rgb(252,197,50)" fg:x="7730" fg:w="10"/><text x="37.2339%" y="687.50"></text></g><g><title>[libm.so.6] (8 samples, 0.04%)</title><rect x="36.9934%" y="661" width="0.0383%" height="15" fill="rgb(251,211,41)" fg:x="7732" fg:w="8"/><text x="37.2434%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.25%)</title><rect x="36.8834%" y="741" width="0.2536%" height="15" fill="rgb(229,211,5)" fg:x="7709" fg:w="53"/><text x="37.1334%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (45 samples, 0.22%)</title><rect x="36.9217%" y="725" width="0.2153%" height="15" fill="rgb(239,36,31)" fg:x="7717" fg:w="45"/><text x="37.1717%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (45 samples, 0.22%)</title><rect x="36.9217%" y="709" width="0.2153%" height="15" fill="rgb(248,67,31)" fg:x="7717" fg:w="45"/><text x="37.1717%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (22 samples, 0.11%)</title><rect x="37.0317%" y="693" width="0.1053%" height="15" fill="rgb(249,55,44)" fg:x="7740" fg:w="22"/><text x="37.2817%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="37.0317%" y="677" width="0.1053%" height="15" fill="rgb(216,82,12)" fg:x="7740" fg:w="22"/><text x="37.2817%" y="687.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="37.1035%" y="661" width="0.0335%" height="15" fill="rgb(242,174,1)" fg:x="7755" fg:w="7"/><text x="37.3535%" y="671.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="37.1035%" y="645" width="0.0335%" height="15" fill="rgb(208,120,29)" fg:x="7755" fg:w="7"/><text x="37.3535%" y="655.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="37.1657%" y="709" width="0.0239%" height="15" fill="rgb(221,105,43)" fg:x="7768" fg:w="5"/><text x="37.4157%" y="719.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="37.1753%" y="693" width="0.0144%" height="15" fill="rgb(234,124,22)" fg:x="7770" fg:w="3"/><text x="37.4253%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="37.1896%" y="677" width="0.1196%" height="15" fill="rgb(212,23,30)" fg:x="7773" fg:w="25"/><text x="37.4396%" y="687.50"></text></g><g><title>exp (11 samples, 0.05%)</title><rect x="37.2566%" y="661" width="0.0526%" height="15" fill="rgb(219,122,53)" fg:x="7787" fg:w="11"/><text x="37.5066%" y="671.50"></text></g><g><title>[libm.so.6] (8 samples, 0.04%)</title><rect x="37.2709%" y="645" width="0.0383%" height="15" fill="rgb(248,84,24)" fg:x="7790" fg:w="8"/><text x="37.5209%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="37.3092%" y="677" width="0.0718%" height="15" fill="rgb(245,115,18)" fg:x="7798" fg:w="15"/><text x="37.5592%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="37.3092%" y="661" width="0.0718%" height="15" fill="rgb(227,176,51)" fg:x="7798" fg:w="15"/><text x="37.5592%" y="671.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="37.3475%" y="645" width="0.0335%" height="15" fill="rgb(229,63,42)" fg:x="7806" fg:w="7"/><text x="37.5975%" y="655.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="37.3475%" y="629" width="0.0335%" height="15" fill="rgb(247,202,24)" fg:x="7806" fg:w="7"/><text x="37.5975%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.3810%" y="597" width="0.0239%" height="15" fill="rgb(244,173,20)" fg:x="7813" fg:w="5"/><text x="37.6310%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="37.3906%" y="581" width="0.0144%" height="15" fill="rgb(242,81,47)" fg:x="7815" fg:w="3"/><text x="37.6406%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="37.3906%" y="565" width="0.0144%" height="15" fill="rgb(231,185,54)" fg:x="7815" fg:w="3"/><text x="37.6406%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.4145%" y="517" width="0.0239%" height="15" fill="rgb(243,55,32)" fg:x="7820" fg:w="5"/><text x="37.6645%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.4145%" y="501" width="0.0239%" height="15" fill="rgb(208,167,19)" fg:x="7820" fg:w="5"/><text x="37.6645%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.4145%" y="485" width="0.0239%" height="15" fill="rgb(231,72,35)" fg:x="7820" fg:w="5"/><text x="37.6645%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="37.4240%" y="469" width="0.0144%" height="15" fill="rgb(250,173,51)" fg:x="7822" fg:w="3"/><text x="37.6740%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.4240%" y="453" width="0.0144%" height="15" fill="rgb(209,5,22)" fg:x="7822" fg:w="3"/><text x="37.6740%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="37.4240%" y="437" width="0.0144%" height="15" fill="rgb(250,174,19)" fg:x="7822" fg:w="3"/><text x="37.6740%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="37.4240%" y="421" width="0.0144%" height="15" fill="rgb(217,3,49)" fg:x="7822" fg:w="3"/><text x="37.6740%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.4384%" y="453" width="0.0144%" height="15" fill="rgb(218,225,5)" fg:x="7825" fg:w="3"/><text x="37.6884%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="37.4384%" y="437" width="0.0144%" height="15" fill="rgb(236,89,11)" fg:x="7825" fg:w="3"/><text x="37.6884%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="37.4384%" y="421" width="0.0144%" height="15" fill="rgb(206,33,28)" fg:x="7825" fg:w="3"/><text x="37.6884%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (71 samples, 0.34%)</title><rect x="37.1370%" y="741" width="0.3397%" height="15" fill="rgb(241,56,42)" fg:x="7762" fg:w="71"/><text x="37.3870%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (71 samples, 0.34%)</title><rect x="37.1370%" y="725" width="0.3397%" height="15" fill="rgb(222,44,11)" fg:x="7762" fg:w="71"/><text x="37.3870%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (60 samples, 0.29%)</title><rect x="37.1896%" y="709" width="0.2871%" height="15" fill="rgb(234,111,20)" fg:x="7773" fg:w="60"/><text x="37.4396%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (60 samples, 0.29%)</title><rect x="37.1896%" y="693" width="0.2871%" height="15" fill="rgb(237,77,6)" fg:x="7773" fg:w="60"/><text x="37.4396%" y="703.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.10%)</title><rect x="37.3810%" y="677" width="0.0957%" height="15" fill="rgb(235,111,23)" fg:x="7813" fg:w="20"/><text x="37.6310%" y="687.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.10%)</title><rect x="37.3810%" y="661" width="0.0957%" height="15" fill="rgb(251,135,29)" fg:x="7813" fg:w="20"/><text x="37.6310%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="37.3810%" y="645" width="0.0957%" height="15" fill="rgb(217,57,1)" fg:x="7813" fg:w="20"/><text x="37.6310%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="37.3810%" y="629" width="0.0957%" height="15" fill="rgb(249,119,31)" fg:x="7813" fg:w="20"/><text x="37.6310%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="37.3810%" y="613" width="0.0957%" height="15" fill="rgb(233,164,33)" fg:x="7813" fg:w="20"/><text x="37.6310%" y="623.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="37.4145%" y="597" width="0.0622%" height="15" fill="rgb(250,217,43)" fg:x="7820" fg:w="13"/><text x="37.6645%" y="607.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="37.4145%" y="581" width="0.0622%" height="15" fill="rgb(232,154,50)" fg:x="7820" fg:w="13"/><text x="37.6645%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="37.4145%" y="565" width="0.0622%" height="15" fill="rgb(227,190,8)" fg:x="7820" fg:w="13"/><text x="37.6645%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="37.4145%" y="549" width="0.0622%" height="15" fill="rgb(209,217,32)" fg:x="7820" fg:w="13"/><text x="37.6645%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="37.4145%" y="533" width="0.0622%" height="15" fill="rgb(243,203,50)" fg:x="7820" fg:w="13"/><text x="37.6645%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="37.4384%" y="517" width="0.0383%" height="15" fill="rgb(232,152,27)" fg:x="7825" fg:w="8"/><text x="37.6884%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="37.4384%" y="501" width="0.0383%" height="15" fill="rgb(240,34,29)" fg:x="7825" fg:w="8"/><text x="37.6884%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="37.4384%" y="485" width="0.0383%" height="15" fill="rgb(215,185,52)" fg:x="7825" fg:w="8"/><text x="37.6884%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="37.4384%" y="469" width="0.0383%" height="15" fill="rgb(240,89,49)" fg:x="7825" fg:w="8"/><text x="37.6884%" y="479.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="37.4528%" y="453" width="0.0239%" height="15" fill="rgb(225,12,52)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="463.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="37.4528%" y="437" width="0.0239%" height="15" fill="rgb(239,128,45)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.4528%" y="421" width="0.0239%" height="15" fill="rgb(211,78,47)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="431.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.4528%" y="405" width="0.0239%" height="15" fill="rgb(232,31,21)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="415.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.4528%" y="389" width="0.0239%" height="15" fill="rgb(222,168,14)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="399.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.4528%" y="373" width="0.0239%" height="15" fill="rgb(209,128,24)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="383.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.4528%" y="357" width="0.0239%" height="15" fill="rgb(249,35,13)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="367.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.4528%" y="341" width="0.0239%" height="15" fill="rgb(218,7,2)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="351.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.4528%" y="325" width="0.0239%" height="15" fill="rgb(238,107,27)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="335.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.4528%" y="309" width="0.0239%" height="15" fill="rgb(217,88,38)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="319.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.4528%" y="293" width="0.0239%" height="15" fill="rgb(230,207,0)" fg:x="7828" fg:w="5"/><text x="37.7028%" y="303.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="37.4623%" y="277" width="0.0144%" height="15" fill="rgb(249,64,54)" fg:x="7830" fg:w="3"/><text x="37.7123%" y="287.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="37.4623%" y="261" width="0.0144%" height="15" fill="rgb(231,7,11)" fg:x="7830" fg:w="3"/><text x="37.7123%" y="271.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.4623%" y="245" width="0.0144%" height="15" fill="rgb(205,149,21)" fg:x="7830" fg:w="3"/><text x="37.7123%" y="255.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.4767%" y="661" width="0.0144%" height="15" fill="rgb(215,126,34)" fg:x="7833" fg:w="3"/><text x="37.7267%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="37.4767%" y="645" width="0.0144%" height="15" fill="rgb(241,132,45)" fg:x="7833" fg:w="3"/><text x="37.7267%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="37.4767%" y="629" width="0.0144%" height="15" fill="rgb(252,69,32)" fg:x="7833" fg:w="3"/><text x="37.7267%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (272 samples, 1.30%)</title><rect x="36.1992%" y="853" width="1.3014%" height="15" fill="rgb(232,204,19)" fg:x="7566" fg:w="272"/><text x="36.4492%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (254 samples, 1.22%)</title><rect x="36.2853%" y="837" width="1.2153%" height="15" fill="rgb(249,15,47)" fg:x="7584" fg:w="254"/><text x="36.5353%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (254 samples, 1.22%)</title><rect x="36.2853%" y="821" width="1.2153%" height="15" fill="rgb(209,227,23)" fg:x="7584" fg:w="254"/><text x="36.5353%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (140 samples, 0.67%)</title><rect x="36.8308%" y="805" width="0.6698%" height="15" fill="rgb(248,92,24)" fg:x="7698" fg:w="140"/><text x="37.0808%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (140 samples, 0.67%)</title><rect x="36.8308%" y="789" width="0.6698%" height="15" fill="rgb(247,59,2)" fg:x="7698" fg:w="140"/><text x="37.0808%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (129 samples, 0.62%)</title><rect x="36.8834%" y="773" width="0.6172%" height="15" fill="rgb(221,30,5)" fg:x="7709" fg:w="129"/><text x="37.1334%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (129 samples, 0.62%)</title><rect x="36.8834%" y="757" width="0.6172%" height="15" fill="rgb(208,108,53)" fg:x="7709" fg:w="129"/><text x="37.1334%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="37.4767%" y="741" width="0.0239%" height="15" fill="rgb(211,183,26)" fg:x="7833" fg:w="5"/><text x="37.7267%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="37.4767%" y="725" width="0.0239%" height="15" fill="rgb(232,132,4)" fg:x="7833" fg:w="5"/><text x="37.7267%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="37.4767%" y="709" width="0.0239%" height="15" fill="rgb(253,128,37)" fg:x="7833" fg:w="5"/><text x="37.7267%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="37.4767%" y="693" width="0.0239%" height="15" fill="rgb(221,58,24)" fg:x="7833" fg:w="5"/><text x="37.7267%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="37.4767%" y="677" width="0.0239%" height="15" fill="rgb(230,54,45)" fg:x="7833" fg:w="5"/><text x="37.7267%" y="687.50"></text></g><g><title>exp (8 samples, 0.04%)</title><rect x="37.5245%" y="821" width="0.0383%" height="15" fill="rgb(254,21,18)" fg:x="7843" fg:w="8"/><text x="37.7745%" y="831.50"></text></g><g><title>[libm.so.6] (7 samples, 0.03%)</title><rect x="37.5293%" y="805" width="0.0335%" height="15" fill="rgb(221,108,0)" fg:x="7844" fg:w="7"/><text x="37.7793%" y="815.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="37.6250%" y="773" width="0.0191%" height="15" fill="rgb(206,95,1)" fg:x="7864" fg:w="4"/><text x="37.8750%" y="783.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="37.6298%" y="757" width="0.0144%" height="15" fill="rgb(237,52,5)" fg:x="7865" fg:w="3"/><text x="37.8798%" y="767.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="37.6633%" y="725" width="0.0287%" height="15" fill="rgb(218,150,34)" fg:x="7872" fg:w="6"/><text x="37.9133%" y="735.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="37.6633%" y="709" width="0.0287%" height="15" fill="rgb(235,194,28)" fg:x="7872" fg:w="6"/><text x="37.9133%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="37.6920%" y="693" width="0.0622%" height="15" fill="rgb(245,92,18)" fg:x="7878" fg:w="13"/><text x="37.9420%" y="703.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="37.7303%" y="677" width="0.0239%" height="15" fill="rgb(253,203,53)" fg:x="7886" fg:w="5"/><text x="37.9803%" y="687.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="37.7303%" y="661" width="0.0239%" height="15" fill="rgb(249,185,47)" fg:x="7886" fg:w="5"/><text x="37.9803%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="37.7542%" y="693" width="0.0478%" height="15" fill="rgb(252,194,52)" fg:x="7891" fg:w="10"/><text x="38.0042%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="37.7542%" y="677" width="0.0478%" height="15" fill="rgb(210,53,36)" fg:x="7891" fg:w="10"/><text x="38.0042%" y="687.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="37.7829%" y="661" width="0.0191%" height="15" fill="rgb(237,37,25)" fg:x="7897" fg:w="4"/><text x="38.0329%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (36 samples, 0.17%)</title><rect x="37.6441%" y="741" width="0.1722%" height="15" fill="rgb(242,116,27)" fg:x="7868" fg:w="36"/><text x="37.8941%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="37.6920%" y="725" width="0.1244%" height="15" fill="rgb(213,185,26)" fg:x="7878" fg:w="26"/><text x="37.9420%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="37.6920%" y="709" width="0.1244%" height="15" fill="rgb(225,204,8)" fg:x="7878" fg:w="26"/><text x="37.9420%" y="719.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="37.8020%" y="693" width="0.0144%" height="15" fill="rgb(254,111,37)" fg:x="7901" fg:w="3"/><text x="38.0520%" y="703.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="37.8020%" y="677" width="0.0144%" height="15" fill="rgb(242,35,9)" fg:x="7901" fg:w="3"/><text x="38.0520%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="37.8020%" y="661" width="0.0144%" height="15" fill="rgb(232,138,49)" fg:x="7901" fg:w="3"/><text x="38.0520%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="37.8020%" y="645" width="0.0144%" height="15" fill="rgb(247,56,4)" fg:x="7901" fg:w="3"/><text x="38.0520%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="37.8020%" y="629" width="0.0144%" height="15" fill="rgb(226,179,17)" fg:x="7901" fg:w="3"/><text x="38.0520%" y="639.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="37.8307%" y="709" width="0.0239%" height="15" fill="rgb(216,163,45)" fg:x="7907" fg:w="5"/><text x="38.0807%" y="719.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="37.8307%" y="693" width="0.0239%" height="15" fill="rgb(211,157,3)" fg:x="7907" fg:w="5"/><text x="38.0807%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="37.8546%" y="677" width="0.0526%" height="15" fill="rgb(234,44,20)" fg:x="7912" fg:w="11"/><text x="38.1046%" y="687.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="37.8881%" y="661" width="0.0191%" height="15" fill="rgb(254,138,23)" fg:x="7919" fg:w="4"/><text x="38.1381%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="37.8929%" y="645" width="0.0144%" height="15" fill="rgb(206,119,39)" fg:x="7920" fg:w="3"/><text x="38.1429%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (82 samples, 0.39%)</title><rect x="37.5628%" y="789" width="0.3923%" height="15" fill="rgb(231,105,52)" fg:x="7851" fg:w="82"/><text x="37.8128%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (65 samples, 0.31%)</title><rect x="37.6441%" y="773" width="0.3110%" height="15" fill="rgb(250,20,5)" fg:x="7868" fg:w="65"/><text x="37.8941%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (65 samples, 0.31%)</title><rect x="37.6441%" y="757" width="0.3110%" height="15" fill="rgb(215,198,30)" fg:x="7868" fg:w="65"/><text x="37.8941%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (29 samples, 0.14%)</title><rect x="37.8164%" y="741" width="0.1387%" height="15" fill="rgb(246,142,8)" fg:x="7904" fg:w="29"/><text x="38.0664%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="37.8164%" y="725" width="0.1387%" height="15" fill="rgb(243,26,38)" fg:x="7904" fg:w="29"/><text x="38.0664%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="37.8546%" y="709" width="0.1005%" height="15" fill="rgb(205,133,28)" fg:x="7912" fg:w="21"/><text x="38.1046%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="37.8546%" y="693" width="0.1005%" height="15" fill="rgb(212,34,0)" fg:x="7912" fg:w="21"/><text x="38.1046%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="37.9073%" y="677" width="0.0478%" height="15" fill="rgb(251,226,22)" fg:x="7923" fg:w="10"/><text x="38.1573%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="37.9073%" y="661" width="0.0478%" height="15" fill="rgb(252,119,9)" fg:x="7923" fg:w="10"/><text x="38.1573%" y="671.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="37.9264%" y="645" width="0.0287%" height="15" fill="rgb(213,150,50)" fg:x="7927" fg:w="6"/><text x="38.1764%" y="655.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="37.9360%" y="629" width="0.0191%" height="15" fill="rgb(212,24,39)" fg:x="7929" fg:w="4"/><text x="38.1860%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="37.9743%" y="757" width="0.0144%" height="15" fill="rgb(213,46,39)" fg:x="7937" fg:w="3"/><text x="38.2243%" y="767.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="37.9743%" y="741" width="0.0144%" height="15" fill="rgb(239,106,12)" fg:x="7937" fg:w="3"/><text x="38.2243%" y="751.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="38.0173%" y="709" width="0.0239%" height="15" fill="rgb(249,229,21)" fg:x="7946" fg:w="5"/><text x="38.2673%" y="719.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="38.0221%" y="693" width="0.0191%" height="15" fill="rgb(212,158,3)" fg:x="7947" fg:w="4"/><text x="38.2721%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.0412%" y="677" width="0.0239%" height="15" fill="rgb(253,26,48)" fg:x="7951" fg:w="5"/><text x="38.2912%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="37.9886%" y="725" width="0.1005%" height="15" fill="rgb(238,178,20)" fg:x="7940" fg:w="21"/><text x="38.2386%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="38.0412%" y="709" width="0.0478%" height="15" fill="rgb(208,86,15)" fg:x="7951" fg:w="10"/><text x="38.2912%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="38.0412%" y="693" width="0.0478%" height="15" fill="rgb(239,42,53)" fg:x="7951" fg:w="10"/><text x="38.2912%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="38.0652%" y="677" width="0.0239%" height="15" fill="rgb(245,226,8)" fg:x="7956" fg:w="5"/><text x="38.3152%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.0652%" y="661" width="0.0239%" height="15" fill="rgb(216,176,32)" fg:x="7956" fg:w="5"/><text x="38.3152%" y="671.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="38.0699%" y="645" width="0.0191%" height="15" fill="rgb(231,186,21)" fg:x="7957" fg:w="4"/><text x="38.3199%" y="655.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="38.0699%" y="629" width="0.0191%" height="15" fill="rgb(205,95,49)" fg:x="7957" fg:w="4"/><text x="38.3199%" y="639.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="38.1130%" y="693" width="0.0144%" height="15" fill="rgb(217,145,8)" fg:x="7966" fg:w="3"/><text x="38.3630%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="38.0891%" y="725" width="0.0478%" height="15" fill="rgb(239,144,48)" fg:x="7961" fg:w="10"/><text x="38.3391%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="38.0891%" y="709" width="0.0478%" height="15" fill="rgb(214,189,23)" fg:x="7961" fg:w="10"/><text x="38.3391%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="38.1369%" y="597" width="0.0287%" height="15" fill="rgb(229,157,17)" fg:x="7971" fg:w="6"/><text x="38.3869%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.1465%" y="581" width="0.0191%" height="15" fill="rgb(230,5,48)" fg:x="7973" fg:w="4"/><text x="38.3965%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.1465%" y="565" width="0.0191%" height="15" fill="rgb(224,156,48)" fg:x="7973" fg:w="4"/><text x="38.3965%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="38.1369%" y="645" width="0.0526%" height="15" fill="rgb(223,14,29)" fg:x="7971" fg:w="11"/><text x="38.3869%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="38.1369%" y="629" width="0.0526%" height="15" fill="rgb(229,96,36)" fg:x="7971" fg:w="11"/><text x="38.3869%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="38.1369%" y="613" width="0.0526%" height="15" fill="rgb(231,102,53)" fg:x="7971" fg:w="11"/><text x="38.3869%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="38.1656%" y="597" width="0.0239%" height="15" fill="rgb(210,77,38)" fg:x="7977" fg:w="5"/><text x="38.4156%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.1656%" y="581" width="0.0239%" height="15" fill="rgb(235,131,6)" fg:x="7977" fg:w="5"/><text x="38.4156%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.1704%" y="565" width="0.0191%" height="15" fill="rgb(252,55,38)" fg:x="7978" fg:w="4"/><text x="38.4204%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.1704%" y="549" width="0.0191%" height="15" fill="rgb(246,38,14)" fg:x="7978" fg:w="4"/><text x="38.4204%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (53 samples, 0.25%)</title><rect x="37.9551%" y="789" width="0.2536%" height="15" fill="rgb(242,27,5)" fg:x="7933" fg:w="53"/><text x="38.2051%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (53 samples, 0.25%)</title><rect x="37.9551%" y="773" width="0.2536%" height="15" fill="rgb(228,65,35)" fg:x="7933" fg:w="53"/><text x="38.2051%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (46 samples, 0.22%)</title><rect x="37.9886%" y="757" width="0.2201%" height="15" fill="rgb(245,93,11)" fg:x="7940" fg:w="46"/><text x="38.2386%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (46 samples, 0.22%)</title><rect x="37.9886%" y="741" width="0.2201%" height="15" fill="rgb(213,1,31)" fg:x="7940" fg:w="46"/><text x="38.2386%" y="751.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="38.1369%" y="725" width="0.0718%" height="15" fill="rgb(237,205,14)" fg:x="7971" fg:w="15"/><text x="38.3869%" y="735.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="38.1369%" y="709" width="0.0718%" height="15" fill="rgb(232,118,45)" fg:x="7971" fg:w="15"/><text x="38.3869%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="38.1369%" y="693" width="0.0718%" height="15" fill="rgb(218,5,6)" fg:x="7971" fg:w="15"/><text x="38.3869%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="38.1369%" y="677" width="0.0718%" height="15" fill="rgb(251,87,51)" fg:x="7971" fg:w="15"/><text x="38.3869%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="38.1369%" y="661" width="0.0718%" height="15" fill="rgb(207,225,20)" fg:x="7971" fg:w="15"/><text x="38.3869%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="38.1896%" y="645" width="0.0191%" height="15" fill="rgb(222,78,54)" fg:x="7982" fg:w="4"/><text x="38.4396%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="38.1896%" y="629" width="0.0191%" height="15" fill="rgb(232,85,16)" fg:x="7982" fg:w="4"/><text x="38.4396%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.1896%" y="613" width="0.0191%" height="15" fill="rgb(244,25,33)" fg:x="7982" fg:w="4"/><text x="38.4396%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.2231%" y="661" width="0.0191%" height="15" fill="rgb(233,24,36)" fg:x="7989" fg:w="4"/><text x="38.4731%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.2278%" y="645" width="0.0144%" height="15" fill="rgb(253,49,54)" fg:x="7990" fg:w="3"/><text x="38.4778%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.2278%" y="629" width="0.0144%" height="15" fill="rgb(245,12,22)" fg:x="7990" fg:w="3"/><text x="38.4778%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.2470%" y="533" width="0.0144%" height="15" fill="rgb(253,141,28)" fg:x="7994" fg:w="3"/><text x="38.4970%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.2470%" y="517" width="0.0144%" height="15" fill="rgb(225,207,27)" fg:x="7994" fg:w="3"/><text x="38.4970%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.2470%" y="501" width="0.0144%" height="15" fill="rgb(220,84,2)" fg:x="7994" fg:w="3"/><text x="38.4970%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.2661%" y="341" width="0.0144%" height="15" fill="rgb(224,37,37)" fg:x="7998" fg:w="3"/><text x="38.5161%" y="351.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.2661%" y="325" width="0.0144%" height="15" fill="rgb(220,143,18)" fg:x="7998" fg:w="3"/><text x="38.5161%" y="335.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.2661%" y="309" width="0.0144%" height="15" fill="rgb(210,88,33)" fg:x="7998" fg:w="3"/><text x="38.5161%" y="319.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="38.2470%" y="581" width="0.0383%" height="15" fill="rgb(219,87,51)" fg:x="7994" fg:w="8"/><text x="38.4970%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="38.2470%" y="565" width="0.0383%" height="15" fill="rgb(211,7,35)" fg:x="7994" fg:w="8"/><text x="38.4970%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="38.2470%" y="549" width="0.0383%" height="15" fill="rgb(232,77,2)" fg:x="7994" fg:w="8"/><text x="38.4970%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="38.2613%" y="533" width="0.0239%" height="15" fill="rgb(249,94,25)" fg:x="7997" fg:w="5"/><text x="38.5113%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.2613%" y="517" width="0.0239%" height="15" fill="rgb(215,112,2)" fg:x="7997" fg:w="5"/><text x="38.5113%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.2613%" y="501" width="0.0239%" height="15" fill="rgb(226,115,48)" fg:x="7997" fg:w="5"/><text x="38.5113%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.2613%" y="485" width="0.0239%" height="15" fill="rgb(249,196,10)" fg:x="7997" fg:w="5"/><text x="38.5113%" y="495.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="38.2661%" y="469" width="0.0191%" height="15" fill="rgb(237,109,14)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="479.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="38.2661%" y="453" width="0.0191%" height="15" fill="rgb(217,103,53)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.2661%" y="437" width="0.0191%" height="15" fill="rgb(244,137,9)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.2661%" y="421" width="0.0191%" height="15" fill="rgb(227,201,3)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.2661%" y="405" width="0.0191%" height="15" fill="rgb(243,94,6)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.2661%" y="389" width="0.0191%" height="15" fill="rgb(235,118,5)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.2661%" y="373" width="0.0191%" height="15" fill="rgb(247,10,30)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.2661%" y="357" width="0.0191%" height="15" fill="rgb(205,26,28)" fg:x="7998" fg:w="4"/><text x="38.5161%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="38.2183%" y="709" width="0.0957%" height="15" fill="rgb(206,99,35)" fg:x="7988" fg:w="20"/><text x="38.4683%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="38.2231%" y="693" width="0.0909%" height="15" fill="rgb(238,130,40)" fg:x="7989" fg:w="19"/><text x="38.4731%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="38.2231%" y="677" width="0.0909%" height="15" fill="rgb(224,126,31)" fg:x="7989" fg:w="19"/><text x="38.4731%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.07%)</title><rect x="38.2470%" y="661" width="0.0670%" height="15" fill="rgb(254,105,17)" fg:x="7994" fg:w="14"/><text x="38.4970%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.07%)</title><rect x="38.2470%" y="645" width="0.0670%" height="15" fill="rgb(216,87,36)" fg:x="7994" fg:w="14"/><text x="38.4970%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="38.2470%" y="629" width="0.0670%" height="15" fill="rgb(240,21,12)" fg:x="7994" fg:w="14"/><text x="38.4970%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="38.2470%" y="613" width="0.0670%" height="15" fill="rgb(245,192,34)" fg:x="7994" fg:w="14"/><text x="38.4970%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="38.2470%" y="597" width="0.0670%" height="15" fill="rgb(226,100,49)" fg:x="7994" fg:w="14"/><text x="38.4970%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="38.2852%" y="581" width="0.0287%" height="15" fill="rgb(245,188,27)" fg:x="8002" fg:w="6"/><text x="38.5352%" y="591.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="38.2900%" y="565" width="0.0239%" height="15" fill="rgb(212,170,8)" fg:x="8003" fg:w="5"/><text x="38.5400%" y="575.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="38.2900%" y="549" width="0.0239%" height="15" fill="rgb(217,113,29)" fg:x="8003" fg:w="5"/><text x="38.5400%" y="559.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="38.2900%" y="533" width="0.0239%" height="15" fill="rgb(237,30,3)" fg:x="8003" fg:w="5"/><text x="38.5400%" y="543.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="38.2900%" y="517" width="0.0239%" height="15" fill="rgb(227,19,28)" fg:x="8003" fg:w="5"/><text x="38.5400%" y="527.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="38.2900%" y="501" width="0.0239%" height="15" fill="rgb(239,172,45)" fg:x="8003" fg:w="5"/><text x="38.5400%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.3235%" y="581" width="0.0191%" height="15" fill="rgb(254,55,39)" fg:x="8010" fg:w="4"/><text x="38.5735%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.3235%" y="565" width="0.0191%" height="15" fill="rgb(249,208,12)" fg:x="8010" fg:w="4"/><text x="38.5735%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.3235%" y="549" width="0.0191%" height="15" fill="rgb(240,52,13)" fg:x="8010" fg:w="4"/><text x="38.5735%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="38.3235%" y="629" width="0.0383%" height="15" fill="rgb(252,149,13)" fg:x="8010" fg:w="8"/><text x="38.5735%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="38.3235%" y="613" width="0.0383%" height="15" fill="rgb(232,81,48)" fg:x="8010" fg:w="8"/><text x="38.5735%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="38.3235%" y="597" width="0.0383%" height="15" fill="rgb(222,144,2)" fg:x="8010" fg:w="8"/><text x="38.5735%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.3427%" y="581" width="0.0191%" height="15" fill="rgb(216,81,32)" fg:x="8014" fg:w="4"/><text x="38.5927%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.3427%" y="565" width="0.0191%" height="15" fill="rgb(244,78,51)" fg:x="8014" fg:w="4"/><text x="38.5927%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.3427%" y="549" width="0.0191%" height="15" fill="rgb(217,66,21)" fg:x="8014" fg:w="4"/><text x="38.5927%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.3427%" y="533" width="0.0191%" height="15" fill="rgb(247,101,42)" fg:x="8014" fg:w="4"/><text x="38.5927%" y="543.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (37 samples, 0.18%)</title><rect x="38.2087%" y="773" width="0.1770%" height="15" fill="rgb(227,81,39)" fg:x="7986" fg:w="37"/><text x="38.4587%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (37 samples, 0.18%)</title><rect x="38.2087%" y="757" width="0.1770%" height="15" fill="rgb(220,223,44)" fg:x="7986" fg:w="37"/><text x="38.4587%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.17%)</title><rect x="38.2183%" y="741" width="0.1675%" height="15" fill="rgb(205,218,2)" fg:x="7988" fg:w="35"/><text x="38.4683%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (35 samples, 0.17%)</title><rect x="38.2183%" y="725" width="0.1675%" height="15" fill="rgb(212,207,28)" fg:x="7988" fg:w="35"/><text x="38.4683%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="38.3235%" y="709" width="0.0622%" height="15" fill="rgb(224,12,41)" fg:x="8010" fg:w="13"/><text x="38.5735%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (13 samples, 0.06%)</title><rect x="38.3235%" y="693" width="0.0622%" height="15" fill="rgb(216,118,12)" fg:x="8010" fg:w="13"/><text x="38.5735%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="38.3235%" y="677" width="0.0622%" height="15" fill="rgb(252,97,46)" fg:x="8010" fg:w="13"/><text x="38.5735%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="38.3235%" y="661" width="0.0622%" height="15" fill="rgb(244,206,19)" fg:x="8010" fg:w="13"/><text x="38.5735%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="38.3235%" y="645" width="0.0622%" height="15" fill="rgb(231,84,31)" fg:x="8010" fg:w="13"/><text x="38.5735%" y="655.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="38.3618%" y="629" width="0.0239%" height="15" fill="rgb(244,133,0)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="38.3618%" y="613" width="0.0239%" height="15" fill="rgb(223,15,50)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.3618%" y="597" width="0.0239%" height="15" fill="rgb(250,118,49)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.3618%" y="581" width="0.0239%" height="15" fill="rgb(248,25,38)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.3618%" y="565" width="0.0239%" height="15" fill="rgb(215,70,14)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.3618%" y="549" width="0.0239%" height="15" fill="rgb(215,28,15)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.3618%" y="533" width="0.0239%" height="15" fill="rgb(243,6,28)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.3618%" y="517" width="0.0239%" height="15" fill="rgb(222,130,1)" fg:x="8018" fg:w="5"/><text x="38.6118%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.3714%" y="501" width="0.0144%" height="15" fill="rgb(236,166,44)" fg:x="8020" fg:w="3"/><text x="38.6214%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.3714%" y="485" width="0.0144%" height="15" fill="rgb(221,108,14)" fg:x="8020" fg:w="3"/><text x="38.6214%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.3714%" y="469" width="0.0144%" height="15" fill="rgb(252,3,45)" fg:x="8020" fg:w="3"/><text x="38.6214%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.3714%" y="453" width="0.0144%" height="15" fill="rgb(237,68,30)" fg:x="8020" fg:w="3"/><text x="38.6214%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (190 samples, 0.91%)</title><rect x="37.5006%" y="853" width="0.9090%" height="15" fill="rgb(211,79,22)" fg:x="7838" fg:w="190"/><text x="37.7506%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (190 samples, 0.91%)</title><rect x="37.5006%" y="837" width="0.9090%" height="15" fill="rgb(252,185,21)" fg:x="7838" fg:w="190"/><text x="37.7506%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (177 samples, 0.85%)</title><rect x="37.5628%" y="821" width="0.8468%" height="15" fill="rgb(225,189,26)" fg:x="7851" fg:w="177"/><text x="37.8128%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (177 samples, 0.85%)</title><rect x="37.5628%" y="805" width="0.8468%" height="15" fill="rgb(241,30,40)" fg:x="7851" fg:w="177"/><text x="37.8128%" y="815.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (42 samples, 0.20%)</title><rect x="38.2087%" y="789" width="0.2009%" height="15" fill="rgb(235,215,44)" fg:x="7986" fg:w="42"/><text x="38.4587%" y="799.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (5 samples, 0.02%)</title><rect x="38.3857%" y="773" width="0.0239%" height="15" fill="rgb(205,8,29)" fg:x="8023" fg:w="5"/><text x="38.6357%" y="783.50"></text></g><g><title>_ZN10rayon_core5sleep5Sleep20wake_specific_thread17hd1e277363f658c0fE.llvm.15756283938292969533 (5 samples, 0.02%)</title><rect x="38.3857%" y="757" width="0.0239%" height="15" fill="rgb(241,137,42)" fg:x="8023" fg:w="5"/><text x="38.6357%" y="767.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="38.3905%" y="741" width="0.0191%" height="15" fill="rgb(237,155,2)" fg:x="8024" fg:w="4"/><text x="38.6405%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="38.4288%" y="677" width="0.0287%" height="15" fill="rgb(245,29,42)" fg:x="8032" fg:w="6"/><text x="38.6788%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.4384%" y="661" width="0.0191%" height="15" fill="rgb(234,101,35)" fg:x="8034" fg:w="4"/><text x="38.6884%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.4384%" y="645" width="0.0191%" height="15" fill="rgb(228,64,37)" fg:x="8034" fg:w="4"/><text x="38.6884%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="38.4240%" y="725" width="0.0622%" height="15" fill="rgb(217,214,36)" fg:x="8031" fg:w="13"/><text x="38.6740%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="38.4288%" y="709" width="0.0574%" height="15" fill="rgb(243,70,3)" fg:x="8032" fg:w="12"/><text x="38.6788%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="38.4288%" y="693" width="0.0574%" height="15" fill="rgb(253,158,52)" fg:x="8032" fg:w="12"/><text x="38.6788%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="38.4575%" y="677" width="0.0287%" height="15" fill="rgb(234,111,54)" fg:x="8038" fg:w="6"/><text x="38.7075%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="38.4575%" y="661" width="0.0287%" height="15" fill="rgb(217,70,32)" fg:x="8038" fg:w="6"/><text x="38.7075%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="38.4718%" y="645" width="0.0144%" height="15" fill="rgb(234,18,33)" fg:x="8041" fg:w="3"/><text x="38.7218%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="38.4718%" y="629" width="0.0144%" height="15" fill="rgb(234,12,49)" fg:x="8041" fg:w="3"/><text x="38.7218%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="38.4910%" y="661" width="0.0287%" height="15" fill="rgb(236,10,21)" fg:x="8045" fg:w="6"/><text x="38.7410%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.5006%" y="645" width="0.0191%" height="15" fill="rgb(248,182,45)" fg:x="8047" fg:w="4"/><text x="38.7506%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.5006%" y="629" width="0.0191%" height="15" fill="rgb(217,95,36)" fg:x="8047" fg:w="4"/><text x="38.7506%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (28 samples, 0.13%)</title><rect x="38.4096%" y="773" width="0.1340%" height="15" fill="rgb(212,110,31)" fg:x="8028" fg:w="28"/><text x="38.6596%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (25 samples, 0.12%)</title><rect x="38.4240%" y="757" width="0.1196%" height="15" fill="rgb(206,32,53)" fg:x="8031" fg:w="25"/><text x="38.6740%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (25 samples, 0.12%)</title><rect x="38.4240%" y="741" width="0.1196%" height="15" fill="rgb(246,141,37)" fg:x="8031" fg:w="25"/><text x="38.6740%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="38.4862%" y="725" width="0.0574%" height="15" fill="rgb(219,16,7)" fg:x="8044" fg:w="12"/><text x="38.7362%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="38.4862%" y="709" width="0.0574%" height="15" fill="rgb(230,205,45)" fg:x="8044" fg:w="12"/><text x="38.7362%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="38.4910%" y="693" width="0.0526%" height="15" fill="rgb(231,43,49)" fg:x="8045" fg:w="11"/><text x="38.7410%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="38.4910%" y="677" width="0.0526%" height="15" fill="rgb(212,106,34)" fg:x="8045" fg:w="11"/><text x="38.7410%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="38.5197%" y="661" width="0.0239%" height="15" fill="rgb(206,83,17)" fg:x="8051" fg:w="5"/><text x="38.7697%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.5197%" y="645" width="0.0239%" height="15" fill="rgb(244,154,49)" fg:x="8051" fg:w="5"/><text x="38.7697%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.5867%" y="597" width="0.0144%" height="15" fill="rgb(244,149,49)" fg:x="8065" fg:w="3"/><text x="38.8367%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="38.5819%" y="645" width="0.0383%" height="15" fill="rgb(227,134,18)" fg:x="8064" fg:w="8"/><text x="38.8319%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="38.5867%" y="629" width="0.0335%" height="15" fill="rgb(237,116,36)" fg:x="8065" fg:w="7"/><text x="38.8367%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="38.5867%" y="613" width="0.0335%" height="15" fill="rgb(205,129,40)" fg:x="8065" fg:w="7"/><text x="38.8367%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.6010%" y="597" width="0.0191%" height="15" fill="rgb(236,178,4)" fg:x="8068" fg:w="4"/><text x="38.8510%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.6010%" y="581" width="0.0191%" height="15" fill="rgb(251,76,53)" fg:x="8068" fg:w="4"/><text x="38.8510%" y="591.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="38.6058%" y="565" width="0.0144%" height="15" fill="rgb(242,92,40)" fg:x="8069" fg:w="3"/><text x="38.8558%" y="575.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="38.6058%" y="549" width="0.0144%" height="15" fill="rgb(209,45,30)" fg:x="8069" fg:w="3"/><text x="38.8558%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.6202%" y="581" width="0.0144%" height="15" fill="rgb(218,157,36)" fg:x="8072" fg:w="3"/><text x="38.8702%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="38.6202%" y="645" width="0.0239%" height="15" fill="rgb(222,186,16)" fg:x="8072" fg:w="5"/><text x="38.8702%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="38.6202%" y="629" width="0.0239%" height="15" fill="rgb(254,72,35)" fg:x="8072" fg:w="5"/><text x="38.8702%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.6202%" y="613" width="0.0239%" height="15" fill="rgb(224,25,35)" fg:x="8072" fg:w="5"/><text x="38.8702%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.6202%" y="597" width="0.0239%" height="15" fill="rgb(206,135,52)" fg:x="8072" fg:w="5"/><text x="38.8702%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="38.5675%" y="693" width="0.0813%" height="15" fill="rgb(229,174,47)" fg:x="8061" fg:w="17"/><text x="38.8175%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="38.5819%" y="677" width="0.0670%" height="15" fill="rgb(242,184,21)" fg:x="8064" fg:w="14"/><text x="38.8319%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="38.5819%" y="661" width="0.0670%" height="15" fill="rgb(213,22,45)" fg:x="8064" fg:w="14"/><text x="38.8319%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (534 samples, 2.55%)</title><rect x="36.1035%" y="901" width="2.5549%" height="15" fill="rgb(237,81,54)" fg:x="7546" fg:w="534"/><text x="36.3535%" y="911.50">ra..</text></g><g><title>rayon_core::registry::in_worker (514 samples, 2.46%)</title><rect x="36.1992%" y="885" width="2.4592%" height="15" fill="rgb(248,177,18)" fg:x="7566" fg:w="514"/><text x="36.4492%" y="895.50">ra..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (514 samples, 2.46%)</title><rect x="36.1992%" y="869" width="2.4592%" height="15" fill="rgb(254,31,16)" fg:x="7566" fg:w="514"/><text x="36.4492%" y="879.50">_Z..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (52 samples, 0.25%)</title><rect x="38.4096%" y="853" width="0.2488%" height="15" fill="rgb(235,20,31)" fg:x="8028" fg:w="52"/><text x="38.6596%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (52 samples, 0.25%)</title><rect x="38.4096%" y="837" width="0.2488%" height="15" fill="rgb(240,56,43)" fg:x="8028" fg:w="52"/><text x="38.6596%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (52 samples, 0.25%)</title><rect x="38.4096%" y="821" width="0.2488%" height="15" fill="rgb(237,197,51)" fg:x="8028" fg:w="52"/><text x="38.6596%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (52 samples, 0.25%)</title><rect x="38.4096%" y="805" width="0.2488%" height="15" fill="rgb(241,162,44)" fg:x="8028" fg:w="52"/><text x="38.6596%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (52 samples, 0.25%)</title><rect x="38.4096%" y="789" width="0.2488%" height="15" fill="rgb(224,23,20)" fg:x="8028" fg:w="52"/><text x="38.6596%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (22 samples, 0.11%)</title><rect x="38.5532%" y="773" width="0.1053%" height="15" fill="rgb(250,109,34)" fg:x="8058" fg:w="22"/><text x="38.8032%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (22 samples, 0.11%)</title><rect x="38.5532%" y="757" width="0.1053%" height="15" fill="rgb(214,175,50)" fg:x="8058" fg:w="22"/><text x="38.8032%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (22 samples, 0.11%)</title><rect x="38.5532%" y="741" width="0.1053%" height="15" fill="rgb(213,182,5)" fg:x="8058" fg:w="22"/><text x="38.8032%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="38.5675%" y="725" width="0.0909%" height="15" fill="rgb(209,199,19)" fg:x="8061" fg:w="19"/><text x="38.8175%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="38.5675%" y="709" width="0.0909%" height="15" fill="rgb(236,224,42)" fg:x="8061" fg:w="19"/><text x="38.8175%" y="719.50"></text></g><g><title>exp (7 samples, 0.03%)</title><rect x="38.7063%" y="869" width="0.0335%" height="15" fill="rgb(246,226,29)" fg:x="8090" fg:w="7"/><text x="38.9563%" y="879.50"></text></g><g><title>[libm.so.6] (6 samples, 0.03%)</title><rect x="38.7111%" y="853" width="0.0287%" height="15" fill="rgb(227,223,11)" fg:x="8091" fg:w="6"/><text x="38.9611%" y="863.50"></text></g><g><title>exp (6 samples, 0.03%)</title><rect x="38.7589%" y="821" width="0.0287%" height="15" fill="rgb(219,7,51)" fg:x="8101" fg:w="6"/><text x="39.0089%" y="831.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="38.7637%" y="805" width="0.0239%" height="15" fill="rgb(245,167,10)" fg:x="8102" fg:w="5"/><text x="39.0137%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.8068%" y="741" width="0.0191%" height="15" fill="rgb(237,224,16)" fg:x="8111" fg:w="4"/><text x="39.0568%" y="751.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="38.8115%" y="725" width="0.0144%" height="15" fill="rgb(226,132,13)" fg:x="8112" fg:w="3"/><text x="39.0615%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="38.7876%" y="789" width="0.0574%" height="15" fill="rgb(214,140,3)" fg:x="8107" fg:w="12"/><text x="39.0376%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="38.8068%" y="773" width="0.0383%" height="15" fill="rgb(221,177,4)" fg:x="8111" fg:w="8"/><text x="39.0568%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="38.8068%" y="757" width="0.0383%" height="15" fill="rgb(238,139,3)" fg:x="8111" fg:w="8"/><text x="39.0568%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="38.8259%" y="741" width="0.0191%" height="15" fill="rgb(216,17,39)" fg:x="8115" fg:w="4"/><text x="39.0759%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.8259%" y="725" width="0.0191%" height="15" fill="rgb(238,120,9)" fg:x="8115" fg:w="4"/><text x="39.0759%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.8546%" y="725" width="0.0144%" height="15" fill="rgb(244,92,53)" fg:x="8121" fg:w="3"/><text x="39.1046%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.8690%" y="725" width="0.0144%" height="15" fill="rgb(224,148,33)" fg:x="8124" fg:w="3"/><text x="39.1190%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.8690%" y="709" width="0.0144%" height="15" fill="rgb(243,6,36)" fg:x="8124" fg:w="3"/><text x="39.1190%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (32 samples, 0.15%)</title><rect x="38.7398%" y="837" width="0.1531%" height="15" fill="rgb(230,102,11)" fg:x="8097" fg:w="32"/><text x="38.9898%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (22 samples, 0.11%)</title><rect x="38.7876%" y="821" width="0.1053%" height="15" fill="rgb(234,148,36)" fg:x="8107" fg:w="22"/><text x="39.0376%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (22 samples, 0.11%)</title><rect x="38.7876%" y="805" width="0.1053%" height="15" fill="rgb(251,153,25)" fg:x="8107" fg:w="22"/><text x="39.0376%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="38.8450%" y="789" width="0.0478%" height="15" fill="rgb(215,129,8)" fg:x="8119" fg:w="10"/><text x="39.0950%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="38.8450%" y="773" width="0.0478%" height="15" fill="rgb(224,128,35)" fg:x="8119" fg:w="10"/><text x="39.0950%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="38.8546%" y="757" width="0.0383%" height="15" fill="rgb(237,56,52)" fg:x="8121" fg:w="8"/><text x="39.1046%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="38.8546%" y="741" width="0.0383%" height="15" fill="rgb(234,213,19)" fg:x="8121" fg:w="8"/><text x="39.1046%" y="751.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="38.9120%" y="805" width="0.0239%" height="15" fill="rgb(252,82,23)" fg:x="8133" fg:w="5"/><text x="39.1620%" y="815.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="38.9120%" y="789" width="0.0239%" height="15" fill="rgb(254,201,21)" fg:x="8133" fg:w="5"/><text x="39.1620%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="38.9359%" y="773" width="0.0335%" height="15" fill="rgb(250,186,11)" fg:x="8138" fg:w="7"/><text x="39.1859%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="38.9455%" y="757" width="0.0239%" height="15" fill="rgb(211,174,5)" fg:x="8140" fg:w="5"/><text x="39.1955%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="38.9455%" y="741" width="0.0239%" height="15" fill="rgb(214,121,10)" fg:x="8140" fg:w="5"/><text x="39.1955%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="38.9551%" y="725" width="0.0144%" height="15" fill="rgb(241,66,2)" fg:x="8142" fg:w="3"/><text x="39.2051%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="38.9551%" y="709" width="0.0144%" height="15" fill="rgb(220,167,19)" fg:x="8142" fg:w="3"/><text x="39.2051%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="38.9933%" y="533" width="0.0191%" height="15" fill="rgb(231,54,50)" fg:x="8150" fg:w="4"/><text x="39.2433%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="38.9933%" y="517" width="0.0191%" height="15" fill="rgb(239,217,53)" fg:x="8150" fg:w="4"/><text x="39.2433%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="38.9933%" y="501" width="0.0191%" height="15" fill="rgb(248,8,0)" fg:x="8150" fg:w="4"/><text x="39.2433%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.0125%" y="469" width="0.0144%" height="15" fill="rgb(229,118,37)" fg:x="8154" fg:w="3"/><text x="39.2625%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.0125%" y="453" width="0.0144%" height="15" fill="rgb(253,223,43)" fg:x="8154" fg:w="3"/><text x="39.2625%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.0125%" y="437" width="0.0144%" height="15" fill="rgb(211,77,36)" fg:x="8154" fg:w="3"/><text x="39.2625%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="38.9933%" y="581" width="0.0478%" height="15" fill="rgb(219,3,53)" fg:x="8150" fg:w="10"/><text x="39.2433%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="38.9933%" y="565" width="0.0478%" height="15" fill="rgb(244,45,42)" fg:x="8150" fg:w="10"/><text x="39.2433%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="38.9933%" y="549" width="0.0478%" height="15" fill="rgb(225,95,27)" fg:x="8150" fg:w="10"/><text x="39.2433%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="39.0125%" y="533" width="0.0287%" height="15" fill="rgb(207,74,8)" fg:x="8154" fg:w="6"/><text x="39.2625%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.0125%" y="517" width="0.0287%" height="15" fill="rgb(243,63,36)" fg:x="8154" fg:w="6"/><text x="39.2625%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.0125%" y="501" width="0.0287%" height="15" fill="rgb(211,180,12)" fg:x="8154" fg:w="6"/><text x="39.2625%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.0125%" y="485" width="0.0287%" height="15" fill="rgb(254,166,49)" fg:x="8154" fg:w="6"/><text x="39.2625%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.0268%" y="469" width="0.0144%" height="15" fill="rgb(205,19,0)" fg:x="8157" fg:w="3"/><text x="39.2768%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.0268%" y="453" width="0.0144%" height="15" fill="rgb(224,172,32)" fg:x="8157" fg:w="3"/><text x="39.2768%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.0268%" y="437" width="0.0144%" height="15" fill="rgb(254,136,30)" fg:x="8157" fg:w="3"/><text x="39.2768%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.0268%" y="421" width="0.0144%" height="15" fill="rgb(246,19,35)" fg:x="8157" fg:w="3"/><text x="39.2768%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.0412%" y="469" width="0.0144%" height="15" fill="rgb(219,24,36)" fg:x="8160" fg:w="3"/><text x="39.2912%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.0412%" y="453" width="0.0144%" height="15" fill="rgb(251,55,1)" fg:x="8160" fg:w="3"/><text x="39.2912%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.0412%" y="437" width="0.0144%" height="15" fill="rgb(218,117,39)" fg:x="8160" fg:w="3"/><text x="39.2912%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.0412%" y="517" width="0.0287%" height="15" fill="rgb(248,169,11)" fg:x="8160" fg:w="6"/><text x="39.2912%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.0412%" y="501" width="0.0287%" height="15" fill="rgb(244,40,44)" fg:x="8160" fg:w="6"/><text x="39.2912%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.0412%" y="485" width="0.0287%" height="15" fill="rgb(234,62,37)" fg:x="8160" fg:w="6"/><text x="39.2912%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.0555%" y="469" width="0.0144%" height="15" fill="rgb(207,117,42)" fg:x="8163" fg:w="3"/><text x="39.3055%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.0555%" y="453" width="0.0144%" height="15" fill="rgb(213,43,2)" fg:x="8163" fg:w="3"/><text x="39.3055%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.0555%" y="437" width="0.0144%" height="15" fill="rgb(244,202,51)" fg:x="8163" fg:w="3"/><text x="39.3055%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.0555%" y="421" width="0.0144%" height="15" fill="rgb(253,174,46)" fg:x="8163" fg:w="3"/><text x="39.3055%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.12%)</title><rect x="38.9694%" y="773" width="0.1196%" height="15" fill="rgb(251,23,1)" fg:x="8145" fg:w="25"/><text x="39.2194%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="38.9694%" y="757" width="0.1196%" height="15" fill="rgb(253,26,1)" fg:x="8145" fg:w="25"/><text x="39.2194%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="38.9790%" y="741" width="0.1100%" height="15" fill="rgb(216,89,31)" fg:x="8147" fg:w="23"/><text x="39.2290%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="38.9790%" y="725" width="0.1100%" height="15" fill="rgb(209,109,5)" fg:x="8147" fg:w="23"/><text x="39.2290%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.10%)</title><rect x="38.9933%" y="709" width="0.0957%" height="15" fill="rgb(229,63,13)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.10%)</title><rect x="38.9933%" y="693" width="0.0957%" height="15" fill="rgb(238,137,54)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="38.9933%" y="677" width="0.0957%" height="15" fill="rgb(228,1,9)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="38.9933%" y="661" width="0.0957%" height="15" fill="rgb(249,120,48)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="38.9933%" y="645" width="0.0957%" height="15" fill="rgb(209,72,36)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="38.9933%" y="629" width="0.0957%" height="15" fill="rgb(247,98,49)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="38.9933%" y="613" width="0.0957%" height="15" fill="rgb(233,75,36)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="38.9933%" y="597" width="0.0957%" height="15" fill="rgb(225,14,24)" fg:x="8150" fg:w="20"/><text x="39.2433%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="39.0412%" y="581" width="0.0478%" height="15" fill="rgb(237,193,20)" fg:x="8160" fg:w="10"/><text x="39.2912%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="39.0412%" y="565" width="0.0478%" height="15" fill="rgb(239,122,19)" fg:x="8160" fg:w="10"/><text x="39.2912%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="39.0412%" y="549" width="0.0478%" height="15" fill="rgb(231,220,10)" fg:x="8160" fg:w="10"/><text x="39.2912%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="39.0412%" y="533" width="0.0478%" height="15" fill="rgb(220,66,15)" fg:x="8160" fg:w="10"/><text x="39.2912%" y="543.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="39.0699%" y="517" width="0.0191%" height="15" fill="rgb(215,171,52)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="527.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="39.0699%" y="501" width="0.0191%" height="15" fill="rgb(241,169,50)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.0699%" y="485" width="0.0191%" height="15" fill="rgb(236,189,0)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.0699%" y="469" width="0.0191%" height="15" fill="rgb(217,147,20)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.0699%" y="453" width="0.0191%" height="15" fill="rgb(206,188,39)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.0699%" y="437" width="0.0191%" height="15" fill="rgb(227,118,25)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.0699%" y="421" width="0.0191%" height="15" fill="rgb(248,171,40)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.0699%" y="405" width="0.0191%" height="15" fill="rgb(251,90,54)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.0699%" y="389" width="0.0191%" height="15" fill="rgb(234,11,46)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="399.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.0699%" y="373" width="0.0191%" height="15" fill="rgb(229,134,13)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="383.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.0699%" y="357" width="0.0191%" height="15" fill="rgb(223,129,3)" fg:x="8166" fg:w="4"/><text x="39.3199%" y="367.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.0890%" y="549" width="0.0287%" height="15" fill="rgb(221,124,13)" fg:x="8170" fg:w="6"/><text x="39.3390%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.0890%" y="533" width="0.0287%" height="15" fill="rgb(234,3,18)" fg:x="8170" fg:w="6"/><text x="39.3390%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.0890%" y="517" width="0.0287%" height="15" fill="rgb(249,199,20)" fg:x="8170" fg:w="6"/><text x="39.3390%" y="527.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.0986%" y="501" width="0.0191%" height="15" fill="rgb(224,134,6)" fg:x="8172" fg:w="4"/><text x="39.3486%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.0986%" y="485" width="0.0191%" height="15" fill="rgb(254,83,26)" fg:x="8172" fg:w="4"/><text x="39.3486%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.1177%" y="485" width="0.0144%" height="15" fill="rgb(217,88,9)" fg:x="8176" fg:w="3"/><text x="39.3677%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="39.0890%" y="597" width="0.0574%" height="15" fill="rgb(225,73,2)" fg:x="8170" fg:w="12"/><text x="39.3390%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="39.0890%" y="581" width="0.0574%" height="15" fill="rgb(226,44,39)" fg:x="8170" fg:w="12"/><text x="39.3390%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="39.0890%" y="565" width="0.0574%" height="15" fill="rgb(228,53,17)" fg:x="8170" fg:w="12"/><text x="39.3390%" y="575.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="39.1177%" y="549" width="0.0287%" height="15" fill="rgb(212,27,27)" fg:x="8176" fg:w="6"/><text x="39.3677%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.1177%" y="533" width="0.0287%" height="15" fill="rgb(241,50,6)" fg:x="8176" fg:w="6"/><text x="39.3677%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.1177%" y="517" width="0.0287%" height="15" fill="rgb(225,28,51)" fg:x="8176" fg:w="6"/><text x="39.3677%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.1177%" y="501" width="0.0287%" height="15" fill="rgb(215,33,16)" fg:x="8176" fg:w="6"/><text x="39.3677%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.1321%" y="485" width="0.0144%" height="15" fill="rgb(243,40,39)" fg:x="8179" fg:w="3"/><text x="39.3821%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.1321%" y="469" width="0.0144%" height="15" fill="rgb(225,11,42)" fg:x="8179" fg:w="3"/><text x="39.3821%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.1321%" y="453" width="0.0144%" height="15" fill="rgb(241,220,38)" fg:x="8179" fg:w="3"/><text x="39.3821%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.1465%" y="485" width="0.0144%" height="15" fill="rgb(244,52,35)" fg:x="8182" fg:w="3"/><text x="39.3965%" y="495.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.1465%" y="469" width="0.0144%" height="15" fill="rgb(246,42,46)" fg:x="8182" fg:w="3"/><text x="39.3965%" y="479.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.1465%" y="453" width="0.0144%" height="15" fill="rgb(205,184,13)" fg:x="8182" fg:w="3"/><text x="39.3965%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="39.1465%" y="533" width="0.0335%" height="15" fill="rgb(209,48,36)" fg:x="8182" fg:w="7"/><text x="39.3965%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.1465%" y="517" width="0.0335%" height="15" fill="rgb(244,34,51)" fg:x="8182" fg:w="7"/><text x="39.3965%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.1465%" y="501" width="0.0335%" height="15" fill="rgb(221,107,33)" fg:x="8182" fg:w="7"/><text x="39.3965%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.1608%" y="485" width="0.0191%" height="15" fill="rgb(224,203,12)" fg:x="8185" fg:w="4"/><text x="39.4108%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.1608%" y="469" width="0.0191%" height="15" fill="rgb(230,215,18)" fg:x="8185" fg:w="4"/><text x="39.4108%" y="479.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.1656%" y="453" width="0.0144%" height="15" fill="rgb(206,185,35)" fg:x="8186" fg:w="3"/><text x="39.4156%" y="463.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.1656%" y="437" width="0.0144%" height="15" fill="rgb(228,140,34)" fg:x="8186" fg:w="3"/><text x="39.4156%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.1799%" y="469" width="0.0191%" height="15" fill="rgb(208,93,13)" fg:x="8189" fg:w="4"/><text x="39.4299%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (27 samples, 0.13%)</title><rect x="39.0890%" y="645" width="0.1292%" height="15" fill="rgb(221,193,39)" fg:x="8170" fg:w="27"/><text x="39.3390%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (27 samples, 0.13%)</title><rect x="39.0890%" y="629" width="0.1292%" height="15" fill="rgb(241,132,34)" fg:x="8170" fg:w="27"/><text x="39.3390%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (27 samples, 0.13%)</title><rect x="39.0890%" y="613" width="0.1292%" height="15" fill="rgb(221,141,10)" fg:x="8170" fg:w="27"/><text x="39.3390%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="39.1465%" y="597" width="0.0718%" height="15" fill="rgb(226,90,31)" fg:x="8182" fg:w="15"/><text x="39.3965%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="39.1465%" y="581" width="0.0718%" height="15" fill="rgb(243,75,5)" fg:x="8182" fg:w="15"/><text x="39.3965%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="39.1465%" y="565" width="0.0718%" height="15" fill="rgb(227,156,21)" fg:x="8182" fg:w="15"/><text x="39.3965%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="39.1465%" y="549" width="0.0718%" height="15" fill="rgb(250,195,8)" fg:x="8182" fg:w="15"/><text x="39.3965%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="39.1799%" y="533" width="0.0383%" height="15" fill="rgb(220,134,5)" fg:x="8189" fg:w="8"/><text x="39.4299%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="39.1799%" y="517" width="0.0383%" height="15" fill="rgb(246,106,34)" fg:x="8189" fg:w="8"/><text x="39.4299%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="39.1799%" y="501" width="0.0383%" height="15" fill="rgb(205,1,4)" fg:x="8189" fg:w="8"/><text x="39.4299%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="39.1799%" y="485" width="0.0383%" height="15" fill="rgb(224,151,29)" fg:x="8189" fg:w="8"/><text x="39.4299%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="39.1991%" y="469" width="0.0191%" height="15" fill="rgb(251,196,0)" fg:x="8193" fg:w="4"/><text x="39.4491%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.1991%" y="453" width="0.0191%" height="15" fill="rgb(212,127,0)" fg:x="8193" fg:w="4"/><text x="39.4491%" y="463.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.2039%" y="437" width="0.0144%" height="15" fill="rgb(236,71,53)" fg:x="8194" fg:w="3"/><text x="39.4539%" y="447.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.2039%" y="421" width="0.0144%" height="15" fill="rgb(227,99,0)" fg:x="8194" fg:w="3"/><text x="39.4539%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.2182%" y="485" width="0.0144%" height="15" fill="rgb(239,89,21)" fg:x="8197" fg:w="3"/><text x="39.4682%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (74 samples, 0.35%)</title><rect x="38.8929%" y="837" width="0.3541%" height="15" fill="rgb(243,122,19)" fg:x="8129" fg:w="74"/><text x="39.1429%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (74 samples, 0.35%)</title><rect x="38.8929%" y="821" width="0.3541%" height="15" fill="rgb(229,192,45)" fg:x="8129" fg:w="74"/><text x="39.1429%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (65 samples, 0.31%)</title><rect x="38.9359%" y="805" width="0.3110%" height="15" fill="rgb(235,165,35)" fg:x="8138" fg:w="65"/><text x="39.1859%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (65 samples, 0.31%)</title><rect x="38.9359%" y="789" width="0.3110%" height="15" fill="rgb(253,202,0)" fg:x="8138" fg:w="65"/><text x="39.1859%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (33 samples, 0.16%)</title><rect x="39.0890%" y="773" width="0.1579%" height="15" fill="rgb(235,51,20)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (33 samples, 0.16%)</title><rect x="39.0890%" y="757" width="0.1579%" height="15" fill="rgb(218,95,46)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.16%)</title><rect x="39.0890%" y="741" width="0.1579%" height="15" fill="rgb(212,81,10)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.16%)</title><rect x="39.0890%" y="725" width="0.1579%" height="15" fill="rgb(240,59,0)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.16%)</title><rect x="39.0890%" y="709" width="0.1579%" height="15" fill="rgb(212,191,42)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (33 samples, 0.16%)</title><rect x="39.0890%" y="693" width="0.1579%" height="15" fill="rgb(233,140,3)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (33 samples, 0.16%)</title><rect x="39.0890%" y="677" width="0.1579%" height="15" fill="rgb(215,69,23)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (33 samples, 0.16%)</title><rect x="39.0890%" y="661" width="0.1579%" height="15" fill="rgb(240,202,20)" fg:x="8170" fg:w="33"/><text x="39.3390%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="39.2182%" y="645" width="0.0287%" height="15" fill="rgb(209,146,50)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.2182%" y="629" width="0.0287%" height="15" fill="rgb(253,102,54)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.2182%" y="613" width="0.0287%" height="15" fill="rgb(250,173,47)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.2182%" y="597" width="0.0287%" height="15" fill="rgb(232,142,7)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.2182%" y="581" width="0.0287%" height="15" fill="rgb(230,157,47)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.2182%" y="565" width="0.0287%" height="15" fill="rgb(214,177,35)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.2182%" y="549" width="0.0287%" height="15" fill="rgb(234,119,46)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.2182%" y="533" width="0.0287%" height="15" fill="rgb(241,180,50)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.2182%" y="517" width="0.0287%" height="15" fill="rgb(221,54,25)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.2182%" y="501" width="0.0287%" height="15" fill="rgb(209,157,44)" fg:x="8197" fg:w="6"/><text x="39.4682%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.2326%" y="485" width="0.0144%" height="15" fill="rgb(246,115,41)" fg:x="8200" fg:w="3"/><text x="39.4826%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.2326%" y="469" width="0.0144%" height="15" fill="rgb(229,86,1)" fg:x="8200" fg:w="3"/><text x="39.4826%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (128 samples, 0.61%)</title><rect x="38.6584%" y="901" width="0.6124%" height="15" fill="rgb(240,108,53)" fg:x="8080" fg:w="128"/><text x="38.9084%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (128 samples, 0.61%)</title><rect x="38.6584%" y="885" width="0.6124%" height="15" fill="rgb(227,134,2)" fg:x="8080" fg:w="128"/><text x="38.9084%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (111 samples, 0.53%)</title><rect x="38.7398%" y="869" width="0.5311%" height="15" fill="rgb(213,129,25)" fg:x="8097" fg:w="111"/><text x="38.9898%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (111 samples, 0.53%)</title><rect x="38.7398%" y="853" width="0.5311%" height="15" fill="rgb(226,35,21)" fg:x="8097" fg:w="111"/><text x="38.9898%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="39.2469%" y="837" width="0.0239%" height="15" fill="rgb(208,129,26)" fg:x="8203" fg:w="5"/><text x="39.4969%" y="847.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="39.2469%" y="821" width="0.0239%" height="15" fill="rgb(224,83,6)" fg:x="8203" fg:w="5"/><text x="39.4969%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.2469%" y="805" width="0.0239%" height="15" fill="rgb(227,52,39)" fg:x="8203" fg:w="5"/><text x="39.4969%" y="815.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="39.3283%" y="805" width="0.0239%" height="15" fill="rgb(241,30,17)" fg:x="8220" fg:w="5"/><text x="39.5783%" y="815.50"></text></g><g><title>[libm.so.6] (5 samples, 0.02%)</title><rect x="39.3283%" y="789" width="0.0239%" height="15" fill="rgb(246,186,42)" fg:x="8220" fg:w="5"/><text x="39.5783%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.4000%" y="677" width="0.0526%" height="15" fill="rgb(221,169,15)" fg:x="8235" fg:w="11"/><text x="39.6500%" y="687.50"></text></g><g><title>exp (4 samples, 0.02%)</title><rect x="39.4335%" y="661" width="0.0191%" height="15" fill="rgb(235,108,21)" fg:x="8242" fg:w="4"/><text x="39.6835%" y="671.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.4383%" y="645" width="0.0144%" height="15" fill="rgb(219,148,30)" fg:x="8243" fg:w="3"/><text x="39.6883%" y="655.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.4670%" y="645" width="0.0144%" height="15" fill="rgb(220,109,5)" fg:x="8249" fg:w="3"/><text x="39.7170%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.4670%" y="629" width="0.0144%" height="15" fill="rgb(213,203,48)" fg:x="8249" fg:w="3"/><text x="39.7170%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (23 samples, 0.11%)</title><rect x="39.3905%" y="725" width="0.1100%" height="15" fill="rgb(244,71,33)" fg:x="8233" fg:w="23"/><text x="39.6405%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="39.4000%" y="709" width="0.1005%" height="15" fill="rgb(209,23,2)" fg:x="8235" fg:w="21"/><text x="39.6500%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="39.4000%" y="693" width="0.1005%" height="15" fill="rgb(219,97,7)" fg:x="8235" fg:w="21"/><text x="39.6500%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (10 samples, 0.05%)</title><rect x="39.4527%" y="677" width="0.0478%" height="15" fill="rgb(216,161,23)" fg:x="8246" fg:w="10"/><text x="39.7027%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="39.4527%" y="661" width="0.0478%" height="15" fill="rgb(207,45,42)" fg:x="8246" fg:w="10"/><text x="39.7027%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.4814%" y="645" width="0.0191%" height="15" fill="rgb(241,61,4)" fg:x="8252" fg:w="4"/><text x="39.7314%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.4814%" y="629" width="0.0191%" height="15" fill="rgb(236,170,1)" fg:x="8252" fg:w="4"/><text x="39.7314%" y="639.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="39.5292%" y="645" width="0.0239%" height="15" fill="rgb(239,72,5)" fg:x="8262" fg:w="5"/><text x="39.7792%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.5388%" y="629" width="0.0144%" height="15" fill="rgb(214,13,50)" fg:x="8264" fg:w="3"/><text x="39.7888%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="39.5101%" y="661" width="0.0574%" height="15" fill="rgb(224,88,9)" fg:x="8258" fg:w="12"/><text x="39.7601%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.5531%" y="645" width="0.0144%" height="15" fill="rgb(238,192,34)" fg:x="8267" fg:w="3"/><text x="39.8031%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.5531%" y="629" width="0.0144%" height="15" fill="rgb(217,203,50)" fg:x="8267" fg:w="3"/><text x="39.8031%" y="639.50"></text></g><g><title>exp (5 samples, 0.02%)</title><rect x="39.5771%" y="629" width="0.0239%" height="15" fill="rgb(241,123,32)" fg:x="8272" fg:w="5"/><text x="39.8271%" y="639.50"></text></g><g><title>[libm.so.6] (4 samples, 0.02%)</title><rect x="39.5818%" y="613" width="0.0191%" height="15" fill="rgb(248,151,39)" fg:x="8273" fg:w="4"/><text x="39.8318%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (56 samples, 0.27%)</title><rect x="39.3522%" y="773" width="0.2679%" height="15" fill="rgb(208,89,6)" fg:x="8225" fg:w="56"/><text x="39.6022%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (48 samples, 0.23%)</title><rect x="39.3905%" y="757" width="0.2297%" height="15" fill="rgb(254,43,26)" fg:x="8233" fg:w="48"/><text x="39.6405%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (48 samples, 0.23%)</title><rect x="39.3905%" y="741" width="0.2297%" height="15" fill="rgb(216,158,13)" fg:x="8233" fg:w="48"/><text x="39.6405%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (25 samples, 0.12%)</title><rect x="39.5005%" y="725" width="0.1196%" height="15" fill="rgb(212,47,37)" fg:x="8256" fg:w="25"/><text x="39.7505%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (25 samples, 0.12%)</title><rect x="39.5005%" y="709" width="0.1196%" height="15" fill="rgb(254,16,10)" fg:x="8256" fg:w="25"/><text x="39.7505%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (23 samples, 0.11%)</title><rect x="39.5101%" y="693" width="0.1100%" height="15" fill="rgb(223,228,16)" fg:x="8258" fg:w="23"/><text x="39.7601%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (23 samples, 0.11%)</title><rect x="39.5101%" y="677" width="0.1100%" height="15" fill="rgb(249,108,50)" fg:x="8258" fg:w="23"/><text x="39.7601%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="39.5675%" y="661" width="0.0526%" height="15" fill="rgb(208,220,5)" fg:x="8270" fg:w="11"/><text x="39.8175%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.5675%" y="645" width="0.0526%" height="15" fill="rgb(217,89,48)" fg:x="8270" fg:w="11"/><text x="39.8175%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.6010%" y="629" width="0.0191%" height="15" fill="rgb(212,113,41)" fg:x="8277" fg:w="4"/><text x="39.8510%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.6010%" y="613" width="0.0191%" height="15" fill="rgb(231,127,5)" fg:x="8277" fg:w="4"/><text x="39.8510%" y="623.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.6393%" y="741" width="0.0144%" height="15" fill="rgb(217,141,17)" fg:x="8285" fg:w="3"/><text x="39.8893%" y="751.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.6393%" y="725" width="0.0144%" height="15" fill="rgb(245,125,54)" fg:x="8285" fg:w="3"/><text x="39.8893%" y="735.50"></text></g><g><title>exp (3 samples, 0.01%)</title><rect x="39.6775%" y="645" width="0.0144%" height="15" fill="rgb(248,125,3)" fg:x="8293" fg:w="3"/><text x="39.9275%" y="655.50"></text></g><g><title>[libm.so.6] (3 samples, 0.01%)</title><rect x="39.6775%" y="629" width="0.0144%" height="15" fill="rgb(236,119,51)" fg:x="8293" fg:w="3"/><text x="39.9275%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="39.6680%" y="661" width="0.0431%" height="15" fill="rgb(239,99,8)" fg:x="8291" fg:w="9"/><text x="39.9180%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.6919%" y="645" width="0.0191%" height="15" fill="rgb(224,228,4)" fg:x="8296" fg:w="4"/><text x="39.9419%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.6919%" y="629" width="0.0191%" height="15" fill="rgb(220,131,45)" fg:x="8296" fg:w="4"/><text x="39.9419%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="39.6536%" y="709" width="0.0957%" height="15" fill="rgb(215,62,5)" fg:x="8288" fg:w="20"/><text x="39.9036%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="39.6680%" y="693" width="0.0813%" height="15" fill="rgb(253,12,24)" fg:x="8291" fg:w="17"/><text x="39.9180%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="39.6680%" y="677" width="0.0813%" height="15" fill="rgb(248,120,50)" fg:x="8291" fg:w="17"/><text x="39.9180%" y="687.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="39.7110%" y="661" width="0.0383%" height="15" fill="rgb(245,194,10)" fg:x="8300" fg:w="8"/><text x="39.9610%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="39.7110%" y="645" width="0.0383%" height="15" fill="rgb(241,149,38)" fg:x="8300" fg:w="8"/><text x="39.9610%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.7349%" y="629" width="0.0144%" height="15" fill="rgb(219,215,7)" fg:x="8305" fg:w="3"/><text x="39.9849%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.7349%" y="613" width="0.0144%" height="15" fill="rgb(208,120,31)" fg:x="8305" fg:w="3"/><text x="39.9849%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.7589%" y="645" width="0.0239%" height="15" fill="rgb(244,30,8)" fg:x="8310" fg:w="5"/><text x="40.0089%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.7684%" y="629" width="0.0144%" height="15" fill="rgb(238,35,44)" fg:x="8312" fg:w="3"/><text x="40.0184%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.7684%" y="613" width="0.0144%" height="15" fill="rgb(243,218,37)" fg:x="8312" fg:w="3"/><text x="40.0184%" y="623.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (16 samples, 0.08%)</title><rect x="39.7493%" y="709" width="0.0766%" height="15" fill="rgb(218,169,10)" fg:x="8308" fg:w="16"/><text x="39.9993%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="39.7493%" y="693" width="0.0766%" height="15" fill="rgb(221,144,10)" fg:x="8308" fg:w="16"/><text x="39.9993%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="39.7589%" y="677" width="0.0670%" height="15" fill="rgb(226,41,38)" fg:x="8310" fg:w="14"/><text x="40.0089%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="39.7589%" y="661" width="0.0670%" height="15" fill="rgb(228,3,1)" fg:x="8310" fg:w="14"/><text x="40.0089%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="39.7828%" y="645" width="0.0431%" height="15" fill="rgb(209,129,12)" fg:x="8315" fg:w="9"/><text x="40.0328%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="39.7828%" y="629" width="0.0431%" height="15" fill="rgb(213,136,33)" fg:x="8315" fg:w="9"/><text x="40.0328%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="39.7924%" y="613" width="0.0335%" height="15" fill="rgb(209,181,29)" fg:x="8317" fg:w="7"/><text x="40.0424%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="39.7924%" y="597" width="0.0335%" height="15" fill="rgb(234,173,18)" fg:x="8317" fg:w="7"/><text x="40.0424%" y="607.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="39.7971%" y="581" width="0.0287%" height="15" fill="rgb(227,73,47)" fg:x="8318" fg:w="6"/><text x="40.0471%" y="591.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="39.7971%" y="565" width="0.0287%" height="15" fill="rgb(234,9,34)" fg:x="8318" fg:w="6"/><text x="40.0471%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.7971%" y="549" width="0.0287%" height="15" fill="rgb(235,172,15)" fg:x="8318" fg:w="6"/><text x="40.0471%" y="559.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.7971%" y="533" width="0.0287%" height="15" fill="rgb(245,61,2)" fg:x="8318" fg:w="6"/><text x="40.0471%" y="543.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.7971%" y="517" width="0.0287%" height="15" fill="rgb(238,39,47)" fg:x="8318" fg:w="6"/><text x="40.0471%" y="527.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="39.8067%" y="501" width="0.0191%" height="15" fill="rgb(234,37,24)" fg:x="8320" fg:w="4"/><text x="40.0567%" y="511.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="39.8067%" y="485" width="0.0191%" height="15" fill="rgb(248,223,24)" fg:x="8320" fg:w="4"/><text x="40.0567%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.8067%" y="469" width="0.0191%" height="15" fill="rgb(223,12,15)" fg:x="8320" fg:w="4"/><text x="40.0567%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.8067%" y="453" width="0.0191%" height="15" fill="rgb(249,6,3)" fg:x="8320" fg:w="4"/><text x="40.0567%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.8067%" y="437" width="0.0191%" height="15" fill="rgb(237,105,33)" fg:x="8320" fg:w="4"/><text x="40.0567%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.8258%" y="533" width="0.0287%" height="15" fill="rgb(252,208,35)" fg:x="8324" fg:w="6"/><text x="40.0758%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.8354%" y="517" width="0.0191%" height="15" fill="rgb(215,181,35)" fg:x="8326" fg:w="4"/><text x="40.0854%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.8354%" y="501" width="0.0191%" height="15" fill="rgb(246,212,3)" fg:x="8326" fg:w="4"/><text x="40.0854%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.8402%" y="485" width="0.0144%" height="15" fill="rgb(247,156,24)" fg:x="8327" fg:w="3"/><text x="40.0902%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.8402%" y="469" width="0.0144%" height="15" fill="rgb(248,9,31)" fg:x="8327" fg:w="3"/><text x="40.0902%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.8402%" y="453" width="0.0144%" height="15" fill="rgb(234,26,45)" fg:x="8327" fg:w="3"/><text x="40.0902%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.8402%" y="437" width="0.0144%" height="15" fill="rgb(249,11,32)" fg:x="8327" fg:w="3"/><text x="40.0902%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.8258%" y="581" width="0.0526%" height="15" fill="rgb(249,162,33)" fg:x="8324" fg:w="11"/><text x="40.0758%" y="591.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="39.8258%" y="565" width="0.0526%" height="15" fill="rgb(232,4,32)" fg:x="8324" fg:w="11"/><text x="40.0758%" y="575.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="39.8258%" y="549" width="0.0526%" height="15" fill="rgb(212,5,45)" fg:x="8324" fg:w="11"/><text x="40.0758%" y="559.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="39.8546%" y="533" width="0.0239%" height="15" fill="rgb(227,95,13)" fg:x="8330" fg:w="5"/><text x="40.1046%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.8546%" y="517" width="0.0239%" height="15" fill="rgb(223,205,10)" fg:x="8330" fg:w="5"/><text x="40.1046%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.8641%" y="501" width="0.0144%" height="15" fill="rgb(222,178,8)" fg:x="8332" fg:w="3"/><text x="40.1141%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.8641%" y="485" width="0.0144%" height="15" fill="rgb(216,13,22)" fg:x="8332" fg:w="3"/><text x="40.1141%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.8880%" y="469" width="0.0144%" height="15" fill="rgb(240,167,12)" fg:x="8337" fg:w="3"/><text x="40.1380%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.8880%" y="453" width="0.0144%" height="15" fill="rgb(235,68,35)" fg:x="8337" fg:w="3"/><text x="40.1380%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.8880%" y="437" width="0.0144%" height="15" fill="rgb(253,40,27)" fg:x="8337" fg:w="3"/><text x="40.1380%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="39.8785%" y="517" width="0.0383%" height="15" fill="rgb(214,19,28)" fg:x="8335" fg:w="8"/><text x="40.1285%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.8880%" y="501" width="0.0287%" height="15" fill="rgb(210,167,45)" fg:x="8337" fg:w="6"/><text x="40.1380%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.8880%" y="485" width="0.0287%" height="15" fill="rgb(232,97,40)" fg:x="8337" fg:w="6"/><text x="40.1380%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.9024%" y="469" width="0.0144%" height="15" fill="rgb(250,35,23)" fg:x="8340" fg:w="3"/><text x="40.1524%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9024%" y="453" width="0.0144%" height="15" fill="rgb(248,47,53)" fg:x="8340" fg:w="3"/><text x="40.1524%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.9024%" y="437" width="0.0144%" height="15" fill="rgb(226,58,50)" fg:x="8340" fg:w="3"/><text x="40.1524%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.9024%" y="421" width="0.0144%" height="15" fill="rgb(217,105,26)" fg:x="8340" fg:w="3"/><text x="40.1524%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (24 samples, 0.11%)</title><rect x="39.8258%" y="629" width="0.1148%" height="15" fill="rgb(208,64,1)" fg:x="8324" fg:w="24"/><text x="40.0758%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (24 samples, 0.11%)</title><rect x="39.8258%" y="613" width="0.1148%" height="15" fill="rgb(214,80,1)" fg:x="8324" fg:w="24"/><text x="40.0758%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (24 samples, 0.11%)</title><rect x="39.8258%" y="597" width="0.1148%" height="15" fill="rgb(206,175,26)" fg:x="8324" fg:w="24"/><text x="40.0758%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (13 samples, 0.06%)</title><rect x="39.8785%" y="581" width="0.0622%" height="15" fill="rgb(235,156,37)" fg:x="8335" fg:w="13"/><text x="40.1285%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="39.8785%" y="565" width="0.0622%" height="15" fill="rgb(213,100,9)" fg:x="8335" fg:w="13"/><text x="40.1285%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="39.8785%" y="549" width="0.0622%" height="15" fill="rgb(241,15,13)" fg:x="8335" fg:w="13"/><text x="40.1285%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="39.8785%" y="533" width="0.0622%" height="15" fill="rgb(205,97,43)" fg:x="8335" fg:w="13"/><text x="40.1285%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="39.9168%" y="517" width="0.0239%" height="15" fill="rgb(216,106,32)" fg:x="8343" fg:w="5"/><text x="40.1668%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.9168%" y="501" width="0.0239%" height="15" fill="rgb(226,200,8)" fg:x="8343" fg:w="5"/><text x="40.1668%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.9168%" y="485" width="0.0239%" height="15" fill="rgb(244,54,29)" fg:x="8343" fg:w="5"/><text x="40.1668%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.9168%" y="469" width="0.0239%" height="15" fill="rgb(252,169,12)" fg:x="8343" fg:w="5"/><text x="40.1668%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.9263%" y="453" width="0.0144%" height="15" fill="rgb(231,199,11)" fg:x="8345" fg:w="3"/><text x="40.1763%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9263%" y="437" width="0.0144%" height="15" fill="rgb(233,191,18)" fg:x="8345" fg:w="3"/><text x="40.1763%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.9263%" y="421" width="0.0144%" height="15" fill="rgb(215,83,47)" fg:x="8345" fg:w="3"/><text x="40.1763%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.9263%" y="405" width="0.0144%" height="15" fill="rgb(251,67,19)" fg:x="8345" fg:w="3"/><text x="40.1763%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9407%" y="469" width="0.0144%" height="15" fill="rgb(240,7,20)" fg:x="8348" fg:w="3"/><text x="40.1907%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.9407%" y="453" width="0.0144%" height="15" fill="rgb(210,150,26)" fg:x="8348" fg:w="3"/><text x="40.1907%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.9407%" y="437" width="0.0144%" height="15" fill="rgb(228,75,42)" fg:x="8348" fg:w="3"/><text x="40.1907%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="39.9407%" y="517" width="0.0287%" height="15" fill="rgb(237,134,48)" fg:x="8348" fg:w="6"/><text x="40.1907%" y="527.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="39.9407%" y="501" width="0.0287%" height="15" fill="rgb(205,80,50)" fg:x="8348" fg:w="6"/><text x="40.1907%" y="511.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="39.9407%" y="485" width="0.0287%" height="15" fill="rgb(217,74,48)" fg:x="8348" fg:w="6"/><text x="40.1907%" y="495.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.9550%" y="469" width="0.0144%" height="15" fill="rgb(205,82,50)" fg:x="8351" fg:w="3"/><text x="40.2050%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9550%" y="453" width="0.0144%" height="15" fill="rgb(228,1,33)" fg:x="8351" fg:w="3"/><text x="40.2050%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.9550%" y="437" width="0.0144%" height="15" fill="rgb(214,50,23)" fg:x="8351" fg:w="3"/><text x="40.2050%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.9550%" y="421" width="0.0144%" height="15" fill="rgb(210,62,9)" fg:x="8351" fg:w="3"/><text x="40.2050%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="39.9407%" y="565" width="0.0526%" height="15" fill="rgb(210,104,37)" fg:x="8348" fg:w="11"/><text x="40.1907%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="39.9407%" y="549" width="0.0526%" height="15" fill="rgb(232,104,43)" fg:x="8348" fg:w="11"/><text x="40.1907%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="39.9407%" y="533" width="0.0526%" height="15" fill="rgb(244,52,6)" fg:x="8348" fg:w="11"/><text x="40.1907%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="39.9694%" y="517" width="0.0239%" height="15" fill="rgb(211,174,52)" fg:x="8354" fg:w="5"/><text x="40.2194%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="39.9694%" y="501" width="0.0239%" height="15" fill="rgb(229,48,4)" fg:x="8354" fg:w="5"/><text x="40.2194%" y="511.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="39.9694%" y="485" width="0.0239%" height="15" fill="rgb(205,155,16)" fg:x="8354" fg:w="5"/><text x="40.2194%" y="495.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="39.9694%" y="469" width="0.0239%" height="15" fill="rgb(211,141,53)" fg:x="8354" fg:w="5"/><text x="40.2194%" y="479.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="39.9789%" y="453" width="0.0144%" height="15" fill="rgb(240,148,11)" fg:x="8356" fg:w="3"/><text x="40.2289%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="39.9789%" y="437" width="0.0144%" height="15" fill="rgb(214,45,23)" fg:x="8356" fg:w="3"/><text x="40.2289%" y="447.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="39.9789%" y="421" width="0.0144%" height="15" fill="rgb(248,74,26)" fg:x="8356" fg:w="3"/><text x="40.2289%" y="431.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="39.9789%" y="405" width="0.0144%" height="15" fill="rgb(218,121,16)" fg:x="8356" fg:w="3"/><text x="40.2289%" y="415.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="39.9933%" y="485" width="0.0191%" height="15" fill="rgb(218,10,47)" fg:x="8359" fg:w="4"/><text x="40.2433%" y="495.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="39.9933%" y="469" width="0.0191%" height="15" fill="rgb(227,99,14)" fg:x="8359" fg:w="4"/><text x="40.2433%" y="479.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="39.9933%" y="453" width="0.0191%" height="15" fill="rgb(229,83,46)" fg:x="8359" fg:w="4"/><text x="40.2433%" y="463.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (86 samples, 0.41%)</title><rect x="39.6201%" y="773" width="0.4115%" height="15" fill="rgb(228,25,1)" fg:x="8281" fg:w="86"/><text x="39.8701%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (86 samples, 0.41%)</title><rect x="39.6201%" y="757" width="0.4115%" height="15" fill="rgb(252,190,15)" fg:x="8281" fg:w="86"/><text x="39.8701%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (79 samples, 0.38%)</title><rect x="39.6536%" y="741" width="0.3780%" height="15" fill="rgb(213,103,51)" fg:x="8288" fg:w="79"/><text x="39.9036%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (79 samples, 0.38%)</title><rect x="39.6536%" y="725" width="0.3780%" height="15" fill="rgb(220,38,44)" fg:x="8288" fg:w="79"/><text x="39.9036%" y="735.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (43 samples, 0.21%)</title><rect x="39.8258%" y="709" width="0.2057%" height="15" fill="rgb(210,45,26)" fg:x="8324" fg:w="43"/><text x="40.0758%" y="719.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (43 samples, 0.21%)</title><rect x="39.8258%" y="693" width="0.2057%" height="15" fill="rgb(205,95,48)" fg:x="8324" fg:w="43"/><text x="40.0758%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.21%)</title><rect x="39.8258%" y="677" width="0.2057%" height="15" fill="rgb(225,179,37)" fg:x="8324" fg:w="43"/><text x="40.0758%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (43 samples, 0.21%)</title><rect x="39.8258%" y="661" width="0.2057%" height="15" fill="rgb(230,209,3)" fg:x="8324" fg:w="43"/><text x="40.0758%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (43 samples, 0.21%)</title><rect x="39.8258%" y="645" width="0.2057%" height="15" fill="rgb(248,12,46)" fg:x="8324" fg:w="43"/><text x="40.0758%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.09%)</title><rect x="39.9407%" y="629" width="0.0909%" height="15" fill="rgb(234,18,0)" fg:x="8348" fg:w="19"/><text x="40.1907%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="39.9407%" y="613" width="0.0909%" height="15" fill="rgb(238,197,14)" fg:x="8348" fg:w="19"/><text x="40.1907%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="39.9407%" y="597" width="0.0909%" height="15" fill="rgb(251,162,48)" fg:x="8348" fg:w="19"/><text x="40.1907%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="39.9407%" y="581" width="0.0909%" height="15" fill="rgb(237,73,42)" fg:x="8348" fg:w="19"/><text x="40.1907%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="39.9933%" y="565" width="0.0383%" height="15" fill="rgb(211,108,8)" fg:x="8359" fg:w="8"/><text x="40.2433%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="39.9933%" y="549" width="0.0383%" height="15" fill="rgb(213,45,22)" fg:x="8359" fg:w="8"/><text x="40.2433%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="39.9933%" y="533" width="0.0383%" height="15" fill="rgb(252,154,5)" fg:x="8359" fg:w="8"/><text x="40.2433%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="39.9933%" y="517" width="0.0383%" height="15" fill="rgb(221,79,52)" fg:x="8359" fg:w="8"/><text x="40.2433%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="39.9933%" y="501" width="0.0383%" height="15" fill="rgb(229,220,36)" fg:x="8359" fg:w="8"/><text x="40.2433%" y="511.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="40.0124%" y="485" width="0.0191%" height="15" fill="rgb(211,17,16)" fg:x="8363" fg:w="4"/><text x="40.2624%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="40.0124%" y="469" width="0.0191%" height="15" fill="rgb(222,55,31)" fg:x="8363" fg:w="4"/><text x="40.2624%" y="479.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="40.0124%" y="453" width="0.0191%" height="15" fill="rgb(221,221,31)" fg:x="8363" fg:w="4"/><text x="40.2624%" y="463.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="40.0124%" y="437" width="0.0191%" height="15" fill="rgb(227,168,26)" fg:x="8363" fg:w="4"/><text x="40.2624%" y="447.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.0364%" y="693" width="0.0144%" height="15" fill="rgb(224,139,9)" fg:x="8368" fg:w="3"/><text x="40.2864%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.0364%" y="677" width="0.0144%" height="15" fill="rgb(254,172,0)" fg:x="8368" fg:w="3"/><text x="40.2864%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.0364%" y="661" width="0.0144%" height="15" fill="rgb(235,203,1)" fg:x="8368" fg:w="3"/><text x="40.2864%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (161 samples, 0.77%)</title><rect x="39.2900%" y="821" width="0.7703%" height="15" fill="rgb(216,205,24)" fg:x="8212" fg:w="161"/><text x="39.5400%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (148 samples, 0.71%)</title><rect x="39.3522%" y="805" width="0.7081%" height="15" fill="rgb(233,24,6)" fg:x="8225" fg:w="148"/><text x="39.6022%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (148 samples, 0.71%)</title><rect x="39.3522%" y="789" width="0.7081%" height="15" fill="rgb(244,110,9)" fg:x="8225" fg:w="148"/><text x="39.6022%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="40.0316%" y="773" width="0.0287%" height="15" fill="rgb(239,222,42)" fg:x="8367" fg:w="6"/><text x="40.2816%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="40.0316%" y="757" width="0.0287%" height="15" fill="rgb(218,145,13)" fg:x="8367" fg:w="6"/><text x="40.2816%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="40.0316%" y="741" width="0.0287%" height="15" fill="rgb(207,69,11)" fg:x="8367" fg:w="6"/><text x="40.2816%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="40.0364%" y="725" width="0.0239%" height="15" fill="rgb(220,223,22)" fg:x="8368" fg:w="5"/><text x="40.2864%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="40.0364%" y="709" width="0.0239%" height="15" fill="rgb(245,102,5)" fg:x="8368" fg:w="5"/><text x="40.2864%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="40.0938%" y="661" width="0.0191%" height="15" fill="rgb(211,148,2)" fg:x="8380" fg:w="4"/><text x="40.3438%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="40.0938%" y="709" width="0.0239%" height="15" fill="rgb(241,13,44)" fg:x="8380" fg:w="5"/><text x="40.3438%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="40.0938%" y="693" width="0.0239%" height="15" fill="rgb(219,137,21)" fg:x="8380" fg:w="5"/><text x="40.3438%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="40.0938%" y="677" width="0.0239%" height="15" fill="rgb(242,206,5)" fg:x="8380" fg:w="5"/><text x="40.3438%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.1225%" y="645" width="0.0144%" height="15" fill="rgb(217,114,22)" fg:x="8386" fg:w="3"/><text x="40.3725%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="40.0842%" y="757" width="0.0670%" height="15" fill="rgb(253,206,42)" fg:x="8378" fg:w="14"/><text x="40.3342%" y="767.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="40.0938%" y="741" width="0.0574%" height="15" fill="rgb(236,102,18)" fg:x="8380" fg:w="12"/><text x="40.3438%" y="751.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="40.0938%" y="725" width="0.0574%" height="15" fill="rgb(208,59,49)" fg:x="8380" fg:w="12"/><text x="40.3438%" y="735.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="40.1177%" y="709" width="0.0335%" height="15" fill="rgb(215,194,28)" fg:x="8385" fg:w="7"/><text x="40.3677%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="40.1177%" y="693" width="0.0335%" height="15" fill="rgb(243,207,11)" fg:x="8385" fg:w="7"/><text x="40.3677%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="40.1225%" y="677" width="0.0287%" height="15" fill="rgb(254,179,35)" fg:x="8386" fg:w="6"/><text x="40.3725%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="40.1225%" y="661" width="0.0287%" height="15" fill="rgb(235,97,3)" fg:x="8386" fg:w="6"/><text x="40.3725%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="40.1368%" y="645" width="0.0144%" height="15" fill="rgb(215,155,33)" fg:x="8389" fg:w="3"/><text x="40.3868%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.1368%" y="629" width="0.0144%" height="15" fill="rgb(223,128,12)" fg:x="8389" fg:w="3"/><text x="40.3868%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="40.1512%" y="757" width="0.0191%" height="15" fill="rgb(208,157,18)" fg:x="8392" fg:w="4"/><text x="40.4012%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="40.1512%" y="741" width="0.0191%" height="15" fill="rgb(249,70,54)" fg:x="8392" fg:w="4"/><text x="40.4012%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="40.1703%" y="629" width="0.0335%" height="15" fill="rgb(244,118,24)" fg:x="8396" fg:w="7"/><text x="40.4203%" y="639.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="40.1799%" y="613" width="0.0239%" height="15" fill="rgb(211,54,0)" fg:x="8398" fg:w="5"/><text x="40.4299%" y="623.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="40.1799%" y="597" width="0.0239%" height="15" fill="rgb(245,137,45)" fg:x="8398" fg:w="5"/><text x="40.4299%" y="607.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="40.1895%" y="581" width="0.0144%" height="15" fill="rgb(232,154,31)" fg:x="8400" fg:w="3"/><text x="40.4395%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.1895%" y="565" width="0.0144%" height="15" fill="rgb(253,6,39)" fg:x="8400" fg:w="3"/><text x="40.4395%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.1895%" y="549" width="0.0144%" height="15" fill="rgb(234,183,24)" fg:x="8400" fg:w="3"/><text x="40.4395%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.1895%" y="533" width="0.0144%" height="15" fill="rgb(252,84,40)" fg:x="8400" fg:w="3"/><text x="40.4395%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.2086%" y="565" width="0.0144%" height="15" fill="rgb(224,65,2)" fg:x="8404" fg:w="3"/><text x="40.4586%" y="575.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.2086%" y="549" width="0.0144%" height="15" fill="rgb(229,38,24)" fg:x="8404" fg:w="3"/><text x="40.4586%" y="559.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.2086%" y="533" width="0.0144%" height="15" fill="rgb(218,131,50)" fg:x="8404" fg:w="3"/><text x="40.4586%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (16 samples, 0.08%)</title><rect x="40.1703%" y="677" width="0.0766%" height="15" fill="rgb(233,106,18)" fg:x="8396" fg:w="16"/><text x="40.4203%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (16 samples, 0.08%)</title><rect x="40.1703%" y="661" width="0.0766%" height="15" fill="rgb(220,216,11)" fg:x="8396" fg:w="16"/><text x="40.4203%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (16 samples, 0.08%)</title><rect x="40.1703%" y="645" width="0.0766%" height="15" fill="rgb(251,100,45)" fg:x="8396" fg:w="16"/><text x="40.4203%" y="655.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="40.2038%" y="629" width="0.0431%" height="15" fill="rgb(235,143,32)" fg:x="8403" fg:w="9"/><text x="40.4538%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.2038%" y="613" width="0.0431%" height="15" fill="rgb(248,124,34)" fg:x="8403" fg:w="9"/><text x="40.4538%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="40.2086%" y="597" width="0.0383%" height="15" fill="rgb(225,221,4)" fg:x="8404" fg:w="8"/><text x="40.4586%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="40.2086%" y="581" width="0.0383%" height="15" fill="rgb(242,27,43)" fg:x="8404" fg:w="8"/><text x="40.4586%" y="591.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="40.2230%" y="565" width="0.0239%" height="15" fill="rgb(227,54,8)" fg:x="8407" fg:w="5"/><text x="40.4730%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="40.2230%" y="549" width="0.0239%" height="15" fill="rgb(253,139,49)" fg:x="8407" fg:w="5"/><text x="40.4730%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="40.2230%" y="533" width="0.0239%" height="15" fill="rgb(231,26,43)" fg:x="8407" fg:w="5"/><text x="40.4730%" y="543.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="40.2230%" y="517" width="0.0239%" height="15" fill="rgb(207,121,39)" fg:x="8407" fg:w="5"/><text x="40.4730%" y="527.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="40.2230%" y="501" width="0.0239%" height="15" fill="rgb(223,101,35)" fg:x="8407" fg:w="5"/><text x="40.4730%" y="511.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="40.2325%" y="485" width="0.0144%" height="15" fill="rgb(232,87,23)" fg:x="8409" fg:w="3"/><text x="40.4825%" y="495.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="40.2325%" y="469" width="0.0144%" height="15" fill="rgb(225,180,29)" fg:x="8409" fg:w="3"/><text x="40.4825%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.2325%" y="453" width="0.0144%" height="15" fill="rgb(225,25,17)" fg:x="8409" fg:w="3"/><text x="40.4825%" y="463.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.2325%" y="437" width="0.0144%" height="15" fill="rgb(223,8,52)" fg:x="8409" fg:w="3"/><text x="40.4825%" y="447.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.2325%" y="421" width="0.0144%" height="15" fill="rgb(246,42,21)" fg:x="8409" fg:w="3"/><text x="40.4825%" y="431.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (43 samples, 0.21%)</title><rect x="40.0603%" y="821" width="0.2057%" height="15" fill="rgb(205,64,43)" fg:x="8373" fg:w="43"/><text x="40.3103%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (43 samples, 0.21%)</title><rect x="40.0603%" y="805" width="0.2057%" height="15" fill="rgb(221,160,13)" fg:x="8373" fg:w="43"/><text x="40.3103%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (38 samples, 0.18%)</title><rect x="40.0842%" y="789" width="0.1818%" height="15" fill="rgb(239,58,35)" fg:x="8378" fg:w="38"/><text x="40.3342%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (38 samples, 0.18%)</title><rect x="40.0842%" y="773" width="0.1818%" height="15" fill="rgb(251,26,40)" fg:x="8378" fg:w="38"/><text x="40.3342%" y="783.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (20 samples, 0.10%)</title><rect x="40.1703%" y="757" width="0.0957%" height="15" fill="rgb(247,0,4)" fg:x="8396" fg:w="20"/><text x="40.4203%" y="767.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (20 samples, 0.10%)</title><rect x="40.1703%" y="741" width="0.0957%" height="15" fill="rgb(218,130,10)" fg:x="8396" fg:w="20"/><text x="40.4203%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="40.1703%" y="725" width="0.0957%" height="15" fill="rgb(239,32,7)" fg:x="8396" fg:w="20"/><text x="40.4203%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="40.1703%" y="709" width="0.0957%" height="15" fill="rgb(210,192,24)" fg:x="8396" fg:w="20"/><text x="40.4203%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="40.1703%" y="693" width="0.0957%" height="15" fill="rgb(226,212,17)" fg:x="8396" fg:w="20"/><text x="40.4203%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="40.2469%" y="677" width="0.0191%" height="15" fill="rgb(219,201,28)" fg:x="8412" fg:w="4"/><text x="40.4969%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="40.2469%" y="661" width="0.0191%" height="15" fill="rgb(235,207,41)" fg:x="8412" fg:w="4"/><text x="40.4969%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="40.2469%" y="645" width="0.0191%" height="15" fill="rgb(241,95,54)" fg:x="8412" fg:w="4"/><text x="40.4969%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="40.2469%" y="629" width="0.0191%" height="15" fill="rgb(248,12,23)" fg:x="8412" fg:w="4"/><text x="40.4969%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="40.2804%" y="693" width="0.0431%" height="15" fill="rgb(228,173,4)" fg:x="8419" fg:w="9"/><text x="40.5304%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="40.3043%" y="677" width="0.0191%" height="15" fill="rgb(254,99,5)" fg:x="8424" fg:w="4"/><text x="40.5543%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="40.3043%" y="661" width="0.0191%" height="15" fill="rgb(212,184,17)" fg:x="8424" fg:w="4"/><text x="40.5543%" y="671.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (7 samples, 0.03%)</title><rect x="40.3234%" y="693" width="0.0335%" height="15" fill="rgb(252,174,1)" fg:x="8428" fg:w="7"/><text x="40.5734%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="40.3234%" y="677" width="0.0335%" height="15" fill="rgb(241,118,51)" fg:x="8428" fg:w="7"/><text x="40.5734%" y="687.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="40.3378%" y="661" width="0.0191%" height="15" fill="rgb(227,94,47)" fg:x="8431" fg:w="4"/><text x="40.5878%" y="671.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="40.3378%" y="645" width="0.0191%" height="15" fill="rgb(229,104,2)" fg:x="8431" fg:w="4"/><text x="40.5878%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="40.2756%" y="741" width="0.0909%" height="15" fill="rgb(219,28,31)" fg:x="8418" fg:w="19"/><text x="40.5256%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="40.2804%" y="725" width="0.0861%" height="15" fill="rgb(233,109,36)" fg:x="8419" fg:w="18"/><text x="40.5304%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="40.2804%" y="709" width="0.0861%" height="15" fill="rgb(246,88,11)" fg:x="8419" fg:w="18"/><text x="40.5304%" y="719.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="40.3665%" y="741" width="0.0239%" height="15" fill="rgb(209,212,17)" fg:x="8437" fg:w="5"/><text x="40.6165%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="40.3665%" y="725" width="0.0239%" height="15" fill="rgb(243,59,29)" fg:x="8437" fg:w="5"/><text x="40.6165%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.3761%" y="709" width="0.0144%" height="15" fill="rgb(244,205,48)" fg:x="8439" fg:w="3"/><text x="40.6261%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.3761%" y="693" width="0.0144%" height="15" fill="rgb(227,30,6)" fg:x="8439" fg:w="3"/><text x="40.6261%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.4000%" y="613" width="0.0144%" height="15" fill="rgb(220,205,48)" fg:x="8444" fg:w="3"/><text x="40.6500%" y="623.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.4000%" y="597" width="0.0144%" height="15" fill="rgb(250,94,14)" fg:x="8444" fg:w="3"/><text x="40.6500%" y="607.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.4000%" y="581" width="0.0144%" height="15" fill="rgb(216,119,42)" fg:x="8444" fg:w="3"/><text x="40.6500%" y="591.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="40.4000%" y="661" width="0.0335%" height="15" fill="rgb(232,155,0)" fg:x="8444" fg:w="7"/><text x="40.6500%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="40.4000%" y="645" width="0.0335%" height="15" fill="rgb(212,24,32)" fg:x="8444" fg:w="7"/><text x="40.6500%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="40.4000%" y="629" width="0.0335%" height="15" fill="rgb(216,69,20)" fg:x="8444" fg:w="7"/><text x="40.6500%" y="639.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="40.4143%" y="613" width="0.0191%" height="15" fill="rgb(229,73,31)" fg:x="8447" fg:w="4"/><text x="40.6643%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="40.4143%" y="597" width="0.0191%" height="15" fill="rgb(224,219,20)" fg:x="8447" fg:w="4"/><text x="40.6643%" y="607.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="40.4143%" y="581" width="0.0191%" height="15" fill="rgb(215,146,41)" fg:x="8447" fg:w="4"/><text x="40.6643%" y="591.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="40.4143%" y="565" width="0.0191%" height="15" fill="rgb(244,71,31)" fg:x="8447" fg:w="4"/><text x="40.6643%" y="575.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (38 samples, 0.18%)</title><rect x="40.2660%" y="805" width="0.1818%" height="15" fill="rgb(224,24,11)" fg:x="8416" fg:w="38"/><text x="40.5160%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (38 samples, 0.18%)</title><rect x="40.2660%" y="789" width="0.1818%" height="15" fill="rgb(229,76,15)" fg:x="8416" fg:w="38"/><text x="40.5160%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (36 samples, 0.17%)</title><rect x="40.2756%" y="773" width="0.1722%" height="15" fill="rgb(209,93,2)" fg:x="8418" fg:w="36"/><text x="40.5256%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (36 samples, 0.17%)</title><rect x="40.2756%" y="757" width="0.1722%" height="15" fill="rgb(216,200,50)" fg:x="8418" fg:w="36"/><text x="40.5256%" y="767.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.06%)</title><rect x="40.3904%" y="741" width="0.0574%" height="15" fill="rgb(211,67,34)" fg:x="8442" fg:w="12"/><text x="40.6404%" y="751.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.06%)</title><rect x="40.3904%" y="725" width="0.0574%" height="15" fill="rgb(225,87,47)" fg:x="8442" fg:w="12"/><text x="40.6404%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="40.3904%" y="709" width="0.0574%" height="15" fill="rgb(217,185,16)" fg:x="8442" fg:w="12"/><text x="40.6404%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="40.4000%" y="693" width="0.0478%" height="15" fill="rgb(205,0,0)" fg:x="8444" fg:w="10"/><text x="40.6500%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="40.4000%" y="677" width="0.0478%" height="15" fill="rgb(207,116,45)" fg:x="8444" fg:w="10"/><text x="40.6500%" y="687.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="40.4335%" y="661" width="0.0144%" height="15" fill="rgb(221,156,26)" fg:x="8451" fg:w="3"/><text x="40.6835%" y="671.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="40.4335%" y="645" width="0.0144%" height="15" fill="rgb(213,140,4)" fg:x="8451" fg:w="3"/><text x="40.6835%" y="655.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.4335%" y="629" width="0.0144%" height="15" fill="rgb(231,224,15)" fg:x="8451" fg:w="3"/><text x="40.6835%" y="639.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (930 samples, 4.45%)</title><rect x="36.0270%" y="965" width="4.4495%" height="15" fill="rgb(244,76,20)" fg:x="7530" fg:w="930"/><text x="36.2770%" y="975.50">&lt;rayo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (930 samples, 4.45%)</title><rect x="36.0270%" y="949" width="4.4495%" height="15" fill="rgb(238,117,7)" fg:x="7530" fg:w="930"/><text x="36.2770%" y="959.50">rayon..</text></g><g><title>rayon_core::registry::in_worker (914 samples, 4.37%)</title><rect x="36.1035%" y="933" width="4.3730%" height="15" fill="rgb(235,1,10)" fg:x="7546" fg:w="914"/><text x="36.3535%" y="943.50">rayon..</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (914 samples, 4.37%)</title><rect x="36.1035%" y="917" width="4.3730%" height="15" fill="rgb(216,165,6)" fg:x="7546" fg:w="914"/><text x="36.3535%" y="927.50">_ZN10..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (252 samples, 1.21%)</title><rect x="39.2708%" y="901" width="1.2057%" height="15" fill="rgb(246,91,35)" fg:x="8208" fg:w="252"/><text x="39.5208%" y="911.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (252 samples, 1.21%)</title><rect x="39.2708%" y="885" width="1.2057%" height="15" fill="rgb(228,96,24)" fg:x="8208" fg:w="252"/><text x="39.5208%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (252 samples, 1.21%)</title><rect x="39.2708%" y="869" width="1.2057%" height="15" fill="rgb(254,217,53)" fg:x="8208" fg:w="252"/><text x="39.5208%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (248 samples, 1.19%)</title><rect x="39.2900%" y="853" width="1.1865%" height="15" fill="rgb(209,60,0)" fg:x="8212" fg:w="248"/><text x="39.5400%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (248 samples, 1.19%)</title><rect x="39.2900%" y="837" width="1.1865%" height="15" fill="rgb(250,93,26)" fg:x="8212" fg:w="248"/><text x="39.5400%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (44 samples, 0.21%)</title><rect x="40.2660%" y="821" width="0.2105%" height="15" fill="rgb(211,9,40)" fg:x="8416" fg:w="44"/><text x="40.5160%" y="831.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="40.4526%" y="805" width="0.0239%" height="15" fill="rgb(242,57,20)" fg:x="8455" fg:w="5"/><text x="40.7026%" y="815.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="40.4526%" y="789" width="0.0239%" height="15" fill="rgb(248,85,48)" fg:x="8455" fg:w="5"/><text x="40.7026%" y="799.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="40.4526%" y="773" width="0.0239%" height="15" fill="rgb(212,117,2)" fg:x="8455" fg:w="5"/><text x="40.7026%" y="783.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="40.4526%" y="757" width="0.0239%" height="15" fill="rgb(243,19,3)" fg:x="8455" fg:w="5"/><text x="40.7026%" y="767.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="40.4526%" y="741" width="0.0239%" height="15" fill="rgb(232,217,24)" fg:x="8455" fg:w="5"/><text x="40.7026%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6,661 samples, 31.87%)</title><rect x="8.6120%" y="1029" width="31.8693%" height="15" fill="rgb(224,175,40)" fg:x="1800" fg:w="6661"/><text x="8.8620%" y="1039.50">rayon::iter::plumbing::bridge_producer_consumer::hel..</text></g><g><title>rayon_core::registry::in_worker (6,650 samples, 31.82%)</title><rect x="8.6647%" y="1013" width="31.8167%" height="15" fill="rgb(212,162,32)" fg:x="1811" fg:w="6650"/><text x="8.9147%" y="1023.50">rayon_core::registry::in_worker</text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hfe06f8671f01f1c1E.llvm.8237650543137746647 (5,779 samples, 27.65%)</title><rect x="12.8319%" y="997" width="27.6494%" height="15" fill="rgb(215,9,4)" fg:x="2682" fg:w="5779"/><text x="13.0819%" y="1007.50">_ZN10rayon_core4join12join_context28_$u7b$$u..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (931 samples, 4.45%)</title><rect x="36.0270%" y="981" width="4.4543%" height="15" fill="rgb(242,42,7)" fg:x="7530" fg:w="931"/><text x="36.2770%" y="991.50">rayon..</text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="40.5627%" y="917" width="0.0144%" height="15" fill="rgb(242,184,45)" fg:x="8478" fg:w="3"/><text x="40.8127%" y="927.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="40.5627%" y="901" width="0.0144%" height="15" fill="rgb(228,111,51)" fg:x="8478" fg:w="3"/><text x="40.8127%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.5627%" y="885" width="0.0144%" height="15" fill="rgb(236,147,17)" fg:x="8478" fg:w="3"/><text x="40.8127%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="40.5483%" y="949" width="0.0478%" height="15" fill="rgb(210,75,22)" fg:x="8475" fg:w="10"/><text x="40.7983%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="40.5627%" y="933" width="0.0335%" height="15" fill="rgb(217,159,45)" fg:x="8478" fg:w="7"/><text x="40.8127%" y="943.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (4 samples, 0.02%)</title><rect x="40.5770%" y="917" width="0.0191%" height="15" fill="rgb(245,165,53)" fg:x="8481" fg:w="4"/><text x="40.8270%" y="927.50"></text></g><g><title>_ZN10rayon_core5sleep5Sleep20wake_specific_thread17hd1e277363f658c0fE.llvm.15756283938292969533 (4 samples, 0.02%)</title><rect x="40.5770%" y="901" width="0.0191%" height="15" fill="rgb(251,190,50)" fg:x="8481" fg:w="4"/><text x="40.8270%" y="911.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (4 samples, 0.02%)</title><rect x="40.5770%" y="885" width="0.0191%" height="15" fill="rgb(208,203,29)" fg:x="8481" fg:w="4"/><text x="40.8270%" y="895.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="40.5770%" y="869" width="0.0191%" height="15" fill="rgb(207,209,35)" fg:x="8481" fg:w="4"/><text x="40.8270%" y="879.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="40.5770%" y="853" width="0.0191%" height="15" fill="rgb(230,144,49)" fg:x="8481" fg:w="4"/><text x="40.8270%" y="863.50"></text></g><g><title>rayon::slice::quicksort::recurse (13 samples, 0.06%)</title><rect x="40.5435%" y="965" width="0.0622%" height="15" fill="rgb(229,31,6)" fg:x="8474" fg:w="13"/><text x="40.7935%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="40.6153%" y="949" width="0.0144%" height="15" fill="rgb(251,129,24)" fg:x="8489" fg:w="3"/><text x="40.8653%" y="959.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="40.6153%" y="933" width="0.0144%" height="15" fill="rgb(235,105,15)" fg:x="8489" fg:w="3"/><text x="40.8653%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (28 samples, 0.13%)</title><rect x="40.5435%" y="981" width="0.1340%" height="15" fill="rgb(216,52,43)" fg:x="8474" fg:w="28"/><text x="40.7935%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (13 samples, 0.06%)</title><rect x="40.6153%" y="965" width="0.0622%" height="15" fill="rgb(238,144,41)" fg:x="8489" fg:w="13"/><text x="40.8653%" y="975.50"></text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (10 samples, 0.05%)</title><rect x="40.6296%" y="949" width="0.0478%" height="15" fill="rgb(243,63,9)" fg:x="8492" fg:w="10"/><text x="40.8796%" y="959.50"></text></g><g><title>_ZN10rayon_core5sleep5Sleep20wake_specific_thread17hd1e277363f658c0fE.llvm.15756283938292969533 (10 samples, 0.05%)</title><rect x="40.6296%" y="933" width="0.0478%" height="15" fill="rgb(246,208,1)" fg:x="8492" fg:w="10"/><text x="40.8796%" y="943.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (10 samples, 0.05%)</title><rect x="40.6296%" y="917" width="0.0478%" height="15" fill="rgb(233,182,18)" fg:x="8492" fg:w="10"/><text x="40.8796%" y="927.50"></text></g><g><title>std::sys::unix::futex::futex_wait (10 samples, 0.05%)</title><rect x="40.6296%" y="901" width="0.0478%" height="15" fill="rgb(242,224,8)" fg:x="8492" fg:w="10"/><text x="40.8796%" y="911.50"></text></g><g><title>syscall (10 samples, 0.05%)</title><rect x="40.6296%" y="885" width="0.0478%" height="15" fill="rgb(243,54,37)" fg:x="8492" fg:w="10"/><text x="40.8796%" y="895.50"></text></g><g><title>rayon::slice::quicksort::recurse (31 samples, 0.15%)</title><rect x="40.5387%" y="997" width="0.1483%" height="15" fill="rgb(233,192,12)" fg:x="8473" fg:w="31"/><text x="40.7887%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="40.6918%" y="949" width="0.0144%" height="15" fill="rgb(251,192,53)" fg:x="8505" fg:w="3"/><text x="40.9418%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="40.6918%" y="981" width="0.0191%" height="15" fill="rgb(246,141,26)" fg:x="8505" fg:w="4"/><text x="40.9418%" y="991.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="40.6918%" y="965" width="0.0191%" height="15" fill="rgb(239,195,19)" fg:x="8505" fg:w="4"/><text x="40.9418%" y="975.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="40.7110%" y="933" width="0.0191%" height="15" fill="rgb(241,16,39)" fg:x="8509" fg:w="4"/><text x="40.9610%" y="943.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="40.7110%" y="917" width="0.0191%" height="15" fill="rgb(223,13,53)" fg:x="8509" fg:w="4"/><text x="40.9610%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h6dee6d8090a27371E.llvm.8237650543137746647 (41 samples, 0.20%)</title><rect x="40.5387%" y="1013" width="0.1962%" height="15" fill="rgb(214,227,0)" fg:x="8473" fg:w="41"/><text x="40.7887%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (9 samples, 0.04%)</title><rect x="40.6918%" y="997" width="0.0431%" height="15" fill="rgb(228,103,26)" fg:x="8505" fg:w="9"/><text x="40.9418%" y="1007.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="40.7110%" y="981" width="0.0239%" height="15" fill="rgb(254,177,53)" fg:x="8509" fg:w="5"/><text x="40.9610%" y="991.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="40.7110%" y="965" width="0.0239%" height="15" fill="rgb(208,201,34)" fg:x="8509" fg:w="5"/><text x="40.9610%" y="975.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="40.7110%" y="949" width="0.0239%" height="15" fill="rgb(212,39,5)" fg:x="8509" fg:w="5"/><text x="40.9610%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7,343 samples, 35.13%)</title><rect x="5.6170%" y="1045" width="35.1323%" height="15" fill="rgb(246,117,3)" fg:x="1174" fg:w="7343"/><text x="5.8670%" y="1055.50">&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job..</text></g><g><title>rayon::slice::quicksort::recurse (56 samples, 0.27%)</title><rect x="40.4813%" y="1029" width="0.2679%" height="15" fill="rgb(244,118,39)" fg:x="8461" fg:w="56"/><text x="40.7313%" y="1039.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="40.7349%" y="1013" width="0.0144%" height="15" fill="rgb(241,64,10)" fg:x="8514" fg:w="3"/><text x="40.9849%" y="1023.50"></text></g><g><title>_ZN15crossbeam_epoch8internal6Global11try_advance17hc5c2d2a7bbd69d62E.llvm.5682719666558062417 (3 samples, 0.01%)</title><rect x="40.8019%" y="965" width="0.0144%" height="15" fill="rgb(229,39,44)" fg:x="8528" fg:w="3"/><text x="41.0519%" y="975.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (15 samples, 0.07%)</title><rect x="40.7492%" y="1029" width="0.0718%" height="15" fill="rgb(230,226,3)" fg:x="8517" fg:w="15"/><text x="40.9992%" y="1039.50"></text></g><g><title>crossbeam_deque::deque::Stealer&lt;T&gt;::steal (12 samples, 0.06%)</title><rect x="40.7636%" y="1013" width="0.0574%" height="15" fill="rgb(222,13,42)" fg:x="8520" fg:w="12"/><text x="41.0136%" y="1023.50"></text></g><g><title>crossbeam_epoch::default::with_handle (12 samples, 0.06%)</title><rect x="40.7636%" y="997" width="0.0574%" height="15" fill="rgb(247,180,54)" fg:x="8520" fg:w="12"/><text x="41.0136%" y="1007.50"></text></g><g><title>crossbeam_epoch::internal::Global::collect (4 samples, 0.02%)</title><rect x="40.8019%" y="981" width="0.0191%" height="15" fill="rgb(205,96,16)" fg:x="8528" fg:w="4"/><text x="41.0519%" y="991.50"></text></g><g><title>_ZN10rayon_core8registry12WorkerThread9find_work17h465c2510094f8a6dE.llvm.15556414435114607671 (18 samples, 0.09%)</title><rect x="40.7492%" y="1045" width="0.0861%" height="15" fill="rgb(205,100,21)" fg:x="8517" fg:w="18"/><text x="40.9992%" y="1055.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="40.8402%" y="725" width="0.0144%" height="15" fill="rgb(248,51,4)" fg:x="8536" fg:w="3"/><text x="41.0902%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="40.8402%" y="773" width="0.0239%" height="15" fill="rgb(217,197,30)" fg:x="8536" fg:w="5"/><text x="41.0902%" y="783.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="40.8402%" y="757" width="0.0239%" height="15" fill="rgb(240,179,40)" fg:x="8536" fg:w="5"/><text x="41.0902%" y="767.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="40.8402%" y="741" width="0.0239%" height="15" fill="rgb(212,185,35)" fg:x="8536" fg:w="5"/><text x="41.0902%" y="751.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (4 samples, 0.02%)</title><rect x="40.8641%" y="597" width="0.0191%" height="15" fill="rgb(251,222,31)" fg:x="8541" fg:w="4"/><text x="41.1141%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="40.8641%" y="581" width="0.0191%" height="15" fill="rgb(208,140,36)" fg:x="8541" fg:w="4"/><text x="41.1141%" y="591.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (5 samples, 0.02%)</title><rect x="40.8641%" y="629" width="0.0239%" height="15" fill="rgb(220,148,1)" fg:x="8541" fg:w="5"/><text x="41.1141%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5 samples, 0.02%)</title><rect x="40.8641%" y="613" width="0.0239%" height="15" fill="rgb(254,4,28)" fg:x="8541" fg:w="5"/><text x="41.1141%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="40.8402%" y="821" width="0.0622%" height="15" fill="rgb(222,185,44)" fg:x="8536" fg:w="13"/><text x="41.0902%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="40.8402%" y="805" width="0.0622%" height="15" fill="rgb(215,74,39)" fg:x="8536" fg:w="13"/><text x="41.0902%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (13 samples, 0.06%)</title><rect x="40.8402%" y="789" width="0.0622%" height="15" fill="rgb(247,86,4)" fg:x="8536" fg:w="13"/><text x="41.0902%" y="799.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="40.8641%" y="773" width="0.0383%" height="15" fill="rgb(231,105,32)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="783.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="40.8641%" y="757" width="0.0383%" height="15" fill="rgb(222,65,35)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="40.8641%" y="741" width="0.0383%" height="15" fill="rgb(218,145,35)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="40.8641%" y="725" width="0.0383%" height="15" fill="rgb(208,7,15)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (8 samples, 0.04%)</title><rect x="40.8641%" y="709" width="0.0383%" height="15" fill="rgb(209,83,13)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="40.8641%" y="693" width="0.0383%" height="15" fill="rgb(218,3,10)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="40.8641%" y="677" width="0.0383%" height="15" fill="rgb(211,219,4)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (8 samples, 0.04%)</title><rect x="40.8641%" y="661" width="0.0383%" height="15" fill="rgb(228,194,12)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="671.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="40.8641%" y="645" width="0.0383%" height="15" fill="rgb(210,175,7)" fg:x="8541" fg:w="8"/><text x="41.1141%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.8880%" y="629" width="0.0144%" height="15" fill="rgb(243,132,6)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (3 samples, 0.01%)</title><rect x="40.8880%" y="613" width="0.0144%" height="15" fill="rgb(207,72,18)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.8880%" y="597" width="0.0144%" height="15" fill="rgb(236,1,18)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="40.8880%" y="581" width="0.0144%" height="15" fill="rgb(227,0,18)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="40.8880%" y="565" width="0.0144%" height="15" fill="rgb(247,37,5)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="575.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="40.8880%" y="549" width="0.0144%" height="15" fill="rgb(237,179,24)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="40.8880%" y="533" width="0.0144%" height="15" fill="rgb(226,53,20)" fg:x="8546" fg:w="3"/><text x="41.1380%" y="543.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (8 samples, 0.04%)</title><rect x="40.9023%" y="597" width="0.0383%" height="15" fill="rgb(247,75,7)" fg:x="8549" fg:w="8"/><text x="41.1523%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (8 samples, 0.04%)</title><rect x="40.9023%" y="581" width="0.0383%" height="15" fill="rgb(233,96,12)" fg:x="8549" fg:w="8"/><text x="41.1523%" y="591.50"></text></g><g><title>rayon::slice::quicksort::recurse (4 samples, 0.02%)</title><rect x="40.9215%" y="565" width="0.0191%" height="15" fill="rgb(224,125,0)" fg:x="8553" fg:w="4"/><text x="41.1715%" y="575.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (9 samples, 0.04%)</title><rect x="40.9023%" y="629" width="0.0431%" height="15" fill="rgb(224,92,25)" fg:x="8549" fg:w="9"/><text x="41.1523%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (9 samples, 0.04%)</title><rect x="40.9023%" y="613" width="0.0431%" height="15" fill="rgb(224,42,24)" fg:x="8549" fg:w="9"/><text x="41.1523%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="40.9023%" y="645" width="0.0574%" height="15" fill="rgb(234,132,49)" fg:x="8549" fg:w="12"/><text x="41.1523%" y="655.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="40.9454%" y="629" width="0.0144%" height="15" fill="rgb(248,100,35)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="639.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (3 samples, 0.01%)</title><rect x="40.9454%" y="613" width="0.0144%" height="15" fill="rgb(239,94,40)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="623.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.9454%" y="597" width="0.0144%" height="15" fill="rgb(235,139,28)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="607.50"></text></g><g><title>rayon::iter::plumbing::Producer::fold_with (3 samples, 0.01%)</title><rect x="40.9454%" y="581" width="0.0144%" height="15" fill="rgb(217,144,7)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (3 samples, 0.01%)</title><rect x="40.9454%" y="565" width="0.0144%" height="15" fill="rgb(227,55,4)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="575.50"></text></g><g><title>criterion::analysis::compare::estimates::stats (3 samples, 0.01%)</title><rect x="40.9454%" y="549" width="0.0144%" height="15" fill="rgb(252,82,54)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="559.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="40.9454%" y="533" width="0.0144%" height="15" fill="rgb(245,172,4)" fg:x="8558" fg:w="3"/><text x="41.1954%" y="543.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (29 samples, 0.14%)</title><rect x="40.8354%" y="869" width="0.1387%" height="15" fill="rgb(207,26,27)" fg:x="8535" fg:w="29"/><text x="41.0854%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (28 samples, 0.13%)</title><rect x="40.8402%" y="853" width="0.1340%" height="15" fill="rgb(252,98,18)" fg:x="8536" fg:w="28"/><text x="41.0902%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (28 samples, 0.13%)</title><rect x="40.8402%" y="837" width="0.1340%" height="15" fill="rgb(244,8,26)" fg:x="8536" fg:w="28"/><text x="41.0902%" y="847.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="40.9023%" y="821" width="0.0718%" height="15" fill="rgb(237,173,45)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="831.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="40.9023%" y="805" width="0.0718%" height="15" fill="rgb(208,213,49)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="40.9023%" y="789" width="0.0718%" height="15" fill="rgb(212,122,37)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="40.9023%" y="773" width="0.0718%" height="15" fill="rgb(213,80,17)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="40.9023%" y="757" width="0.0718%" height="15" fill="rgb(206,210,43)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="40.9023%" y="741" width="0.0718%" height="15" fill="rgb(229,214,3)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="40.9023%" y="725" width="0.0718%" height="15" fill="rgb(235,213,29)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="40.9023%" y="709" width="0.0718%" height="15" fill="rgb(248,135,26)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="40.9023%" y="693" width="0.0718%" height="15" fill="rgb(242,188,12)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="703.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="40.9023%" y="677" width="0.0718%" height="15" fill="rgb(245,38,12)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="687.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (15 samples, 0.07%)</title><rect x="40.9023%" y="661" width="0.0718%" height="15" fill="rgb(218,42,13)" fg:x="8549" fg:w="15"/><text x="41.1523%" y="671.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="40.9598%" y="645" width="0.0144%" height="15" fill="rgb(238,132,49)" fg:x="8561" fg:w="3"/><text x="41.2098%" y="655.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="40.9598%" y="629" width="0.0144%" height="15" fill="rgb(209,196,19)" fg:x="8561" fg:w="3"/><text x="41.2098%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="40.9598%" y="613" width="0.0144%" height="15" fill="rgb(244,131,22)" fg:x="8561" fg:w="3"/><text x="41.2098%" y="623.50"></text></g><g><title>_ZN83_$LT$rayon_core..job..StackJob$LT$L$C$F$C$R$GT$$u20$as$u20$rayon_core..job..Job$GT$7execute17hf07e8d93b4e703a5E.llvm.3390957521391331889 (34 samples, 0.16%)</title><rect x="40.8354%" y="1045" width="0.1627%" height="15" fill="rgb(223,18,34)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (34 samples, 0.16%)</title><rect x="40.8354%" y="1029" width="0.1627%" height="15" fill="rgb(252,124,54)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="40.8354%" y="1013" width="0.1627%" height="15" fill="rgb(229,106,42)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="40.8354%" y="997" width="0.1627%" height="15" fill="rgb(221,129,1)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (34 samples, 0.16%)</title><rect x="40.8354%" y="981" width="0.1627%" height="15" fill="rgb(229,74,15)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="40.8354%" y="965" width="0.1627%" height="15" fill="rgb(210,206,50)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="40.8354%" y="949" width="0.1627%" height="15" fill="rgb(251,114,31)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (34 samples, 0.16%)</title><rect x="40.8354%" y="933" width="0.1627%" height="15" fill="rgb(215,225,28)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (34 samples, 0.16%)</title><rect x="40.8354%" y="917" width="0.1627%" height="15" fill="rgb(237,109,14)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (34 samples, 0.16%)</title><rect x="40.8354%" y="901" width="0.1627%" height="15" fill="rgb(230,13,37)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17h72c866df3eee24f9E.llvm.3390957521391331889 (34 samples, 0.16%)</title><rect x="40.8354%" y="885" width="0.1627%" height="15" fill="rgb(231,40,28)" fg:x="8535" fg:w="34"/><text x="41.0854%" y="895.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="40.9741%" y="869" width="0.0239%" height="15" fill="rgb(231,202,18)" fg:x="8564" fg:w="5"/><text x="41.2241%" y="879.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (4 samples, 0.02%)</title><rect x="40.9789%" y="853" width="0.0191%" height="15" fill="rgb(225,33,18)" fg:x="8565" fg:w="4"/><text x="41.2289%" y="863.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="40.9789%" y="837" width="0.0191%" height="15" fill="rgb(223,64,47)" fg:x="8565" fg:w="4"/><text x="41.2289%" y="847.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="40.9789%" y="821" width="0.0191%" height="15" fill="rgb(234,114,13)" fg:x="8565" fg:w="4"/><text x="41.2289%" y="831.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="40.9789%" y="805" width="0.0191%" height="15" fill="rgb(248,56,40)" fg:x="8565" fg:w="4"/><text x="41.2289%" y="815.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="40.9789%" y="789" width="0.0191%" height="15" fill="rgb(221,194,21)" fg:x="8565" fg:w="4"/><text x="41.2289%" y="799.50"></text></g><g><title>__sched_yield (5 samples, 0.02%)</title><rect x="40.9980%" y="1045" width="0.0239%" height="15" fill="rgb(242,108,46)" fg:x="8569" fg:w="5"/><text x="41.2480%" y="1055.50"></text></g><g><title>std::sys::unix::futex::futex_wait (228 samples, 1.09%)</title><rect x="41.0315%" y="997" width="1.0909%" height="15" fill="rgb(220,106,10)" fg:x="8576" fg:w="228"/><text x="41.2815%" y="1007.50"></text></g><g><title>syscall (226 samples, 1.08%)</title><rect x="41.0411%" y="981" width="1.0813%" height="15" fill="rgb(211,88,4)" fg:x="8578" fg:w="226"/><text x="41.2911%" y="991.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (235 samples, 1.12%)</title><rect x="41.0220%" y="1045" width="1.1243%" height="15" fill="rgb(214,95,34)" fg:x="8574" fg:w="235"/><text x="41.2720%" y="1055.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (234 samples, 1.12%)</title><rect x="41.0267%" y="1029" width="1.1196%" height="15" fill="rgb(250,160,33)" fg:x="8575" fg:w="234"/><text x="41.2767%" y="1039.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (234 samples, 1.12%)</title><rect x="41.0267%" y="1013" width="1.1196%" height="15" fill="rgb(225,29,10)" fg:x="8575" fg:w="234"/><text x="41.2767%" y="1023.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock (5 samples, 0.02%)</title><rect x="42.1224%" y="997" width="0.0239%" height="15" fill="rgb(224,28,30)" fg:x="8804" fg:w="5"/><text x="42.3724%" y="1007.50"></text></g><g><title>core::sync::atomic::AtomicU32::compare_exchange (5 samples, 0.02%)</title><rect x="42.1224%" y="981" width="0.0239%" height="15" fill="rgb(231,77,4)" fg:x="8804" fg:w="5"/><text x="42.3724%" y="991.50"></text></g><g><title>core::sync::atomic::atomic_compare_exchange (5 samples, 0.02%)</title><rect x="42.1224%" y="965" width="0.0239%" height="15" fill="rgb(209,63,21)" fg:x="8804" fg:w="5"/><text x="42.3724%" y="975.50"></text></g><g><title>[libc.so.6] (7,700 samples, 36.84%)</title><rect x="5.3490%" y="1189" width="36.8403%" height="15" fill="rgb(226,22,11)" fg:x="1118" fg:w="7700"/><text x="5.5990%" y="1199.50">[libc.so.6]</text></g><g><title>[libc.so.6] (7,656 samples, 36.63%)</title><rect x="5.5595%" y="1173" width="36.6298%" height="15" fill="rgb(216,82,30)" fg:x="1162" fg:w="7656"/><text x="5.8095%" y="1183.50">[libc.so.6]</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (7,645 samples, 36.58%)</title><rect x="5.6122%" y="1157" width="36.5772%" height="15" fill="rgb(246,227,38)" fg:x="1173" fg:w="7645"/><text x="5.8622%" y="1167.50">std::sys::unix::thread::Thread::new::thread_start</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (7,645 samples, 36.58%)</title><rect x="5.6122%" y="1141" width="36.5772%" height="15" fill="rgb(251,203,53)" fg:x="1173" fg:w="7645"/><text x="5.8622%" y="1151.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args..</text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (7,645 samples, 36.58%)</title><rect x="5.6122%" y="1125" width="36.5772%" height="15" fill="rgb(254,101,1)" fg:x="1173" fg:w="7645"/><text x="5.8622%" y="1135.50">&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args..</text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (7,645 samples, 36.58%)</title><rect x="5.6122%" y="1109" width="36.5772%" height="15" fill="rgb(241,180,5)" fg:x="1173" fg:w="7645"/><text x="5.8622%" y="1119.50">core::ops::function::FnOnce::call_once{{vtable.shim}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (7,644 samples, 36.57%)</title><rect x="5.6170%" y="1093" width="36.5724%" height="15" fill="rgb(218,168,4)" fg:x="1174" fg:w="7644"/><text x="5.8670%" y="1103.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>rayon_core::registry::ThreadBuilder::run (7,644 samples, 36.57%)</title><rect x="5.6170%" y="1077" width="36.5724%" height="15" fill="rgb(224,223,32)" fg:x="1174" fg:w="7644"/><text x="5.8670%" y="1087.50">rayon_core::registry::ThreadBuilder::run</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7,644 samples, 36.57%)</title><rect x="5.6170%" y="1061" width="36.5724%" height="15" fill="rgb(236,106,22)" fg:x="1174" fg:w="7644"/><text x="5.8670%" y="1071.50">rayon_core::registry::WorkerThread::wait_until_cold</text></g><g><title>rayon_core::sleep::Sleep::wake_any_threads (9 samples, 0.04%)</title><rect x="42.1463%" y="1045" width="0.0431%" height="15" fill="rgb(206,121,5)" fg:x="8809" fg:w="9"/><text x="42.3963%" y="1055.50"></text></g><g><title>_ZN10rayon_core5sleep5Sleep20wake_specific_thread17hd1e277363f658c0fE.llvm.15756283938292969533 (9 samples, 0.04%)</title><rect x="42.1463%" y="1029" width="0.0431%" height="15" fill="rgb(233,87,28)" fg:x="8809" fg:w="9"/><text x="42.3963%" y="1039.50"></text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (9 samples, 0.04%)</title><rect x="42.1463%" y="1013" width="0.0431%" height="15" fill="rgb(236,137,17)" fg:x="8809" fg:w="9"/><text x="42.3963%" y="1023.50"></text></g><g><title>std::sys::unix::futex::futex_wait (9 samples, 0.04%)</title><rect x="42.1463%" y="997" width="0.0431%" height="15" fill="rgb(209,183,38)" fg:x="8809" fg:w="9"/><text x="42.3963%" y="1007.50"></text></g><g><title>syscall (8 samples, 0.04%)</title><rect x="42.1511%" y="981" width="0.0383%" height="15" fill="rgb(206,162,44)" fg:x="8810" fg:w="8"/><text x="42.4011%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.1989%" y="1109" width="0.0144%" height="15" fill="rgb(237,70,39)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.1989%" y="1093" width="0.0144%" height="15" fill="rgb(212,176,5)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.1989%" y="1077" width="0.0144%" height="15" fill="rgb(232,95,16)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1087.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="42.1989%" y="1061" width="0.0144%" height="15" fill="rgb(219,115,35)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.1989%" y="1045" width="0.0144%" height="15" fill="rgb(251,67,27)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.1989%" y="1029" width="0.0144%" height="15" fill="rgb(222,95,40)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.1989%" y="1013" width="0.0144%" height="15" fill="rgb(250,35,16)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="42.1989%" y="997" width="0.0144%" height="15" fill="rgb(224,86,44)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="42.1989%" y="981" width="0.0144%" height="15" fill="rgb(237,53,53)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.1989%" y="965" width="0.0144%" height="15" fill="rgb(208,171,33)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.1989%" y="949" width="0.0144%" height="15" fill="rgb(222,64,27)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.1989%" y="933" width="0.0144%" height="15" fill="rgb(221,121,35)" fg:x="8820" fg:w="3"/><text x="42.4489%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="42.2133%" y="1109" width="0.0144%" height="15" fill="rgb(228,137,42)" fg:x="8823" fg:w="3"/><text x="42.4633%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.2133%" y="1093" width="0.0144%" height="15" fill="rgb(227,54,21)" fg:x="8823" fg:w="3"/><text x="42.4633%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.2133%" y="1077" width="0.0144%" height="15" fill="rgb(240,168,33)" fg:x="8823" fg:w="3"/><text x="42.4633%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.2133%" y="1061" width="0.0144%" height="15" fill="rgb(243,159,6)" fg:x="8823" fg:w="3"/><text x="42.4633%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.2276%" y="1029" width="0.0144%" height="15" fill="rgb(205,211,41)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.2276%" y="1013" width="0.0144%" height="15" fill="rgb(253,30,1)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.2276%" y="997" width="0.0144%" height="15" fill="rgb(226,80,18)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="42.2276%" y="981" width="0.0144%" height="15" fill="rgb(253,156,46)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="42.2276%" y="965" width="0.0144%" height="15" fill="rgb(248,87,27)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.2276%" y="949" width="0.0144%" height="15" fill="rgb(227,122,2)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.2276%" y="933" width="0.0144%" height="15" fill="rgb(229,94,39)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.2276%" y="917" width="0.0144%" height="15" fill="rgb(225,173,31)" fg:x="8826" fg:w="3"/><text x="42.4776%" y="927.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.06%)</title><rect x="42.1989%" y="1173" width="0.0574%" height="15" fill="rgb(239,176,30)" fg:x="8820" fg:w="12"/><text x="42.4489%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="42.1989%" y="1157" width="0.0574%" height="15" fill="rgb(212,104,21)" fg:x="8820" fg:w="12"/><text x="42.4489%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="42.1989%" y="1141" width="0.0574%" height="15" fill="rgb(240,209,40)" fg:x="8820" fg:w="12"/><text x="42.4489%" y="1151.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="42.1989%" y="1125" width="0.0574%" height="15" fill="rgb(234,195,5)" fg:x="8820" fg:w="12"/><text x="42.4489%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="42.2276%" y="1109" width="0.0287%" height="15" fill="rgb(238,213,1)" fg:x="8826" fg:w="6"/><text x="42.4776%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="42.2276%" y="1093" width="0.0287%" height="15" fill="rgb(235,182,54)" fg:x="8826" fg:w="6"/><text x="42.4776%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.2276%" y="1077" width="0.0287%" height="15" fill="rgb(229,50,46)" fg:x="8826" fg:w="6"/><text x="42.4776%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.2276%" y="1061" width="0.0287%" height="15" fill="rgb(219,145,13)" fg:x="8826" fg:w="6"/><text x="42.4776%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.2276%" y="1045" width="0.0287%" height="15" fill="rgb(220,226,10)" fg:x="8826" fg:w="6"/><text x="42.4776%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="42.2707%" y="1045" width="0.0191%" height="15" fill="rgb(248,47,30)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.2707%" y="1029" width="0.0191%" height="15" fill="rgb(231,209,44)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.2707%" y="1013" width="0.0191%" height="15" fill="rgb(209,80,30)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.2707%" y="997" width="0.0191%" height="15" fill="rgb(232,9,14)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.2707%" y="981" width="0.0191%" height="15" fill="rgb(243,91,43)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.2707%" y="965" width="0.0191%" height="15" fill="rgb(231,90,52)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.2707%" y="949" width="0.0191%" height="15" fill="rgb(253,192,44)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="959.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="42.2707%" y="933" width="0.0191%" height="15" fill="rgb(241,66,31)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="943.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="42.2707%" y="917" width="0.0191%" height="15" fill="rgb(235,81,37)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.2707%" y="901" width="0.0191%" height="15" fill="rgb(223,221,9)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.2707%" y="885" width="0.0191%" height="15" fill="rgb(242,180,7)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.2707%" y="869" width="0.0191%" height="15" fill="rgb(243,78,19)" fg:x="8835" fg:w="4"/><text x="42.5207%" y="879.50"></text></g><g><title>[libc.so.6] (8 samples, 0.04%)</title><rect x="42.2564%" y="1173" width="0.0383%" height="15" fill="rgb(233,23,17)" fg:x="8832" fg:w="8"/><text x="42.5064%" y="1183.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (5 samples, 0.02%)</title><rect x="42.2707%" y="1157" width="0.0239%" height="15" fill="rgb(252,122,45)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1167.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (5 samples, 0.02%)</title><rect x="42.2707%" y="1141" width="0.0239%" height="15" fill="rgb(247,108,20)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1151.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (5 samples, 0.02%)</title><rect x="42.2707%" y="1125" width="0.0239%" height="15" fill="rgb(235,84,21)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1135.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (5 samples, 0.02%)</title><rect x="42.2707%" y="1109" width="0.0239%" height="15" fill="rgb(247,129,10)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1119.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (5 samples, 0.02%)</title><rect x="42.2707%" y="1093" width="0.0239%" height="15" fill="rgb(208,173,14)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1103.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (5 samples, 0.02%)</title><rect x="42.2707%" y="1077" width="0.0239%" height="15" fill="rgb(236,31,38)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="42.2707%" y="1061" width="0.0239%" height="15" fill="rgb(232,65,17)" fg:x="8835" fg:w="5"/><text x="42.5207%" y="1071.50"></text></g><g><title>[libm.so.6] (88 samples, 0.42%)</title><rect x="42.2946%" y="1173" width="0.4210%" height="15" fill="rgb(224,45,49)" fg:x="8840" fg:w="88"/><text x="42.5446%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.7204%" y="837" width="0.0191%" height="15" fill="rgb(225,2,53)" fg:x="8929" fg:w="4"/><text x="42.9704%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.7204%" y="821" width="0.0191%" height="15" fill="rgb(248,210,53)" fg:x="8929" fg:w="4"/><text x="42.9704%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.7204%" y="805" width="0.0191%" height="15" fill="rgb(211,1,30)" fg:x="8929" fg:w="4"/><text x="42.9704%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7204%" y="1061" width="0.0287%" height="15" fill="rgb(224,96,15)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7204%" y="1045" width="0.0287%" height="15" fill="rgb(252,45,11)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7204%" y="1029" width="0.0287%" height="15" fill="rgb(220,125,38)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="1039.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="42.7204%" y="1013" width="0.0287%" height="15" fill="rgb(243,161,33)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="1023.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="42.7204%" y="997" width="0.0287%" height="15" fill="rgb(248,197,34)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7204%" y="981" width="0.0287%" height="15" fill="rgb(228,165,23)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7204%" y="965" width="0.0287%" height="15" fill="rgb(236,94,38)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7204%" y="949" width="0.0287%" height="15" fill="rgb(220,13,23)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7204%" y="933" width="0.0287%" height="15" fill="rgb(234,26,39)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7204%" y="917" width="0.0287%" height="15" fill="rgb(205,117,44)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7204%" y="901" width="0.0287%" height="15" fill="rgb(250,42,2)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7204%" y="885" width="0.0287%" height="15" fill="rgb(223,83,14)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7204%" y="869" width="0.0287%" height="15" fill="rgb(241,147,50)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7204%" y="853" width="0.0287%" height="15" fill="rgb(218,90,6)" fg:x="8929" fg:w="6"/><text x="42.9704%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="42.7204%" y="1109" width="0.0383%" height="15" fill="rgb(210,191,5)" fg:x="8929" fg:w="8"/><text x="42.9704%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="42.7204%" y="1093" width="0.0383%" height="15" fill="rgb(225,139,19)" fg:x="8929" fg:w="8"/><text x="42.9704%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="42.7204%" y="1077" width="0.0383%" height="15" fill="rgb(210,1,33)" fg:x="8929" fg:w="8"/><text x="42.9704%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.7587%" y="1045" width="0.0144%" height="15" fill="rgb(213,50,3)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.7587%" y="1029" width="0.0144%" height="15" fill="rgb(234,227,4)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.7587%" y="1013" width="0.0144%" height="15" fill="rgb(246,63,5)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="42.7587%" y="997" width="0.0144%" height="15" fill="rgb(245,136,27)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="42.7587%" y="981" width="0.0144%" height="15" fill="rgb(247,199,27)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.7587%" y="965" width="0.0144%" height="15" fill="rgb(252,158,49)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.7587%" y="949" width="0.0144%" height="15" fill="rgb(254,73,1)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.7587%" y="933" width="0.0144%" height="15" fill="rgb(248,93,19)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.7587%" y="917" width="0.0144%" height="15" fill="rgb(206,67,5)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.7587%" y="901" width="0.0144%" height="15" fill="rgb(209,210,4)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.7587%" y="885" width="0.0144%" height="15" fill="rgb(214,185,36)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.7587%" y="869" width="0.0144%" height="15" fill="rgb(233,191,26)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.7587%" y="853" width="0.0144%" height="15" fill="rgb(248,94,17)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.7587%" y="837" width="0.0144%" height="15" fill="rgb(250,64,4)" fg:x="8937" fg:w="3"/><text x="43.0087%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.7731%" y="805" width="0.0144%" height="15" fill="rgb(218,41,53)" fg:x="8940" fg:w="3"/><text x="43.0231%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.7731%" y="789" width="0.0144%" height="15" fill="rgb(251,176,28)" fg:x="8940" fg:w="3"/><text x="43.0231%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.7731%" y="773" width="0.0144%" height="15" fill="rgb(247,22,9)" fg:x="8940" fg:w="3"/><text x="43.0231%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.7731%" y="853" width="0.0191%" height="15" fill="rgb(218,201,14)" fg:x="8940" fg:w="4"/><text x="43.0231%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.7731%" y="837" width="0.0191%" height="15" fill="rgb(218,94,10)" fg:x="8940" fg:w="4"/><text x="43.0231%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.7731%" y="821" width="0.0191%" height="15" fill="rgb(222,183,52)" fg:x="8940" fg:w="4"/><text x="43.0231%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (9 samples, 0.04%)</title><rect x="42.7587%" y="1109" width="0.0431%" height="15" fill="rgb(242,140,25)" fg:x="8937" fg:w="9"/><text x="43.0087%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="42.7587%" y="1093" width="0.0431%" height="15" fill="rgb(235,197,38)" fg:x="8937" fg:w="9"/><text x="43.0087%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="42.7587%" y="1077" width="0.0431%" height="15" fill="rgb(237,136,15)" fg:x="8937" fg:w="9"/><text x="43.0087%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="42.7587%" y="1061" width="0.0431%" height="15" fill="rgb(223,44,49)" fg:x="8937" fg:w="9"/><text x="43.0087%" y="1071.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="42.7731%" y="1045" width="0.0287%" height="15" fill="rgb(227,71,15)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7731%" y="1029" width="0.0287%" height="15" fill="rgb(225,153,20)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7731%" y="1013" width="0.0287%" height="15" fill="rgb(210,190,26)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7731%" y="997" width="0.0287%" height="15" fill="rgb(223,147,5)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (6 samples, 0.03%)</title><rect x="42.7731%" y="981" width="0.0287%" height="15" fill="rgb(207,14,23)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (6 samples, 0.03%)</title><rect x="42.7731%" y="965" width="0.0287%" height="15" fill="rgb(211,195,53)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7731%" y="949" width="0.0287%" height="15" fill="rgb(237,75,46)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7731%" y="933" width="0.0287%" height="15" fill="rgb(254,55,14)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7731%" y="917" width="0.0287%" height="15" fill="rgb(230,185,30)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.7731%" y="901" width="0.0287%" height="15" fill="rgb(220,14,11)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.7731%" y="885" width="0.0287%" height="15" fill="rgb(215,169,44)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.7731%" y="869" width="0.0287%" height="15" fill="rgb(253,203,20)" fg:x="8940" fg:w="6"/><text x="43.0231%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (20 samples, 0.10%)</title><rect x="42.7204%" y="1157" width="0.0957%" height="15" fill="rgb(229,225,17)" fg:x="8929" fg:w="20"/><text x="42.9704%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (20 samples, 0.10%)</title><rect x="42.7204%" y="1141" width="0.0957%" height="15" fill="rgb(236,76,26)" fg:x="8929" fg:w="20"/><text x="42.9704%" y="1151.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (20 samples, 0.10%)</title><rect x="42.7204%" y="1125" width="0.0957%" height="15" fill="rgb(234,15,30)" fg:x="8929" fg:w="20"/><text x="42.9704%" y="1135.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="42.8018%" y="1109" width="0.0144%" height="15" fill="rgb(211,113,48)" fg:x="8946" fg:w="3"/><text x="43.0518%" y="1119.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="42.8018%" y="1093" width="0.0144%" height="15" fill="rgb(221,31,36)" fg:x="8946" fg:w="3"/><text x="43.0518%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.8018%" y="1077" width="0.0144%" height="15" fill="rgb(215,118,52)" fg:x="8946" fg:w="3"/><text x="43.0518%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.8018%" y="1061" width="0.0144%" height="15" fill="rgb(241,151,27)" fg:x="8946" fg:w="3"/><text x="43.0518%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.8018%" y="1045" width="0.0144%" height="15" fill="rgb(253,51,3)" fg:x="8946" fg:w="3"/><text x="43.0518%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.8161%" y="901" width="0.0144%" height="15" fill="rgb(216,201,24)" fg:x="8949" fg:w="3"/><text x="43.0661%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.8161%" y="885" width="0.0144%" height="15" fill="rgb(231,107,4)" fg:x="8949" fg:w="3"/><text x="43.0661%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.8161%" y="869" width="0.0144%" height="15" fill="rgb(243,97,54)" fg:x="8949" fg:w="3"/><text x="43.0661%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.8305%" y="789" width="0.0239%" height="15" fill="rgb(221,32,51)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="42.8305%" y="773" width="0.0239%" height="15" fill="rgb(218,171,35)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="42.8305%" y="757" width="0.0239%" height="15" fill="rgb(214,20,53)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="42.8305%" y="741" width="0.0239%" height="15" fill="rgb(239,9,52)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.8305%" y="725" width="0.0239%" height="15" fill="rgb(215,114,45)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="42.8305%" y="709" width="0.0239%" height="15" fill="rgb(208,118,9)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="42.8305%" y="693" width="0.0239%" height="15" fill="rgb(235,7,39)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="42.8305%" y="677" width="0.0239%" height="15" fill="rgb(243,225,15)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="42.8305%" y="661" width="0.0239%" height="15" fill="rgb(225,216,18)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (5 samples, 0.02%)</title><rect x="42.8305%" y="645" width="0.0239%" height="15" fill="rgb(233,36,38)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (5 samples, 0.02%)</title><rect x="42.8305%" y="629" width="0.0239%" height="15" fill="rgb(239,88,23)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="639.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="42.8305%" y="613" width="0.0239%" height="15" fill="rgb(219,181,35)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="42.8305%" y="597" width="0.0239%" height="15" fill="rgb(215,18,46)" fg:x="8952" fg:w="5"/><text x="43.0805%" y="607.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="42.8305%" y="837" width="0.0287%" height="15" fill="rgb(241,38,11)" fg:x="8952" fg:w="6"/><text x="43.0805%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="42.8305%" y="821" width="0.0287%" height="15" fill="rgb(248,169,45)" fg:x="8952" fg:w="6"/><text x="43.0805%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="42.8305%" y="805" width="0.0287%" height="15" fill="rgb(239,50,49)" fg:x="8952" fg:w="6"/><text x="43.0805%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="42.8161%" y="1093" width="0.0526%" height="15" fill="rgb(231,96,31)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="42.8161%" y="1077" width="0.0526%" height="15" fill="rgb(224,193,37)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="42.8161%" y="1061" width="0.0526%" height="15" fill="rgb(227,153,50)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1071.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (11 samples, 0.05%)</title><rect x="42.8161%" y="1045" width="0.0526%" height="15" fill="rgb(249,228,3)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="42.8161%" y="1029" width="0.0526%" height="15" fill="rgb(219,164,43)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="42.8161%" y="1013" width="0.0526%" height="15" fill="rgb(216,45,41)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="42.8161%" y="997" width="0.0526%" height="15" fill="rgb(210,226,51)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (11 samples, 0.05%)</title><rect x="42.8161%" y="981" width="0.0526%" height="15" fill="rgb(209,117,49)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (11 samples, 0.05%)</title><rect x="42.8161%" y="965" width="0.0526%" height="15" fill="rgb(206,196,24)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="42.8161%" y="949" width="0.0526%" height="15" fill="rgb(253,218,3)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="42.8161%" y="933" width="0.0526%" height="15" fill="rgb(252,166,2)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="42.8161%" y="917" width="0.0526%" height="15" fill="rgb(236,218,26)" fg:x="8949" fg:w="11"/><text x="43.0661%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="42.8305%" y="901" width="0.0383%" height="15" fill="rgb(254,84,19)" fg:x="8952" fg:w="8"/><text x="43.0805%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="42.8305%" y="885" width="0.0383%" height="15" fill="rgb(219,137,29)" fg:x="8952" fg:w="8"/><text x="43.0805%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="42.8305%" y="869" width="0.0383%" height="15" fill="rgb(227,47,52)" fg:x="8952" fg:w="8"/><text x="43.0805%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="42.8305%" y="853" width="0.0383%" height="15" fill="rgb(229,167,24)" fg:x="8952" fg:w="8"/><text x="43.0805%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.8688%" y="789" width="0.0144%" height="15" fill="rgb(233,164,1)" fg:x="8960" fg:w="3"/><text x="43.1188%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.8688%" y="773" width="0.0144%" height="15" fill="rgb(218,88,48)" fg:x="8960" fg:w="3"/><text x="43.1188%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.8688%" y="757" width="0.0144%" height="15" fill="rgb(226,214,24)" fg:x="8960" fg:w="3"/><text x="43.1188%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="42.8688%" y="837" width="0.0335%" height="15" fill="rgb(233,29,12)" fg:x="8960" fg:w="7"/><text x="43.1188%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="42.8688%" y="821" width="0.0335%" height="15" fill="rgb(219,120,34)" fg:x="8960" fg:w="7"/><text x="43.1188%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="42.8688%" y="805" width="0.0335%" height="15" fill="rgb(226,78,44)" fg:x="8960" fg:w="7"/><text x="43.1188%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="42.8831%" y="789" width="0.0191%" height="15" fill="rgb(240,15,48)" fg:x="8963" fg:w="4"/><text x="43.1331%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.8831%" y="773" width="0.0191%" height="15" fill="rgb(253,176,7)" fg:x="8963" fg:w="4"/><text x="43.1331%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.8831%" y="757" width="0.0191%" height="15" fill="rgb(206,166,28)" fg:x="8963" fg:w="4"/><text x="43.1331%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.8831%" y="741" width="0.0191%" height="15" fill="rgb(241,53,51)" fg:x="8963" fg:w="4"/><text x="43.1331%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (11 samples, 0.05%)</title><rect x="42.8688%" y="885" width="0.0526%" height="15" fill="rgb(249,112,30)" fg:x="8960" fg:w="11"/><text x="43.1188%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (11 samples, 0.05%)</title><rect x="42.8688%" y="869" width="0.0526%" height="15" fill="rgb(217,85,30)" fg:x="8960" fg:w="11"/><text x="43.1188%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (11 samples, 0.05%)</title><rect x="42.8688%" y="853" width="0.0526%" height="15" fill="rgb(233,49,7)" fg:x="8960" fg:w="11"/><text x="43.1188%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="42.9023%" y="837" width="0.0191%" height="15" fill="rgb(234,109,9)" fg:x="8967" fg:w="4"/><text x="43.1523%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9023%" y="821" width="0.0191%" height="15" fill="rgb(253,95,22)" fg:x="8967" fg:w="4"/><text x="43.1523%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9023%" y="805" width="0.0191%" height="15" fill="rgb(233,176,25)" fg:x="8967" fg:w="4"/><text x="43.1523%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9023%" y="789" width="0.0191%" height="15" fill="rgb(236,33,39)" fg:x="8967" fg:w="4"/><text x="43.1523%" y="799.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="42.8688%" y="1029" width="0.0718%" height="15" fill="rgb(223,226,42)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="42.8688%" y="1013" width="0.0718%" height="15" fill="rgb(216,99,33)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="42.8688%" y="997" width="0.0718%" height="15" fill="rgb(235,84,23)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="42.8688%" y="981" width="0.0718%" height="15" fill="rgb(232,2,27)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 0.07%)</title><rect x="42.8688%" y="965" width="0.0718%" height="15" fill="rgb(241,23,22)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (15 samples, 0.07%)</title><rect x="42.8688%" y="949" width="0.0718%" height="15" fill="rgb(211,73,27)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="42.8688%" y="933" width="0.0718%" height="15" fill="rgb(235,109,49)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="42.8688%" y="917" width="0.0718%" height="15" fill="rgb(230,99,29)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="42.8688%" y="901" width="0.0718%" height="15" fill="rgb(245,199,7)" fg:x="8960" fg:w="15"/><text x="43.1188%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="42.9214%" y="885" width="0.0191%" height="15" fill="rgb(217,179,10)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9214%" y="869" width="0.0191%" height="15" fill="rgb(254,99,47)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9214%" y="853" width="0.0191%" height="15" fill="rgb(251,121,7)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9214%" y="837" width="0.0191%" height="15" fill="rgb(250,177,26)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9214%" y="821" width="0.0191%" height="15" fill="rgb(232,88,15)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9214%" y="805" width="0.0191%" height="15" fill="rgb(251,54,54)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9214%" y="789" width="0.0191%" height="15" fill="rgb(208,177,15)" fg:x="8971" fg:w="4"/><text x="43.1714%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.9405%" y="869" width="0.0144%" height="15" fill="rgb(205,97,32)" fg:x="8975" fg:w="3"/><text x="43.1905%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.9405%" y="853" width="0.0144%" height="15" fill="rgb(217,192,13)" fg:x="8975" fg:w="3"/><text x="43.1905%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.9405%" y="837" width="0.0144%" height="15" fill="rgb(215,163,41)" fg:x="8975" fg:w="3"/><text x="43.1905%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (19 samples, 0.09%)</title><rect x="42.8688%" y="1093" width="0.0909%" height="15" fill="rgb(246,83,29)" fg:x="8960" fg:w="19"/><text x="43.1188%" y="1103.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (19 samples, 0.09%)</title><rect x="42.8688%" y="1077" width="0.0909%" height="15" fill="rgb(219,2,45)" fg:x="8960" fg:w="19"/><text x="43.1188%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (19 samples, 0.09%)</title><rect x="42.8688%" y="1061" width="0.0909%" height="15" fill="rgb(242,215,33)" fg:x="8960" fg:w="19"/><text x="43.1188%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (19 samples, 0.09%)</title><rect x="42.8688%" y="1045" width="0.0909%" height="15" fill="rgb(217,1,6)" fg:x="8960" fg:w="19"/><text x="43.1188%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="42.9405%" y="1029" width="0.0191%" height="15" fill="rgb(207,85,52)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="42.9405%" y="1013" width="0.0191%" height="15" fill="rgb(231,171,19)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9405%" y="997" width="0.0191%" height="15" fill="rgb(207,128,4)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9405%" y="981" width="0.0191%" height="15" fill="rgb(219,208,4)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9405%" y="965" width="0.0191%" height="15" fill="rgb(235,161,42)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="975.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="42.9405%" y="949" width="0.0191%" height="15" fill="rgb(247,218,18)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="959.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="42.9405%" y="933" width="0.0191%" height="15" fill="rgb(232,114,51)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9405%" y="917" width="0.0191%" height="15" fill="rgb(222,95,3)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9405%" y="901" width="0.0191%" height="15" fill="rgb(240,65,29)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9405%" y="885" width="0.0191%" height="15" fill="rgb(249,209,20)" fg:x="8975" fg:w="4"/><text x="43.1905%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (31 samples, 0.15%)</title><rect x="42.8161%" y="1157" width="0.1483%" height="15" fill="rgb(241,48,37)" fg:x="8949" fg:w="31"/><text x="43.0661%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (31 samples, 0.15%)</title><rect x="42.8161%" y="1141" width="0.1483%" height="15" fill="rgb(230,140,42)" fg:x="8949" fg:w="31"/><text x="43.0661%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (31 samples, 0.15%)</title><rect x="42.8161%" y="1125" width="0.1483%" height="15" fill="rgb(230,176,45)" fg:x="8949" fg:w="31"/><text x="43.0661%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (31 samples, 0.15%)</title><rect x="42.8161%" y="1109" width="0.1483%" height="15" fill="rgb(245,112,21)" fg:x="8949" fg:w="31"/><text x="43.0661%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="42.9645%" y="1077" width="0.0191%" height="15" fill="rgb(207,183,35)" fg:x="8980" fg:w="4"/><text x="43.2145%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="42.9645%" y="1061" width="0.0191%" height="15" fill="rgb(227,44,33)" fg:x="8980" fg:w="4"/><text x="43.2145%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="42.9645%" y="1045" width="0.0191%" height="15" fill="rgb(246,120,21)" fg:x="8980" fg:w="4"/><text x="43.2145%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="42.9692%" y="1029" width="0.0144%" height="15" fill="rgb(235,57,52)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="42.9692%" y="1013" width="0.0144%" height="15" fill="rgb(238,84,10)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.9692%" y="997" width="0.0144%" height="15" fill="rgb(251,200,32)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.9692%" y="981" width="0.0144%" height="15" fill="rgb(247,159,13)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.9692%" y="965" width="0.0144%" height="15" fill="rgb(238,64,4)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="42.9692%" y="949" width="0.0144%" height="15" fill="rgb(221,131,51)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="42.9692%" y="933" width="0.0144%" height="15" fill="rgb(242,5,29)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="42.9692%" y="917" width="0.0144%" height="15" fill="rgb(214,130,32)" fg:x="8981" fg:w="3"/><text x="43.2192%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (59 samples, 0.28%)</title><rect x="42.7204%" y="1173" width="0.2823%" height="15" fill="rgb(244,210,16)" fg:x="8929" fg:w="59"/><text x="42.9704%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (8 samples, 0.04%)</title><rect x="42.9645%" y="1157" width="0.0383%" height="15" fill="rgb(234,48,26)" fg:x="8980" fg:w="8"/><text x="43.2145%" y="1167.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="42.9645%" y="1141" width="0.0383%" height="15" fill="rgb(231,82,38)" fg:x="8980" fg:w="8"/><text x="43.2145%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="42.9645%" y="1125" width="0.0383%" height="15" fill="rgb(254,128,41)" fg:x="8980" fg:w="8"/><text x="43.2145%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="42.9645%" y="1109" width="0.0383%" height="15" fill="rgb(212,73,49)" fg:x="8980" fg:w="8"/><text x="43.2145%" y="1119.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="42.9645%" y="1093" width="0.0383%" height="15" fill="rgb(205,62,54)" fg:x="8980" fg:w="8"/><text x="43.2145%" y="1103.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h4cb24fefb0c4a84fE.llvm.15425341036795596644 (3 samples, 0.01%)</title><rect x="43.0027%" y="1173" width="0.0144%" height="15" fill="rgb(228,0,8)" fg:x="8988" fg:w="3"/><text x="43.2527%" y="1183.50"></text></g><g><title>cfree (6 samples, 0.03%)</title><rect x="43.0314%" y="1173" width="0.0287%" height="15" fill="rgb(251,28,17)" fg:x="8994" fg:w="6"/><text x="43.2814%" y="1183.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="43.0697%" y="1061" width="0.0191%" height="15" fill="rgb(238,105,27)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="43.0697%" y="1045" width="0.0191%" height="15" fill="rgb(237,216,33)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="43.0697%" y="1029" width="0.0191%" height="15" fill="rgb(229,228,25)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="43.0697%" y="1013" width="0.0191%" height="15" fill="rgb(233,75,23)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="43.0697%" y="997" width="0.0191%" height="15" fill="rgb(231,207,16)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="43.0697%" y="981" width="0.0191%" height="15" fill="rgb(231,191,45)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="43.0697%" y="965" width="0.0191%" height="15" fill="rgb(224,133,17)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="43.0697%" y="949" width="0.0191%" height="15" fill="rgb(209,178,27)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="43.0697%" y="933" width="0.0191%" height="15" fill="rgb(218,37,11)" fg:x="9002" fg:w="4"/><text x="43.3197%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="43.0745%" y="917" width="0.0144%" height="15" fill="rgb(251,226,25)" fg:x="9003" fg:w="3"/><text x="43.3245%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="43.0745%" y="901" width="0.0144%" height="15" fill="rgb(209,222,27)" fg:x="9003" fg:w="3"/><text x="43.3245%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="43.0745%" y="885" width="0.0144%" height="15" fill="rgb(238,22,21)" fg:x="9003" fg:w="3"/><text x="43.3245%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="43.0745%" y="869" width="0.0144%" height="15" fill="rgb(233,161,25)" fg:x="9003" fg:w="3"/><text x="43.3245%" y="879.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (7 samples, 0.03%)</title><rect x="43.0601%" y="1173" width="0.0335%" height="15" fill="rgb(226,122,53)" fg:x="9000" fg:w="7"/><text x="43.3101%" y="1183.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (7 samples, 0.03%)</title><rect x="43.0601%" y="1157" width="0.0335%" height="15" fill="rgb(220,123,17)" fg:x="9000" fg:w="7"/><text x="43.3101%" y="1167.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (7 samples, 0.03%)</title><rect x="43.0601%" y="1141" width="0.0335%" height="15" fill="rgb(230,224,35)" fg:x="9000" fg:w="7"/><text x="43.3101%" y="1151.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="43.0601%" y="1125" width="0.0335%" height="15" fill="rgb(246,83,8)" fg:x="9000" fg:w="7"/><text x="43.3101%" y="1135.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="43.0601%" y="1109" width="0.0335%" height="15" fill="rgb(230,214,17)" fg:x="9000" fg:w="7"/><text x="43.3101%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="43.0697%" y="1093" width="0.0239%" height="15" fill="rgb(222,97,18)" fg:x="9002" fg:w="5"/><text x="43.3197%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="43.0697%" y="1077" width="0.0239%" height="15" fill="rgb(206,79,1)" fg:x="9002" fg:w="5"/><text x="43.3197%" y="1087.50"></text></g><g><title>core::slice::memchr::memchr_aligned (509 samples, 2.44%)</title><rect x="43.0936%" y="1173" width="2.4353%" height="15" fill="rgb(214,121,34)" fg:x="9007" fg:w="509"/><text x="43.3436%" y="1183.50">co..</text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::align_offset (285 samples, 1.36%)</title><rect x="44.1654%" y="1157" width="1.3636%" height="15" fill="rgb(249,199,46)" fg:x="9231" fg:w="285"/><text x="44.4154%" y="1167.50"></text></g><g><title>core::ptr::align_offset (285 samples, 1.36%)</title><rect x="44.1654%" y="1141" width="1.3636%" height="15" fill="rgb(214,222,46)" fg:x="9231" fg:w="285"/><text x="44.4154%" y="1151.50"></text></g><g><title>day_10::part2 (111 samples, 0.53%)</title><rect x="45.5337%" y="1173" width="0.5311%" height="15" fill="rgb(248,168,30)" fg:x="9517" fg:w="111"/><text x="45.7837%" y="1183.50"></text></g><g><title>exp (208 samples, 1.00%)</title><rect x="46.0648%" y="1173" width="0.9952%" height="15" fill="rgb(226,14,28)" fg:x="9628" fg:w="208"/><text x="46.3148%" y="1183.50"></text></g><g><title>fmodf (3 samples, 0.01%)</title><rect x="47.0599%" y="1173" width="0.0144%" height="15" fill="rgb(253,123,1)" fg:x="9836" fg:w="3"/><text x="47.3099%" y="1183.50"></text></g><g><title>malloc (10 samples, 0.05%)</title><rect x="47.0743%" y="1173" width="0.0478%" height="15" fill="rgb(225,24,42)" fg:x="9839" fg:w="10"/><text x="47.3243%" y="1183.50"></text></g><g><title>oorandom::Rand64::rand_range (30 samples, 0.14%)</title><rect x="47.1221%" y="1173" width="0.1435%" height="15" fill="rgb(216,161,37)" fg:x="9849" fg:w="30"/><text x="47.3721%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.2705%" y="949" width="0.0144%" height="15" fill="rgb(251,164,26)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.2705%" y="933" width="0.0144%" height="15" fill="rgb(219,177,3)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.2705%" y="917" width="0.0144%" height="15" fill="rgb(222,65,0)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.2705%" y="901" width="0.0144%" height="15" fill="rgb(223,69,54)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.2705%" y="885" width="0.0144%" height="15" fill="rgb(235,30,27)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.2705%" y="869" width="0.0144%" height="15" fill="rgb(220,183,50)" fg:x="9880" fg:w="3"/><text x="47.5205%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.2705%" y="1077" width="0.0191%" height="15" fill="rgb(248,198,15)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1087.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.2705%" y="1061" width="0.0191%" height="15" fill="rgb(222,211,4)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1071.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.2705%" y="1045" width="0.0191%" height="15" fill="rgb(214,102,34)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1055.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="47.2705%" y="1029" width="0.0191%" height="15" fill="rgb(245,92,5)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1039.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="47.2705%" y="1013" width="0.0191%" height="15" fill="rgb(252,72,51)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.2705%" y="997" width="0.0191%" height="15" fill="rgb(252,208,19)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="1007.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.2705%" y="981" width="0.0191%" height="15" fill="rgb(211,69,7)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="991.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.2705%" y="965" width="0.0191%" height="15" fill="rgb(211,27,16)" fg:x="9880" fg:w="4"/><text x="47.5205%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.2944%" y="885" width="0.0144%" height="15" fill="rgb(219,216,14)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.2944%" y="869" width="0.0144%" height="15" fill="rgb(219,71,8)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.2944%" y="853" width="0.0144%" height="15" fill="rgb(223,170,53)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="863.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.2944%" y="837" width="0.0144%" height="15" fill="rgb(246,21,26)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.2944%" y="821" width="0.0144%" height="15" fill="rgb(248,20,46)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.2944%" y="805" width="0.0144%" height="15" fill="rgb(252,94,11)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.2944%" y="789" width="0.0144%" height="15" fill="rgb(236,163,8)" fg:x="9885" fg:w="3"/><text x="47.5444%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3087%" y="821" width="0.0144%" height="15" fill="rgb(217,221,45)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3087%" y="805" width="0.0144%" height="15" fill="rgb(238,38,17)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3087%" y="789" width="0.0144%" height="15" fill="rgb(242,210,23)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3087%" y="773" width="0.0144%" height="15" fill="rgb(250,86,53)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3087%" y="757" width="0.0144%" height="15" fill="rgb(223,168,25)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3087%" y="741" width="0.0144%" height="15" fill="rgb(251,189,4)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.3087%" y="725" width="0.0144%" height="15" fill="rgb(245,19,28)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3087%" y="709" width="0.0144%" height="15" fill="rgb(207,10,34)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="719.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="47.3087%" y="693" width="0.0144%" height="15" fill="rgb(235,153,31)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="703.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="47.3087%" y="677" width="0.0144%" height="15" fill="rgb(228,72,37)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="687.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3087%" y="661" width="0.0144%" height="15" fill="rgb(215,15,16)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="671.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="47.3087%" y="645" width="0.0144%" height="15" fill="rgb(250,119,29)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="655.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="47.3087%" y="629" width="0.0144%" height="15" fill="rgb(214,59,1)" fg:x="9888" fg:w="3"/><text x="47.5587%" y="639.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.2944%" y="933" width="0.0431%" height="15" fill="rgb(223,109,25)" fg:x="9885" fg:w="9"/><text x="47.5444%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="47.2944%" y="917" width="0.0431%" height="15" fill="rgb(230,198,22)" fg:x="9885" fg:w="9"/><text x="47.5444%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="47.2944%" y="901" width="0.0431%" height="15" fill="rgb(245,184,46)" fg:x="9885" fg:w="9"/><text x="47.5444%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (6 samples, 0.03%)</title><rect x="47.3087%" y="885" width="0.0287%" height="15" fill="rgb(253,73,16)" fg:x="9888" fg:w="6"/><text x="47.5587%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="47.3087%" y="869" width="0.0287%" height="15" fill="rgb(206,94,45)" fg:x="9888" fg:w="6"/><text x="47.5587%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="47.3087%" y="853" width="0.0287%" height="15" fill="rgb(236,83,27)" fg:x="9888" fg:w="6"/><text x="47.5587%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="47.3087%" y="837" width="0.0287%" height="15" fill="rgb(220,196,8)" fg:x="9888" fg:w="6"/><text x="47.5587%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.3231%" y="821" width="0.0144%" height="15" fill="rgb(254,185,14)" fg:x="9891" fg:w="3"/><text x="47.5731%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3231%" y="805" width="0.0144%" height="15" fill="rgb(226,50,22)" fg:x="9891" fg:w="3"/><text x="47.5731%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3231%" y="789" width="0.0144%" height="15" fill="rgb(253,147,0)" fg:x="9891" fg:w="3"/><text x="47.5731%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3231%" y="773" width="0.0144%" height="15" fill="rgb(252,46,33)" fg:x="9891" fg:w="3"/><text x="47.5731%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3374%" y="869" width="0.0144%" height="15" fill="rgb(242,22,54)" fg:x="9894" fg:w="3"/><text x="47.5874%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3374%" y="853" width="0.0144%" height="15" fill="rgb(223,178,32)" fg:x="9894" fg:w="3"/><text x="47.5874%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3374%" y="837" width="0.0144%" height="15" fill="rgb(214,106,53)" fg:x="9894" fg:w="3"/><text x="47.5874%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (15 samples, 0.07%)</title><rect x="47.2896%" y="1077" width="0.0718%" height="15" fill="rgb(232,65,50)" fg:x="9884" fg:w="15"/><text x="47.5396%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 0.07%)</title><rect x="47.2896%" y="1061" width="0.0718%" height="15" fill="rgb(231,110,28)" fg:x="9884" fg:w="15"/><text x="47.5396%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (15 samples, 0.07%)</title><rect x="47.2896%" y="1045" width="0.0718%" height="15" fill="rgb(216,71,40)" fg:x="9884" fg:w="15"/><text x="47.5396%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (15 samples, 0.07%)</title><rect x="47.2896%" y="1029" width="0.0718%" height="15" fill="rgb(229,89,53)" fg:x="9884" fg:w="15"/><text x="47.5396%" y="1039.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.07%)</title><rect x="47.2944%" y="1013" width="0.0670%" height="15" fill="rgb(210,124,14)" fg:x="9885" fg:w="14"/><text x="47.5444%" y="1023.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.07%)</title><rect x="47.2944%" y="997" width="0.0670%" height="15" fill="rgb(236,213,6)" fg:x="9885" fg:w="14"/><text x="47.5444%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="47.2944%" y="981" width="0.0670%" height="15" fill="rgb(228,41,5)" fg:x="9885" fg:w="14"/><text x="47.5444%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="47.2944%" y="965" width="0.0670%" height="15" fill="rgb(221,167,25)" fg:x="9885" fg:w="14"/><text x="47.5444%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (14 samples, 0.07%)</title><rect x="47.2944%" y="949" width="0.0670%" height="15" fill="rgb(228,144,37)" fg:x="9885" fg:w="14"/><text x="47.5444%" y="959.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.3374%" y="933" width="0.0239%" height="15" fill="rgb(227,189,38)" fg:x="9894" fg:w="5"/><text x="47.5874%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.3374%" y="917" width="0.0239%" height="15" fill="rgb(218,8,2)" fg:x="9894" fg:w="5"/><text x="47.5874%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.3374%" y="901" width="0.0239%" height="15" fill="rgb(209,61,28)" fg:x="9894" fg:w="5"/><text x="47.5874%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.3374%" y="885" width="0.0239%" height="15" fill="rgb(233,140,39)" fg:x="9894" fg:w="5"/><text x="47.5874%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.3614%" y="869" width="0.0191%" height="15" fill="rgb(251,66,48)" fg:x="9899" fg:w="4"/><text x="47.6114%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.3614%" y="853" width="0.0191%" height="15" fill="rgb(210,44,45)" fg:x="9899" fg:w="4"/><text x="47.6114%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.3614%" y="837" width="0.0191%" height="15" fill="rgb(214,136,46)" fg:x="9899" fg:w="4"/><text x="47.6114%" y="847.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.3662%" y="821" width="0.0144%" height="15" fill="rgb(207,130,50)" fg:x="9900" fg:w="3"/><text x="47.6162%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3662%" y="805" width="0.0144%" height="15" fill="rgb(228,102,49)" fg:x="9900" fg:w="3"/><text x="47.6162%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3662%" y="789" width="0.0144%" height="15" fill="rgb(253,55,1)" fg:x="9900" fg:w="3"/><text x="47.6162%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3662%" y="773" width="0.0144%" height="15" fill="rgb(238,222,9)" fg:x="9900" fg:w="3"/><text x="47.6162%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (26 samples, 0.12%)</title><rect x="47.2705%" y="1125" width="0.1244%" height="15" fill="rgb(246,99,6)" fg:x="9880" fg:w="26"/><text x="47.5205%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (26 samples, 0.12%)</title><rect x="47.2705%" y="1109" width="0.1244%" height="15" fill="rgb(219,110,26)" fg:x="9880" fg:w="26"/><text x="47.5205%" y="1119.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (26 samples, 0.12%)</title><rect x="47.2705%" y="1093" width="0.1244%" height="15" fill="rgb(239,160,33)" fg:x="9880" fg:w="26"/><text x="47.5205%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="47.3614%" y="1077" width="0.0335%" height="15" fill="rgb(220,202,23)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1087.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="47.3614%" y="1061" width="0.0335%" height="15" fill="rgb(208,80,26)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.3614%" y="1045" width="0.0335%" height="15" fill="rgb(243,85,7)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.3614%" y="1029" width="0.0335%" height="15" fill="rgb(228,77,47)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="47.3614%" y="1013" width="0.0335%" height="15" fill="rgb(212,226,8)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (7 samples, 0.03%)</title><rect x="47.3614%" y="997" width="0.0335%" height="15" fill="rgb(241,120,54)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (7 samples, 0.03%)</title><rect x="47.3614%" y="981" width="0.0335%" height="15" fill="rgb(226,80,16)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.3614%" y="965" width="0.0335%" height="15" fill="rgb(240,76,13)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.3614%" y="949" width="0.0335%" height="15" fill="rgb(252,74,8)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="47.3614%" y="933" width="0.0335%" height="15" fill="rgb(244,155,2)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="943.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.3614%" y="917" width="0.0335%" height="15" fill="rgb(215,81,35)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.3614%" y="901" width="0.0335%" height="15" fill="rgb(206,55,2)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="47.3614%" y="885" width="0.0335%" height="15" fill="rgb(231,2,34)" fg:x="9899" fg:w="7"/><text x="47.6114%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.3805%" y="869" width="0.0144%" height="15" fill="rgb(242,176,48)" fg:x="9903" fg:w="3"/><text x="47.6305%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.3805%" y="853" width="0.0144%" height="15" fill="rgb(249,31,36)" fg:x="9903" fg:w="3"/><text x="47.6305%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.3805%" y="837" width="0.0144%" height="15" fill="rgb(205,18,17)" fg:x="9903" fg:w="3"/><text x="47.6305%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.3805%" y="821" width="0.0144%" height="15" fill="rgb(254,130,5)" fg:x="9903" fg:w="3"/><text x="47.6305%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="47.3949%" y="1061" width="0.0287%" height="15" fill="rgb(229,42,45)" fg:x="9906" fg:w="6"/><text x="47.6449%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="47.3949%" y="1045" width="0.0287%" height="15" fill="rgb(245,95,25)" fg:x="9906" fg:w="6"/><text x="47.6449%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="47.3949%" y="1029" width="0.0287%" height="15" fill="rgb(249,193,38)" fg:x="9906" fg:w="6"/><text x="47.6449%" y="1039.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.3996%" y="1013" width="0.0239%" height="15" fill="rgb(241,140,43)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="1023.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="47.3996%" y="997" width="0.0239%" height="15" fill="rgb(245,78,48)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.3996%" y="981" width="0.0239%" height="15" fill="rgb(214,92,39)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.3996%" y="965" width="0.0239%" height="15" fill="rgb(211,189,14)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.3996%" y="949" width="0.0239%" height="15" fill="rgb(218,7,24)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.3996%" y="933" width="0.0239%" height="15" fill="rgb(224,200,49)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.3996%" y="917" width="0.0239%" height="15" fill="rgb(218,210,14)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.3996%" y="901" width="0.0239%" height="15" fill="rgb(234,142,31)" fg:x="9907" fg:w="5"/><text x="47.6496%" y="911.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.4092%" y="885" width="0.0144%" height="15" fill="rgb(227,165,2)" fg:x="9909" fg:w="3"/><text x="47.6592%" y="895.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.4092%" y="869" width="0.0144%" height="15" fill="rgb(232,44,46)" fg:x="9909" fg:w="3"/><text x="47.6592%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.4092%" y="853" width="0.0144%" height="15" fill="rgb(236,149,47)" fg:x="9909" fg:w="3"/><text x="47.6592%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.4092%" y="837" width="0.0144%" height="15" fill="rgb(227,45,31)" fg:x="9909" fg:w="3"/><text x="47.6592%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.4236%" y="869" width="0.0144%" height="15" fill="rgb(240,176,51)" fg:x="9912" fg:w="3"/><text x="47.6736%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.4236%" y="853" width="0.0144%" height="15" fill="rgb(249,146,41)" fg:x="9912" fg:w="3"/><text x="47.6736%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.4236%" y="837" width="0.0144%" height="15" fill="rgb(213,208,4)" fg:x="9912" fg:w="3"/><text x="47.6736%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="47.4236%" y="917" width="0.0383%" height="15" fill="rgb(245,84,36)" fg:x="9912" fg:w="8"/><text x="47.6736%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="47.4236%" y="901" width="0.0383%" height="15" fill="rgb(254,84,18)" fg:x="9912" fg:w="8"/><text x="47.6736%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="47.4236%" y="885" width="0.0383%" height="15" fill="rgb(225,38,54)" fg:x="9912" fg:w="8"/><text x="47.6736%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.4379%" y="869" width="0.0239%" height="15" fill="rgb(246,50,30)" fg:x="9915" fg:w="5"/><text x="47.6879%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.4379%" y="853" width="0.0239%" height="15" fill="rgb(246,148,9)" fg:x="9915" fg:w="5"/><text x="47.6879%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.4379%" y="837" width="0.0239%" height="15" fill="rgb(223,75,4)" fg:x="9915" fg:w="5"/><text x="47.6879%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.4379%" y="821" width="0.0239%" height="15" fill="rgb(239,148,41)" fg:x="9915" fg:w="5"/><text x="47.6879%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.4475%" y="805" width="0.0144%" height="15" fill="rgb(205,195,3)" fg:x="9917" fg:w="3"/><text x="47.6975%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.4475%" y="789" width="0.0144%" height="15" fill="rgb(254,161,1)" fg:x="9917" fg:w="3"/><text x="47.6975%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.4475%" y="773" width="0.0144%" height="15" fill="rgb(211,229,8)" fg:x="9917" fg:w="3"/><text x="47.6975%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.4475%" y="757" width="0.0144%" height="15" fill="rgb(220,97,9)" fg:x="9917" fg:w="3"/><text x="47.6975%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="47.4236%" y="1061" width="0.0574%" height="15" fill="rgb(240,218,8)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="47.4236%" y="1045" width="0.0574%" height="15" fill="rgb(250,44,0)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="47.4236%" y="1029" width="0.0574%" height="15" fill="rgb(236,41,53)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="47.4236%" y="1013" width="0.0574%" height="15" fill="rgb(218,227,13)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 0.06%)</title><rect x="47.4236%" y="997" width="0.0574%" height="15" fill="rgb(217,94,32)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (12 samples, 0.06%)</title><rect x="47.4236%" y="981" width="0.0574%" height="15" fill="rgb(213,217,12)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="47.4236%" y="965" width="0.0574%" height="15" fill="rgb(229,13,46)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="47.4236%" y="949" width="0.0574%" height="15" fill="rgb(243,139,5)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="47.4236%" y="933" width="0.0574%" height="15" fill="rgb(249,38,45)" fg:x="9912" fg:w="12"/><text x="47.6736%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="47.4618%" y="917" width="0.0191%" height="15" fill="rgb(216,70,11)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.4618%" y="901" width="0.0191%" height="15" fill="rgb(253,101,25)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.4618%" y="885" width="0.0191%" height="15" fill="rgb(207,197,30)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.4618%" y="869" width="0.0191%" height="15" fill="rgb(238,87,13)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.4618%" y="853" width="0.0191%" height="15" fill="rgb(215,155,8)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.4618%" y="837" width="0.0191%" height="15" fill="rgb(239,166,38)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.4618%" y="821" width="0.0191%" height="15" fill="rgb(240,194,35)" fg:x="9920" fg:w="4"/><text x="47.7118%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.4810%" y="805" width="0.0239%" height="15" fill="rgb(219,10,44)" fg:x="9924" fg:w="5"/><text x="47.7310%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.4810%" y="789" width="0.0239%" height="15" fill="rgb(251,220,35)" fg:x="9924" fg:w="5"/><text x="47.7310%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.4810%" y="773" width="0.0239%" height="15" fill="rgb(218,117,13)" fg:x="9924" fg:w="5"/><text x="47.7310%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.4906%" y="757" width="0.0144%" height="15" fill="rgb(221,213,40)" fg:x="9926" fg:w="3"/><text x="47.7406%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.4906%" y="741" width="0.0144%" height="15" fill="rgb(251,224,35)" fg:x="9926" fg:w="3"/><text x="47.7406%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.4906%" y="725" width="0.0144%" height="15" fill="rgb(241,33,39)" fg:x="9926" fg:w="3"/><text x="47.7406%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.4906%" y="709" width="0.0144%" height="15" fill="rgb(222,74,17)" fg:x="9926" fg:w="3"/><text x="47.7406%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="47.4810%" y="853" width="0.0478%" height="15" fill="rgb(225,103,0)" fg:x="9924" fg:w="10"/><text x="47.7310%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="47.4810%" y="837" width="0.0478%" height="15" fill="rgb(240,0,12)" fg:x="9924" fg:w="10"/><text x="47.7310%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="47.4810%" y="821" width="0.0478%" height="15" fill="rgb(233,213,37)" fg:x="9924" fg:w="10"/><text x="47.7310%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.5049%" y="805" width="0.0239%" height="15" fill="rgb(225,84,52)" fg:x="9929" fg:w="5"/><text x="47.7549%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.5049%" y="789" width="0.0239%" height="15" fill="rgb(247,160,51)" fg:x="9929" fg:w="5"/><text x="47.7549%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.5049%" y="773" width="0.0239%" height="15" fill="rgb(244,60,51)" fg:x="9929" fg:w="5"/><text x="47.7549%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.5049%" y="757" width="0.0239%" height="15" fill="rgb(233,114,7)" fg:x="9929" fg:w="5"/><text x="47.7549%" y="767.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.5145%" y="741" width="0.0144%" height="15" fill="rgb(246,136,16)" fg:x="9931" fg:w="3"/><text x="47.7645%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.5145%" y="725" width="0.0144%" height="15" fill="rgb(243,114,45)" fg:x="9931" fg:w="3"/><text x="47.7645%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.5145%" y="709" width="0.0144%" height="15" fill="rgb(247,183,43)" fg:x="9931" fg:w="3"/><text x="47.7645%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.5145%" y="693" width="0.0144%" height="15" fill="rgb(251,210,42)" fg:x="9931" fg:w="3"/><text x="47.7645%" y="703.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (13 samples, 0.06%)</title><rect x="47.4810%" y="901" width="0.0622%" height="15" fill="rgb(221,88,35)" fg:x="9924" fg:w="13"/><text x="47.7310%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (13 samples, 0.06%)</title><rect x="47.4810%" y="885" width="0.0622%" height="15" fill="rgb(242,21,20)" fg:x="9924" fg:w="13"/><text x="47.7310%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="47.4810%" y="869" width="0.0622%" height="15" fill="rgb(233,226,36)" fg:x="9924" fg:w="13"/><text x="47.7310%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.5288%" y="853" width="0.0144%" height="15" fill="rgb(243,189,34)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.5288%" y="837" width="0.0144%" height="15" fill="rgb(207,145,50)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.5288%" y="821" width="0.0144%" height="15" fill="rgb(242,1,50)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.5288%" y="805" width="0.0144%" height="15" fill="rgb(231,65,32)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.5288%" y="789" width="0.0144%" height="15" fill="rgb(208,68,49)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.5288%" y="773" width="0.0144%" height="15" fill="rgb(253,54,49)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.5288%" y="757" width="0.0144%" height="15" fill="rgb(245,186,24)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.5288%" y="741" width="0.0144%" height="15" fill="rgb(209,2,41)" fg:x="9934" fg:w="3"/><text x="47.7788%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.5432%" y="837" width="0.0144%" height="15" fill="rgb(242,208,54)" fg:x="9937" fg:w="3"/><text x="47.7932%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.5432%" y="821" width="0.0144%" height="15" fill="rgb(225,9,51)" fg:x="9937" fg:w="3"/><text x="47.7932%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.5432%" y="805" width="0.0144%" height="15" fill="rgb(207,207,25)" fg:x="9937" fg:w="3"/><text x="47.7932%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (35 samples, 0.17%)</title><rect x="47.3949%" y="1125" width="0.1675%" height="15" fill="rgb(253,96,18)" fg:x="9906" fg:w="35"/><text x="47.6449%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (35 samples, 0.17%)</title><rect x="47.3949%" y="1109" width="0.1675%" height="15" fill="rgb(252,215,20)" fg:x="9906" fg:w="35"/><text x="47.6449%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (35 samples, 0.17%)</title><rect x="47.3949%" y="1093" width="0.1675%" height="15" fill="rgb(245,227,26)" fg:x="9906" fg:w="35"/><text x="47.6449%" y="1103.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (35 samples, 0.17%)</title><rect x="47.3949%" y="1077" width="0.1675%" height="15" fill="rgb(241,208,0)" fg:x="9906" fg:w="35"/><text x="47.6449%" y="1087.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="47.4810%" y="1061" width="0.0813%" height="15" fill="rgb(224,130,10)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="1071.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="47.4810%" y="1045" width="0.0813%" height="15" fill="rgb(237,29,0)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="47.4810%" y="1029" width="0.0813%" height="15" fill="rgb(219,27,41)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="47.4810%" y="1013" width="0.0813%" height="15" fill="rgb(245,101,19)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="47.4810%" y="997" width="0.0813%" height="15" fill="rgb(243,44,37)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (17 samples, 0.08%)</title><rect x="47.4810%" y="981" width="0.0813%" height="15" fill="rgb(228,213,43)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (17 samples, 0.08%)</title><rect x="47.4810%" y="965" width="0.0813%" height="15" fill="rgb(219,163,21)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (17 samples, 0.08%)</title><rect x="47.4810%" y="949" width="0.0813%" height="15" fill="rgb(234,86,24)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (17 samples, 0.08%)</title><rect x="47.4810%" y="933" width="0.0813%" height="15" fill="rgb(225,10,24)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (17 samples, 0.08%)</title><rect x="47.4810%" y="917" width="0.0813%" height="15" fill="rgb(218,109,7)" fg:x="9924" fg:w="17"/><text x="47.7310%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="47.5432%" y="901" width="0.0191%" height="15" fill="rgb(210,20,26)" fg:x="9937" fg:w="4"/><text x="47.7932%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.5432%" y="885" width="0.0191%" height="15" fill="rgb(216,18,1)" fg:x="9937" fg:w="4"/><text x="47.7932%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.5432%" y="869" width="0.0191%" height="15" fill="rgb(206,163,23)" fg:x="9937" fg:w="4"/><text x="47.7932%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.5432%" y="853" width="0.0191%" height="15" fill="rgb(229,150,31)" fg:x="9937" fg:w="4"/><text x="47.7932%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.5623%" y="821" width="0.0144%" height="15" fill="rgb(231,10,5)" fg:x="9941" fg:w="3"/><text x="47.8123%" y="831.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.5623%" y="805" width="0.0144%" height="15" fill="rgb(250,40,50)" fg:x="9941" fg:w="3"/><text x="47.8123%" y="815.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.5623%" y="789" width="0.0144%" height="15" fill="rgb(217,119,7)" fg:x="9941" fg:w="3"/><text x="47.8123%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.5623%" y="869" width="0.0191%" height="15" fill="rgb(245,214,40)" fg:x="9941" fg:w="4"/><text x="47.8123%" y="879.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.5623%" y="853" width="0.0191%" height="15" fill="rgb(216,187,1)" fg:x="9941" fg:w="4"/><text x="47.8123%" y="863.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.5623%" y="837" width="0.0191%" height="15" fill="rgb(237,146,21)" fg:x="9941" fg:w="4"/><text x="47.8123%" y="847.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.5815%" y="805" width="0.0191%" height="15" fill="rgb(210,174,47)" fg:x="9945" fg:w="4"/><text x="47.8315%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.5815%" y="789" width="0.0191%" height="15" fill="rgb(218,111,39)" fg:x="9945" fg:w="4"/><text x="47.8315%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.5815%" y="773" width="0.0191%" height="15" fill="rgb(224,95,19)" fg:x="9945" fg:w="4"/><text x="47.8315%" y="783.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (9 samples, 0.04%)</title><rect x="47.5623%" y="917" width="0.0431%" height="15" fill="rgb(234,15,38)" fg:x="9941" fg:w="9"/><text x="47.8123%" y="927.50"></text></g><g><title>rayon_core::registry::in_worker (9 samples, 0.04%)</title><rect x="47.5623%" y="901" width="0.0431%" height="15" fill="rgb(246,56,12)" fg:x="9941" fg:w="9"/><text x="47.8123%" y="911.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (9 samples, 0.04%)</title><rect x="47.5623%" y="885" width="0.0431%" height="15" fill="rgb(247,16,17)" fg:x="9941" fg:w="9"/><text x="47.8123%" y="895.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.5815%" y="869" width="0.0239%" height="15" fill="rgb(215,151,11)" fg:x="9945" fg:w="5"/><text x="47.8315%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.5815%" y="853" width="0.0239%" height="15" fill="rgb(225,16,24)" fg:x="9945" fg:w="5"/><text x="47.8315%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.5815%" y="837" width="0.0239%" height="15" fill="rgb(217,117,5)" fg:x="9945" fg:w="5"/><text x="47.8315%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.5815%" y="821" width="0.0239%" height="15" fill="rgb(246,187,53)" fg:x="9945" fg:w="5"/><text x="47.8315%" y="831.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.6054%" y="805" width="0.0191%" height="15" fill="rgb(241,71,40)" fg:x="9950" fg:w="4"/><text x="47.8554%" y="815.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.6054%" y="789" width="0.0191%" height="15" fill="rgb(231,67,39)" fg:x="9950" fg:w="4"/><text x="47.8554%" y="799.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.6054%" y="773" width="0.0191%" height="15" fill="rgb(222,120,24)" fg:x="9950" fg:w="4"/><text x="47.8554%" y="783.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.6102%" y="757" width="0.0144%" height="15" fill="rgb(248,3,3)" fg:x="9951" fg:w="3"/><text x="47.8602%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.6102%" y="741" width="0.0144%" height="15" fill="rgb(228,218,5)" fg:x="9951" fg:w="3"/><text x="47.8602%" y="751.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.6102%" y="725" width="0.0144%" height="15" fill="rgb(212,202,43)" fg:x="9951" fg:w="3"/><text x="47.8602%" y="735.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.6102%" y="709" width="0.0144%" height="15" fill="rgb(235,183,2)" fg:x="9951" fg:w="3"/><text x="47.8602%" y="719.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="47.6054%" y="853" width="0.0383%" height="15" fill="rgb(230,165,10)" fg:x="9950" fg:w="8"/><text x="47.8554%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="47.6054%" y="837" width="0.0383%" height="15" fill="rgb(219,54,40)" fg:x="9950" fg:w="8"/><text x="47.8554%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="47.6054%" y="821" width="0.0383%" height="15" fill="rgb(244,73,9)" fg:x="9950" fg:w="8"/><text x="47.8554%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="47.6245%" y="805" width="0.0191%" height="15" fill="rgb(212,32,45)" fg:x="9954" fg:w="4"/><text x="47.8745%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.6245%" y="789" width="0.0191%" height="15" fill="rgb(205,58,31)" fg:x="9954" fg:w="4"/><text x="47.8745%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.6245%" y="773" width="0.0191%" height="15" fill="rgb(250,120,43)" fg:x="9954" fg:w="4"/><text x="47.8745%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.6245%" y="757" width="0.0191%" height="15" fill="rgb(235,13,10)" fg:x="9954" fg:w="4"/><text x="47.8745%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="47.5623%" y="1045" width="0.1005%" height="15" fill="rgb(232,219,31)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="47.5623%" y="1029" width="0.1005%" height="15" fill="rgb(218,157,51)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="47.5623%" y="1013" width="0.1005%" height="15" fill="rgb(211,91,52)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="1023.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (21 samples, 0.10%)</title><rect x="47.5623%" y="997" width="0.1005%" height="15" fill="rgb(240,173,1)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="1007.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (21 samples, 0.10%)</title><rect x="47.5623%" y="981" width="0.1005%" height="15" fill="rgb(248,20,47)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="991.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (21 samples, 0.10%)</title><rect x="47.5623%" y="965" width="0.1005%" height="15" fill="rgb(217,221,40)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="975.50"></text></g><g><title>rayon_core::registry::in_worker (21 samples, 0.10%)</title><rect x="47.5623%" y="949" width="0.1005%" height="15" fill="rgb(226,149,51)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="959.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (21 samples, 0.10%)</title><rect x="47.5623%" y="933" width="0.1005%" height="15" fill="rgb(252,193,7)" fg:x="9941" fg:w="21"/><text x="47.8123%" y="943.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (12 samples, 0.06%)</title><rect x="47.6054%" y="917" width="0.0574%" height="15" fill="rgb(205,123,0)" fg:x="9950" fg:w="12"/><text x="47.8554%" y="927.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 0.06%)</title><rect x="47.6054%" y="901" width="0.0574%" height="15" fill="rgb(233,173,25)" fg:x="9950" fg:w="12"/><text x="47.8554%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (12 samples, 0.06%)</title><rect x="47.6054%" y="885" width="0.0574%" height="15" fill="rgb(216,63,32)" fg:x="9950" fg:w="12"/><text x="47.8554%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (12 samples, 0.06%)</title><rect x="47.6054%" y="869" width="0.0574%" height="15" fill="rgb(209,56,45)" fg:x="9950" fg:w="12"/><text x="47.8554%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="47.6437%" y="853" width="0.0191%" height="15" fill="rgb(226,111,49)" fg:x="9958" fg:w="4"/><text x="47.8937%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.6437%" y="837" width="0.0191%" height="15" fill="rgb(244,181,21)" fg:x="9958" fg:w="4"/><text x="47.8937%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.6437%" y="821" width="0.0191%" height="15" fill="rgb(222,126,15)" fg:x="9958" fg:w="4"/><text x="47.8937%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.6437%" y="805" width="0.0191%" height="15" fill="rgb(222,95,17)" fg:x="9958" fg:w="4"/><text x="47.8937%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.6628%" y="853" width="0.0239%" height="15" fill="rgb(254,46,5)" fg:x="9962" fg:w="5"/><text x="47.9128%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.6628%" y="837" width="0.0239%" height="15" fill="rgb(236,216,35)" fg:x="9962" fg:w="5"/><text x="47.9128%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.6628%" y="821" width="0.0239%" height="15" fill="rgb(217,187,26)" fg:x="9962" fg:w="5"/><text x="47.9128%" y="831.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.6724%" y="805" width="0.0144%" height="15" fill="rgb(207,192,25)" fg:x="9964" fg:w="3"/><text x="47.9224%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.6724%" y="789" width="0.0144%" height="15" fill="rgb(253,135,27)" fg:x="9964" fg:w="3"/><text x="47.9224%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.6724%" y="773" width="0.0144%" height="15" fill="rgb(211,122,29)" fg:x="9964" fg:w="3"/><text x="47.9224%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.6724%" y="757" width="0.0144%" height="15" fill="rgb(233,162,40)" fg:x="9964" fg:w="3"/><text x="47.9224%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.6867%" y="789" width="0.0144%" height="15" fill="rgb(222,184,47)" fg:x="9967" fg:w="3"/><text x="47.9367%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.6867%" y="773" width="0.0144%" height="15" fill="rgb(249,99,23)" fg:x="9967" fg:w="3"/><text x="47.9367%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.6867%" y="757" width="0.0144%" height="15" fill="rgb(214,60,12)" fg:x="9967" fg:w="3"/><text x="47.9367%" y="767.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (10 samples, 0.05%)</title><rect x="47.6628%" y="901" width="0.0478%" height="15" fill="rgb(250,229,36)" fg:x="9962" fg:w="10"/><text x="47.9128%" y="911.50"></text></g><g><title>rayon_core::registry::in_worker (10 samples, 0.05%)</title><rect x="47.6628%" y="885" width="0.0478%" height="15" fill="rgb(232,195,10)" fg:x="9962" fg:w="10"/><text x="47.9128%" y="895.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (10 samples, 0.05%)</title><rect x="47.6628%" y="869" width="0.0478%" height="15" fill="rgb(205,213,31)" fg:x="9962" fg:w="10"/><text x="47.9128%" y="879.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.6867%" y="853" width="0.0239%" height="15" fill="rgb(237,43,8)" fg:x="9967" fg:w="5"/><text x="47.9367%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.6867%" y="837" width="0.0239%" height="15" fill="rgb(216,208,3)" fg:x="9967" fg:w="5"/><text x="47.9367%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.6867%" y="821" width="0.0239%" height="15" fill="rgb(228,179,44)" fg:x="9967" fg:w="5"/><text x="47.9367%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.6867%" y="805" width="0.0239%" height="15" fill="rgb(230,192,27)" fg:x="9967" fg:w="5"/><text x="47.9367%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.03%)</title><rect x="47.7106%" y="837" width="0.0287%" height="15" fill="rgb(251,30,38)" fg:x="9972" fg:w="6"/><text x="47.9606%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (6 samples, 0.03%)</title><rect x="47.7106%" y="821" width="0.0287%" height="15" fill="rgb(246,55,52)" fg:x="9972" fg:w="6"/><text x="47.9606%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (6 samples, 0.03%)</title><rect x="47.7106%" y="805" width="0.0287%" height="15" fill="rgb(249,79,26)" fg:x="9972" fg:w="6"/><text x="47.9606%" y="815.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (4 samples, 0.02%)</title><rect x="47.7202%" y="789" width="0.0191%" height="15" fill="rgb(220,202,16)" fg:x="9974" fg:w="4"/><text x="47.9702%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.7202%" y="773" width="0.0191%" height="15" fill="rgb(250,170,23)" fg:x="9974" fg:w="4"/><text x="47.9702%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.7202%" y="757" width="0.0191%" height="15" fill="rgb(230,7,37)" fg:x="9974" fg:w="4"/><text x="47.9702%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.7202%" y="741" width="0.0191%" height="15" fill="rgb(213,71,1)" fg:x="9974" fg:w="4"/><text x="47.9702%" y="751.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.7250%" y="725" width="0.0144%" height="15" fill="rgb(227,87,39)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="735.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7250%" y="709" width="0.0144%" height="15" fill="rgb(210,41,29)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="719.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7250%" y="693" width="0.0144%" height="15" fill="rgb(206,191,31)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="703.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7250%" y="677" width="0.0144%" height="15" fill="rgb(247,75,54)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7250%" y="661" width="0.0144%" height="15" fill="rgb(208,54,50)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="671.50"></text></g><g><title>&lt;rayon::iter::map_with::MapWithFolder&lt;C,U,F&gt; as rayon::iter::plumbing::Folder&lt;T&gt;&gt;::consume_iter (3 samples, 0.01%)</title><rect x="47.7250%" y="645" width="0.0144%" height="15" fill="rgb(214,90,37)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::try_fold (3 samples, 0.01%)</title><rect x="47.7250%" y="629" width="0.0144%" height="15" fill="rgb(220,132,6)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="639.50"></text></g><g><title>_ZN9criterion8analysis9estimates5stats17h2d75d3ff85dc60e0E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7250%" y="613" width="0.0144%" height="15" fill="rgb(213,167,7)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="623.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="47.7250%" y="597" width="0.0144%" height="15" fill="rgb(243,36,27)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="607.50"></text></g><g><title>rayon::slice::quicksort::recurse (3 samples, 0.01%)</title><rect x="47.7250%" y="581" width="0.0144%" height="15" fill="rgb(235,147,12)" fg:x="9975" fg:w="3"/><text x="47.9750%" y="591.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (18 samples, 0.09%)</title><rect x="47.6628%" y="1045" width="0.0861%" height="15" fill="rgb(212,198,44)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="1055.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="47.6628%" y="1029" width="0.0861%" height="15" fill="rgb(218,68,50)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="1039.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="47.6628%" y="1013" width="0.0861%" height="15" fill="rgb(224,79,48)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="1023.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="47.6628%" y="997" width="0.0861%" height="15" fill="rgb(213,191,50)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="1007.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (18 samples, 0.09%)</title><rect x="47.6628%" y="981" width="0.0861%" height="15" fill="rgb(254,146,10)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="991.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (18 samples, 0.09%)</title><rect x="47.6628%" y="965" width="0.0861%" height="15" fill="rgb(215,175,11)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="975.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (18 samples, 0.09%)</title><rect x="47.6628%" y="949" width="0.0861%" height="15" fill="rgb(207,49,7)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="959.50"></text></g><g><title>rayon_core::registry::in_worker (18 samples, 0.09%)</title><rect x="47.6628%" y="933" width="0.0861%" height="15" fill="rgb(234,144,29)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="943.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (18 samples, 0.09%)</title><rect x="47.6628%" y="917" width="0.0861%" height="15" fill="rgb(213,222,48)" fg:x="9962" fg:w="18"/><text x="47.9128%" y="927.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (8 samples, 0.04%)</title><rect x="47.7106%" y="901" width="0.0383%" height="15" fill="rgb(222,8,6)" fg:x="9972" fg:w="8"/><text x="47.9606%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="47.7106%" y="885" width="0.0383%" height="15" fill="rgb(221,114,49)" fg:x="9972" fg:w="8"/><text x="47.9606%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="47.7106%" y="869" width="0.0383%" height="15" fill="rgb(250,140,42)" fg:x="9972" fg:w="8"/><text x="47.9606%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="47.7106%" y="853" width="0.0383%" height="15" fill="rgb(250,150,27)" fg:x="9972" fg:w="8"/><text x="47.9606%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (104 samples, 0.50%)</title><rect x="47.2657%" y="1173" width="0.4976%" height="15" fill="rgb(252,159,3)" fg:x="9879" fg:w="104"/><text x="47.5157%" y="1183.50"></text></g><g><title>rayon_core::registry::in_worker (104 samples, 0.50%)</title><rect x="47.2657%" y="1157" width="0.4976%" height="15" fill="rgb(241,182,3)" fg:x="9879" fg:w="104"/><text x="47.5157%" y="1167.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (103 samples, 0.49%)</title><rect x="47.2705%" y="1141" width="0.4928%" height="15" fill="rgb(236,3,9)" fg:x="9880" fg:w="103"/><text x="47.5205%" y="1151.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (42 samples, 0.20%)</title><rect x="47.5623%" y="1125" width="0.2009%" height="15" fill="rgb(223,227,51)" fg:x="9941" fg:w="42"/><text x="47.8123%" y="1135.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (42 samples, 0.20%)</title><rect x="47.5623%" y="1109" width="0.2009%" height="15" fill="rgb(232,133,30)" fg:x="9941" fg:w="42"/><text x="47.8123%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (42 samples, 0.20%)</title><rect x="47.5623%" y="1093" width="0.2009%" height="15" fill="rgb(209,93,27)" fg:x="9941" fg:w="42"/><text x="47.8123%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (42 samples, 0.20%)</title><rect x="47.5623%" y="1077" width="0.2009%" height="15" fill="rgb(208,108,34)" fg:x="9941" fg:w="42"/><text x="47.8123%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (42 samples, 0.20%)</title><rect x="47.5623%" y="1061" width="0.2009%" height="15" fill="rgb(215,189,13)" fg:x="9941" fg:w="42"/><text x="47.8123%" y="1071.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.7489%" y="1045" width="0.0144%" height="15" fill="rgb(206,88,23)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="1055.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.7489%" y="1029" width="0.0144%" height="15" fill="rgb(240,173,0)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7489%" y="1013" width="0.0144%" height="15" fill="rgb(223,106,52)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7489%" y="997" width="0.0144%" height="15" fill="rgb(206,130,16)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7489%" y="981" width="0.0144%" height="15" fill="rgb(220,54,25)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.7489%" y="965" width="0.0144%" height="15" fill="rgb(210,4,38)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.7489%" y="949" width="0.0144%" height="15" fill="rgb(238,94,39)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7489%" y="933" width="0.0144%" height="15" fill="rgb(234,124,34)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7489%" y="917" width="0.0144%" height="15" fill="rgb(221,91,40)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7489%" y="901" width="0.0144%" height="15" fill="rgb(246,53,28)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7489%" y="885" width="0.0144%" height="15" fill="rgb(229,109,7)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7489%" y="869" width="0.0144%" height="15" fill="rgb(249,117,8)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7489%" y="853" width="0.0144%" height="15" fill="rgb(210,181,1)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="863.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7489%" y="837" width="0.0144%" height="15" fill="rgb(211,66,1)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="847.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7489%" y="821" width="0.0144%" height="15" fill="rgb(221,90,14)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="831.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7489%" y="805" width="0.0144%" height="15" fill="rgb(219,222,44)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.7489%" y="789" width="0.0144%" height="15" fill="rgb(246,34,33)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.7489%" y="773" width="0.0144%" height="15" fill="rgb(227,135,41)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="783.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.7489%" y="757" width="0.0144%" height="15" fill="rgb(226,15,14)" fg:x="9980" fg:w="3"/><text x="47.9989%" y="767.50"></text></g><g><title>rayon::slice::quicksort::recurse (17 samples, 0.08%)</title><rect x="47.7633%" y="1173" width="0.0813%" height="15" fill="rgb(236,148,47)" fg:x="9983" fg:w="17"/><text x="48.0133%" y="1183.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.8446%" y="1173" width="0.0144%" height="15" fill="rgb(233,162,52)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1183.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8446%" y="1157" width="0.0144%" height="15" fill="rgb(244,35,28)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1167.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8446%" y="1141" width="0.0144%" height="15" fill="rgb(205,121,10)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1151.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8446%" y="1125" width="0.0144%" height="15" fill="rgb(250,58,18)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1135.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.8446%" y="1109" width="0.0144%" height="15" fill="rgb(216,37,13)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1119.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8446%" y="1093" width="0.0144%" height="15" fill="rgb(221,215,42)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8446%" y="1077" width="0.0144%" height="15" fill="rgb(217,214,19)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8446%" y="1061" width="0.0144%" height="15" fill="rgb(233,139,13)" fg:x="10000" fg:w="3"/><text x="48.0946%" y="1071.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (3 samples, 0.01%)</title><rect x="47.8733%" y="1077" width="0.0144%" height="15" fill="rgb(247,168,23)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8733%" y="1061" width="0.0144%" height="15" fill="rgb(207,202,1)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8733%" y="1045" width="0.0144%" height="15" fill="rgb(220,155,48)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8733%" y="1029" width="0.0144%" height="15" fill="rgb(250,43,26)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1039.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8733%" y="1013" width="0.0144%" height="15" fill="rgb(212,190,23)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8733%" y="997" width="0.0144%" height="15" fill="rgb(216,39,24)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8733%" y="981" width="0.0144%" height="15" fill="rgb(252,113,16)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.8733%" y="965" width="0.0144%" height="15" fill="rgb(208,113,19)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.8733%" y="949" width="0.0144%" height="15" fill="rgb(234,107,25)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8733%" y="933" width="0.0144%" height="15" fill="rgb(234,217,51)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8733%" y="917" width="0.0144%" height="15" fill="rgb(251,29,42)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8733%" y="901" width="0.0144%" height="15" fill="rgb(221,62,51)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.8733%" y="885" width="0.0144%" height="15" fill="rgb(240,192,43)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.8733%" y="869" width="0.0144%" height="15" fill="rgb(224,157,47)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.8733%" y="853" width="0.0144%" height="15" fill="rgb(226,84,45)" fg:x="10006" fg:w="3"/><text x="48.1233%" y="863.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (8 samples, 0.04%)</title><rect x="47.8590%" y="1141" width="0.0383%" height="15" fill="rgb(208,207,23)" fg:x="10003" fg:w="8"/><text x="48.1090%" y="1151.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="47.8590%" y="1125" width="0.0383%" height="15" fill="rgb(253,34,51)" fg:x="10003" fg:w="8"/><text x="48.1090%" y="1135.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="47.8590%" y="1109" width="0.0383%" height="15" fill="rgb(227,26,34)" fg:x="10003" fg:w="8"/><text x="48.1090%" y="1119.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="47.8637%" y="1093" width="0.0335%" height="15" fill="rgb(245,75,19)" fg:x="10004" fg:w="7"/><text x="48.1137%" y="1103.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (10 samples, 0.05%)</title><rect x="47.8590%" y="1173" width="0.0478%" height="15" fill="rgb(250,191,31)" fg:x="10003" fg:w="10"/><text x="48.1090%" y="1183.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (10 samples, 0.05%)</title><rect x="47.8590%" y="1157" width="0.0478%" height="15" fill="rgb(224,11,50)" fg:x="10003" fg:w="10"/><text x="48.1090%" y="1167.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="47.9116%" y="549" width="0.0191%" height="15" fill="rgb(231,171,7)" fg:x="10014" fg:w="4"/><text x="48.1616%" y="559.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="47.9116%" y="533" width="0.0191%" height="15" fill="rgb(252,214,10)" fg:x="10014" fg:w="4"/><text x="48.1616%" y="543.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.9116%" y="997" width="0.0239%" height="15" fill="rgb(249,45,46)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="1007.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="981" width="0.0239%" height="15" fill="rgb(240,173,7)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="991.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="965" width="0.0239%" height="15" fill="rgb(235,214,13)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="975.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="949" width="0.0239%" height="15" fill="rgb(245,156,8)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="933" width="0.0239%" height="15" fill="rgb(235,46,12)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="917" width="0.0239%" height="15" fill="rgb(221,81,14)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="901" width="0.0239%" height="15" fill="rgb(238,207,9)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="911.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.9116%" y="885" width="0.0239%" height="15" fill="rgb(224,129,35)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="895.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="47.9116%" y="869" width="0.0239%" height="15" fill="rgb(243,218,34)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="879.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="853" width="0.0239%" height="15" fill="rgb(220,166,13)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="863.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="837" width="0.0239%" height="15" fill="rgb(227,167,49)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="847.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="821" width="0.0239%" height="15" fill="rgb(234,142,12)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="831.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.9116%" y="805" width="0.0239%" height="15" fill="rgb(207,100,48)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="815.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (5 samples, 0.02%)</title><rect x="47.9116%" y="789" width="0.0239%" height="15" fill="rgb(210,25,14)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="799.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="773" width="0.0239%" height="15" fill="rgb(246,116,27)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="783.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="757" width="0.0239%" height="15" fill="rgb(214,193,42)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="767.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="741" width="0.0239%" height="15" fill="rgb(214,122,8)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="751.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="725" width="0.0239%" height="15" fill="rgb(244,173,18)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="735.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="709" width="0.0239%" height="15" fill="rgb(232,68,19)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="719.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="693" width="0.0239%" height="15" fill="rgb(236,224,1)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="703.50"></text></g><g><title>rayon_core::job::StackJob&lt;L,F,R&gt;::run_inline (5 samples, 0.02%)</title><rect x="47.9116%" y="677" width="0.0239%" height="15" fill="rgb(240,11,8)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="687.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (5 samples, 0.02%)</title><rect x="47.9116%" y="661" width="0.0239%" height="15" fill="rgb(244,159,20)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="671.50"></text></g><g><title>rayon_core::registry::in_worker (5 samples, 0.02%)</title><rect x="47.9116%" y="645" width="0.0239%" height="15" fill="rgb(240,223,54)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="655.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="47.9116%" y="629" width="0.0239%" height="15" fill="rgb(237,146,5)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="639.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.9116%" y="613" width="0.0239%" height="15" fill="rgb(218,221,32)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="623.50"></text></g><g><title>rayon_core::sleep::Sleep::sleep (5 samples, 0.02%)</title><rect x="47.9116%" y="597" width="0.0239%" height="15" fill="rgb(244,96,26)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="607.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="47.9116%" y="581" width="0.0239%" height="15" fill="rgb(245,184,37)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="591.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="47.9116%" y="565" width="0.0239%" height="15" fill="rgb(248,91,47)" fg:x="10014" fg:w="5"/><text x="48.1616%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (7 samples, 0.03%)</title><rect x="47.9116%" y="1045" width="0.0335%" height="15" fill="rgb(243,199,8)" fg:x="10014" fg:w="7"/><text x="48.1616%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (7 samples, 0.03%)</title><rect x="47.9116%" y="1029" width="0.0335%" height="15" fill="rgb(249,12,15)" fg:x="10014" fg:w="7"/><text x="48.1616%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (7 samples, 0.03%)</title><rect x="47.9116%" y="1013" width="0.0335%" height="15" fill="rgb(245,97,12)" fg:x="10014" fg:w="7"/><text x="48.1616%" y="1023.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (8 samples, 0.04%)</title><rect x="47.9116%" y="1093" width="0.0383%" height="15" fill="rgb(244,61,1)" fg:x="10014" fg:w="8"/><text x="48.1616%" y="1103.50"></text></g><g><title>rayon_core::registry::in_worker (8 samples, 0.04%)</title><rect x="47.9116%" y="1077" width="0.0383%" height="15" fill="rgb(222,194,10)" fg:x="10014" fg:w="8"/><text x="48.1616%" y="1087.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (8 samples, 0.04%)</title><rect x="47.9116%" y="1061" width="0.0383%" height="15" fill="rgb(226,178,8)" fg:x="10014" fg:w="8"/><text x="48.1616%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9546%" y="1013" width="0.0144%" height="15" fill="rgb(241,32,34)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="1023.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9546%" y="997" width="0.0144%" height="15" fill="rgb(254,26,6)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="1007.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.9546%" y="981" width="0.0144%" height="15" fill="rgb(249,71,11)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="991.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.9546%" y="965" width="0.0144%" height="15" fill="rgb(232,170,27)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="975.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.9546%" y="949" width="0.0144%" height="15" fill="rgb(214,223,17)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="959.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9546%" y="933" width="0.0144%" height="15" fill="rgb(250,18,15)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="943.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9546%" y="917" width="0.0144%" height="15" fill="rgb(212,153,51)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="927.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.9546%" y="901" width="0.0144%" height="15" fill="rgb(219,194,12)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="911.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9546%" y="885" width="0.0144%" height="15" fill="rgb(212,58,17)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="895.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9546%" y="869" width="0.0144%" height="15" fill="rgb(254,5,10)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="879.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.9546%" y="853" width="0.0144%" height="15" fill="rgb(246,91,7)" fg:x="10023" fg:w="3"/><text x="48.2046%" y="863.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (14 samples, 0.07%)</title><rect x="47.9068%" y="1173" width="0.0670%" height="15" fill="rgb(218,108,49)" fg:x="10013" fg:w="14"/><text x="48.1568%" y="1183.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (14 samples, 0.07%)</title><rect x="47.9068%" y="1157" width="0.0670%" height="15" fill="rgb(238,123,20)" fg:x="10013" fg:w="14"/><text x="48.1568%" y="1167.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (14 samples, 0.07%)</title><rect x="47.9068%" y="1141" width="0.0670%" height="15" fill="rgb(231,69,23)" fg:x="10013" fg:w="14"/><text x="48.1568%" y="1151.50"></text></g><g><title>rayon_core::registry::in_worker (14 samples, 0.07%)</title><rect x="47.9068%" y="1125" width="0.0670%" height="15" fill="rgb(230,209,3)" fg:x="10013" fg:w="14"/><text x="48.1568%" y="1135.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (13 samples, 0.06%)</title><rect x="47.9116%" y="1109" width="0.0622%" height="15" fill="rgb(231,19,0)" fg:x="10014" fg:w="13"/><text x="48.1616%" y="1119.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.02%)</title><rect x="47.9546%" y="1093" width="0.0191%" height="15" fill="rgb(226,192,25)" fg:x="10023" fg:w="4"/><text x="48.2046%" y="1103.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (4 samples, 0.02%)</title><rect x="47.9546%" y="1077" width="0.0191%" height="15" fill="rgb(223,175,53)" fg:x="10023" fg:w="4"/><text x="48.2046%" y="1087.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="47.9546%" y="1061" width="0.0191%" height="15" fill="rgb(248,35,51)" fg:x="10023" fg:w="4"/><text x="48.2046%" y="1071.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="47.9546%" y="1045" width="0.0191%" height="15" fill="rgb(230,37,26)" fg:x="10023" fg:w="4"/><text x="48.2046%" y="1055.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="47.9546%" y="1029" width="0.0191%" height="15" fill="rgb(206,120,22)" fg:x="10023" fg:w="4"/><text x="48.2046%" y="1039.50"></text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (3 samples, 0.01%)</title><rect x="47.9834%" y="1173" width="0.0144%" height="15" fill="rgb(207,165,28)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1183.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (3 samples, 0.01%)</title><rect x="47.9834%" y="1157" width="0.0144%" height="15" fill="rgb(226,23,46)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1167.50"></text></g><g><title>&lt;alloc::boxed::Box&lt;F,A&gt; as core::ops::function::FnOnce&lt;Args&gt;&gt;::call_once (3 samples, 0.01%)</title><rect x="47.9834%" y="1141" width="0.0144%" height="15" fill="rgb(208,130,44)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1151.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (3 samples, 0.01%)</title><rect x="47.9834%" y="1125" width="0.0144%" height="15" fill="rgb(231,67,8)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1135.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (3 samples, 0.01%)</title><rect x="47.9834%" y="1109" width="0.0144%" height="15" fill="rgb(205,183,22)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1119.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (3 samples, 0.01%)</title><rect x="47.9834%" y="1093" width="0.0144%" height="15" fill="rgb(224,47,9)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1103.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.01%)</title><rect x="47.9834%" y="1077" width="0.0144%" height="15" fill="rgb(250,183,49)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1087.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.9834%" y="1061" width="0.0144%" height="15" fill="rgb(220,151,39)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1071.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9834%" y="1045" width="0.0144%" height="15" fill="rgb(220,118,20)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1055.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9834%" y="1029" width="0.0144%" height="15" fill="rgb(231,65,51)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1039.50"></text></g><g><title>_ZN10rayon_core4join12join_context28_$u7b$$u7b$closure$u7d$$u7d$17hd12e02889ac98f40E.llvm.8237650543137746647 (3 samples, 0.01%)</title><rect x="47.9834%" y="1013" width="0.0144%" height="15" fill="rgb(253,125,37)" fg:x="10029" fg:w="3"/><text x="48.2334%" y="1023.50"></text></g><g><title>&lt;rayon_core::job::StackJob&lt;L,F,R&gt; as rayon_core::job::Job&gt;::execute (3 samples, 0.01%)</title><rect x="47.9977%" y="1125" width="0.0144%" height="15" fill="rgb(232,102,6)" fg:x="10032" fg:w="3"/><text x="48.2477%" y="1135.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.01%)</title><rect x="47.9977%" y="1109" width="0.0144%" height="15" fill="rgb(251,105,13)" fg:x="10032" fg:w="3"/><text x="48.2477%" y="1119.50"></text></g><g><title>rayon_core::registry::in_worker (3 samples, 0.01%)</title><rect x="47.9977%" y="1093" width="0.0144%" height="15" fill="rgb(222,179,29)" fg:x="10032" fg:w="3"/><text x="48.2477%" y="1103.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (5 samples, 0.02%)</title><rect x="47.9977%" y="1173" width="0.0239%" height="15" fill="rgb(229,180,53)" fg:x="10032" fg:w="5"/><text x="48.2477%" y="1183.50"></text></g><g><title>rayon_core::registry::ThreadBuilder::run (5 samples, 0.02%)</title><rect x="47.9977%" y="1157" width="0.0239%" height="15" fill="rgb(238,104,13)" fg:x="10032" fg:w="5"/><text x="48.2477%" y="1167.50"></text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (5 samples, 0.02%)</title><rect x="47.9977%" y="1141" width="0.0239%" height="15" fill="rgb(210,130,5)" fg:x="10032" fg:w="5"/><text x="48.2477%" y="1151.50"></text></g><g><title>[unknown] (1,222 samples, 5.85%)</title><rect x="42.1989%" y="1189" width="5.8466%" height="15" fill="rgb(233,87,49)" fg:x="8820" fg:w="1222"/><text x="42.4489%" y="1199.50">[unknow..</text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="48.0216%" y="1173" width="0.0239%" height="15" fill="rgb(243,34,9)" fg:x="10037" fg:w="5"/><text x="48.2716%" y="1183.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::abs_distributions (11 samples, 0.05%)</title><rect x="48.0503%" y="869" width="0.0526%" height="15" fill="rgb(235,225,10)" fg:x="10043" fg:w="11"/><text x="48.3003%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (11 samples, 0.05%)</title><rect x="48.0503%" y="853" width="0.0526%" height="15" fill="rgb(212,0,30)" fg:x="10043" fg:w="11"/><text x="48.3003%" y="863.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;mut F&gt;::call_once (11 samples, 0.05%)</title><rect x="48.0503%" y="837" width="0.0526%" height="15" fill="rgb(211,177,0)" fg:x="10043" fg:w="11"/><text x="48.3003%" y="847.50"></text></g><g><title>criterion::kde::sweep_and_estimate (10 samples, 0.05%)</title><rect x="48.0551%" y="821" width="0.0478%" height="15" fill="rgb(225,220,11)" fg:x="10044" fg:w="10"/><text x="48.3051%" y="831.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::pdf (5 samples, 0.02%)</title><rect x="48.1125%" y="869" width="0.0239%" height="15" fill="rgb(215,10,13)" fg:x="10056" fg:w="5"/><text x="48.3625%" y="879.50"></text></g><g><title>criterion::plot::gnuplot_backend::pdf::pdf_comparison_small (5 samples, 0.02%)</title><rect x="48.1125%" y="853" width="0.0239%" height="15" fill="rgb(240,177,14)" fg:x="10056" fg:w="5"/><text x="48.3625%" y="863.50"></text></g><g><title>_ZN9criterion4plot15gnuplot_backend3pdf21pdf_comparison_figure17h8a034403ce51312bE.llvm.3675958557508775893 (5 samples, 0.02%)</title><rect x="48.1125%" y="837" width="0.0239%" height="15" fill="rgb(243,7,39)" fg:x="10056" fg:w="5"/><text x="48.3625%" y="847.50"></text></g><g><title>criterion::kde::sweep_and_estimate (5 samples, 0.02%)</title><rect x="48.1125%" y="821" width="0.0239%" height="15" fill="rgb(212,99,0)" fg:x="10056" fg:w="5"/><text x="48.3625%" y="831.50"></text></g><g><title>rayon::iter::collect::collect_with_consumer (4 samples, 0.02%)</title><rect x="48.1173%" y="805" width="0.0191%" height="15" fill="rgb(225,162,48)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="815.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.02%)</title><rect x="48.1173%" y="789" width="0.0191%" height="15" fill="rgb(246,16,25)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="799.50"></text></g><g><title>rayon_core::registry::in_worker (4 samples, 0.02%)</title><rect x="48.1173%" y="773" width="0.0191%" height="15" fill="rgb(220,150,2)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="783.50"></text></g><g><title>_ZN10rayon_core8registry8Registry14in_worker_cold17h86bbaa69138b9a91E.llvm.8237650543137746647 (4 samples, 0.02%)</title><rect x="48.1173%" y="757" width="0.0191%" height="15" fill="rgb(237,113,11)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="767.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (4 samples, 0.02%)</title><rect x="48.1173%" y="741" width="0.0191%" height="15" fill="rgb(236,70,20)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="751.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (4 samples, 0.02%)</title><rect x="48.1173%" y="725" width="0.0191%" height="15" fill="rgb(234,94,7)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="735.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (4 samples, 0.02%)</title><rect x="48.1173%" y="709" width="0.0191%" height="15" fill="rgb(250,221,0)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="719.50"></text></g><g><title>std::sys::unix::futex::futex_wait (4 samples, 0.02%)</title><rect x="48.1173%" y="693" width="0.0191%" height="15" fill="rgb(245,149,46)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="703.50"></text></g><g><title>syscall (4 samples, 0.02%)</title><rect x="48.1173%" y="677" width="0.0191%" height="15" fill="rgb(215,37,27)" fg:x="10057" fg:w="4"/><text x="48.3673%" y="687.50"></text></g><g><title>&lt;criterion::plot::gnuplot_backend::Gnuplot as criterion::plot::Plotter&gt;::rel_distributions (4 samples, 0.02%)</title><rect x="48.1365%" y="869" width="0.0191%" height="15" fill="rgb(232,65,3)" fg:x="10061" fg:w="4"/><text x="48.3865%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (4 samples, 0.02%)</title><rect x="48.1365%" y="853" width="0.0191%" height="15" fill="rgb(214,2,16)" fg:x="10061" fg:w="4"/><text x="48.3865%" y="863.50"></text></g><g><title>criterion::plot::gnuplot_backend::distributions::rel_distribution (4 samples, 0.02%)</title><rect x="48.1365%" y="837" width="0.0191%" height="15" fill="rgb(227,131,50)" fg:x="10061" fg:w="4"/><text x="48.3865%" y="847.50"></text></g><g><title>criterion::kde::sweep_and_estimate (4 samples, 0.02%)</title><rect x="48.1365%" y="821" width="0.0191%" height="15" fill="rgb(247,131,45)" fg:x="10061" fg:w="4"/><text x="48.3865%" y="831.50"></text></g><g><title>&lt;criterion::html::Html as criterion::report::Report&gt;::measurement_complete (24 samples, 0.11%)</title><rect x="48.0503%" y="885" width="0.1148%" height="15" fill="rgb(215,97,47)" fg:x="10043" fg:w="24"/><text x="48.3003%" y="895.50"></text></g><g><title>criterion::analysis::compare::common (7 samples, 0.03%)</title><rect x="48.1652%" y="885" width="0.0335%" height="15" fill="rgb(233,143,12)" fg:x="10067" fg:w="7"/><text x="48.4152%" y="895.50"></text></g><g><title>criterion::estimate::build_change_estimates (7 samples, 0.03%)</title><rect x="48.1652%" y="869" width="0.0335%" height="15" fill="rgb(222,57,17)" fg:x="10067" fg:w="7"/><text x="48.4152%" y="879.50"></text></g><g><title>criterion::stats::Distribution&lt;A&gt;::confidence_interval (5 samples, 0.02%)</title><rect x="48.1747%" y="853" width="0.0239%" height="15" fill="rgb(214,119,38)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="863.50"></text></g><g><title>criterion::stats::univariate::sample::Sample&lt;A&gt;::percentiles (5 samples, 0.02%)</title><rect x="48.1747%" y="837" width="0.0239%" height="15" fill="rgb(217,28,47)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="847.50"></text></g><g><title>rayon::slice::quicksort::recurse (5 samples, 0.02%)</title><rect x="48.1747%" y="821" width="0.0239%" height="15" fill="rgb(231,14,52)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="831.50"></text></g><g><title>_ZN10rayon_core8registry8Registry14in_worker_cold17he529fc7478b89cdcE.llvm.8237650543137746647 (5 samples, 0.02%)</title><rect x="48.1747%" y="805" width="0.0239%" height="15" fill="rgb(220,158,18)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="815.50"></text></g><g><title>rayon_core::latch::LockLatch::wait_and_reset (5 samples, 0.02%)</title><rect x="48.1747%" y="789" width="0.0239%" height="15" fill="rgb(222,143,46)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="799.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait (5 samples, 0.02%)</title><rect x="48.1747%" y="773" width="0.0239%" height="15" fill="rgb(227,165,5)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="783.50"></text></g><g><title>std::sys::unix::locks::futex_condvar::Condvar::wait_optional_timeout (5 samples, 0.02%)</title><rect x="48.1747%" y="757" width="0.0239%" height="15" fill="rgb(216,222,49)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="767.50"></text></g><g><title>std::sys::unix::futex::futex_wait (5 samples, 0.02%)</title><rect x="48.1747%" y="741" width="0.0239%" height="15" fill="rgb(238,73,39)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="751.50"></text></g><g><title>syscall (5 samples, 0.02%)</title><rect x="48.1747%" y="725" width="0.0239%" height="15" fill="rgb(252,115,9)" fg:x="10069" fg:w="5"/><text x="48.4247%" y="735.50"></text></g><g><title>criterion::analysis::estimates (3 samples, 0.01%)</title><rect x="48.1987%" y="885" width="0.0144%" height="15" fill="rgb(238,202,4)" fg:x="10074" fg:w="3"/><text x="48.4487%" y="895.50"></text></g><g><title>__rdl_dealloc (3 samples, 0.01%)</title><rect x="52.1171%" y="805" width="0.0144%" height="15" fill="rgb(252,153,44)" fg:x="10893" fg:w="3"/><text x="52.3671%" y="815.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (3 samples, 0.01%)</title><rect x="52.1171%" y="789" width="0.0144%" height="15" fill="rgb(235,128,27)" fg:x="10893" fg:w="3"/><text x="52.3671%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve_for_push (43 samples, 0.21%)</title><rect x="52.1363%" y="805" width="0.2057%" height="15" fill="rgb(221,121,47)" fg:x="10897" fg:w="43"/><text x="52.3863%" y="815.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h4cb24fefb0c4a84fE.llvm.15425341036795596644 (36 samples, 0.17%)</title><rect x="52.1698%" y="789" width="0.1722%" height="15" fill="rgb(247,211,47)" fg:x="10904" fg:w="36"/><text x="52.4198%" y="799.50"></text></g><g><title>malloc (29 samples, 0.14%)</title><rect x="52.2032%" y="773" width="0.1387%" height="15" fill="rgb(252,47,49)" fg:x="10911" fg:w="29"/><text x="52.4532%" y="783.50"></text></g><g><title>cfree (21 samples, 0.10%)</title><rect x="52.3420%" y="805" width="0.1005%" height="15" fill="rgb(219,119,53)" fg:x="10940" fg:w="21"/><text x="52.5920%" y="815.50"></text></g><g><title>[libc.so.6] (12 samples, 0.06%)</title><rect x="52.3851%" y="789" width="0.0574%" height="15" fill="rgb(243,165,53)" fg:x="10949" fg:w="12"/><text x="52.6351%" y="799.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::align_offset (37 samples, 0.18%)</title><rect x="60.3895%" y="789" width="0.1770%" height="15" fill="rgb(230,12,35)" fg:x="12622" fg:w="37"/><text x="60.6395%" y="799.50"></text></g><g><title>core::ptr::align_offset (37 samples, 0.18%)</title><rect x="60.3895%" y="773" width="0.1770%" height="15" fill="rgb(239,57,49)" fg:x="12622" fg:w="37"/><text x="60.6395%" y="783.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (1,768 samples, 8.46%)</title><rect x="60.5665%" y="789" width="8.4589%" height="15" fill="rgb(231,154,7)" fg:x="12659" fg:w="1768"/><text x="60.8165%" y="799.50">core::slice:..</text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (241 samples, 1.15%)</title><rect x="67.8724%" y="773" width="1.1531%" height="15" fill="rgb(248,81,34)" fg:x="14186" fg:w="241"/><text x="68.1224%" y="783.50"></text></g><g><title>core::slice::memchr::memchr_naive (1,277 samples, 6.11%)</title><rect x="69.0254%" y="789" width="6.1098%" height="15" fill="rgb(247,9,5)" fg:x="14427" fg:w="1277"/><text x="69.2754%" y="799.50">core::sl..</text></g><g><title>core::slice::memchr::memchr_aligned (4,824 samples, 23.08%)</title><rect x="52.4425%" y="805" width="23.0802%" height="15" fill="rgb(228,172,27)" fg:x="10961" fg:w="4824"/><text x="52.6925%" y="815.50">core::slice::memchr::memchr_aligned</text></g><g><title>core::slice::memchr::repeat_byte (81 samples, 0.39%)</title><rect x="75.1352%" y="789" width="0.3875%" height="15" fill="rgb(230,57,44)" fg:x="15704" fg:w="81"/><text x="75.3852%" y="799.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (5,719 samples, 27.36%)</title><rect x="48.2130%" y="869" width="27.3623%" height="15" fill="rgb(249,35,22)" fg:x="10077" fg:w="5719"/><text x="48.4630%" y="879.50">&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from..</text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5,719 samples, 27.36%)</title><rect x="48.2130%" y="853" width="27.3623%" height="15" fill="rgb(250,137,27)" fg:x="10077" fg:w="5719"/><text x="48.4630%" y="863.50">&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core..</text></g><g><title>criterion::bencher::Bencher&lt;M&gt;::iter (5,719 samples, 27.36%)</title><rect x="48.2130%" y="837" width="27.3623%" height="15" fill="rgb(251,57,31)" fg:x="10077" fg:w="5719"/><text x="48.4630%" y="847.50">criterion::bencher::Bencher&lt;M&gt;::iter</text></g><g><title>day_10::part2 (5,719 samples, 27.36%)</title><rect x="48.2130%" y="821" width="27.3623%" height="15" fill="rgb(238,60,0)" fg:x="10077" fg:w="5719"/><text x="48.4630%" y="831.50">day_10::part2</text></g><g><title>fmodf (11 samples, 0.05%)</title><rect x="75.5227%" y="805" width="0.0526%" height="15" fill="rgb(242,185,39)" fg:x="15785" fg:w="11"/><text x="75.7727%" y="815.50"></text></g><g><title>__rust_dealloc (3 samples, 0.01%)</title><rect x="79.0201%" y="821" width="0.0144%" height="15" fill="rgb(240,63,43)" fg:x="16516" fg:w="3"/><text x="79.2701%" y="831.50"></text></g><g><title>__rust_alloc (5 samples, 0.02%)</title><rect x="79.0967%" y="789" width="0.0239%" height="15" fill="rgb(236,155,6)" fg:x="16532" fg:w="5"/><text x="79.3467%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve_for_push (36 samples, 0.17%)</title><rect x="79.0345%" y="821" width="0.1722%" height="15" fill="rgb(215,11,29)" fg:x="16519" fg:w="36"/><text x="79.2845%" y="831.50"></text></g><g><title>_ZN5alloc7raw_vec11finish_grow17h4cb24fefb0c4a84fE.llvm.15425341036795596644 (30 samples, 0.14%)</title><rect x="79.0632%" y="805" width="0.1435%" height="15" fill="rgb(228,180,48)" fg:x="16525" fg:w="30"/><text x="79.3132%" y="815.50"></text></g><g><title>malloc (18 samples, 0.09%)</title><rect x="79.1206%" y="789" width="0.0861%" height="15" fill="rgb(241,102,12)" fg:x="16537" fg:w="18"/><text x="79.3706%" y="799.50"></text></g><g><title>cfree (20 samples, 0.10%)</title><rect x="79.2067%" y="821" width="0.0957%" height="15" fill="rgb(246,213,4)" fg:x="16555" fg:w="20"/><text x="79.4567%" y="831.50"></text></g><g><title>[libc.so.6] (9 samples, 0.04%)</title><rect x="79.2594%" y="805" width="0.0431%" height="15" fill="rgb(218,134,35)" fg:x="16566" fg:w="9"/><text x="79.5094%" y="815.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::align_offset (29 samples, 0.14%)</title><rect x="86.4408%" y="805" width="0.1387%" height="15" fill="rgb(251,117,35)" fg:x="18067" fg:w="29"/><text x="86.6908%" y="815.50"></text></g><g><title>core::ptr::align_offset (29 samples, 0.14%)</title><rect x="86.4408%" y="789" width="0.1387%" height="15" fill="rgb(206,156,45)" fg:x="18067" fg:w="29"/><text x="86.6908%" y="799.50"></text></g><g><title>core::slice::memchr::contains_zero_byte (1,549 samples, 7.41%)</title><rect x="86.5796%" y="805" width="7.4111%" height="15" fill="rgb(218,52,27)" fg:x="18096" fg:w="1549"/><text x="86.8296%" y="815.50">core::slic..</text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (316 samples, 1.51%)</title><rect x="92.4788%" y="789" width="1.5119%" height="15" fill="rgb(238,83,36)" fg:x="19329" fg:w="316"/><text x="92.7288%" y="799.50"></text></g><g><title>core::slice::memchr::memchr_naive (1,185 samples, 5.67%)</title><rect x="93.9907%" y="805" width="5.6696%" height="15" fill="rgb(218,53,43)" fg:x="19645" fg:w="1185"/><text x="94.2407%" y="815.50">core::s..</text></g><g><title>core::slice::memchr::memchr_aligned (4,298 samples, 20.56%)</title><rect x="79.3024%" y="821" width="20.5636%" height="15" fill="rgb(239,54,39)" fg:x="16575" fg:w="4298"/><text x="79.5524%" y="831.50">core::slice::memchr::memchr_alig..</text></g><g><title>core::slice::memchr::repeat_byte (43 samples, 0.21%)</title><rect x="99.6603%" y="805" width="0.2057%" height="15" fill="rgb(212,198,13)" fg:x="20830" fg:w="43"/><text x="99.9103%" y="815.50"></text></g><g><title>fmodf (8 samples, 0.04%)</title><rect x="99.8660%" y="821" width="0.0383%" height="15" fill="rgb(234,54,46)" fg:x="20873" fg:w="8"/><text x="100.1160%" y="831.50"></text></g><g><title>criterion::Criterion&lt;M&gt;::bench_function (10,839 samples, 51.86%)</title><rect x="48.0503%" y="933" width="51.8588%" height="15" fill="rgb(217,120,7)" fg:x="10043" fg:w="10839"/><text x="48.3003%" y="943.50">criterion::Criterion&lt;M&gt;::bench_function</text></g><g><title>criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function (10,839 samples, 51.86%)</title><rect x="48.0503%" y="917" width="51.8588%" height="15" fill="rgb(246,39,15)" fg:x="10043" fg:w="10839"/><text x="48.3003%" y="927.50">criterion::benchmark_group::BenchmarkGroup&lt;M&gt;::bench_function</text></g><g><title>criterion::analysis::common (10,839 samples, 51.86%)</title><rect x="48.0503%" y="901" width="51.8588%" height="15" fill="rgb(242,143,31)" fg:x="10043" fg:w="10839"/><text x="48.3003%" y="911.50">criterion::analysis::common</text></g><g><title>criterion::routine::Routine::sample (10,805 samples, 51.70%)</title><rect x="48.2130%" y="885" width="51.6961%" height="15" fill="rgb(252,60,24)" fg:x="10077" fg:w="10805"/><text x="48.4630%" y="895.50">criterion::routine::Routine::sample</text></g><g><title>&lt;criterion::routine::Function&lt;M,F,T&gt; as criterion::routine::Routine&lt;M,T&gt;&gt;::warm_up (5,086 samples, 24.33%)</title><rect x="75.5753%" y="869" width="24.3338%" height="15" fill="rgb(249,220,7)" fg:x="15796" fg:w="5086"/><text x="75.8253%" y="879.50">&lt;criterion::routine::Function&lt;M,F,T&gt; as..</text></g><g><title>criterion::bencher::Bencher&lt;M&gt;::iter (5,086 samples, 24.33%)</title><rect x="75.5753%" y="853" width="24.3338%" height="15" fill="rgb(236,67,13)" fg:x="15796" fg:w="5086"/><text x="75.8253%" y="863.50">criterion::bencher::Bencher&lt;M&gt;::iter</text></g><g><title>day_10::part2 (5,086 samples, 24.33%)</title><rect x="75.5753%" y="837" width="24.3338%" height="15" fill="rgb(210,62,39)" fg:x="15796" fg:w="5086"/><text x="75.8253%" y="847.50">day_10::part2</text></g><g><title>_start (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1189" width="51.8683%" height="15" fill="rgb(219,122,53)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1199.50">_start</text></g><g><title>__libc_start_main (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1173" width="51.8683%" height="15" fill="rgb(218,87,25)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1183.50">__libc_start_main</text></g><g><title>[libc.so.6] (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1157" width="51.8683%" height="15" fill="rgb(234,179,48)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1167.50">[libc.so.6]</text></g><g><title>main (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1141" width="51.8683%" height="15" fill="rgb(248,90,0)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1151.50">main</text></g><g><title>std::rt::lang_start_internal (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1125" width="51.8683%" height="15" fill="rgb(207,228,37)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1135.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1109" width="51.8683%" height="15" fill="rgb(235,214,15)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1119.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1093" width="51.8683%" height="15" fill="rgb(210,144,39)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1103.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1077" width="51.8683%" height="15" fill="rgb(222,67,41)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1087.50">std::panicking::try::do_call</text></g><g><title>std::rt::lang_start_internal::_{{closure}} (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1061" width="51.8683%" height="15" fill="rgb(205,35,37)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1071.50">std::rt::lang_start_internal::_{{closure}}</text></g><g><title>std::panic::catch_unwind (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1045" width="51.8683%" height="15" fill="rgb(216,125,40)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1055.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1029" width="51.8683%" height="15" fill="rgb(228,227,20)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1039.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (10,841 samples, 51.87%)</title><rect x="48.0455%" y="1013" width="51.8683%" height="15" fill="rgb(242,173,45)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1023.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (10,841 samples, 51.87%)</title><rect x="48.0455%" y="997" width="51.8683%" height="15" fill="rgb(215,79,24)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="1007.50">core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once</text></g><g><title>_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h4914efbeb856254fE.llvm.10491013629822566013 (10,841 samples, 51.87%)</title><rect x="48.0455%" y="981" width="51.8683%" height="15" fill="rgb(238,164,38)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="991.50">_ZN3std2rt10lang_start28_$u7b$$u7b$closure$u7d$$u7d$17h4914efbeb856254fE.llvm.1049101..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (10,841 samples, 51.87%)</title><rect x="48.0455%" y="965" width="51.8683%" height="15" fill="rgb(245,196,38)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="975.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>part2::main (10,841 samples, 51.87%)</title><rect x="48.0455%" y="949" width="51.8683%" height="15" fill="rgb(231,217,29)" fg:x="10042" fg:w="10841"/><text x="48.2955%" y="959.50">part2::main</text></g><g><title>all (20,901 samples, 100%)</title><rect x="0.0000%" y="1221" width="100.0000%" height="15" fill="rgb(245,6,4)" fg:x="0" fg:w="20901"/><text x="0.2500%" y="1231.50"></text></g><g><title>part2-8ca061ab9 (19,856 samples, 95.00%)</title><rect x="4.9998%" y="1205" width="95.0002%" height="15" fill="rgb(214,76,49)" fg:x="1045" fg:w="19856"/><text x="5.2498%" y="1215.50">part2-8ca061ab9</text></g><g><title>day_10::part2 (18 samples, 0.09%)</title><rect x="99.9139%" y="1189" width="0.0861%" height="15" fill="rgb(205,96,12)" fg:x="20883" fg:w="18"/><text x="100.1639%" y="1199.50"></text></g></svg></svg>