Files
ReactionSystemsThesis/figures/flamegraph_mex10.svg
2025-11-17 04:04:55 +01:00

491 lines
348 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="550" onload="init(evt)" viewBox="0 0 1200 550" 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="550" 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="533.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="533.00"> </text><svg id="frames" x="10" width="1180" total_samples="323415197143"><g><title>[libc.so.6] (66,183,855 samples, 0.02%)</title><rect x="0.0178%" y="437" width="0.0205%" height="15" fill="rgb(227,0,7)" fg:x="57622476" fg:w="66183855"/><text x="0.2678%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;rsprocess::set::Set&gt;&gt; (33,117,695 samples, 0.01%)</title><rect x="0.0396%" y="437" width="0.0102%" height="15" fill="rgb(217,0,24)" fg:x="127948788" fg:w="33117695"/><text x="0.2896%" y="447.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (33,117,695 samples, 0.01%)</title><rect x="0.0396%" y="421" width="0.0102%" height="15" fill="rgb(221,193,54)" fg:x="127948788" fg:w="33117695"/><text x="0.2896%" y="431.50"></text></g><g><title>&lt;rsprocess::transitions::TransitionsIterator&lt;rsprocess::set::Set,rsprocess::system::System,rsprocess::process::Process&gt; as core::iter::traits::iterator::Iterator&gt;::next (144,832,570 samples, 0.04%)</title><rect x="0.0063%" y="453" width="0.0448%" height="15" fill="rgb(248,212,6)" fg:x="20370839" fg:w="144832570"/><text x="0.2563%" y="463.50"></text></g><g><title>[libc.so.6] (37,237,278 samples, 0.01%)</title><rect x="0.0511%" y="453" width="0.0115%" height="15" fill="rgb(208,68,35)" fg:x="165203409" fg:w="37237278"/><text x="0.3011%" y="463.50"></text></g><g><title>&lt;T as rsprocess::system::ExtensionsSystem&gt;::digraph (227,622,188 samples, 0.07%)</title><rect x="0.0025%" y="469" width="0.0704%" height="15" fill="rgb(232,128,0)" fg:x="7943122" fg:w="227622188"/><text x="0.2525%" y="479.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (96,761,410 samples, 0.03%)</title><rect x="0.0946%" y="437" width="0.0299%" height="15" fill="rgb(207,160,47)" fg:x="306054734" fg:w="96761410"/><text x="0.3446%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push (51,192,880 samples, 0.02%)</title><rect x="0.1246%" y="437" width="0.0158%" height="15" fill="rgb(228,23,34)" fg:x="402816144" fg:w="51192880"/><text x="0.3746%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push_with_handle (51,192,880 samples, 0.02%)</title><rect x="0.1246%" y="421" width="0.0158%" height="15" fill="rgb(218,30,26)" fg:x="402816144" fg:w="51192880"/><text x="0.3746%" y="431.50"></text></g><g><title>[libc.so.6] (320,174,468 samples, 0.10%)</title><rect x="0.1410%" y="309" width="0.0990%" height="15" fill="rgb(220,122,19)" fg:x="455967847" fg:w="320174468"/><text x="0.3910%" y="319.50"></text></g><g><title>[libc.so.6] (311,379,169 samples, 0.10%)</title><rect x="0.1437%" y="293" width="0.0963%" height="15" fill="rgb(250,228,42)" fg:x="464763146" fg:w="311379169"/><text x="0.3937%" y="303.50"></text></g><g><title>[unknown] (211,798,067 samples, 0.07%)</title><rect x="0.1745%" y="277" width="0.0655%" height="15" fill="rgb(240,193,28)" fg:x="564344248" fg:w="211798067"/><text x="0.4245%" y="287.50"></text></g><g><title>[unknown] (207,435,128 samples, 0.06%)</title><rect x="0.1758%" y="261" width="0.0641%" height="15" fill="rgb(216,20,37)" fg:x="568707187" fg:w="207435128"/><text x="0.4258%" y="271.50"></text></g><g><title>[unknown] (203,464,597 samples, 0.06%)</title><rect x="0.1771%" y="245" width="0.0629%" height="15" fill="rgb(206,188,39)" fg:x="572677718" fg:w="203464597"/><text x="0.4271%" y="255.50"></text></g><g><title>[unknown] (193,338,707 samples, 0.06%)</title><rect x="0.1802%" y="229" width="0.0598%" height="15" fill="rgb(217,207,13)" fg:x="582803608" fg:w="193338707"/><text x="0.4302%" y="239.50"></text></g><g><title>[unknown] (179,586,543 samples, 0.06%)</title><rect x="0.1845%" y="213" width="0.0555%" height="15" fill="rgb(231,73,38)" fg:x="596555772" fg:w="179586543"/><text x="0.4345%" y="223.50"></text></g><g><title>[unknown] (150,129,225 samples, 0.05%)</title><rect x="0.1936%" y="197" width="0.0464%" height="15" fill="rgb(225,20,46)" fg:x="626013090" fg:w="150129225"/><text x="0.4436%" y="207.50"></text></g><g><title>[unknown] (142,292,631 samples, 0.04%)</title><rect x="0.1960%" y="181" width="0.0440%" height="15" fill="rgb(210,31,41)" fg:x="633849684" fg:w="142292631"/><text x="0.4460%" y="191.50"></text></g><g><title>[unknown] (136,342,781 samples, 0.04%)</title><rect x="0.1978%" y="165" width="0.0422%" height="15" fill="rgb(221,200,47)" fg:x="639799534" fg:w="136342781"/><text x="0.4478%" y="175.50"></text></g><g><title>[unknown] (125,375,629 samples, 0.04%)</title><rect x="0.2012%" y="149" width="0.0388%" height="15" fill="rgb(226,26,5)" fg:x="650766686" fg:w="125375629"/><text x="0.4512%" y="159.50"></text></g><g><title>[unknown] (101,183,297 samples, 0.03%)</title><rect x="0.2087%" y="133" width="0.0313%" height="15" fill="rgb(249,33,26)" fg:x="674959018" fg:w="101183297"/><text x="0.4587%" y="143.50"></text></g><g><title>[unknown] (85,258,287 samples, 0.03%)</title><rect x="0.2136%" y="117" width="0.0264%" height="15" fill="rgb(235,183,28)" fg:x="690884028" fg:w="85258287"/><text x="0.4636%" y="127.50"></text></g><g><title>[unknown] (76,225,059 samples, 0.02%)</title><rect x="0.2164%" y="101" width="0.0236%" height="15" fill="rgb(221,5,38)" fg:x="699917256" fg:w="76225059"/><text x="0.4664%" y="111.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (335,407,494 samples, 0.10%)</title><rect x="0.1404%" y="389" width="0.1037%" height="15" fill="rgb(247,18,42)" fg:x="454009024" fg:w="335407494"/><text x="0.3904%" y="399.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (333,448,671 samples, 0.10%)</title><rect x="0.1410%" y="373" width="0.1031%" height="15" fill="rgb(241,131,45)" fg:x="455967847" fg:w="333448671"/><text x="0.3910%" y="383.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (333,448,671 samples, 0.10%)</title><rect x="0.1410%" y="357" width="0.1031%" height="15" fill="rgb(249,31,29)" fg:x="455967847" fg:w="333448671"/><text x="0.3910%" y="367.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (333,448,671 samples, 0.10%)</title><rect x="0.1410%" y="341" width="0.1031%" height="15" fill="rgb(225,111,53)" fg:x="455967847" fg:w="333448671"/><text x="0.3910%" y="351.50"></text></g><g><title>alloc::alloc::alloc (333,448,671 samples, 0.10%)</title><rect x="0.1410%" y="325" width="0.1031%" height="15" fill="rgb(238,160,17)" fg:x="455967847" fg:w="333448671"/><text x="0.3910%" y="335.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (489,279,546 samples, 0.15%)</title><rect x="0.0935%" y="453" width="0.1513%" height="15" fill="rgb(214,148,48)" fg:x="302436165" fg:w="489279546"/><text x="0.3435%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (337,706,687 samples, 0.10%)</title><rect x="0.1404%" y="437" width="0.1044%" height="15" fill="rgb(232,36,49)" fg:x="454009024" fg:w="337706687"/><text x="0.3904%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (337,706,687 samples, 0.10%)</title><rect x="0.1404%" y="421" width="0.1044%" height="15" fill="rgb(209,103,24)" fg:x="454009024" fg:w="337706687"/><text x="0.3904%" y="431.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (337,706,687 samples, 0.10%)</title><rect x="0.1404%" y="405" width="0.1044%" height="15" fill="rgb(229,88,8)" fg:x="454009024" fg:w="337706687"/><text x="0.3904%" y="415.50"></text></g><g><title>[unknown] (48,696,796 samples, 0.02%)</title><rect x="0.2486%" y="453" width="0.0151%" height="15" fill="rgb(213,181,19)" fg:x="804146772" fg:w="48696796"/><text x="0.4986%" y="463.50"></text></g><g><title>[libc.so.6] (48,696,796 samples, 0.02%)</title><rect x="0.2486%" y="437" width="0.0151%" height="15" fill="rgb(254,191,54)" fg:x="804146772" fg:w="48696796"/><text x="0.4986%" y="447.50"></text></g><g><title>[unknown] (48,696,796 samples, 0.02%)</title><rect x="0.2486%" y="421" width="0.0151%" height="15" fill="rgb(241,83,37)" fg:x="804146772" fg:w="48696796"/><text x="0.4986%" y="431.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (571,951,236 samples, 0.18%)</title><rect x="0.2637%" y="453" width="0.1768%" height="15" fill="rgb(233,36,39)" fg:x="852843568" fg:w="571951236"/><text x="0.5137%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (411,110,812 samples, 0.13%)</title><rect x="0.3134%" y="437" width="0.1271%" height="15" fill="rgb(226,3,54)" fg:x="1013683992" fg:w="411110812"/><text x="0.5634%" y="447.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (146,735,643 samples, 0.05%)</title><rect x="0.4405%" y="453" width="0.0454%" height="15" fill="rgb(245,192,40)" fg:x="1424794804" fg:w="146735643"/><text x="0.6905%" y="463.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (32,468,049 samples, 0.01%)</title><rect x="0.4759%" y="437" width="0.0100%" height="15" fill="rgb(238,167,29)" fg:x="1539062398" fg:w="32468049"/><text x="0.7259%" y="447.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (32,468,049 samples, 0.01%)</title><rect x="0.4759%" y="421" width="0.0100%" height="15" fill="rgb(232,182,51)" fg:x="1539062398" fg:w="32468049"/><text x="0.7259%" y="431.50"></text></g><g><title>core::ptr::read (32,468,049 samples, 0.01%)</title><rect x="0.4759%" y="405" width="0.0100%" height="15" fill="rgb(231,60,39)" fg:x="1539062398" fg:w="32468049"/><text x="0.7259%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push (173,148,991 samples, 0.05%)</title><rect x="0.4882%" y="453" width="0.0535%" height="15" fill="rgb(208,69,12)" fg:x="1578928448" fg:w="173148991"/><text x="0.7382%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push_with_handle (173,148,991 samples, 0.05%)</title><rect x="0.4882%" y="437" width="0.0535%" height="15" fill="rgb(235,93,37)" fg:x="1578928448" fg:w="173148991"/><text x="0.7382%" y="447.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (82,854,783 samples, 0.03%)</title><rect x="0.5494%" y="309" width="0.0256%" height="15" fill="rgb(213,116,39)" fg:x="1776809921" fg:w="82854783"/><text x="0.7994%" y="319.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (70,417,557 samples, 0.02%)</title><rect x="0.5532%" y="293" width="0.0218%" height="15" fill="rgb(222,207,29)" fg:x="1789247147" fg:w="70417557"/><text x="0.8032%" y="303.50"></text></g><g><title>alloc::alloc::exchange_malloc (62,119,086 samples, 0.02%)</title><rect x="0.5558%" y="277" width="0.0192%" height="15" fill="rgb(206,96,30)" fg:x="1797545618" fg:w="62119086"/><text x="0.8058%" y="287.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (62,119,086 samples, 0.02%)</title><rect x="0.5558%" y="261" width="0.0192%" height="15" fill="rgb(218,138,4)" fg:x="1797545618" fg:w="62119086"/><text x="0.8058%" y="271.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (62,119,086 samples, 0.02%)</title><rect x="0.5558%" y="245" width="0.0192%" height="15" fill="rgb(250,191,14)" fg:x="1797545618" fg:w="62119086"/><text x="0.8058%" y="255.50"></text></g><g><title>alloc::alloc::alloc (62,119,086 samples, 0.02%)</title><rect x="0.5558%" y="229" width="0.0192%" height="15" fill="rgb(239,60,40)" fg:x="1797545618" fg:w="62119086"/><text x="0.8058%" y="239.50"></text></g><g><title>[libc.so.6] (62,119,086 samples, 0.02%)</title><rect x="0.5558%" y="213" width="0.0192%" height="15" fill="rgb(206,27,48)" fg:x="1797545618" fg:w="62119086"/><text x="0.8058%" y="223.50"></text></g><g><title>[libc.so.6] (57,976,810 samples, 0.02%)</title><rect x="0.5571%" y="197" width="0.0179%" height="15" fill="rgb(225,35,8)" fg:x="1801687894" fg:w="57976810"/><text x="0.8071%" y="207.50"></text></g><g><title>&lt;rsprocess::choices::Choices as rsprocess::choices::BasicChoices&gt;::shuffle (91,137,583 samples, 0.03%)</title><rect x="0.5481%" y="325" width="0.0282%" height="15" fill="rgb(250,213,24)" fg:x="1772664926" fg:w="91137583"/><text x="0.7981%" y="335.50"></text></g><g><title>[libc.so.6] (618,748,160 samples, 0.19%)</title><rect x="0.5869%" y="309" width="0.1913%" height="15" fill="rgb(247,123,22)" fg:x="1898032932" fg:w="618748160"/><text x="0.8369%" y="319.50"></text></g><g><title>[unknown] (470,337,026 samples, 0.15%)</title><rect x="0.6328%" y="293" width="0.1454%" height="15" fill="rgb(231,138,38)" fg:x="2046444066" fg:w="470337026"/><text x="0.8828%" y="303.50"></text></g><g><title>[unknown] (423,628,022 samples, 0.13%)</title><rect x="0.6472%" y="277" width="0.1310%" height="15" fill="rgb(231,145,46)" fg:x="2093153070" fg:w="423628022"/><text x="0.8972%" y="287.50"></text></g><g><title>[unknown] (418,696,095 samples, 0.13%)</title><rect x="0.6487%" y="261" width="0.1295%" height="15" fill="rgb(251,118,11)" fg:x="2098084997" fg:w="418696095"/><text x="0.8987%" y="271.50"></text></g><g><title>[unknown] (399,642,429 samples, 0.12%)</title><rect x="0.6546%" y="245" width="0.1236%" height="15" fill="rgb(217,147,25)" fg:x="2117138663" fg:w="399642429"/><text x="0.9046%" y="255.50"></text></g><g><title>[unknown] (376,557,983 samples, 0.12%)</title><rect x="0.6618%" y="229" width="0.1164%" height="15" fill="rgb(247,81,37)" fg:x="2140223109" fg:w="376557983"/><text x="0.9118%" y="239.50"></text></g><g><title>[unknown] (323,014,950 samples, 0.10%)</title><rect x="0.6783%" y="213" width="0.0999%" height="15" fill="rgb(209,12,38)" fg:x="2193766142" fg:w="323014950"/><text x="0.9283%" y="223.50"></text></g><g><title>[unknown] (300,760,638 samples, 0.09%)</title><rect x="0.6852%" y="197" width="0.0930%" height="15" fill="rgb(227,1,9)" fg:x="2216020454" fg:w="300760638"/><text x="0.9352%" y="207.50"></text></g><g><title>[unknown] (273,867,123 samples, 0.08%)</title><rect x="0.6935%" y="181" width="0.0847%" height="15" fill="rgb(248,47,43)" fg:x="2242913969" fg:w="273867123"/><text x="0.9435%" y="191.50"></text></g><g><title>[unknown] (248,915,920 samples, 0.08%)</title><rect x="0.7012%" y="165" width="0.0770%" height="15" fill="rgb(221,10,30)" fg:x="2267865172" fg:w="248915920"/><text x="0.9512%" y="175.50"></text></g><g><title>[unknown] (217,062,687 samples, 0.07%)</title><rect x="0.7111%" y="149" width="0.0671%" height="15" fill="rgb(210,229,1)" fg:x="2299718405" fg:w="217062687"/><text x="0.9611%" y="159.50"></text></g><g><title>[unknown] (189,868,090 samples, 0.06%)</title><rect x="0.7195%" y="133" width="0.0587%" height="15" fill="rgb(222,148,37)" fg:x="2326913002" fg:w="189868090"/><text x="0.9695%" y="143.50"></text></g><g><title>[unknown] (172,633,472 samples, 0.05%)</title><rect x="0.7248%" y="117" width="0.0534%" height="15" fill="rgb(234,67,33)" fg:x="2344147620" fg:w="172633472"/><text x="0.9748%" y="127.50"></text></g><g><title>[libc.so.6] (658,004,125 samples, 0.20%)</title><rect x="0.5763%" y="325" width="0.2035%" height="15" fill="rgb(247,98,35)" fg:x="1863802509" fg:w="658004125"/><text x="0.8263%" y="335.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (817,709,635 samples, 0.25%)</title><rect x="0.5417%" y="405" width="0.2528%" height="15" fill="rgb(247,138,52)" fg:x="1752077439" fg:w="817709635"/><text x="0.7917%" y="415.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (817,709,635 samples, 0.25%)</title><rect x="0.5417%" y="389" width="0.2528%" height="15" fill="rgb(213,79,30)" fg:x="1752077439" fg:w="817709635"/><text x="0.7917%" y="399.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (817,709,635 samples, 0.25%)</title><rect x="0.5417%" y="373" width="0.2528%" height="15" fill="rgb(246,177,23)" fg:x="1752077439" fg:w="817709635"/><text x="0.7917%" y="383.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (817,709,635 samples, 0.25%)</title><rect x="0.5417%" y="357" width="0.2528%" height="15" fill="rgb(230,62,27)" fg:x="1752077439" fg:w="817709635"/><text x="0.7917%" y="367.50"></text></g><g><title>alloc::alloc::alloc (810,303,722 samples, 0.25%)</title><rect x="0.5440%" y="341" width="0.2505%" height="15" fill="rgb(216,154,8)" fg:x="1759483352" fg:w="810303722"/><text x="0.7940%" y="351.50"></text></g><g><title>malloc (43,846,527 samples, 0.01%)</title><rect x="0.7810%" y="325" width="0.0136%" height="15" fill="rgb(244,35,45)" fg:x="2525940547" fg:w="43846527"/><text x="1.0310%" y="335.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (821,814,736 samples, 0.25%)</title><rect x="0.5417%" y="453" width="0.2541%" height="15" fill="rgb(251,115,12)" fg:x="1752077439" fg:w="821814736"/><text x="0.7917%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (821,814,736 samples, 0.25%)</title><rect x="0.5417%" y="437" width="0.2541%" height="15" fill="rgb(240,54,50)" fg:x="1752077439" fg:w="821814736"/><text x="0.7917%" y="447.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (821,814,736 samples, 0.25%)</title><rect x="0.5417%" y="421" width="0.2541%" height="15" fill="rgb(233,84,52)" fg:x="1752077439" fg:w="821814736"/><text x="0.7917%" y="431.50"></text></g><g><title>[libc.so.6] (745,837,841 samples, 0.23%)</title><rect x="0.8033%" y="261" width="0.2306%" height="15" fill="rgb(207,117,47)" fg:x="2597920715" fg:w="745837841"/><text x="1.0533%" y="271.50"></text></g><g><title>[libc.so.6] (739,314,110 samples, 0.23%)</title><rect x="0.8053%" y="245" width="0.2286%" height="15" fill="rgb(249,43,39)" fg:x="2604444446" fg:w="739314110"/><text x="1.0553%" y="255.50"></text></g><g><title>[unknown] (618,070,387 samples, 0.19%)</title><rect x="0.8428%" y="229" width="0.1911%" height="15" fill="rgb(209,38,44)" fg:x="2725688169" fg:w="618070387"/><text x="1.0928%" y="239.50"></text></g><g><title>[unknown] (563,347,995 samples, 0.17%)</title><rect x="0.8597%" y="213" width="0.1742%" height="15" fill="rgb(236,212,23)" fg:x="2780410561" fg:w="563347995"/><text x="1.1097%" y="223.50"></text></g><g><title>[unknown] (542,556,988 samples, 0.17%)</title><rect x="0.8661%" y="197" width="0.1678%" height="15" fill="rgb(242,79,21)" fg:x="2801201568" fg:w="542556988"/><text x="1.1161%" y="207.50"></text></g><g><title>[unknown] (532,884,531 samples, 0.16%)</title><rect x="0.8691%" y="181" width="0.1648%" height="15" fill="rgb(211,96,35)" fg:x="2810874025" fg:w="532884531"/><text x="1.1191%" y="191.50"></text></g><g><title>[unknown] (484,915,072 samples, 0.15%)</title><rect x="0.8840%" y="165" width="0.1499%" height="15" fill="rgb(253,215,40)" fg:x="2858843484" fg:w="484915072"/><text x="1.1340%" y="175.50"></text></g><g><title>[unknown] (408,865,740 samples, 0.13%)</title><rect x="0.9075%" y="149" width="0.1264%" height="15" fill="rgb(211,81,21)" fg:x="2934892816" fg:w="408865740"/><text x="1.1575%" y="159.50"></text></g><g><title>[unknown] (380,792,672 samples, 0.12%)</title><rect x="0.9161%" y="133" width="0.1177%" height="15" fill="rgb(208,190,38)" fg:x="2962965884" fg:w="380792672"/><text x="1.1661%" y="143.50"></text></g><g><title>[unknown] (339,013,465 samples, 0.10%)</title><rect x="0.9291%" y="117" width="0.1048%" height="15" fill="rgb(235,213,38)" fg:x="3004745091" fg:w="339013465"/><text x="1.1791%" y="127.50"></text></g><g><title>[unknown] (300,444,707 samples, 0.09%)</title><rect x="0.9410%" y="101" width="0.0929%" height="15" fill="rgb(237,122,38)" fg:x="3043313849" fg:w="300444707"/><text x="1.1910%" y="111.50"></text></g><g><title>[unknown] (252,602,705 samples, 0.08%)</title><rect x="0.9558%" y="85" width="0.0781%" height="15" fill="rgb(244,218,35)" fg:x="3091155851" fg:w="252602705"/><text x="1.2058%" y="95.50"></text></g><g><title>[unknown] (210,499,934 samples, 0.07%)</title><rect x="0.9688%" y="69" width="0.0651%" height="15" fill="rgb(240,68,47)" fg:x="3133258622" fg:w="210499934"/><text x="1.2188%" y="79.50"></text></g><g><title>[unknown] (202,435,613 samples, 0.06%)</title><rect x="0.9713%" y="53" width="0.0626%" height="15" fill="rgb(210,16,53)" fg:x="3141322943" fg:w="202435613"/><text x="1.2213%" y="63.50"></text></g><g><title>alloc::collections::btree::node::InternalNode&lt;K,V&gt;::new (778,693,654 samples, 0.24%)</title><rect x="0.7964%" y="357" width="0.2408%" height="15" fill="rgb(235,124,12)" fg:x="2575796843" fg:w="778693654"/><text x="1.0464%" y="367.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (774,061,452 samples, 0.24%)</title><rect x="0.7979%" y="341" width="0.2393%" height="15" fill="rgb(224,169,11)" fg:x="2580429045" fg:w="774061452"/><text x="1.0479%" y="351.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (774,061,452 samples, 0.24%)</title><rect x="0.7979%" y="325" width="0.2393%" height="15" fill="rgb(250,166,2)" fg:x="2580429045" fg:w="774061452"/><text x="1.0479%" y="335.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (774,061,452 samples, 0.24%)</title><rect x="0.7979%" y="309" width="0.2393%" height="15" fill="rgb(242,216,29)" fg:x="2580429045" fg:w="774061452"/><text x="1.0479%" y="319.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (774,061,452 samples, 0.24%)</title><rect x="0.7979%" y="293" width="0.2393%" height="15" fill="rgb(230,116,27)" fg:x="2580429045" fg:w="774061452"/><text x="1.0479%" y="303.50"></text></g><g><title>alloc::alloc::alloc (769,036,632 samples, 0.24%)</title><rect x="0.7994%" y="277" width="0.2378%" height="15" fill="rgb(228,99,48)" fg:x="2585453865" fg:w="769036632"/><text x="1.0494%" y="287.50"></text></g><g><title>alloc::collections::btree::mem::take_mut::{{closure}} (782,943,196 samples, 0.24%)</title><rect x="0.7958%" y="405" width="0.2421%" height="15" fill="rgb(253,11,6)" fg:x="2573892175" fg:w="782943196"/><text x="1.0458%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::push_internal_level::{{closure}} (782,943,196 samples, 0.24%)</title><rect x="0.7958%" y="389" width="0.2421%" height="15" fill="rgb(247,143,39)" fg:x="2573892175" fg:w="782943196"/><text x="1.0458%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Internal&gt;::new_internal (782,943,196 samples, 0.24%)</title><rect x="0.7958%" y="373" width="0.2421%" height="15" fill="rgb(236,97,10)" fg:x="2573892175" fg:w="782943196"/><text x="1.0458%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (3,119,132,153 samples, 0.96%)</title><rect x="0.0741%" y="469" width="0.9644%" height="15" fill="rgb(233,208,19)" fg:x="239639224" fg:w="3119132153"/><text x="0.3241%" y="479.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::push_internal_level (784,879,202 samples, 0.24%)</title><rect x="0.7958%" y="453" width="0.2427%" height="15" fill="rgb(216,164,2)" fg:x="2573892175" fg:w="784879202"/><text x="1.0458%" y="463.50"></text></g><g><title>alloc::collections::btree::mem::take_mut (784,879,202 samples, 0.24%)</title><rect x="0.7958%" y="437" width="0.2427%" height="15" fill="rgb(220,129,5)" fg:x="2573892175" fg:w="784879202"/><text x="1.0458%" y="447.50"></text></g><g><title>alloc::collections::btree::mem::replace (784,879,202 samples, 0.24%)</title><rect x="0.7958%" y="421" width="0.2427%" height="15" fill="rgb(242,17,10)" fg:x="2573892175" fg:w="784879202"/><text x="1.0458%" y="431.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (86,496,839 samples, 0.03%)</title><rect x="1.0871%" y="341" width="0.0267%" height="15" fill="rgb(242,107,0)" fg:x="3515839121" fg:w="86496839"/><text x="1.3371%" y="351.50"></text></g><g><title>alloc::alloc::dealloc (86,496,839 samples, 0.03%)</title><rect x="1.0871%" y="325" width="0.0267%" height="15" fill="rgb(251,28,31)" fg:x="3515839121" fg:w="86496839"/><text x="1.3371%" y="335.50"></text></g><g><title>cfree (45,154,009 samples, 0.01%)</title><rect x="1.0999%" y="309" width="0.0140%" height="15" fill="rgb(233,223,10)" fg:x="3557181951" fg:w="45154009"/><text x="1.3499%" y="319.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_end (136,620,143 samples, 0.04%)</title><rect x="1.0871%" y="389" width="0.0422%" height="15" fill="rgb(215,21,27)" fg:x="3515839121" fg:w="136620143"/><text x="1.3371%" y="399.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_end (136,620,143 samples, 0.04%)</title><rect x="1.0871%" y="373" width="0.0422%" height="15" fill="rgb(232,23,21)" fg:x="3515839121" fg:w="136620143"/><text x="1.3371%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (136,620,143 samples, 0.04%)</title><rect x="1.0871%" y="357" width="0.0422%" height="15" fill="rgb(244,5,23)" fg:x="3515839121" fg:w="136620143"/><text x="1.3371%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (50,123,304 samples, 0.02%)</title><rect x="1.1138%" y="341" width="0.0155%" height="15" fill="rgb(226,81,46)" fg:x="3602335960" fg:w="50123304"/><text x="1.3638%" y="351.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (38,128,177 samples, 0.01%)</title><rect x="1.1176%" y="325" width="0.0118%" height="15" fill="rgb(247,70,30)" fg:x="3614331087" fg:w="38128177"/><text x="1.3676%" y="335.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,alloc::collections::btree::node::marker::KV&gt;&gt;::next_leaf_edge (74,421,399 samples, 0.02%)</title><rect x="1.1306%" y="309" width="0.0230%" height="15" fill="rgb(212,68,19)" fg:x="3656603635" fg:w="74421399"/><text x="1.3806%" y="319.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (735,323,528 samples, 0.23%)</title><rect x="1.1536%" y="309" width="0.2274%" height="15" fill="rgb(240,187,13)" fg:x="3731025034" fg:w="735323528"/><text x="1.4036%" y="319.50"></text></g><g><title>[libc.so.6] (53,235,329 samples, 0.02%)</title><rect x="1.3836%" y="261" width="0.0165%" height="15" fill="rgb(223,113,26)" fg:x="4474653403" fg:w="53235329"/><text x="1.6336%" y="271.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (156,432,430 samples, 0.05%)</title><rect x="1.3810%" y="293" width="0.0484%" height="15" fill="rgb(206,192,2)" fg:x="4466348562" fg:w="156432430"/><text x="1.6310%" y="303.50"></text></g><g><title>alloc::alloc::dealloc (156,432,430 samples, 0.05%)</title><rect x="1.3810%" y="277" width="0.0484%" height="15" fill="rgb(241,108,4)" fg:x="4466348562" fg:w="156432430"/><text x="1.6310%" y="287.50"></text></g><g><title>cfree (94,892,260 samples, 0.03%)</title><rect x="1.4000%" y="261" width="0.0293%" height="15" fill="rgb(247,173,49)" fg:x="4527888732" fg:w="94892260"/><text x="1.6500%" y="271.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next_unchecked (995,148,750 samples, 0.31%)</title><rect x="1.1306%" y="373" width="0.3077%" height="15" fill="rgb(224,114,35)" fg:x="3656603635" fg:w="995148750"/><text x="1.3806%" y="383.50"></text></g><g><title>alloc::collections::btree::mem::replace (995,148,750 samples, 0.31%)</title><rect x="1.1306%" y="357" width="0.3077%" height="15" fill="rgb(245,159,27)" fg:x="3656603635" fg:w="995148750"/><text x="1.3806%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next_unchecked::{{closure}} (995,148,750 samples, 0.31%)</title><rect x="1.1306%" y="341" width="0.3077%" height="15" fill="rgb(245,172,44)" fg:x="3656603635" fg:w="995148750"/><text x="1.3806%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next (995,148,750 samples, 0.31%)</title><rect x="1.1306%" y="325" width="0.3077%" height="15" fill="rgb(236,23,11)" fg:x="3656603635" fg:w="995148750"/><text x="1.3806%" y="335.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (185,403,823 samples, 0.06%)</title><rect x="1.3810%" y="309" width="0.0573%" height="15" fill="rgb(205,117,38)" fg:x="4466348562" fg:w="185403823"/><text x="1.6310%" y="319.50"></text></g><g><title>core::mem::drop (1,508,571,052 samples, 0.47%)</title><rect x="1.0475%" y="453" width="0.4665%" height="15" fill="rgb(237,72,25)" fg:x="3387772903" fg:w="1508571052"/><text x="1.2975%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (1,475,513,953 samples, 0.46%)</title><rect x="1.0577%" y="437" width="0.4562%" height="15" fill="rgb(244,70,9)" fg:x="3420830002" fg:w="1475513953"/><text x="1.3077%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1,475,513,953 samples, 0.46%)</title><rect x="1.0577%" y="421" width="0.4562%" height="15" fill="rgb(217,125,39)" fg:x="3420830002" fg:w="1475513953"/><text x="1.3077%" y="431.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (1,475,513,953 samples, 0.46%)</title><rect x="1.0577%" y="405" width="0.4562%" height="15" fill="rgb(235,36,10)" fg:x="3420830002" fg:w="1475513953"/><text x="1.3077%" y="415.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_next_unchecked (1,243,884,691 samples, 0.38%)</title><rect x="1.1293%" y="389" width="0.3846%" height="15" fill="rgb(251,123,47)" fg:x="3652459264" fg:w="1243884691"/><text x="1.3793%" y="399.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (244,591,570 samples, 0.08%)</title><rect x="1.4383%" y="373" width="0.0756%" height="15" fill="rgb(221,13,13)" fg:x="4651752385" fg:w="244591570"/><text x="1.6883%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (215,564,636 samples, 0.07%)</title><rect x="1.4473%" y="357" width="0.0667%" height="15" fill="rgb(238,131,9)" fg:x="4680779319" fg:w="215564636"/><text x="1.6973%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (215,564,636 samples, 0.07%)</title><rect x="1.4473%" y="341" width="0.0667%" height="15" fill="rgb(211,50,8)" fg:x="4680779319" fg:w="215564636"/><text x="1.6973%" y="351.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (1,529,241,769 samples, 0.47%)</title><rect x="1.0449%" y="469" width="0.4728%" height="15" fill="rgb(245,182,24)" fg:x="3379474188" fg:w="1529241769"/><text x="1.2949%" y="479.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_back_kv (99,201,052 samples, 0.03%)</title><rect x="1.6137%" y="389" width="0.0307%" height="15" fill="rgb(242,14,37)" fg:x="5218895528" fg:w="99201052"/><text x="1.8637%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::left_kv (99,201,052 samples, 0.03%)</title><rect x="1.6137%" y="373" width="0.0307%" height="15" fill="rgb(246,228,12)" fg:x="5218895528" fg:w="99201052"/><text x="1.8637%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_back_unchecked::{{closure}} (194,346,204 samples, 0.06%)</title><rect x="1.6137%" y="405" width="0.0601%" height="15" fill="rgb(213,55,15)" fg:x="5218895528" fg:w="194346204"/><text x="1.8637%" y="415.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::into_kv (95,145,152 samples, 0.03%)</title><rect x="1.6444%" y="389" width="0.0294%" height="15" fill="rgb(209,9,3)" fg:x="5318096580" fg:w="95145152"/><text x="1.8944%" y="399.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (78,577,996 samples, 0.02%)</title><rect x="1.6495%" y="373" width="0.0243%" height="15" fill="rgb(230,59,30)" fg:x="5334663736" fg:w="78577996"/><text x="1.8995%" y="383.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (78,577,996 samples, 0.02%)</title><rect x="1.6495%" y="357" width="0.0243%" height="15" fill="rgb(209,121,21)" fg:x="5334663736" fg:w="78577996"/><text x="1.8995%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_back_unchecked (305,667,675 samples, 0.09%)</title><rect x="1.6137%" y="437" width="0.0945%" height="15" fill="rgb(220,109,13)" fg:x="5218895528" fg:w="305667675"/><text x="1.8637%" y="447.50"></text></g><g><title>alloc::collections::btree::mem::replace (305,667,675 samples, 0.09%)</title><rect x="1.6137%" y="421" width="0.0945%" height="15" fill="rgb(232,18,1)" fg:x="5218895528" fg:w="305667675"/><text x="1.8637%" y="431.50"></text></g><g><title>core::ptr::write (111,321,471 samples, 0.03%)</title><rect x="1.6738%" y="405" width="0.0344%" height="15" fill="rgb(215,41,42)" fg:x="5413241732" fg:w="111321471"/><text x="1.9238%" y="415.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (78,587,063 samples, 0.02%)</title><rect x="1.8567%" y="405" width="0.0243%" height="15" fill="rgb(224,123,36)" fg:x="6004709422" fg:w="78587063"/><text x="2.1067%" y="415.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (78,587,063 samples, 0.02%)</title><rect x="1.8567%" y="389" width="0.0243%" height="15" fill="rgb(240,125,3)" fg:x="6004709422" fg:w="78587063"/><text x="2.1067%" y="399.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (78,587,063 samples, 0.02%)</title><rect x="1.8567%" y="373" width="0.0243%" height="15" fill="rgb(205,98,50)" fg:x="6004709422" fg:w="78587063"/><text x="2.1067%" y="383.50"></text></g><g><title>core::ptr::read (78,587,063 samples, 0.02%)</title><rect x="1.8567%" y="357" width="0.0243%" height="15" fill="rgb(205,185,37)" fg:x="6004709422" fg:w="78587063"/><text x="2.1067%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (612,430,703 samples, 0.19%)</title><rect x="1.8349%" y="421" width="0.1894%" height="15" fill="rgb(238,207,15)" fg:x="5934349414" fg:w="612430703"/><text x="2.0849%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (463,483,632 samples, 0.14%)</title><rect x="1.8810%" y="405" width="0.1433%" height="15" fill="rgb(213,199,42)" fg:x="6083296485" fg:w="463483632"/><text x="2.1310%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (1,662,924,376 samples, 0.51%)</title><rect x="1.5178%" y="469" width="0.5142%" height="15" fill="rgb(235,201,11)" fg:x="4908715957" fg:w="1662924376"/><text x="1.7678%" y="479.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Immut,K,V&gt;::next_back_unchecked (1,352,744,805 samples, 0.42%)</title><rect x="1.6137%" y="453" width="0.4183%" height="15" fill="rgb(207,46,11)" fg:x="5218895528" fg:w="1352744805"/><text x="1.8637%" y="463.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_back (1,047,077,130 samples, 0.32%)</title><rect x="1.7082%" y="437" width="0.3238%" height="15" fill="rgb(241,35,35)" fg:x="5524563203" fg:w="1047077130"/><text x="1.9582%" y="447.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (9,608,176,302 samples, 2.97%)</title><rect x="5.8654%" y="373" width="2.9708%" height="15" fill="rgb(243,32,47)" fg:x="18969496786" fg:w="9608176302"/><text x="6.1154%" y="383.50">all..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (1,815,998,598 samples, 0.56%)</title><rect x="8.2747%" y="357" width="0.5615%" height="15" fill="rgb(247,202,23)" fg:x="26761674490" fg:w="1815998598"/><text x="8.5247%" y="367.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (823,204,807 samples, 0.25%)</title><rect x="8.8362%" y="357" width="0.2545%" height="15" fill="rgb(219,102,11)" fg:x="28577673088" fg:w="823204807"/><text x="9.0862%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_kv (11,092,868,484 samples, 3.43%)</title><rect x="5.7043%" y="389" width="3.4299%" height="15" fill="rgb(243,110,44)" fg:x="18448683934" fg:w="11092868484"/><text x="5.9543%" y="399.50">all..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (963,879,330 samples, 0.30%)</title><rect x="8.8362%" y="373" width="0.2980%" height="15" fill="rgb(222,74,54)" fg:x="28577673088" fg:w="963879330"/><text x="9.0862%" y="383.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (140,674,523 samples, 0.04%)</title><rect x="9.0908%" y="357" width="0.0435%" height="15" fill="rgb(216,99,12)" fg:x="29400877895" fg:w="140674523"/><text x="9.3408%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend::{{closure}} (140,674,523 samples, 0.04%)</title><rect x="9.0908%" y="341" width="0.0435%" height="15" fill="rgb(226,22,26)" fg:x="29400877895" fg:w="140674523"/><text x="9.3408%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (752,556,496 samples, 0.23%)</title><rect x="9.2033%" y="373" width="0.2327%" height="15" fill="rgb(217,163,10)" fg:x="29765003436" fg:w="752556496"/><text x="9.4533%" y="383.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (661,886,867 samples, 0.20%)</title><rect x="9.2314%" y="357" width="0.2047%" height="15" fill="rgb(213,25,53)" fg:x="29855673065" fg:w="661886867"/><text x="9.4814%" y="367.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (95,085,723 samples, 0.03%)</title><rect x="9.4360%" y="373" width="0.0294%" height="15" fill="rgb(252,105,26)" fg:x="30517559932" fg:w="95085723"/><text x="9.6860%" y="383.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (95,085,723 samples, 0.03%)</title><rect x="9.4360%" y="357" width="0.0294%" height="15" fill="rgb(220,39,43)" fg:x="30517559932" fg:w="95085723"/><text x="9.6860%" y="367.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (95,085,723 samples, 0.03%)</title><rect x="9.4360%" y="341" width="0.0294%" height="15" fill="rgb(229,68,48)" fg:x="30517559932" fg:w="95085723"/><text x="9.6860%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,alloc::collections::btree::node::marker::KV&gt;&gt;::next_leaf_edge (2,825,315,388 samples, 0.87%)</title><rect x="9.1342%" y="389" width="0.8736%" height="15" fill="rgb(252,8,32)" fg:x="29541552418" fg:w="2825315388"/><text x="9.3842%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (1,754,222,151 samples, 0.54%)</title><rect x="9.4654%" y="373" width="0.5424%" height="15" fill="rgb(223,20,43)" fg:x="30612645655" fg:w="1754222151"/><text x="9.7154%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (1,754,222,151 samples, 0.54%)</title><rect x="9.4654%" y="357" width="0.5424%" height="15" fill="rgb(229,81,49)" fg:x="30612645655" fg:w="1754222151"/><text x="9.7154%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked::{{closure}} (17,858,883,783 samples, 5.52%)</title><rect x="5.7043%" y="405" width="5.5220%" height="15" fill="rgb(236,28,36)" fg:x="18448683934" fg:w="17858883783"/><text x="5.9543%" y="415.50">alloc::..</text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::into_kv (3,940,699,911 samples, 1.22%)</title><rect x="10.0078%" y="389" width="1.2185%" height="15" fill="rgb(249,185,26)" fg:x="32366867806" fg:w="3940699911"/><text x="10.2578%" y="399.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (3,824,862,131 samples, 1.18%)</title><rect x="10.0437%" y="373" width="1.1826%" height="15" fill="rgb(249,174,33)" fg:x="32482705586" fg:w="3824862131"/><text x="10.2937%" y="383.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (3,824,862,131 samples, 1.18%)</title><rect x="10.0437%" y="357" width="1.1826%" height="15" fill="rgb(233,201,37)" fg:x="32482705586" fg:w="3824862131"/><text x="10.2937%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked (29,050,124,247 samples, 8.98%)</title><rect x="5.7043%" y="437" width="8.9823%" height="15" fill="rgb(221,78,26)" fg:x="18448683934" fg:w="29050124247"/><text x="5.9543%" y="447.50">alloc::collec..</text></g><g><title>alloc::collections::btree::mem::replace (29,050,124,247 samples, 8.98%)</title><rect x="5.7043%" y="421" width="8.9823%" height="15" fill="rgb(250,127,30)" fg:x="18448683934" fg:w="29050124247"/><text x="5.9543%" y="431.50">alloc::collec..</text></g><g><title>core::ptr::write (11,191,240,464 samples, 3.46%)</title><rect x="11.2263%" y="405" width="3.4603%" height="15" fill="rgb(230,49,44)" fg:x="36307567717" fg:w="11191240464"/><text x="11.4763%" y="415.50">cor..</text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (1,001,374,842 samples, 0.31%)</title><rect x="16.5828%" y="421" width="0.3096%" height="15" fill="rgb(229,67,23)" fg:x="53631322498" fg:w="1001374842"/><text x="16.8328%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (815,069,916 samples, 0.25%)</title><rect x="16.6404%" y="405" width="0.2520%" height="15" fill="rgb(249,83,47)" fg:x="53817627424" fg:w="815069916"/><text x="16.8904%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (48,759,438,360 samples, 15.08%)</title><rect x="2.0320%" y="469" width="15.0764%" height="15" fill="rgb(215,43,3)" fg:x="6571640333" fg:w="48759438360"/><text x="2.2820%" y="479.50">&lt;alloc::collections::bt..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Immut,K,V&gt;::next_unchecked (36,882,394,759 samples, 11.40%)</title><rect x="5.7043%" y="453" width="11.4040%" height="15" fill="rgb(238,154,13)" fg:x="18448683934" fg:w="36882394759"/><text x="5.9543%" y="463.50">alloc::collection..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (7,832,270,512 samples, 2.42%)</title><rect x="14.6866%" y="437" width="2.4217%" height="15" fill="rgb(219,56,2)" fg:x="47498808181" fg:w="7832270512"/><text x="14.9366%" y="447.50">al..</text></g><g><title>core::ptr::read (698,381,353 samples, 0.22%)</title><rect x="16.8924%" y="421" width="0.2159%" height="15" fill="rgb(233,0,4)" fg:x="54632697340" fg:w="698381353"/><text x="17.1424%" y="431.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::sort (70,341,513 samples, 0.02%)</title><rect x="17.3245%" y="453" width="0.0217%" height="15" fill="rgb(235,30,7)" fg:x="56030134790" fg:w="70341513"/><text x="17.5745%" y="463.50"></text></g><g><title>alloc::slice::stable_sort (70,341,513 samples, 0.02%)</title><rect x="17.3245%" y="437" width="0.0217%" height="15" fill="rgb(250,79,13)" fg:x="56030134790" fg:w="70341513"/><text x="17.5745%" y="447.50"></text></g><g><title>core::slice::sort::stable::sort (70,341,513 samples, 0.02%)</title><rect x="17.3245%" y="421" width="0.0217%" height="15" fill="rgb(211,146,34)" fg:x="56030134790" fg:w="70341513"/><text x="17.5745%" y="431.50"></text></g><g><title>core::slice::sort::shared::smallsort::insertion_sort_shift_left (62,054,365 samples, 0.02%)</title><rect x="17.3271%" y="405" width="0.0192%" height="15" fill="rgb(228,22,38)" fg:x="56038421938" fg:w="62054365"/><text x="17.5771%" y="415.50"></text></g><g><title>core::slice::sort::shared::smallsort::insert_tail (49,627,401 samples, 0.02%)</title><rect x="17.3309%" y="389" width="0.0153%" height="15" fill="rgb(235,168,5)" fg:x="56050848902" fg:w="49627401"/><text x="17.5809%" y="399.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (773,537,229 samples, 0.24%)</title><rect x="17.1084%" y="469" width="0.2392%" height="15" fill="rgb(221,155,16)" fg:x="55331078693" fg:w="773537229"/><text x="17.3584%" y="479.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (670,957,238 samples, 0.21%)</title><rect x="17.3476%" y="469" width="0.2075%" height="15" fill="rgb(215,215,53)" fg:x="56104615922" fg:w="670957238"/><text x="17.5976%" y="479.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (161,441,896 samples, 0.05%)</title><rect x="18.0641%" y="453" width="0.0499%" height="15" fill="rgb(223,4,10)" fg:x="58422203123" fg:w="161441896"/><text x="18.3141%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (161,441,896 samples, 0.05%)</title><rect x="18.0641%" y="437" width="0.0499%" height="15" fill="rgb(234,103,6)" fg:x="58422203123" fg:w="161441896"/><text x="18.3141%" y="447.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::ops::try_trait::Try&gt;::branch (57,847,983 samples, 0.02%)</title><rect x="18.1141%" y="453" width="0.0179%" height="15" fill="rgb(227,97,0)" fg:x="58583645019" fg:w="57847983"/><text x="18.3641%" y="463.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (368,302,759 samples, 0.11%)</title><rect x="18.1320%" y="453" width="0.1139%" height="15" fill="rgb(234,150,53)" fg:x="58641493002" fg:w="368302759"/><text x="18.3820%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::set::Intersection&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (2,254,911,054 samples, 0.70%)</title><rect x="17.5550%" y="469" width="0.6972%" height="15" fill="rgb(228,201,54)" fg:x="56775573160" fg:w="2254911054"/><text x="17.8050%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (57,756,936 samples, 0.02%)</title><rect x="18.2548%" y="469" width="0.0179%" height="15" fill="rgb(222,22,37)" fg:x="59038715815" fg:w="57756936"/><text x="18.5048%" y="479.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (57,756,936 samples, 0.02%)</title><rect x="18.2548%" y="453" width="0.0179%" height="15" fill="rgb(237,53,32)" fg:x="59038715815" fg:w="57756936"/><text x="18.5048%" y="463.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (57,756,936 samples, 0.02%)</title><rect x="18.2548%" y="437" width="0.0179%" height="15" fill="rgb(233,25,53)" fg:x="59038715815" fg:w="57756936"/><text x="18.5048%" y="447.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (46,651,576 samples, 0.01%)</title><rect x="18.2582%" y="421" width="0.0144%" height="15" fill="rgb(210,40,34)" fg:x="59049821175" fg:w="46651576"/><text x="18.5082%" y="431.50"></text></g><g><title>[libc.so.6] (46,651,576 samples, 0.01%)</title><rect x="18.2582%" y="405" width="0.0144%" height="15" fill="rgb(241,220,44)" fg:x="59049821175" fg:w="46651576"/><text x="18.5082%" y="415.50"></text></g><g><title>core::ops::function::FnOnce::call_once (727,908,224 samples, 0.23%)</title><rect x="21.3533%" y="357" width="0.2251%" height="15" fill="rgb(235,28,35)" fg:x="69059962389" fg:w="727908224"/><text x="21.6033%" y="367.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (727,908,224 samples, 0.23%)</title><rect x="21.3533%" y="341" width="0.2251%" height="15" fill="rgb(210,56,17)" fg:x="69059962389" fg:w="727908224"/><text x="21.6033%" y="351.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (727,908,224 samples, 0.23%)</title><rect x="21.3533%" y="325" width="0.2251%" height="15" fill="rgb(224,130,29)" fg:x="69059962389" fg:w="727908224"/><text x="21.6033%" y="335.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_mut (2,265,161,365 samples, 0.70%)</title><rect x="21.5784%" y="357" width="0.7004%" height="15" fill="rgb(235,212,8)" fg:x="69787870613" fg:w="2265161365"/><text x="21.8284%" y="367.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,084,043,557 samples, 0.95%)</title><rect x="21.3470%" y="389" width="0.9536%" height="15" fill="rgb(223,33,50)" fg:x="69039338335" fg:w="3084043557"/><text x="21.5970%" y="399.50"></text></g><g><title>core::iter::adapters::chain::and_then_or_clear (3,084,043,557 samples, 0.95%)</title><rect x="21.3470%" y="373" width="0.9536%" height="15" fill="rgb(219,149,13)" fg:x="69039338335" fg:w="3084043557"/><text x="21.5970%" y="383.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_none (70,349,914 samples, 0.02%)</title><rect x="22.2788%" y="357" width="0.0218%" height="15" fill="rgb(250,156,29)" fg:x="72053031978" fg:w="70349914"/><text x="22.5288%" y="367.50"></text></g><g><title>core::option::Option&lt;T&gt;::is_some (70,349,914 samples, 0.02%)</title><rect x="22.2788%" y="341" width="0.0218%" height="15" fill="rgb(216,193,19)" fg:x="72053031978" fg:w="70349914"/><text x="22.5288%" y="351.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,237,014,166 samples, 1.00%)</title><rect x="21.3470%" y="405" width="1.0009%" height="15" fill="rgb(216,135,14)" fg:x="69039338335" fg:w="3237014166"/><text x="21.5970%" y="415.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::cloned (152,970,609 samples, 0.05%)</title><rect x="22.3006%" y="389" width="0.0473%" height="15" fill="rgb(241,47,5)" fg:x="72123381892" fg:w="152970609"/><text x="22.5506%" y="399.50"></text></g><g><title>core::clone::impls::&lt;impl core::clone::Clone for u32&gt;::clone (66,194,619 samples, 0.02%)</title><rect x="22.3274%" y="373" width="0.0205%" height="15" fill="rgb(233,42,35)" fg:x="72210157882" fg:w="66194619"/><text x="22.5774%" y="383.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (95,068,624 samples, 0.03%)</title><rect x="22.3479%" y="405" width="0.0294%" height="15" fill="rgb(231,13,6)" fg:x="72276352501" fg:w="95068624"/><text x="22.5979%" y="415.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::copied (86,884,642 samples, 0.03%)</title><rect x="22.3504%" y="389" width="0.0269%" height="15" fill="rgb(207,181,40)" fg:x="72284536483" fg:w="86884642"/><text x="22.6004%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (8,207,041,350 samples, 2.54%)</title><rect x="19.8448%" y="437" width="2.5376%" height="15" fill="rgb(254,173,49)" fg:x="64180955451" fg:w="8207041350"/><text x="20.0948%" y="447.50">&lt;a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (8,207,041,350 samples, 2.54%)</title><rect x="19.8448%" y="421" width="2.5376%" height="15" fill="rgb(221,1,38)" fg:x="64180955451" fg:w="8207041350"/><text x="20.0948%" y="431.50">al..</text></g><g><title>core::iter::adapters::chain::and_then_or_clear (57,941,189 samples, 0.02%)</title><rect x="22.3824%" y="405" width="0.0179%" height="15" fill="rgb(206,124,46)" fg:x="72387996801" fg:w="57941189"/><text x="22.6324%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (66,197,908 samples, 0.02%)</title><rect x="22.3824%" y="437" width="0.0205%" height="15" fill="rgb(249,21,11)" fg:x="72387996801" fg:w="66197908"/><text x="22.6324%" y="447.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (66,197,908 samples, 0.02%)</title><rect x="22.3824%" y="421" width="0.0205%" height="15" fill="rgb(222,201,40)" fg:x="72387996801" fg:w="66197908"/><text x="22.6324%" y="431.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (529,150,091 samples, 0.16%)</title><rect x="22.4028%" y="437" width="0.1636%" height="15" fill="rgb(235,61,29)" fg:x="72454194709" fg:w="529150091"/><text x="22.6528%" y="447.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (529,150,091 samples, 0.16%)</title><rect x="22.4028%" y="421" width="0.1636%" height="15" fill="rgb(219,207,3)" fg:x="72454194709" fg:w="529150091"/><text x="22.6528%" y="431.50"></text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (78,532,053 samples, 0.02%)</title><rect x="22.5422%" y="405" width="0.0243%" height="15" fill="rgb(222,56,46)" fg:x="72904812747" fg:w="78532053"/><text x="22.7922%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (91,073,746 samples, 0.03%)</title><rect x="22.5665%" y="437" width="0.0282%" height="15" fill="rgb(239,76,54)" fg:x="72983344800" fg:w="91073746"/><text x="22.8165%" y="447.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::copied (82,786,071 samples, 0.03%)</title><rect x="22.5690%" y="421" width="0.0256%" height="15" fill="rgb(231,124,27)" fg:x="72991632475" fg:w="82786071"/><text x="22.8190%" y="431.50"></text></g><g><title>core::iter::traits::exact_size::ExactSizeIterator::len (49,555,833 samples, 0.02%)</title><rect x="22.6253%" y="405" width="0.0153%" height="15" fill="rgb(249,195,6)" fg:x="73173708242" fg:w="49555833"/><text x="22.8753%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (152,992,302 samples, 0.05%)</title><rect x="22.5946%" y="437" width="0.0473%" height="15" fill="rgb(237,174,47)" fg:x="73074418546" fg:w="152992302"/><text x="22.8446%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (152,992,302 samples, 0.05%)</title><rect x="22.5946%" y="421" width="0.0473%" height="15" fill="rgb(206,201,31)" fg:x="73074418546" fg:w="152992302"/><text x="22.8446%" y="431.50"></text></g><g><title>[libc.so.6] (11,011,576,241 samples, 3.40%)</title><rect x="22.6419%" y="437" width="3.4048%" height="15" fill="rgb(231,57,52)" fg:x="73227410848" fg:w="11011576241"/><text x="22.8919%" y="447.50">[li..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::new (185,835,199 samples, 0.06%)</title><rect x="26.0493%" y="437" width="0.0575%" height="15" fill="rgb(248,177,22)" fg:x="84247281396" fg:w="185835199"/><text x="26.2993%" y="447.50"></text></g><g><title>[libc.so.6] (120,019,049 samples, 0.04%)</title><rect x="26.9625%" y="309" width="0.0371%" height="15" fill="rgb(215,211,37)" fg:x="87200937681" fg:w="120019049"/><text x="27.2125%" y="319.50"></text></g><g><title>[libc.so.6] (86,906,139 samples, 0.03%)</title><rect x="26.9728%" y="293" width="0.0269%" height="15" fill="rgb(241,128,51)" fg:x="87234050591" fg:w="86906139"/><text x="27.2228%" y="303.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (4,442,796,638 samples, 1.37%)</title><rect x="26.2090%" y="357" width="1.3737%" height="15" fill="rgb(227,165,31)" fg:x="84764028957" fg:w="4442796638"/><text x="26.4590%" y="367.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (4,442,796,638 samples, 1.37%)</title><rect x="26.2090%" y="341" width="1.3737%" height="15" fill="rgb(228,167,24)" fg:x="84764028957" fg:w="4442796638"/><text x="26.4590%" y="351.50"></text></g><g><title>alloc::alloc::alloc (4,442,796,638 samples, 1.37%)</title><rect x="26.2090%" y="325" width="1.3737%" height="15" fill="rgb(228,143,12)" fg:x="84764028957" fg:w="4442796638"/><text x="26.4590%" y="335.50"></text></g><g><title>malloc (1,885,868,865 samples, 0.58%)</title><rect x="26.9996%" y="309" width="0.5831%" height="15" fill="rgb(249,149,8)" fg:x="87320956730" fg:w="1885868865"/><text x="27.2496%" y="319.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (1,005,272,390 samples, 0.31%)</title><rect x="27.5840%" y="357" width="0.3108%" height="15" fill="rgb(243,35,44)" fg:x="89210967251" fg:w="1005272390"/><text x="27.8340%" y="367.50"></text></g><g><title>core::intrinsics::unlikely (372,074,498 samples, 0.12%)</title><rect x="27.8949%" y="293" width="0.1150%" height="15" fill="rgb(246,89,9)" fg:x="90216239641" fg:w="372074498"/><text x="28.1449%" y="303.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (6,597,833,676 samples, 2.04%)</title><rect x="26.1067%" y="437" width="2.0401%" height="15" fill="rgb(233,213,13)" fg:x="84433116595" fg:w="6597833676"/><text x="26.3567%" y="447.50">a..</text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (6,597,833,676 samples, 2.04%)</title><rect x="26.1067%" y="421" width="2.0401%" height="15" fill="rgb(233,141,41)" fg:x="84433116595" fg:w="6597833676"/><text x="26.3567%" y="431.50">a..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (6,597,833,676 samples, 2.04%)</title><rect x="26.1067%" y="405" width="2.0401%" height="15" fill="rgb(239,167,4)" fg:x="84433116595" fg:w="6597833676"/><text x="26.3567%" y="415.50">a..</text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (6,597,833,676 samples, 2.04%)</title><rect x="26.1067%" y="389" width="2.0401%" height="15" fill="rgb(209,217,16)" fg:x="84433116595" fg:w="6597833676"/><text x="26.3567%" y="399.50">a..</text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (6,597,833,676 samples, 2.04%)</title><rect x="26.1067%" y="373" width="2.0401%" height="15" fill="rgb(219,88,35)" fg:x="84433116595" fg:w="6597833676"/><text x="26.3567%" y="383.50">a..</text></g><g><title>alloc::raw_vec::layout_array (814,710,630 samples, 0.25%)</title><rect x="27.8949%" y="357" width="0.2519%" height="15" fill="rgb(220,193,23)" fg:x="90216239641" fg:w="814710630"/><text x="28.1449%" y="367.50"></text></g><g><title>core::alloc::layout::Layout::repeat (814,710,630 samples, 0.25%)</title><rect x="27.8949%" y="341" width="0.2519%" height="15" fill="rgb(230,90,52)" fg:x="90216239641" fg:w="814710630"/><text x="28.1449%" y="351.50"></text></g><g><title>core::alloc::layout::Layout::repeat_packed (814,710,630 samples, 0.25%)</title><rect x="27.8949%" y="325" width="0.2519%" height="15" fill="rgb(252,106,19)" fg:x="90216239641" fg:w="814710630"/><text x="28.1449%" y="335.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (814,710,630 samples, 0.25%)</title><rect x="27.8949%" y="309" width="0.2519%" height="15" fill="rgb(206,74,20)" fg:x="90216239641" fg:w="814710630"/><text x="28.1449%" y="319.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (442,636,132 samples, 0.14%)</title><rect x="28.0099%" y="293" width="0.1369%" height="15" fill="rgb(230,138,44)" fg:x="90588314139" fg:w="442636132"/><text x="28.2599%" y="303.50"></text></g><g><title>core::cmp::max (244,148,442 samples, 0.08%)</title><rect x="28.1468%" y="437" width="0.0755%" height="15" fill="rgb(235,182,43)" fg:x="91030950271" fg:w="244148442"/><text x="28.3968%" y="447.50"></text></g><g><title>core::cmp::Ord::max (244,148,442 samples, 0.08%)</title><rect x="28.1468%" y="421" width="0.0755%" height="15" fill="rgb(242,16,51)" fg:x="91030950271" fg:w="244148442"/><text x="28.3968%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (29,070,557,541 samples, 8.99%)</title><rect x="19.3091%" y="453" width="8.9886%" height="15" fill="rgb(248,9,4)" fg:x="62448645289" fg:w="29070557541"/><text x="19.5591%" y="463.50">&lt;alloc::vec::..</text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (244,104,117 samples, 0.08%)</title><rect x="28.2223%" y="437" width="0.0755%" height="15" fill="rgb(210,31,22)" fg:x="91275098713" fg:w="244104117"/><text x="28.4723%" y="447.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 (32,431,012,723 samples, 10.03%)</title><rect x="18.2726%" y="469" width="10.0277%" height="15" fill="rgb(239,54,39)" fg:x="59096472751" fg:w="32431012723"/><text x="18.5226%" y="479.50">&lt;alloc::vec::V..</text></g><g><title>alloc::vec::Vec&lt;T&gt;::from_parts (78,639,602 samples, 0.02%)</title><rect x="28.6915%" y="453" width="0.0243%" height="15" fill="rgb(230,99,41)" fg:x="92792746496" fg:w="78639602"/><text x="28.9415%" y="463.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::from_parts_in (78,639,602 samples, 0.02%)</title><rect x="28.6915%" y="437" width="0.0243%" height="15" fill="rgb(253,106,12)" fg:x="92792746496" fg:w="78639602"/><text x="28.9415%" y="447.50"></text></g><g><title>core::cmp::PartialEq::ne (1,224,564,974 samples, 0.38%)</title><rect x="28.7158%" y="453" width="0.3786%" height="15" fill="rgb(213,46,41)" fg:x="92871386098" fg:w="1224564974"/><text x="28.9658%" y="463.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (1,224,564,974 samples, 0.38%)</title><rect x="28.7158%" y="437" width="0.3786%" height="15" fill="rgb(215,133,35)" fg:x="92871386098" fg:w="1224564974"/><text x="28.9658%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,alloc::vec::into_iter::IntoIter&lt;T&gt;&gt;&gt;::from_iter (2,775,331,710 samples, 0.86%)</title><rect x="28.3003%" y="469" width="0.8581%" height="15" fill="rgb(213,28,5)" fg:x="91527485474" fg:w="2775331710"/><text x="28.5503%" y="479.50"></text></g><g><title>core::iter::traits::exact_size::ExactSizeIterator::len (206,866,112 samples, 0.06%)</title><rect x="29.0945%" y="453" width="0.0640%" height="15" fill="rgb(215,77,49)" fg:x="94095951072" fg:w="206866112"/><text x="29.3445%" y="463.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (206,866,112 samples, 0.06%)</title><rect x="29.0945%" y="437" width="0.0640%" height="15" fill="rgb(248,100,22)" fg:x="94095951072" fg:w="206866112"/><text x="29.3445%" y="447.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::offset_from_unsigned (206,866,112 samples, 0.06%)</title><rect x="29.0945%" y="421" width="0.0640%" height="15" fill="rgb(208,67,9)" fg:x="94095951072" fg:w="206866112"/><text x="29.3445%" y="431.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset_from_unsigned (206,866,112 samples, 0.06%)</title><rect x="29.0945%" y="405" width="0.0640%" height="15" fill="rgb(219,133,21)" fg:x="94095951072" fg:w="206866112"/><text x="29.3445%" y="415.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset_from_unsigned (206,866,112 samples, 0.06%)</title><rect x="29.0945%" y="389" width="0.0640%" height="15" fill="rgb(246,46,29)" fg:x="94095951072" fg:w="206866112"/><text x="29.3445%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (72,265,069 samples, 0.02%)</title><rect x="29.1661%" y="373" width="0.0223%" height="15" fill="rgb(246,185,52)" fg:x="94327559644" fg:w="72265069"/><text x="29.4161%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push (49,279,924 samples, 0.02%)</title><rect x="29.1884%" y="373" width="0.0152%" height="15" fill="rgb(252,136,11)" fg:x="94399824713" fg:w="49279924"/><text x="29.4384%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push_with_handle (49,279,924 samples, 0.02%)</title><rect x="29.1884%" y="357" width="0.0152%" height="15" fill="rgb(219,138,53)" fg:x="94399824713" fg:w="49279924"/><text x="29.4384%" y="367.50"></text></g><g><title>[libc.so.6] (171,297,653 samples, 0.05%)</title><rect x="29.2080%" y="245" width="0.0530%" height="15" fill="rgb(211,51,23)" fg:x="94463108112" fg:w="171297653"/><text x="29.4580%" y="255.50"></text></g><g><title>[libc.so.6] (167,363,232 samples, 0.05%)</title><rect x="29.2092%" y="229" width="0.0517%" height="15" fill="rgb(247,221,28)" fg:x="94467042533" fg:w="167363232"/><text x="29.4592%" y="239.50"></text></g><g><title>[unknown] (118,754,420 samples, 0.04%)</title><rect x="29.2242%" y="213" width="0.0367%" height="15" fill="rgb(251,222,45)" fg:x="94515651345" fg:w="118754420"/><text x="29.4742%" y="223.50"></text></g><g><title>[unknown] (111,019,800 samples, 0.03%)</title><rect x="29.2266%" y="197" width="0.0343%" height="15" fill="rgb(217,162,53)" fg:x="94523385965" fg:w="111019800"/><text x="29.4766%" y="207.50"></text></g><g><title>[unknown] (107,144,701 samples, 0.03%)</title><rect x="29.2278%" y="181" width="0.0331%" height="15" fill="rgb(229,93,14)" fg:x="94527261064" fg:w="107144701"/><text x="29.4778%" y="191.50"></text></g><g><title>[unknown] (101,165,108 samples, 0.03%)</title><rect x="29.2297%" y="165" width="0.0313%" height="15" fill="rgb(209,67,49)" fg:x="94533240657" fg:w="101165108"/><text x="29.4797%" y="175.50"></text></g><g><title>[unknown] (93,399,655 samples, 0.03%)</title><rect x="29.2321%" y="149" width="0.0289%" height="15" fill="rgb(213,87,29)" fg:x="94541006110" fg:w="93399655"/><text x="29.4821%" y="159.50"></text></g><g><title>[unknown] (70,602,306 samples, 0.02%)</title><rect x="29.2391%" y="133" width="0.0218%" height="15" fill="rgb(205,151,52)" fg:x="94563803459" fg:w="70602306"/><text x="29.4891%" y="143.50"></text></g><g><title>[unknown] (62,642,890 samples, 0.02%)</title><rect x="29.2416%" y="117" width="0.0194%" height="15" fill="rgb(253,215,39)" fg:x="94571762875" fg:w="62642890"/><text x="29.4916%" y="127.50"></text></g><g><title>[unknown] (56,808,468 samples, 0.02%)</title><rect x="29.2434%" y="101" width="0.0176%" height="15" fill="rgb(221,220,41)" fg:x="94577597297" fg:w="56808468"/><text x="29.4934%" y="111.50"></text></g><g><title>[unknown] (48,975,968 samples, 0.02%)</title><rect x="29.2458%" y="85" width="0.0151%" height="15" fill="rgb(218,133,21)" fg:x="94585429797" fg:w="48975968"/><text x="29.4958%" y="95.50"></text></g><g><title>[unknown] (48,975,968 samples, 0.02%)</title><rect x="29.2458%" y="69" width="0.0151%" height="15" fill="rgb(221,193,43)" fg:x="94585429797" fg:w="48975968"/><text x="29.4958%" y="79.50"></text></g><g><title>[unknown] (43,263,692 samples, 0.01%)</title><rect x="29.2476%" y="53" width="0.0134%" height="15" fill="rgb(240,128,52)" fg:x="94591142073" fg:w="43263692"/><text x="29.4976%" y="63.50"></text></g><g><title>[unknown] (40,410,313 samples, 0.01%)</title><rect x="29.2485%" y="37" width="0.0125%" height="15" fill="rgb(253,114,12)" fg:x="94593995452" fg:w="40410313"/><text x="29.4985%" y="47.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (195,086,112 samples, 0.06%)</title><rect x="29.2037%" y="325" width="0.0603%" height="15" fill="rgb(215,223,47)" fg:x="94449104637" fg:w="195086112"/><text x="29.4537%" y="335.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (195,086,112 samples, 0.06%)</title><rect x="29.2037%" y="309" width="0.0603%" height="15" fill="rgb(248,225,23)" fg:x="94449104637" fg:w="195086112"/><text x="29.4537%" y="319.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (195,086,112 samples, 0.06%)</title><rect x="29.2037%" y="293" width="0.0603%" height="15" fill="rgb(250,108,0)" fg:x="94449104637" fg:w="195086112"/><text x="29.4537%" y="303.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (195,086,112 samples, 0.06%)</title><rect x="29.2037%" y="277" width="0.0603%" height="15" fill="rgb(228,208,7)" fg:x="94449104637" fg:w="195086112"/><text x="29.4537%" y="287.50"></text></g><g><title>alloc::alloc::alloc (195,086,112 samples, 0.06%)</title><rect x="29.2037%" y="261" width="0.0603%" height="15" fill="rgb(244,45,10)" fg:x="94449104637" fg:w="195086112"/><text x="29.4537%" y="271.50"></text></g><g><title>&lt;rsprocess::label::Label as core::clone::Clone&gt;::clone (340,832,837 samples, 0.11%)</title><rect x="29.1592%" y="453" width="0.1054%" height="15" fill="rgb(207,125,25)" fg:x="94305344057" fg:w="340832837"/><text x="29.4092%" y="463.50"></text></g><g><title>&lt;rsprocess::set::Set as core::clone::Clone&gt;::clone (338,706,068 samples, 0.10%)</title><rect x="29.1599%" y="437" width="0.1047%" height="15" fill="rgb(210,195,18)" fg:x="94307470826" fg:w="338706068"/><text x="29.4099%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T,A&gt; as core::clone::Clone&gt;::clone (338,706,068 samples, 0.10%)</title><rect x="29.1599%" y="421" width="0.1047%" height="15" fill="rgb(249,80,12)" fg:x="94307470826" fg:w="338706068"/><text x="29.4099%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone (338,706,068 samples, 0.10%)</title><rect x="29.1599%" y="405" width="0.1047%" height="15" fill="rgb(221,65,9)" fg:x="94307470826" fg:w="338706068"/><text x="29.4099%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (322,556,670 samples, 0.10%)</title><rect x="29.1649%" y="389" width="0.0997%" height="15" fill="rgb(235,49,36)" fg:x="94323620224" fg:w="322556670"/><text x="29.4149%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (197,072,257 samples, 0.06%)</title><rect x="29.2037%" y="373" width="0.0609%" height="15" fill="rgb(225,32,20)" fg:x="94449104637" fg:w="197072257"/><text x="29.4537%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (197,072,257 samples, 0.06%)</title><rect x="29.2037%" y="357" width="0.0609%" height="15" fill="rgb(215,141,46)" fg:x="94449104637" fg:w="197072257"/><text x="29.4537%" y="367.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (197,072,257 samples, 0.06%)</title><rect x="29.2037%" y="341" width="0.0609%" height="15" fill="rgb(250,160,47)" fg:x="94449104637" fg:w="197072257"/><text x="29.4537%" y="351.50"></text></g><g><title>&lt;petgraph::graph_impl::Edge&lt;E,Ix&gt; as core::clone::Clone&gt;::clone (355,661,903 samples, 0.11%)</title><rect x="29.1592%" y="469" width="0.1100%" height="15" fill="rgb(216,222,40)" fg:x="94305344057" fg:w="355661903"/><text x="29.4092%" y="479.50"></text></g><g><title>[libc.so.6] (210,939,750 samples, 0.07%)</title><rect x="29.2794%" y="357" width="0.0652%" height="15" fill="rgb(234,217,39)" fg:x="94693874257" fg:w="210939750"/><text x="29.5294%" y="367.50"></text></g><g><title>[libc.so.6] (210,939,750 samples, 0.07%)</title><rect x="29.2794%" y="341" width="0.0652%" height="15" fill="rgb(207,178,40)" fg:x="94693874257" fg:w="210939750"/><text x="29.5294%" y="351.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (235,795,144 samples, 0.07%)</title><rect x="29.2742%" y="453" width="0.0729%" height="15" fill="rgb(221,136,13)" fg:x="94677296289" fg:w="235795144"/><text x="29.5242%" y="463.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (223,363,480 samples, 0.07%)</title><rect x="29.2781%" y="437" width="0.0691%" height="15" fill="rgb(249,199,10)" fg:x="94689727953" fg:w="223363480"/><text x="29.5281%" y="447.50"></text></g><g><title>alloc::alloc::exchange_malloc (223,363,480 samples, 0.07%)</title><rect x="29.2781%" y="421" width="0.0691%" height="15" fill="rgb(249,222,13)" fg:x="94689727953" fg:w="223363480"/><text x="29.5281%" y="431.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (223,363,480 samples, 0.07%)</title><rect x="29.2781%" y="405" width="0.0691%" height="15" fill="rgb(244,185,38)" fg:x="94689727953" fg:w="223363480"/><text x="29.5281%" y="415.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (223,363,480 samples, 0.07%)</title><rect x="29.2781%" y="389" width="0.0691%" height="15" fill="rgb(236,202,9)" fg:x="94689727953" fg:w="223363480"/><text x="29.5281%" y="399.50"></text></g><g><title>alloc::alloc::alloc (223,363,480 samples, 0.07%)</title><rect x="29.2781%" y="373" width="0.0691%" height="15" fill="rgb(250,229,37)" fg:x="94689727953" fg:w="223363480"/><text x="29.5281%" y="383.50"></text></g><g><title>&lt;rsprocess::choices::Choices as rsprocess::choices::BasicChoices&gt;::shuffle (244,057,488 samples, 0.08%)</title><rect x="29.2730%" y="469" width="0.0755%" height="15" fill="rgb(206,174,23)" fg:x="94673171096" fg:w="244057488"/><text x="29.5230%" y="479.50"></text></g><g><title>[libc.so.6] (33,137,999 samples, 0.01%)</title><rect x="29.3510%" y="357" width="0.0102%" height="15" fill="rgb(211,33,43)" fg:x="94925523899" fg:w="33137999"/><text x="29.6010%" y="367.50"></text></g><g><title>[libc.so.6] (33,137,999 samples, 0.01%)</title><rect x="29.3510%" y="341" width="0.0102%" height="15" fill="rgb(245,58,50)" fg:x="94925523899" fg:w="33137999"/><text x="29.6010%" y="351.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="453" width="0.0115%" height="15" fill="rgb(244,68,36)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="463.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="437" width="0.0115%" height="15" fill="rgb(232,229,15)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="447.50"></text></g><g><title>alloc::alloc::exchange_malloc (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="421" width="0.0115%" height="15" fill="rgb(254,30,23)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="431.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="405" width="0.0115%" height="15" fill="rgb(235,160,14)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="415.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="389" width="0.0115%" height="15" fill="rgb(212,155,44)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="399.50"></text></g><g><title>alloc::alloc::alloc (37,274,552 samples, 0.01%)</title><rect x="29.3510%" y="373" width="0.0115%" height="15" fill="rgb(226,2,50)" fg:x="94925523899" fg:w="37274552"/><text x="29.6010%" y="383.50"></text></g><g><title>&lt;rsprocess::environment::Environment as rsprocess::environment::BasicEnvironment&gt;::unfold (49,715,894 samples, 0.02%)</title><rect x="29.3484%" y="469" width="0.0154%" height="15" fill="rgb(234,177,6)" fg:x="94917228584" fg:w="49715894"/><text x="29.5984%" y="479.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::clone::Clone&gt;::clone (45,315,816 samples, 0.01%)</title><rect x="29.3792%" y="405" width="0.0140%" height="15" fill="rgb(217,24,9)" fg:x="95016896951" fg:w="45315816"/><text x="29.6292%" y="415.50"></text></g><g><title>&lt;rsprocess::process::Process as core::clone::Clone&gt;::clone (73,760,142 samples, 0.02%)</title><rect x="29.3730%" y="469" width="0.0228%" height="15" fill="rgb(220,13,46)" fg:x="94996746868" fg:w="73760142"/><text x="29.6230%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (53,610,059 samples, 0.02%)</title><rect x="29.3792%" y="453" width="0.0166%" height="15" fill="rgb(239,221,27)" fg:x="95016896951" fg:w="53610059"/><text x="29.6292%" y="463.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (53,610,059 samples, 0.02%)</title><rect x="29.3792%" y="437" width="0.0166%" height="15" fill="rgb(222,198,25)" fg:x="95016896951" fg:w="53610059"/><text x="29.6292%" y="447.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (53,610,059 samples, 0.02%)</title><rect x="29.3792%" y="421" width="0.0166%" height="15" fill="rgb(211,99,13)" fg:x="95016896951" fg:w="53610059"/><text x="29.6292%" y="431.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A2&gt;&gt; for alloc::vec::Vec&lt;T,A1&gt;&gt;::eq (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="437" width="0.0102%" height="15" fill="rgb(232,111,31)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="447.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[U]&gt; for [T]&gt;::eq (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="421" width="0.0102%" height="15" fill="rgb(245,82,37)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="431.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="405" width="0.0102%" height="15" fill="rgb(227,149,46)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="415.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::cmp::PartialEq&gt;::ne (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="389" width="0.0102%" height="15" fill="rgb(218,36,50)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="399.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as alloc::sync::ArcEqIdent&lt;T,A&gt;&gt;::ne (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="373" width="0.0102%" height="15" fill="rgb(226,80,48)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="383.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::ptr_eq (33,149,154 samples, 0.01%)</title><rect x="29.4125%" y="357" width="0.0102%" height="15" fill="rgb(238,224,15)" fg:x="95124348860" fg:w="33149154"/><text x="29.6625%" y="367.50"></text></g><g><title>&lt;rsprocess::process::Process as core::cmp::PartialEq&gt;::eq (91,130,907 samples, 0.03%)</title><rect x="29.3958%" y="469" width="0.0282%" height="15" fill="rgb(241,136,10)" fg:x="95070507010" fg:w="91130907"/><text x="29.6458%" y="479.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (37,289,057 samples, 0.01%)</title><rect x="29.4125%" y="453" width="0.0115%" height="15" fill="rgb(208,32,45)" fg:x="95124348860" fg:w="37289057"/><text x="29.6625%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::cmp::PartialEq&gt;::eq (49,665,791 samples, 0.02%)</title><rect x="29.4278%" y="389" width="0.0154%" height="15" fill="rgb(207,135,9)" fg:x="95174057274" fg:w="49665791"/><text x="29.6778%" y="399.50"></text></g><g><title>&lt;rsprocess::process::Process as core::hash::Hash&gt;::hash (70,376,887 samples, 0.02%)</title><rect x="29.4240%" y="469" width="0.0218%" height="15" fill="rgb(206,86,44)" fg:x="95161637917" fg:w="70376887"/><text x="29.6740%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (57,957,530 samples, 0.02%)</title><rect x="29.4278%" y="453" width="0.0179%" height="15" fill="rgb(245,177,15)" fg:x="95174057274" fg:w="57957530"/><text x="29.6778%" y="463.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (57,957,530 samples, 0.02%)</title><rect x="29.4278%" y="437" width="0.0179%" height="15" fill="rgb(206,64,50)" fg:x="95174057274" fg:w="57957530"/><text x="29.6778%" y="447.50"></text></g><g><title>core::hash::Hash::hash_slice (57,957,530 samples, 0.02%)</title><rect x="29.4278%" y="421" width="0.0179%" height="15" fill="rgb(234,36,40)" fg:x="95174057274" fg:w="57957530"/><text x="29.6778%" y="431.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::hash::Hash&gt;::hash (57,957,530 samples, 0.02%)</title><rect x="29.4278%" y="405" width="0.0179%" height="15" fill="rgb(213,64,8)" fg:x="95174057274" fg:w="57957530"/><text x="29.6778%" y="415.50"></text></g><g><title>[libc.so.6] (70,311,635 samples, 0.02%)</title><rect x="29.4521%" y="357" width="0.0217%" height="15" fill="rgb(210,75,36)" fg:x="95252721767" fg:w="70311635"/><text x="29.7021%" y="367.50"></text></g><g><title>[libc.so.6] (45,551,725 samples, 0.01%)</title><rect x="29.4598%" y="341" width="0.0141%" height="15" fill="rgb(229,88,21)" fg:x="95277481677" fg:w="45551725"/><text x="29.7098%" y="351.50"></text></g><g><title>&lt;rsprocess::process::Process as rsprocess::process::BasicProcess&gt;::concat (99,303,805 samples, 0.03%)</title><rect x="29.4457%" y="469" width="0.0307%" height="15" fill="rgb(252,204,47)" fg:x="95232014804" fg:w="99303805"/><text x="29.6957%" y="479.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="453" width="0.0243%" height="15" fill="rgb(208,77,27)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="463.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="437" width="0.0243%" height="15" fill="rgb(221,76,26)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="447.50"></text></g><g><title>alloc::alloc::exchange_malloc (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="421" width="0.0243%" height="15" fill="rgb(225,139,18)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="431.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="405" width="0.0243%" height="15" fill="rgb(230,137,11)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="415.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="389" width="0.0243%" height="15" fill="rgb(212,28,1)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="399.50"></text></g><g><title>alloc::alloc::alloc (78,596,842 samples, 0.02%)</title><rect x="29.4521%" y="373" width="0.0243%" height="15" fill="rgb(248,164,17)" fg:x="95252721767" fg:w="78596842"/><text x="29.7021%" y="383.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 (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="405" width="0.0652%" height="15" fill="rgb(222,171,42)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="389" width="0.0652%" height="15" fill="rgb(243,84,45)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="399.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="373" width="0.0652%" height="15" fill="rgb(252,49,23)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="383.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="357" width="0.0652%" height="15" fill="rgb(215,19,7)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="367.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="341" width="0.0652%" height="15" fill="rgb(238,81,41)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="351.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="325" width="0.0652%" height="15" fill="rgb(210,199,37)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (210,950,799 samples, 0.07%)</title><rect x="30.0541%" y="309" width="0.0652%" height="15" fill="rgb(244,192,49)" fg:x="97199461199" fg:w="210950799"/><text x="30.3041%" y="319.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (186,113,014 samples, 0.06%)</title><rect x="30.0618%" y="293" width="0.0575%" height="15" fill="rgb(226,211,11)" fg:x="97224298984" fg:w="186113014"/><text x="30.3118%" y="303.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (186,113,014 samples, 0.06%)</title><rect x="30.0618%" y="277" width="0.0575%" height="15" fill="rgb(236,162,54)" fg:x="97224298984" fg:w="186113014"/><text x="30.3118%" y="287.50"></text></g><g><title>alloc::alloc::alloc (186,113,014 samples, 0.06%)</title><rect x="30.0618%" y="261" width="0.0575%" height="15" fill="rgb(220,229,9)" fg:x="97224298984" fg:w="186113014"/><text x="30.3118%" y="271.50"></text></g><g><title>malloc (181,972,592 samples, 0.06%)</title><rect x="30.0630%" y="245" width="0.0563%" height="15" fill="rgb(250,87,22)" fg:x="97228439406" fg:w="181972592"/><text x="30.3130%" y="255.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::from_sorted_iter (239,931,895 samples, 0.07%)</title><rect x="30.0528%" y="421" width="0.0742%" height="15" fill="rgb(239,43,17)" fg:x="97195320984" fg:w="239931895"/><text x="30.3028%" y="431.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::sort (49,666,728 samples, 0.02%)</title><rect x="30.1270%" y="421" width="0.0154%" height="15" fill="rgb(231,177,25)" fg:x="97435252879" fg:w="49666728"/><text x="30.3770%" y="431.50"></text></g><g><title>alloc::slice::stable_sort (49,666,728 samples, 0.02%)</title><rect x="30.1270%" y="405" width="0.0154%" height="15" fill="rgb(219,179,1)" fg:x="97435252879" fg:w="49666728"/><text x="30.3770%" y="415.50"></text></g><g><title>core::slice::sort::stable::sort (49,666,728 samples, 0.02%)</title><rect x="30.1270%" y="389" width="0.0154%" height="15" fill="rgb(238,219,53)" fg:x="97435252879" fg:w="49666728"/><text x="30.3770%" y="399.50"></text></g><g><title>core::slice::sort::shared::smallsort::insertion_sort_shift_left (33,109,427 samples, 0.01%)</title><rect x="30.1321%" y="373" width="0.0102%" height="15" fill="rgb(232,167,36)" fg:x="97451810180" fg:w="33109427"/><text x="30.3821%" y="383.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,457,176,915 samples, 0.45%)</title><rect x="30.1487%" y="421" width="0.4506%" height="15" fill="rgb(244,19,51)" fg:x="97505635927" fg:w="1457176915"/><text x="30.3987%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,457,176,915 samples, 0.45%)</title><rect x="30.1487%" y="405" width="0.4506%" height="15" fill="rgb(224,6,22)" fg:x="97505635927" fg:w="1457176915"/><text x="30.3987%" y="415.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 (1,428,235,677 samples, 0.44%)</title><rect x="30.1577%" y="389" width="0.4416%" height="15" fill="rgb(224,145,5)" fg:x="97534577165" fg:w="1428235677"/><text x="30.4077%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="373" width="0.4365%" height="15" fill="rgb(234,130,49)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="383.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="357" width="0.4365%" height="15" fill="rgb(254,6,2)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="367.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="341" width="0.4365%" height="15" fill="rgb(208,96,46)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="351.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="325" width="0.4365%" height="15" fill="rgb(239,3,39)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="309" width="0.4365%" height="15" fill="rgb(233,210,1)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="319.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (1,411,780,714 samples, 0.44%)</title><rect x="30.1628%" y="293" width="0.4365%" height="15" fill="rgb(244,137,37)" fg:x="97551032128" fg:w="1411780714"/><text x="30.4128%" y="303.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1,261,602,407 samples, 0.39%)</title><rect x="30.2092%" y="277" width="0.3901%" height="15" fill="rgb(240,136,2)" fg:x="97701210435" fg:w="1261602407"/><text x="30.4592%" y="287.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1,261,602,407 samples, 0.39%)</title><rect x="30.2092%" y="261" width="0.3901%" height="15" fill="rgb(239,18,37)" fg:x="97701210435" fg:w="1261602407"/><text x="30.4592%" y="271.50"></text></g><g><title>alloc::alloc::alloc (1,261,602,407 samples, 0.39%)</title><rect x="30.2092%" y="245" width="0.3901%" height="15" fill="rgb(218,185,22)" fg:x="97701210435" fg:w="1261602407"/><text x="30.4592%" y="255.50"></text></g><g><title>malloc (1,240,884,703 samples, 0.38%)</title><rect x="30.2156%" y="229" width="0.3837%" height="15" fill="rgb(225,218,4)" fg:x="97721928139" fg:w="1240884703"/><text x="30.4656%" y="239.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::intersection (3,648,032,696 samples, 1.13%)</title><rect x="29.4764%" y="469" width="1.1280%" height="15" fill="rgb(230,182,32)" fg:x="95331318609" fg:w="3648032696"/><text x="29.7264%" y="479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (2,395,955,674 samples, 0.74%)</title><rect x="29.8636%" y="453" width="0.7408%" height="15" fill="rgb(242,56,43)" fg:x="96583395631" fg:w="2395955674"/><text x="30.1136%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (2,395,955,674 samples, 0.74%)</title><rect x="29.8636%" y="437" width="0.7408%" height="15" fill="rgb(233,99,24)" fg:x="96583395631" fg:w="2395955674"/><text x="30.1136%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (119,778,012 samples, 0.04%)</title><rect x="31.9863%" y="437" width="0.0370%" height="15" fill="rgb(234,209,42)" fg:x="103448703332" fg:w="119778012"/><text x="32.2363%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (119,778,012 samples, 0.04%)</title><rect x="31.9863%" y="421" width="0.0370%" height="15" fill="rgb(227,7,12)" fg:x="103448703332" fg:w="119778012"/><text x="32.2363%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (582,676,008 samples, 0.18%)</title><rect x="32.0234%" y="437" width="0.1802%" height="15" fill="rgb(245,203,43)" fg:x="103568481344" fg:w="582676008"/><text x="32.2734%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (582,676,008 samples, 0.18%)</title><rect x="32.0234%" y="421" width="0.1802%" height="15" fill="rgb(238,205,33)" fg:x="103568481344" fg:w="582676008"/><text x="32.2734%" y="431.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (789,454,910 samples, 0.24%)</title><rect x="32.2048%" y="437" width="0.2441%" height="15" fill="rgb(231,56,7)" fg:x="104155295495" fg:w="789454910"/><text x="32.4548%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (789,454,910 samples, 0.24%)</title><rect x="32.2048%" y="421" width="0.2441%" height="15" fill="rgb(244,186,29)" fg:x="104155295495" fg:w="789454910"/><text x="32.4548%" y="431.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (789,454,910 samples, 0.24%)</title><rect x="32.2048%" y="405" width="0.2441%" height="15" fill="rgb(234,111,31)" fg:x="104155295495" fg:w="789454910"/><text x="32.4548%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (789,454,910 samples, 0.24%)</title><rect x="32.2048%" y="389" width="0.2441%" height="15" fill="rgb(241,149,10)" fg:x="104155295495" fg:w="789454910"/><text x="32.4548%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::iter (388,946,693 samples, 0.12%)</title><rect x="32.4489%" y="437" width="0.1203%" height="15" fill="rgb(249,206,44)" fg:x="104944750405" fg:w="388946693"/><text x="32.6989%" y="447.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::len (693,972,085 samples, 0.21%)</title><rect x="32.5692%" y="437" width="0.2146%" height="15" fill="rgb(251,153,30)" fg:x="105333697098" fg:w="693972085"/><text x="32.8192%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::len (693,972,085 samples, 0.21%)</title><rect x="32.5692%" y="421" width="0.2146%" height="15" fill="rgb(239,152,38)" fg:x="105333697098" fg:w="693972085"/><text x="32.8192%" y="431.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (368,108,971 samples, 0.11%)</title><rect x="32.7838%" y="437" width="0.1138%" height="15" fill="rgb(249,139,47)" fg:x="106027669183" fg:w="368108971"/><text x="33.0338%" y="447.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::is_subset (8,895,435,220 samples, 2.75%)</title><rect x="30.6044%" y="469" width="2.7505%" height="15" fill="rgb(244,64,35)" fg:x="98979351305" fg:w="8895435220"/><text x="30.8544%" y="479.50">&lt;r..</text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::is_subset (8,059,615,642 samples, 2.49%)</title><rect x="30.8629%" y="453" width="2.4920%" height="15" fill="rgb(216,46,15)" fg:x="99815170883" fg:w="8059615642"/><text x="31.1129%" y="463.50">al..</text></g><g><title>core::option::Option&lt;T&gt;::map_or (1,479,008,371 samples, 0.46%)</title><rect x="32.8976%" y="437" width="0.4573%" height="15" fill="rgb(250,74,19)" fg:x="106395778154" fg:w="1479008371"/><text x="33.1476%" y="447.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::is_subset::{{closure}} (1,479,008,371 samples, 0.46%)</title><rect x="32.8976%" y="421" width="0.4573%" height="15" fill="rgb(249,42,33)" fg:x="106395778154" fg:w="1479008371"/><text x="33.1476%" y="431.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (1,479,008,371 samples, 0.46%)</title><rect x="32.8976%" y="405" width="0.4573%" height="15" fill="rgb(242,149,17)" fg:x="106395778154" fg:w="1479008371"/><text x="33.1476%" y="415.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (57,949,635 samples, 0.02%)</title><rect x="33.8199%" y="389" width="0.0179%" height="15" fill="rgb(244,29,21)" fg:x="109378640032" fg:w="57949635"/><text x="34.0699%" y="399.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (57,949,635 samples, 0.02%)</title><rect x="33.8199%" y="373" width="0.0179%" height="15" fill="rgb(220,130,37)" fg:x="109378640032" fg:w="57949635"/><text x="34.0699%" y="383.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (57,949,635 samples, 0.02%)</title><rect x="33.8199%" y="357" width="0.0179%" height="15" fill="rgb(211,67,2)" fg:x="109378640032" fg:w="57949635"/><text x="34.0699%" y="367.50"></text></g><g><title>core::ptr::read (57,949,635 samples, 0.02%)</title><rect x="33.8199%" y="341" width="0.0179%" height="15" fill="rgb(235,68,52)" fg:x="109378640032" fg:w="57949635"/><text x="34.0699%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (165,381,019 samples, 0.05%)</title><rect x="33.8096%" y="405" width="0.0511%" height="15" fill="rgb(246,142,3)" fg:x="109345520693" fg:w="165381019"/><text x="34.0596%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (74,312,045 samples, 0.02%)</title><rect x="33.8378%" y="389" width="0.0230%" height="15" fill="rgb(241,25,7)" fg:x="109436589667" fg:w="74312045"/><text x="34.0878%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (136,452,508 samples, 0.04%)</title><rect x="33.8608%" y="405" width="0.0422%" height="15" fill="rgb(242,119,39)" fg:x="109510901712" fg:w="136452508"/><text x="34.1108%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (111,623,067 samples, 0.03%)</title><rect x="33.8685%" y="389" width="0.0345%" height="15" fill="rgb(241,98,45)" fg:x="109535731153" fg:w="111623067"/><text x="34.1185%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (492,063,112 samples, 0.15%)</title><rect x="33.8096%" y="437" width="0.1521%" height="15" fill="rgb(254,28,30)" fg:x="109345520693" fg:w="492063112"/><text x="34.0596%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (492,063,112 samples, 0.15%)</title><rect x="33.8096%" y="421" width="0.1521%" height="15" fill="rgb(241,142,54)" fg:x="109345520693" fg:w="492063112"/><text x="34.0596%" y="431.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (190,229,585 samples, 0.06%)</title><rect x="33.9030%" y="405" width="0.0588%" height="15" fill="rgb(222,85,15)" fg:x="109647354220" fg:w="190229585"/><text x="34.1530%" y="415.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::iter (235,295,425 samples, 0.07%)</title><rect x="33.9618%" y="437" width="0.0728%" height="15" fill="rgb(210,85,47)" fg:x="109837583805" fg:w="235295425"/><text x="34.2118%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::keys (235,295,425 samples, 0.07%)</title><rect x="33.9618%" y="421" width="0.0728%" height="15" fill="rgb(224,206,25)" fg:x="109837583805" fg:w="235295425"/><text x="34.2118%" y="431.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::iter (235,295,425 samples, 0.07%)</title><rect x="33.9618%" y="405" width="0.0728%" height="15" fill="rgb(243,201,19)" fg:x="109837583805" fg:w="235295425"/><text x="34.2118%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_edge (260,710,502 samples, 0.08%)</title><rect x="34.0435%" y="389" width="0.0806%" height="15" fill="rgb(236,59,4)" fg:x="110101764589" fg:w="260710502"/><text x="34.2935%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (260,710,502 samples, 0.08%)</title><rect x="34.0435%" y="373" width="0.0806%" height="15" fill="rgb(254,179,45)" fg:x="110101764589" fg:w="260710502"/><text x="34.2935%" y="383.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::difference (1,889,068,206 samples, 0.58%)</title><rect x="33.6051%" y="453" width="0.5841%" height="15" fill="rgb(226,14,10)" fg:x="108683877137" fg:w="1889068206"/><text x="33.8551%" y="463.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::last (500,066,113 samples, 0.15%)</title><rect x="34.0345%" y="437" width="0.1546%" height="15" fill="rgb(244,27,41)" fg:x="110072879230" fg:w="500066113"/><text x="34.2845%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::last_key_value (500,066,113 samples, 0.15%)</title><rect x="34.0345%" y="421" width="0.1546%" height="15" fill="rgb(235,35,32)" fg:x="110072879230" fg:w="500066113"/><text x="34.2845%" y="431.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (500,066,113 samples, 0.15%)</title><rect x="34.0345%" y="405" width="0.1546%" height="15" fill="rgb(218,68,31)" fg:x="110072879230" fg:w="500066113"/><text x="34.2845%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (210,470,252 samples, 0.07%)</title><rect x="34.1241%" y="389" width="0.0651%" height="15" fill="rgb(207,120,37)" fg:x="110362475091" fg:w="210470252"/><text x="34.3741%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (53,622,909 samples, 0.02%)</title><rect x="34.2826%" y="421" width="0.0166%" height="15" fill="rgb(227,98,0)" fg:x="110874995948" fg:w="53622909"/><text x="34.5326%" y="431.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (53,622,909 samples, 0.02%)</title><rect x="34.2826%" y="405" width="0.0166%" height="15" fill="rgb(207,7,3)" fg:x="110874995948" fg:w="53622909"/><text x="34.5326%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::DerefMut&gt;::deref_mut (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="421" width="0.0434%" height="15" fill="rgb(206,98,19)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_slice (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="405" width="0.0434%" height="15" fill="rgb(217,5,26)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="389" width="0.0434%" height="15" fill="rgb(235,190,38)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::ptr (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="373" width="0.0434%" height="15" fill="rgb(247,86,24)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::ptr (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="357" width="0.0434%" height="15" fill="rgb(205,101,16)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="367.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::non_null (140,285,109 samples, 0.04%)</title><rect x="34.2991%" y="341" width="0.0434%" height="15" fill="rgb(246,168,33)" fg:x="110928618857" fg:w="140285109"/><text x="34.5491%" y="351.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::from_sorted_iter (227,550,382 samples, 0.07%)</title><rect x="34.3425%" y="421" width="0.0704%" height="15" fill="rgb(231,114,1)" fg:x="111068903966" fg:w="227550382"/><text x="34.5925%" y="431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (182,043,177 samples, 0.06%)</title><rect x="34.3566%" y="405" width="0.0563%" height="15" fill="rgb(207,184,53)" fg:x="111114411171" fg:w="182043177"/><text x="34.6066%" y="415.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (182,043,177 samples, 0.06%)</title><rect x="34.3566%" y="389" width="0.0563%" height="15" fill="rgb(224,95,51)" fg:x="111114411171" fg:w="182043177"/><text x="34.6066%" y="399.50"></text></g><g><title>core::intrinsics::likely (86,879,533 samples, 0.03%)</title><rect x="34.4129%" y="373" width="0.0269%" height="15" fill="rgb(212,188,45)" fg:x="111296454348" fg:w="86879533"/><text x="34.6629%" y="383.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::sort (194,358,661 samples, 0.06%)</title><rect x="34.4129%" y="421" width="0.0601%" height="15" fill="rgb(223,154,38)" fg:x="111296454348" fg:w="194358661"/><text x="34.6629%" y="431.50"></text></g><g><title>alloc::slice::stable_sort (194,358,661 samples, 0.06%)</title><rect x="34.4129%" y="405" width="0.0601%" height="15" fill="rgb(251,22,52)" fg:x="111296454348" fg:w="194358661"/><text x="34.6629%" y="415.50"></text></g><g><title>core::slice::sort::stable::sort (194,358,661 samples, 0.06%)</title><rect x="34.4129%" y="389" width="0.0601%" height="15" fill="rgb(229,209,22)" fg:x="111296454348" fg:w="194358661"/><text x="34.6629%" y="399.50"></text></g><g><title>core::slice::sort::shared::smallsort::insertion_sort_shift_left (107,479,128 samples, 0.03%)</title><rect x="34.4397%" y="373" width="0.0332%" height="15" fill="rgb(234,138,34)" fg:x="111383333881" fg:w="107479128"/><text x="34.6897%" y="383.50"></text></g><g><title>core::slice::sort::shared::smallsort::insert_tail (99,229,078 samples, 0.03%)</title><rect x="34.4423%" y="357" width="0.0307%" height="15" fill="rgb(212,95,11)" fg:x="111391583931" fg:w="99229078"/><text x="34.6923%" y="367.50"></text></g><g><title>&lt;I as core::iter::traits::collect::IntoIterator&gt;::into_iter (263,386,949 samples, 0.08%)</title><rect x="34.4909%" y="389" width="0.0814%" height="15" fill="rgb(240,179,47)" fg:x="111548779192" fg:w="263386949"/><text x="34.7409%" y="399.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (325,502,572 samples, 0.10%)</title><rect x="34.4742%" y="421" width="0.1006%" height="15" fill="rgb(240,163,11)" fg:x="111494949830" fg:w="325502572"/><text x="34.7242%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (325,502,572 samples, 0.10%)</title><rect x="34.4742%" y="405" width="0.1006%" height="15" fill="rgb(236,37,12)" fg:x="111494949830" fg:w="325502572"/><text x="34.7242%" y="415.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::subtraction (3,949,798,511 samples, 1.22%)</title><rect x="33.3549%" y="469" width="1.2213%" height="15" fill="rgb(232,164,16)" fg:x="107874786525" fg:w="3949798511"/><text x="33.6049%" y="479.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,251,639,693 samples, 0.39%)</title><rect x="34.1892%" y="453" width="0.3870%" height="15" fill="rgb(244,205,15)" fg:x="110572945343" fg:w="1251639693"/><text x="34.4392%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,251,639,693 samples, 0.39%)</title><rect x="34.1892%" y="437" width="0.3870%" height="15" fill="rgb(223,117,47)" fg:x="110572945343" fg:w="1251639693"/><text x="34.4392%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (372,311,907 samples, 0.12%)</title><rect x="36.2157%" y="405" width="0.1151%" height="15" fill="rgb(244,107,35)" fg:x="117126985637" fg:w="372311907"/><text x="36.4657%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (372,311,907 samples, 0.12%)</title><rect x="36.2157%" y="389" width="0.1151%" height="15" fill="rgb(205,140,8)" fg:x="117126985637" fg:w="372311907"/><text x="36.4657%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (2,971,889,817 samples, 0.92%)</title><rect x="36.3308%" y="405" width="0.9189%" height="15" fill="rgb(228,84,46)" fg:x="117499297544" fg:w="2971889817"/><text x="36.5808%" y="415.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (2,971,889,817 samples, 0.92%)</title><rect x="36.3308%" y="389" width="0.9189%" height="15" fill="rgb(254,188,9)" fg:x="117499297544" fg:w="2971889817"/><text x="36.5808%" y="399.50"></text></g><g><title>core::mem::replace (2,971,889,817 samples, 0.92%)</title><rect x="36.3308%" y="373" width="0.9189%" height="15" fill="rgb(206,112,54)" fg:x="117499297544" fg:w="2971889817"/><text x="36.5808%" y="383.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::ops::try_trait::Try&gt;::branch (78,496,058 samples, 0.02%)</title><rect x="37.2497%" y="405" width="0.0243%" height="15" fill="rgb(216,84,49)" fg:x="120471187361" fg:w="78496058"/><text x="37.4997%" y="415.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (86,721,758 samples, 0.03%)</title><rect x="37.2740%" y="389" width="0.0268%" height="15" fill="rgb(214,194,35)" fg:x="120549683419" fg:w="86721758"/><text x="37.5240%" y="399.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (8,311,853,725 samples, 2.57%)</title><rect x="37.2740%" y="405" width="2.5700%" height="15" fill="rgb(249,28,3)" fg:x="120549683419" fg:w="8311853725"/><text x="37.5240%" y="415.50">co..</text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (8,225,131,967 samples, 2.54%)</title><rect x="37.3008%" y="389" width="2.5432%" height="15" fill="rgb(222,56,52)" fg:x="120636405177" fg:w="8225131967"/><text x="37.5508%" y="399.50">co..</text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek::{{closure}} (955,284,967 samples, 0.30%)</title><rect x="39.5486%" y="373" width="0.2954%" height="15" fill="rgb(245,217,50)" fg:x="127906252177" fg:w="955284967"/><text x="39.7986%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (955,284,967 samples, 0.30%)</title><rect x="39.5486%" y="357" width="0.2954%" height="15" fill="rgb(213,201,24)" fg:x="127906252177" fg:w="955284967"/><text x="39.7986%" y="367.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (955,284,967 samples, 0.30%)</title><rect x="39.5486%" y="341" width="0.2954%" height="15" fill="rgb(248,116,28)" fg:x="127906252177" fg:w="955284967"/><text x="39.7986%" y="351.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (14,344,945,658 samples, 4.44%)</title><rect x="35.4559%" y="421" width="4.4355%" height="15" fill="rgb(219,72,43)" fg:x="114669628639" fg:w="14344945658"/><text x="35.7059%" y="431.50">&lt;allo..</text></g><g><title>core::option::Option&lt;T&gt;::map_or (153,037,153 samples, 0.05%)</title><rect x="39.8440%" y="405" width="0.0473%" height="15" fill="rgb(209,138,14)" fg:x="128861537144" fg:w="153037153"/><text x="40.0940%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next::{{closure}} (153,037,153 samples, 0.05%)</title><rect x="39.8440%" y="389" width="0.0473%" height="15" fill="rgb(222,18,33)" fg:x="128861537144" fg:w="153037153"/><text x="40.0940%" y="399.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::Ord for u32&gt;::cmp (153,037,153 samples, 0.05%)</title><rect x="39.8440%" y="373" width="0.0473%" height="15" fill="rgb(213,199,7)" fg:x="128861537144" fg:w="153037153"/><text x="40.0940%" y="383.50"></text></g><g><title>&lt;rsprocess::reaction::Reaction as rsprocess::reaction::BasicReaction&gt;::enabled (529,456,446 samples, 0.16%)</title><rect x="39.8913%" y="421" width="0.1637%" height="15" fill="rgb(250,110,10)" fg:x="129014574297" fg:w="529456446"/><text x="40.1413%" y="431.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::is_disjoint (57,873,426 samples, 0.02%)</title><rect x="40.0371%" y="405" width="0.0179%" height="15" fill="rgb(248,123,6)" fg:x="129486157317" fg:w="57873426"/><text x="40.2871%" y="415.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::is_disjoint (57,873,426 samples, 0.02%)</title><rect x="40.0371%" y="389" width="0.0179%" height="15" fill="rgb(206,91,31)" fg:x="129486157317" fg:w="57873426"/><text x="40.2871%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::intersection (49,609,283 samples, 0.02%)</title><rect x="40.0397%" y="373" width="0.0153%" height="15" fill="rgb(211,154,13)" fg:x="129494421460" fg:w="49609283"/><text x="40.2897%" y="383.50"></text></g><g><title>&lt;T as core::convert::Into&lt;U&gt;&gt;::into (379,819,154 samples, 0.12%)</title><rect x="40.0614%" y="405" width="0.1174%" height="15" fill="rgb(225,148,7)" fg:x="129564718522" fg:w="379819154"/><text x="40.3114%" y="415.50"></text></g><g><title>&lt;rsprocess::set::Set as core::convert::From&lt;alloc::vec::Vec&lt;u32&gt;&gt;&gt;::from (379,819,154 samples, 0.12%)</title><rect x="40.0614%" y="389" width="0.1174%" height="15" fill="rgb(220,160,43)" fg:x="129564718522" fg:w="379819154"/><text x="40.3114%" y="399.50"></text></g><g><title>alloc::collections::btree::fix::&lt;impl alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::fix_right_border_of_plentiful (277,007,530 samples, 0.09%)</title><rect x="40.0932%" y="373" width="0.0857%" height="15" fill="rgb(213,52,39)" fg:x="129667530146" fg:w="277007530"/><text x="40.3432%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (37,240,567 samples, 0.01%)</title><rect x="40.1673%" y="357" width="0.0115%" height="15" fill="rgb(243,137,7)" fg:x="129907297109" fg:w="37240567"/><text x="40.4173%" y="367.50"></text></g><g><title>&lt;T as rsprocess::set::ExtensionsSet&gt;::iter (1,012,472,394 samples, 0.31%)</title><rect x="40.1789%" y="405" width="0.3131%" height="15" fill="rgb(230,79,13)" fg:x="129944537676" fg:w="1012472394"/><text x="40.4289%" y="415.50"></text></g><g><title>&lt;&amp;rsprocess::set::Set as core::iter::traits::collect::IntoIterator&gt;::into_iter (1,012,472,394 samples, 0.31%)</title><rect x="40.1789%" y="389" width="0.3131%" height="15" fill="rgb(247,105,23)" fg:x="129944537676" fg:w="1012472394"/><text x="40.4289%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::iter (1,012,472,394 samples, 0.31%)</title><rect x="40.1789%" y="373" width="0.3131%" height="15" fill="rgb(223,179,41)" fg:x="129944537676" fg:w="1012472394"/><text x="40.4289%" y="383.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::keys (1,012,472,394 samples, 0.31%)</title><rect x="40.1789%" y="357" width="0.3131%" height="15" fill="rgb(218,9,34)" fg:x="129944537676" fg:w="1012472394"/><text x="40.4289%" y="367.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::iter (1,012,472,394 samples, 0.31%)</title><rect x="40.1789%" y="341" width="0.3131%" height="15" fill="rgb(222,106,8)" fg:x="129944537676" fg:w="1012472394"/><text x="40.4289%" y="351.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::union (2,587,471,892 samples, 0.80%)</title><rect x="40.0550%" y="421" width="0.8000%" height="15" fill="rgb(211,220,0)" fg:x="129544030743" fg:w="2587471892"/><text x="40.3050%" y="431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1,174,492,565 samples, 0.36%)</title><rect x="40.4919%" y="405" width="0.3632%" height="15" fill="rgb(229,52,16)" fg:x="130957010070" fg:w="1174492565"/><text x="40.7419%" y="415.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (1,174,492,565 samples, 0.36%)</title><rect x="40.4919%" y="389" width="0.3632%" height="15" fill="rgb(212,155,18)" fg:x="130957010070" fg:w="1174492565"/><text x="40.7419%" y="399.50"></text></g><g><title>&lt;I as core::iter::traits::collect::IntoIterator&gt;::into_iter (1,062,801,902 samples, 0.33%)</title><rect x="40.5265%" y="373" width="0.3286%" height="15" fill="rgb(242,21,14)" fg:x="131068700733" fg:w="1062801902"/><text x="40.7765%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1,518,052,761 samples, 0.47%)</title><rect x="40.8551%" y="357" width="0.4694%" height="15" fill="rgb(222,19,48)" fg:x="132131502635" fg:w="1518052761"/><text x="41.1051%" y="367.50"></text></g><g><title>&lt;rsprocess::transitions::TransitionsIterator&lt;rsprocess::set::Set,rsprocess::system::System,rsprocess::process::Process&gt; as core::iter::traits::iterator::Iterator&gt;::next::{{closure}} (22,587,414,059 samples, 6.98%)</title><rect x="34.9724%" y="437" width="6.9840%" height="15" fill="rgb(232,45,27)" fg:x="113106205888" fg:w="22587414059"/><text x="35.2224%" y="447.50">&lt;rsproces..</text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::set::Set&gt; (3,562,117,312 samples, 1.10%)</title><rect x="40.8551%" y="421" width="1.1014%" height="15" fill="rgb(249,103,42)" fg:x="132131502635" fg:w="3562117312"/><text x="41.1051%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;u32&gt;&gt; (3,562,117,312 samples, 1.10%)</title><rect x="40.8551%" y="405" width="1.1014%" height="15" fill="rgb(246,81,33)" fg:x="132131502635" fg:w="3562117312"/><text x="41.1051%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (3,562,117,312 samples, 1.10%)</title><rect x="40.8551%" y="389" width="1.1014%" height="15" fill="rgb(252,33,42)" fg:x="132131502635" fg:w="3562117312"/><text x="41.1051%" y="399.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (3,562,117,312 samples, 1.10%)</title><rect x="40.8551%" y="373" width="1.1014%" height="15" fill="rgb(209,212,41)" fg:x="132131502635" fg:w="3562117312"/><text x="41.1051%" y="383.50"></text></g><g><title>core::mem::drop (2,044,064,551 samples, 0.63%)</title><rect x="41.3245%" y="357" width="0.6320%" height="15" fill="rgb(207,154,6)" fg:x="133649555396" fg:w="2044064551"/><text x="41.5745%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (2,044,064,551 samples, 0.63%)</title><rect x="41.3245%" y="341" width="0.6320%" height="15" fill="rgb(223,64,47)" fg:x="133649555396" fg:w="2044064551"/><text x="41.5745%" y="351.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (2,044,064,551 samples, 0.63%)</title><rect x="41.3245%" y="325" width="0.6320%" height="15" fill="rgb(211,161,38)" fg:x="133649555396" fg:w="2044064551"/><text x="41.5745%" y="335.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (23,881,538,870 samples, 7.38%)</title><rect x="34.5876%" y="453" width="7.3842%" height="15" fill="rgb(219,138,40)" fg:x="111861639476" fg:w="23881538870"/><text x="34.8376%" y="463.50">&lt;core::sli..</text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::add (49,558,399 samples, 0.02%)</title><rect x="41.9565%" y="437" width="0.0153%" height="15" fill="rgb(241,228,46)" fg:x="135693619947" fg:w="49558399"/><text x="42.2065%" y="447.50"></text></g><g><title>&lt;rsprocess::transitions::TransitionsIterator&lt;rsprocess::set::Set,rsprocess::system::System,rsprocess::process::Process&gt; as core::iter::traits::iterator::Iterator&gt;::next (23,917,825,473 samples, 7.40%)</title><rect x="34.5812%" y="469" width="7.3954%" height="15" fill="rgb(223,209,38)" fg:x="111840962599" fg:w="23917825473"/><text x="34.8312%" y="479.50">&lt;rsprocess..</text></g><g><title>&lt;std::hash::random::DefaultHasher as core::hash::Hasher&gt;::write (37,274,248 samples, 0.01%)</title><rect x="41.9766%" y="469" width="0.0115%" height="15" fill="rgb(236,164,45)" fg:x="135758788072" fg:w="37274248"/><text x="42.2266%" y="479.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (37,274,248 samples, 0.01%)</title><rect x="41.9766%" y="453" width="0.0115%" height="15" fill="rgb(231,15,5)" fg:x="135758788072" fg:w="37274248"/><text x="42.2266%" y="463.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (37,274,248 samples, 0.01%)</title><rect x="41.9766%" y="437" width="0.0115%" height="15" fill="rgb(252,35,15)" fg:x="135758788072" fg:w="37274248"/><text x="42.2266%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (37,225,137 samples, 0.01%)</title><rect x="41.9975%" y="453" width="0.0115%" height="15" fill="rgb(248,181,18)" fg:x="135826383871" fg:w="37225137"/><text x="42.2475%" y="463.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (37,210,413 samples, 0.01%)</title><rect x="42.1842%" y="421" width="0.0115%" height="15" fill="rgb(233,39,42)" fg:x="136430016986" fg:w="37210413"/><text x="42.4342%" y="431.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::copied (33,065,453 samples, 0.01%)</title><rect x="42.1855%" y="405" width="0.0102%" height="15" fill="rgb(238,110,33)" fg:x="136434161946" fg:w="33065453"/><text x="42.4355%" y="415.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 (1,166,211,995 samples, 0.36%)</title><rect x="42.0090%" y="453" width="0.3606%" height="15" fill="rgb(233,195,10)" fg:x="135863609008" fg:w="1166211995"/><text x="42.2590%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (955,201,416 samples, 0.30%)</title><rect x="42.0743%" y="437" width="0.2953%" height="15" fill="rgb(254,105,3)" fg:x="136074619587" fg:w="955201416"/><text x="42.3243%" y="447.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (562,593,604 samples, 0.17%)</title><rect x="42.1957%" y="421" width="0.1740%" height="15" fill="rgb(221,225,9)" fg:x="136467227399" fg:w="562593604"/><text x="42.4457%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (562,593,604 samples, 0.17%)</title><rect x="42.1957%" y="405" width="0.1740%" height="15" fill="rgb(224,227,45)" fg:x="136467227399" fg:w="562593604"/><text x="42.4457%" y="415.50"></text></g><g><title>core::iter::traits::exact_size::ExactSizeIterator::len (351,530,861 samples, 0.11%)</title><rect x="42.2609%" y="389" width="0.1087%" height="15" fill="rgb(229,198,43)" fg:x="136678290142" fg:w="351530861"/><text x="42.5109%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (351,530,861 samples, 0.11%)</title><rect x="42.2609%" y="373" width="0.1087%" height="15" fill="rgb(206,209,35)" fg:x="136678290142" fg:w="351530861"/><text x="42.5109%" y="383.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (99,285,009 samples, 0.03%)</title><rect x="42.3389%" y="357" width="0.0307%" height="15" fill="rgb(245,195,53)" fg:x="136930535994" fg:w="99285009"/><text x="42.5889%" y="367.50"></text></g><g><title>core::intrinsics::unlikely (95,139,117 samples, 0.03%)</title><rect x="42.3402%" y="341" width="0.0294%" height="15" fill="rgb(240,92,26)" fg:x="136934681886" fg:w="95139117"/><text x="42.5902%" y="351.50"></text></g><g><title>[unknown] (127,206,957 samples, 0.04%)</title><rect x="42.3784%" y="453" width="0.0393%" height="15" fill="rgb(207,40,23)" fg:x="137058087757" fg:w="127206957"/><text x="42.6284%" y="463.50"></text></g><g><title>[libc.so.6] (1,399,700,005 samples, 0.43%)</title><rect x="41.9975%" y="469" width="0.4328%" height="15" fill="rgb(223,111,35)" fg:x="135826383871" fg:w="1399700005"/><text x="42.2475%" y="479.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (32,657,448 samples, 0.01%)</title><rect x="42.4434%" y="437" width="0.0101%" height="15" fill="rgb(229,147,28)" fg:x="137268429913" fg:w="32657448"/><text x="42.6934%" y="447.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (78,585,881 samples, 0.02%)</title><rect x="42.4535%" y="437" width="0.0243%" height="15" fill="rgb(211,29,28)" fg:x="137301087361" fg:w="78585881"/><text x="42.7035%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push (45,513,275 samples, 0.01%)</title><rect x="42.4804%" y="437" width="0.0141%" height="15" fill="rgb(228,72,33)" fg:x="137387942024" fg:w="45513275"/><text x="42.7304%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push_with_handle (45,513,275 samples, 0.01%)</title><rect x="42.4804%" y="421" width="0.0141%" height="15" fill="rgb(205,214,31)" fg:x="137387942024" fg:w="45513275"/><text x="42.7304%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (242,935,240 samples, 0.08%)</title><rect x="42.4389%" y="453" width="0.0751%" height="15" fill="rgb(224,111,15)" fg:x="137253904039" fg:w="242935240"/><text x="42.6889%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (63,383,980 samples, 0.02%)</title><rect x="42.4944%" y="437" width="0.0196%" height="15" fill="rgb(253,21,26)" fg:x="137433455299" fg:w="63383980"/><text x="42.7444%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (63,383,980 samples, 0.02%)</title><rect x="42.4944%" y="421" width="0.0196%" height="15" fill="rgb(245,139,43)" fg:x="137433455299" fg:w="63383980"/><text x="42.7444%" y="431.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (63,383,980 samples, 0.02%)</title><rect x="42.4944%" y="405" width="0.0196%" height="15" fill="rgb(252,170,7)" fg:x="137433455299" fg:w="63383980"/><text x="42.7444%" y="415.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (63,383,980 samples, 0.02%)</title><rect x="42.4944%" y="389" width="0.0196%" height="15" fill="rgb(231,118,14)" fg:x="137433455299" fg:w="63383980"/><text x="42.7444%" y="399.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (59,239,358 samples, 0.02%)</title><rect x="42.4957%" y="373" width="0.0183%" height="15" fill="rgb(238,83,0)" fg:x="137437599921" fg:w="59239358"/><text x="42.7457%" y="383.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (59,239,358 samples, 0.02%)</title><rect x="42.4957%" y="357" width="0.0183%" height="15" fill="rgb(221,39,39)" fg:x="137437599921" fg:w="59239358"/><text x="42.7457%" y="367.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (59,239,358 samples, 0.02%)</title><rect x="42.4957%" y="341" width="0.0183%" height="15" fill="rgb(222,119,46)" fg:x="137437599921" fg:w="59239358"/><text x="42.7457%" y="351.50"></text></g><g><title>alloc::alloc::alloc (51,236,388 samples, 0.02%)</title><rect x="42.4982%" y="325" width="0.0158%" height="15" fill="rgb(222,165,49)" fg:x="137445602891" fg:w="51236388"/><text x="42.7482%" y="335.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::hash::Hash&gt;::hash (33,138,900 samples, 0.01%)</title><rect x="42.5166%" y="453" width="0.0102%" height="15" fill="rgb(219,113,52)" fg:x="137505122116" fg:w="33138900"/><text x="42.7666%" y="463.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (78,652,635 samples, 0.02%)</title><rect x="42.5268%" y="325" width="0.0243%" height="15" fill="rgb(214,7,15)" fg:x="137538261016" fg:w="78652635"/><text x="42.7768%" y="335.50"></text></g><g><title>alloc::alloc::dealloc (78,652,635 samples, 0.02%)</title><rect x="42.5268%" y="309" width="0.0243%" height="15" fill="rgb(235,32,4)" fg:x="137538261016" fg:w="78652635"/><text x="42.7768%" y="319.50"></text></g><g><title>cfree (33,117,617 samples, 0.01%)</title><rect x="42.5409%" y="293" width="0.0102%" height="15" fill="rgb(238,90,54)" fg:x="137583796034" fg:w="33117617"/><text x="42.7909%" y="303.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_end (194,762,397 samples, 0.06%)</title><rect x="42.5268%" y="373" width="0.0602%" height="15" fill="rgb(213,208,19)" fg:x="137538261016" fg:w="194762397"/><text x="42.7768%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_end (194,762,397 samples, 0.06%)</title><rect x="42.5268%" y="357" width="0.0602%" height="15" fill="rgb(233,156,4)" fg:x="137538261016" fg:w="194762397"/><text x="42.7768%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (194,762,397 samples, 0.06%)</title><rect x="42.5268%" y="341" width="0.0602%" height="15" fill="rgb(207,194,5)" fg:x="137538261016" fg:w="194762397"/><text x="42.7768%" y="351.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (116,109,762 samples, 0.04%)</title><rect x="42.5512%" y="325" width="0.0359%" height="15" fill="rgb(206,111,30)" fg:x="137616913651" fg:w="116109762"/><text x="42.8012%" y="335.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (107,801,642 samples, 0.03%)</title><rect x="42.5537%" y="309" width="0.0333%" height="15" fill="rgb(243,70,54)" fg:x="137625221771" fg:w="107801642"/><text x="42.8037%" y="319.50"></text></g><g><title>core::mem::drop (207,165,548 samples, 0.06%)</title><rect x="42.5268%" y="437" width="0.0641%" height="15" fill="rgb(242,28,8)" fg:x="137538261016" fg:w="207165548"/><text x="42.7768%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (207,165,548 samples, 0.06%)</title><rect x="42.5268%" y="421" width="0.0641%" height="15" fill="rgb(219,106,18)" fg:x="137538261016" fg:w="207165548"/><text x="42.7768%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (207,165,548 samples, 0.06%)</title><rect x="42.5268%" y="405" width="0.0641%" height="15" fill="rgb(244,222,10)" fg:x="137538261016" fg:w="207165548"/><text x="42.7768%" y="415.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (207,165,548 samples, 0.06%)</title><rect x="42.5268%" y="389" width="0.0641%" height="15" fill="rgb(236,179,52)" fg:x="137538261016" fg:w="207165548"/><text x="42.7768%" y="399.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (211,319,546 samples, 0.07%)</title><rect x="42.5268%" y="453" width="0.0653%" height="15" fill="rgb(213,23,39)" fg:x="137538261016" fg:w="211319546"/><text x="42.7768%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::double_ended::DoubleEndedIterator&gt;::next_back (70,053,518 samples, 0.02%)</title><rect x="42.5922%" y="453" width="0.0217%" height="15" fill="rgb(238,48,10)" fg:x="137749580562" fg:w="70053518"/><text x="42.8422%" y="463.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (649,312,461 samples, 0.20%)</title><rect x="44.1689%" y="357" width="0.2008%" height="15" fill="rgb(251,196,23)" fg:x="142848965752" fg:w="649312461"/><text x="44.4189%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_kv (843,818,731 samples, 0.26%)</title><rect x="44.1216%" y="373" width="0.2609%" height="15" fill="rgb(250,152,24)" fg:x="142695833460" fg:w="843818731"/><text x="44.3716%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (41,373,978 samples, 0.01%)</title><rect x="44.3697%" y="357" width="0.0128%" height="15" fill="rgb(209,150,17)" fg:x="143498278213" fg:w="41373978"/><text x="44.6197%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (260,777,089 samples, 0.08%)</title><rect x="44.3953%" y="357" width="0.0806%" height="15" fill="rgb(234,202,34)" fg:x="143581038184" fg:w="260777089"/><text x="44.6453%" y="367.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (240,047,370 samples, 0.07%)</title><rect x="44.4017%" y="341" width="0.0742%" height="15" fill="rgb(253,148,53)" fg:x="143601767903" fg:w="240047370"/><text x="44.6517%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,alloc::collections::btree::node::marker::KV&gt;&gt;::next_leaf_edge (492,430,297 samples, 0.15%)</title><rect x="44.3825%" y="373" width="0.1523%" height="15" fill="rgb(218,129,16)" fg:x="143539652191" fg:w="492430297"/><text x="44.6325%" y="383.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (190,267,215 samples, 0.06%)</title><rect x="44.4759%" y="357" width="0.0588%" height="15" fill="rgb(216,85,19)" fg:x="143841815273" fg:w="190267215"/><text x="44.7259%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (190,267,215 samples, 0.06%)</title><rect x="44.4759%" y="341" width="0.0588%" height="15" fill="rgb(235,228,7)" fg:x="143841815273" fg:w="190267215"/><text x="44.7259%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked::{{closure}} (1,795,182,919 samples, 0.56%)</title><rect x="44.1216%" y="389" width="0.5551%" height="15" fill="rgb(245,175,0)" fg:x="142695833460" fg:w="1795182919"/><text x="44.3716%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::into_kv (458,933,891 samples, 0.14%)</title><rect x="44.5347%" y="373" width="0.1419%" height="15" fill="rgb(208,168,36)" fg:x="144032082488" fg:w="458933891"/><text x="44.7847%" y="383.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (454,836,992 samples, 0.14%)</title><rect x="44.5360%" y="357" width="0.1406%" height="15" fill="rgb(246,171,24)" fg:x="144036179387" fg:w="454836992"/><text x="44.7860%" y="367.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (454,836,992 samples, 0.14%)</title><rect x="44.5360%" y="341" width="0.1406%" height="15" fill="rgb(215,142,24)" fg:x="144036179387" fg:w="454836992"/><text x="44.7860%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked (2,502,615,557 samples, 0.77%)</title><rect x="44.1216%" y="421" width="0.7738%" height="15" fill="rgb(250,187,7)" fg:x="142695833460" fg:w="2502615557"/><text x="44.3716%" y="431.50"></text></g><g><title>alloc::collections::btree::mem::replace (2,502,615,557 samples, 0.77%)</title><rect x="44.1216%" y="405" width="0.7738%" height="15" fill="rgb(228,66,33)" fg:x="142695833460" fg:w="2502615557"/><text x="44.3716%" y="415.50"></text></g><g><title>core::ptr::write (707,432,638 samples, 0.22%)</title><rect x="44.6766%" y="389" width="0.2187%" height="15" fill="rgb(234,215,21)" fg:x="144491016379" fg:w="707432638"/><text x="44.9266%" y="399.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (45,556,471 samples, 0.01%)</title><rect x="44.9402%" y="405" width="0.0141%" height="15" fill="rgb(222,191,20)" fg:x="145343346972" fg:w="45556471"/><text x="45.1902%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (37,277,547 samples, 0.01%)</title><rect x="44.9427%" y="389" width="0.0115%" height="15" fill="rgb(245,79,54)" fg:x="145351625896" fg:w="37277547"/><text x="45.1927%" y="399.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (7,593,929,043 samples, 2.35%)</title><rect x="42.6138%" y="453" width="2.3480%" height="15" fill="rgb(240,10,37)" fg:x="137819634080" fg:w="7593929043"/><text x="42.8638%" y="463.50">&lt;..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Immut,K,V&gt;::next_unchecked (2,717,729,663 samples, 0.84%)</title><rect x="44.1216%" y="437" width="0.8403%" height="15" fill="rgb(214,192,32)" fg:x="142695833460" fg:w="2717729663"/><text x="44.3716%" y="447.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (215,114,106 samples, 0.07%)</title><rect x="44.8954%" y="421" width="0.0665%" height="15" fill="rgb(209,36,54)" fg:x="145198449017" fg:w="215114106"/><text x="45.1454%" y="431.50"></text></g><g><title>core::mem::manually_drop::ManuallyDrop&lt;T&gt;::new (744,874,597 samples, 0.23%)</title><rect x="45.7102%" y="421" width="0.2303%" height="15" fill="rgb(220,10,11)" fg:x="147833757103" fg:w="744874597"/><text x="45.9602%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (1,121,444,969 samples, 0.35%)</title><rect x="45.7102%" y="437" width="0.3468%" height="15" fill="rgb(221,106,17)" fg:x="147833757103" fg:w="1121444969"/><text x="45.9602%" y="447.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (376,570,372 samples, 0.12%)</title><rect x="45.9405%" y="421" width="0.1164%" height="15" fill="rgb(251,142,44)" fg:x="148578631700" fg:w="376570372"/><text x="46.1905%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::DerefMut&gt;::deref_mut (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="437" width="0.0179%" height="15" fill="rgb(238,13,15)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_slice (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="421" width="0.0179%" height="15" fill="rgb(208,107,27)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="405" width="0.0179%" height="15" fill="rgb(205,136,37)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::ptr (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="389" width="0.0179%" height="15" fill="rgb(250,205,27)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::ptr (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="373" width="0.0179%" height="15" fill="rgb(210,80,43)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::non_null (57,873,667 samples, 0.02%)</title><rect x="46.0570%" y="357" width="0.0179%" height="15" fill="rgb(247,160,36)" fg:x="148955202072" fg:w="57873667"/><text x="46.3070%" y="367.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::from_sorted_iter (615,435,570 samples, 0.19%)</title><rect x="46.0749%" y="437" width="0.1903%" height="15" fill="rgb(234,13,49)" fg:x="149013075739" fg:w="615435570"/><text x="46.3249%" y="447.50"></text></g><g><title>core::iter::traits::iterator::Iterator::map (598,959,796 samples, 0.19%)</title><rect x="46.0799%" y="421" width="0.1852%" height="15" fill="rgb(234,122,0)" fg:x="149029551513" fg:w="598959796"/><text x="46.3299%" y="431.50"></text></g><g><title>core::iter::adapters::map::Map&lt;I,F&gt;::new (598,959,796 samples, 0.19%)</title><rect x="46.0799%" y="405" width="0.1852%" height="15" fill="rgb(207,146,38)" fg:x="149029551513" fg:w="598959796"/><text x="46.3299%" y="415.50"></text></g><g><title>core::intrinsics::likely (364,093,718 samples, 0.11%)</title><rect x="46.3085%" y="389" width="0.1126%" height="15" fill="rgb(207,177,25)" fg:x="149768805256" fg:w="364093718"/><text x="46.5585%" y="399.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (550,288,688 samples, 0.17%)</title><rect x="46.7433%" y="373" width="0.1701%" height="15" fill="rgb(211,178,42)" fg:x="151174882768" fg:w="550288688"/><text x="46.9933%" y="383.50"></text></g><g><title>core::ops::function::FnMut::call_mut (82,602,843 samples, 0.03%)</title><rect x="48.0653%" y="357" width="0.0255%" height="15" fill="rgb(230,69,54)" fg:x="155450597184" fg:w="82602843"/><text x="48.3153%" y="367.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for u32&gt;::lt (82,602,843 samples, 0.03%)</title><rect x="48.0653%" y="341" width="0.0255%" height="15" fill="rgb(214,135,41)" fg:x="155450597184" fg:w="82602843"/><text x="48.3153%" y="351.50"></text></g><g><title>core::ptr::copy_nonoverlapping (231,176,988 samples, 0.07%)</title><rect x="48.0909%" y="357" width="0.0715%" height="15" fill="rgb(237,67,25)" fg:x="155533200027" fg:w="231176988"/><text x="48.3409%" y="367.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::sort (6,140,006,748 samples, 1.90%)</title><rect x="46.2651%" y="437" width="1.8985%" height="15" fill="rgb(222,189,50)" fg:x="149628511309" fg:w="6140006748"/><text x="46.5151%" y="447.50">a..</text></g><g><title>alloc::slice::stable_sort (6,140,006,748 samples, 1.90%)</title><rect x="46.2651%" y="421" width="1.8985%" height="15" fill="rgb(245,148,34)" fg:x="149628511309" fg:w="6140006748"/><text x="46.5151%" y="431.50">a..</text></g><g><title>core::slice::sort::stable::sort (6,140,006,748 samples, 1.90%)</title><rect x="46.2651%" y="405" width="1.8985%" height="15" fill="rgb(222,29,6)" fg:x="149628511309" fg:w="6140006748"/><text x="46.5151%" y="415.50">c..</text></g><g><title>core::slice::sort::shared::smallsort::insertion_sort_shift_left (5,635,619,083 samples, 1.74%)</title><rect x="46.4211%" y="389" width="1.7425%" height="15" fill="rgb(221,189,43)" fg:x="150132898974" fg:w="5635619083"/><text x="46.6711%" y="399.50"></text></g><g><title>core::slice::sort::shared::smallsort::insert_tail (4,043,346,601 samples, 1.25%)</title><rect x="46.9134%" y="373" width="1.2502%" height="15" fill="rgb(207,36,27)" fg:x="151725171456" fg:w="4043346601"/><text x="47.1634%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (10,801,403,847 samples, 3.34%)</title><rect x="44.9619%" y="453" width="3.3398%" height="15" fill="rgb(217,90,24)" fg:x="145413563123" fg:w="10801403847"/><text x="45.2119%" y="463.50">&lt;al..</text></g><g><title>core::iter::traits::iterator::Iterator::collect (425,847,260 samples, 0.13%)</title><rect x="48.1700%" y="437" width="0.1317%" height="15" fill="rgb(224,66,35)" fg:x="155789119710" fg:w="425847260"/><text x="48.4200%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (425,847,260 samples, 0.13%)</title><rect x="48.1700%" y="421" width="0.1317%" height="15" fill="rgb(221,13,50)" fg:x="155789119710" fg:w="425847260"/><text x="48.4200%" y="431.50"></text></g><g><title>&lt;I as core::iter::traits::collect::IntoIterator&gt;::into_iter (347,504,708 samples, 0.11%)</title><rect x="48.1942%" y="405" width="0.1074%" height="15" fill="rgb(236,68,49)" fg:x="155867462262" fg:w="347504708"/><text x="48.4442%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (479,368,028 samples, 0.15%)</title><rect x="48.3017%" y="453" width="0.1482%" height="15" fill="rgb(229,146,28)" fg:x="156214966970" fg:w="479368028"/><text x="48.5517%" y="463.50"></text></g><g><title>&lt;alloc::collections::btree::set::Intersection&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (128,147,659 samples, 0.04%)</title><rect x="48.4499%" y="453" width="0.0396%" height="15" fill="rgb(225,31,38)" fg:x="156694334998" fg:w="128147659"/><text x="48.6999%" y="463.50"></text></g><g><title>core::iter::adapters::chain::and_then_or_clear (268,963,044 samples, 0.08%)</title><rect x="49.1520%" y="357" width="0.0832%" height="15" fill="rgb(250,208,3)" fg:x="158965098517" fg:w="268963044"/><text x="49.4020%" y="367.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_mut (268,963,044 samples, 0.08%)</title><rect x="49.1520%" y="341" width="0.0832%" height="15" fill="rgb(246,54,23)" fg:x="158965098517" fg:w="268963044"/><text x="49.4020%" y="351.50"></text></g><g><title>&lt;alloc::collections::btree::set::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (281,373,698 samples, 0.09%)</title><rect x="49.2352%" y="325" width="0.0870%" height="15" fill="rgb(243,76,11)" fg:x="159234061561" fg:w="281373698"/><text x="49.4852%" y="335.50"></text></g><g><title>&lt;alloc::collections::btree::map::Keys&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (281,373,698 samples, 0.09%)</title><rect x="49.2352%" y="309" width="0.0870%" height="15" fill="rgb(245,21,50)" fg:x="159234061561" fg:w="281373698"/><text x="49.4852%" y="319.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,373,051,727 samples, 0.42%)</title><rect x="49.1520%" y="373" width="0.4245%" height="15" fill="rgb(228,9,43)" fg:x="158965098517" fg:w="1373051727"/><text x="49.4020%" y="383.50"></text></g><g><title>core::option::Option&lt;T&gt;::or_else (1,104,088,683 samples, 0.34%)</title><rect x="49.2352%" y="357" width="0.3414%" height="15" fill="rgb(208,100,47)" fg:x="159234061561" fg:w="1104088683"/><text x="49.4852%" y="367.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next::{{closure}} (1,104,088,683 samples, 0.34%)</title><rect x="49.2352%" y="341" width="0.3414%" height="15" fill="rgb(232,26,8)" fg:x="159234061561" fg:w="1104088683"/><text x="49.4852%" y="351.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_mut (822,714,985 samples, 0.25%)</title><rect x="49.3222%" y="325" width="0.2544%" height="15" fill="rgb(216,166,38)" fg:x="159515435259" fg:w="822714985"/><text x="49.5722%" y="335.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,426,887,888 samples, 0.44%)</title><rect x="49.1520%" y="389" width="0.4412%" height="15" fill="rgb(251,202,51)" fg:x="158965098517" fg:w="1426887888"/><text x="49.4020%" y="399.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::cloned (53,836,161 samples, 0.02%)</title><rect x="49.5766%" y="373" width="0.0166%" height="15" fill="rgb(254,216,34)" fg:x="160338150244" fg:w="53836161"/><text x="49.8266%" y="383.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (3,180,074,787 samples, 0.98%)</title><rect x="48.6571%" y="421" width="0.9833%" height="15" fill="rgb(251,32,27)" fg:x="157364480344" fg:w="3180074787"/><text x="48.9071%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (3,180,074,787 samples, 0.98%)</title><rect x="48.6571%" y="405" width="0.9833%" height="15" fill="rgb(208,127,28)" fg:x="157364480344" fg:w="3180074787"/><text x="48.9071%" y="415.50"></text></g><g><title>core::ptr::write (131,856,780 samples, 0.04%)</title><rect x="49.5996%" y="389" width="0.0408%" height="15" fill="rgb(224,137,22)" fg:x="160412698351" fg:w="131856780"/><text x="49.8496%" y="399.50"></text></g><g><title>core::iter::adapters::chain::and_then_or_clear (37,240,247 samples, 0.01%)</title><rect x="49.6417%" y="389" width="0.0115%" height="15" fill="rgb(254,70,32)" fg:x="160548698261" fg:w="37240247"/><text x="49.8917%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (49,664,867 samples, 0.02%)</title><rect x="49.6404%" y="421" width="0.0154%" height="15" fill="rgb(229,75,37)" fg:x="160544555131" fg:w="49664867"/><text x="49.8904%" y="431.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (49,664,867 samples, 0.02%)</title><rect x="49.6404%" y="405" width="0.0154%" height="15" fill="rgb(252,64,23)" fg:x="160544555131" fg:w="49664867"/><text x="49.8904%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::cloned::Cloned&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (678,377,170 samples, 0.21%)</title><rect x="49.6557%" y="421" width="0.2098%" height="15" fill="rgb(232,162,48)" fg:x="160594219998" fg:w="678377170"/><text x="49.9057%" y="431.50"></text></g><g><title>&lt;core::iter::adapters::chain::Chain&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (678,377,170 samples, 0.21%)</title><rect x="49.6557%" y="405" width="0.2098%" height="15" fill="rgb(246,160,12)" fg:x="160594219998" fg:w="678377170"/><text x="49.9057%" y="415.50"></text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (99,331,632 samples, 0.03%)</title><rect x="49.8348%" y="389" width="0.0307%" height="15" fill="rgb(247,166,0)" fg:x="161173265536" fg:w="99331632"/><text x="50.0848%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (49,647,396 samples, 0.02%)</title><rect x="49.8655%" y="421" width="0.0154%" height="15" fill="rgb(249,219,21)" fg:x="161272597168" fg:w="49647396"/><text x="50.1155%" y="431.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::copied (49,647,396 samples, 0.02%)</title><rect x="49.8655%" y="405" width="0.0154%" height="15" fill="rgb(205,209,3)" fg:x="161272597168" fg:w="49647396"/><text x="50.1155%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (37,224,099 samples, 0.01%)</title><rect x="49.8808%" y="421" width="0.0115%" height="15" fill="rgb(243,44,1)" fg:x="161322244564" fg:w="37224099"/><text x="50.1308%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (37,224,099 samples, 0.01%)</title><rect x="49.8808%" y="405" width="0.0115%" height="15" fill="rgb(206,159,16)" fg:x="161322244564" fg:w="37224099"/><text x="50.1308%" y="415.50"></text></g><g><title>[libc.so.6] (301,738,145 samples, 0.09%)</title><rect x="49.8924%" y="421" width="0.0933%" height="15" fill="rgb(244,77,30)" fg:x="161359468663" fg:w="301738145"/><text x="50.1424%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::new (78,586,465 samples, 0.02%)</title><rect x="49.9857%" y="421" width="0.0243%" height="15" fill="rgb(218,69,12)" fg:x="161661206808" fg:w="78586465"/><text x="50.2357%" y="431.50"></text></g><g><title>[libc.so.6] (86,915,665 samples, 0.03%)</title><rect x="50.1098%" y="293" width="0.0269%" height="15" fill="rgb(212,87,7)" fg:x="162062663482" fg:w="86915665"/><text x="50.3598%" y="303.50"></text></g><g><title>[libc.so.6] (86,915,665 samples, 0.03%)</title><rect x="50.1098%" y="277" width="0.0269%" height="15" fill="rgb(245,114,25)" fg:x="162062663482" fg:w="86915665"/><text x="50.3598%" y="287.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (475,982,824 samples, 0.15%)</title><rect x="50.0112%" y="341" width="0.1472%" height="15" fill="rgb(210,61,42)" fg:x="161743928664" fg:w="475982824"/><text x="50.2612%" y="351.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (475,982,824 samples, 0.15%)</title><rect x="50.0112%" y="325" width="0.1472%" height="15" fill="rgb(211,52,33)" fg:x="161743928664" fg:w="475982824"/><text x="50.2612%" y="335.50"></text></g><g><title>alloc::alloc::alloc (475,982,824 samples, 0.15%)</title><rect x="50.0112%" y="309" width="0.1472%" height="15" fill="rgb(234,58,33)" fg:x="161743928664" fg:w="475982824"/><text x="50.2612%" y="319.50"></text></g><g><title>malloc (70,332,341 samples, 0.02%)</title><rect x="50.1367%" y="293" width="0.0217%" height="15" fill="rgb(220,115,36)" fg:x="162149579147" fg:w="70332341"/><text x="50.3867%" y="303.50"></text></g><g><title>core::intrinsics::unlikely (314,495,976 samples, 0.10%)</title><rect x="50.1622%" y="277" width="0.0972%" height="15" fill="rgb(243,153,54)" fg:x="162232328349" fg:w="314495976"/><text x="50.4122%" y="287.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1,253,955,946 samples, 0.39%)</title><rect x="50.0100%" y="421" width="0.3877%" height="15" fill="rgb(251,47,18)" fg:x="161739793273" fg:w="1253955946"/><text x="50.2600%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1,253,955,946 samples, 0.39%)</title><rect x="50.0100%" y="405" width="0.3877%" height="15" fill="rgb(242,102,42)" fg:x="161739793273" fg:w="1253955946"/><text x="50.2600%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1,253,955,946 samples, 0.39%)</title><rect x="50.0100%" y="389" width="0.3877%" height="15" fill="rgb(234,31,38)" fg:x="161739793273" fg:w="1253955946"/><text x="50.2600%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (1,253,955,946 samples, 0.39%)</title><rect x="50.0100%" y="373" width="0.3877%" height="15" fill="rgb(221,117,51)" fg:x="161739793273" fg:w="1253955946"/><text x="50.2600%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (1,253,955,946 samples, 0.39%)</title><rect x="50.0100%" y="357" width="0.3877%" height="15" fill="rgb(212,20,18)" fg:x="161739793273" fg:w="1253955946"/><text x="50.2600%" y="367.50"></text></g><g><title>alloc::raw_vec::layout_array (761,420,870 samples, 0.24%)</title><rect x="50.1622%" y="341" width="0.2354%" height="15" fill="rgb(245,133,36)" fg:x="162232328349" fg:w="761420870"/><text x="50.4122%" y="351.50"></text></g><g><title>core::alloc::layout::Layout::repeat (761,420,870 samples, 0.24%)</title><rect x="50.1622%" y="325" width="0.2354%" height="15" fill="rgb(212,6,19)" fg:x="162232328349" fg:w="761420870"/><text x="50.4122%" y="335.50"></text></g><g><title>core::alloc::layout::Layout::repeat_packed (761,420,870 samples, 0.24%)</title><rect x="50.1622%" y="309" width="0.2354%" height="15" fill="rgb(218,1,36)" fg:x="162232328349" fg:w="761420870"/><text x="50.4122%" y="319.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (761,420,870 samples, 0.24%)</title><rect x="50.1622%" y="293" width="0.2354%" height="15" fill="rgb(246,84,54)" fg:x="162232328349" fg:w="761420870"/><text x="50.4122%" y="303.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (446,924,894 samples, 0.14%)</title><rect x="50.2595%" y="277" width="0.1382%" height="15" fill="rgb(242,110,6)" fg:x="162546824325" fg:w="446924894"/><text x="50.5095%" y="287.50"></text></g><g><title>core::cmp::max (202,785,664 samples, 0.06%)</title><rect x="50.3977%" y="421" width="0.0627%" height="15" fill="rgb(214,47,5)" fg:x="162993749219" fg:w="202785664"/><text x="50.6477%" y="431.50"></text></g><g><title>core::cmp::Ord::max (202,785,664 samples, 0.06%)</title><rect x="50.3977%" y="405" width="0.0627%" height="15" fill="rgb(218,159,25)" fg:x="162993749219" fg:w="202785664"/><text x="50.6477%" y="415.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 (6,465,092,908 samples, 2.00%)</title><rect x="48.4895%" y="453" width="1.9990%" height="15" fill="rgb(215,211,28)" fg:x="156822482657" fg:w="6465092908"/><text x="48.7395%" y="463.50">&lt;..</text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (6,088,589,477 samples, 1.88%)</title><rect x="48.6059%" y="437" width="1.8826%" height="15" fill="rgb(238,59,32)" fg:x="157198986088" fg:w="6088589477"/><text x="48.8559%" y="447.50">&lt;..</text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (91,040,682 samples, 0.03%)</title><rect x="50.4604%" y="421" width="0.0281%" height="15" fill="rgb(226,82,3)" fg:x="163196534883" fg:w="91040682"/><text x="50.7104%" y="431.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,alloc::vec::into_iter::IntoIter&lt;T&gt;&gt;&gt;::from_iter (140,717,350 samples, 0.04%)</title><rect x="50.4885%" y="453" width="0.0435%" height="15" fill="rgb(240,164,32)" fg:x="163287575565" fg:w="140717350"/><text x="50.7385%" y="463.50"></text></g><g><title>[libc.so.6] (45,435,154 samples, 0.01%)</title><rect x="50.5524%" y="341" width="0.0140%" height="15" fill="rgb(232,46,7)" fg:x="163494007204" fg:w="45435154"/><text x="50.8024%" y="351.50"></text></g><g><title>[libc.so.6] (45,435,154 samples, 0.01%)</title><rect x="50.5524%" y="325" width="0.0140%" height="15" fill="rgb(229,129,53)" fg:x="163494007204" fg:w="45435154"/><text x="50.8024%" y="335.50"></text></g><g><title>alloc::boxed::Box&lt;T&gt;::new (57,847,356 samples, 0.02%)</title><rect x="50.5498%" y="421" width="0.0179%" height="15" fill="rgb(234,188,29)" fg:x="163485724407" fg:w="57847356"/><text x="50.7998%" y="431.50"></text></g><g><title>alloc::alloc::exchange_malloc (49,564,559 samples, 0.02%)</title><rect x="50.5524%" y="405" width="0.0153%" height="15" fill="rgb(246,141,4)" fg:x="163494007204" fg:w="49564559"/><text x="50.8024%" y="415.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (49,564,559 samples, 0.02%)</title><rect x="50.5524%" y="389" width="0.0153%" height="15" fill="rgb(229,23,39)" fg:x="163494007204" fg:w="49564559"/><text x="50.8024%" y="399.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (49,564,559 samples, 0.02%)</title><rect x="50.5524%" y="373" width="0.0153%" height="15" fill="rgb(206,12,3)" fg:x="163494007204" fg:w="49564559"/><text x="50.8024%" y="383.50"></text></g><g><title>alloc::alloc::alloc (49,564,559 samples, 0.02%)</title><rect x="50.5524%" y="357" width="0.0153%" height="15" fill="rgb(252,226,20)" fg:x="163494007204" fg:w="49564559"/><text x="50.8024%" y="367.50"></text></g><g><title>&lt;rsprocess::process::Process as rsprocess::process::BasicProcess&gt;::concat (66,131,266 samples, 0.02%)</title><rect x="50.5485%" y="453" width="0.0204%" height="15" fill="rgb(216,123,35)" fg:x="163481584782" fg:w="66131266"/><text x="50.7985%" y="463.50"></text></g><g><title>alloc::sync::Arc&lt;T&gt;::new (61,991,641 samples, 0.02%)</title><rect x="50.5498%" y="437" width="0.0192%" height="15" fill="rgb(212,68,40)" fg:x="163485724407" fg:w="61991641"/><text x="50.7998%" y="447.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (301,960,829 samples, 0.09%)</title><rect x="50.7761%" y="389" width="0.0934%" height="15" fill="rgb(254,125,32)" fg:x="164217773059" fg:w="301960829"/><text x="51.0261%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (202,622,820 samples, 0.06%)</title><rect x="50.8069%" y="373" width="0.0627%" height="15" fill="rgb(253,97,22)" fg:x="164317111068" fg:w="202622820"/><text x="51.0569%" y="383.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (115,810,229 samples, 0.04%)</title><rect x="50.8695%" y="389" width="0.0358%" height="15" fill="rgb(241,101,14)" fg:x="164519733888" fg:w="115810229"/><text x="51.1195%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (512,911,780 samples, 0.16%)</title><rect x="50.7761%" y="421" width="0.1586%" height="15" fill="rgb(238,103,29)" fg:x="164217773059" fg:w="512911780"/><text x="51.0261%" y="431.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (512,911,780 samples, 0.16%)</title><rect x="50.7761%" y="405" width="0.1586%" height="15" fill="rgb(233,195,47)" fg:x="164217773059" fg:w="512911780"/><text x="51.0261%" y="415.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (95,140,722 samples, 0.03%)</title><rect x="50.9053%" y="389" width="0.0294%" height="15" fill="rgb(246,218,30)" fg:x="164635544117" fg:w="95140722"/><text x="51.1553%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (90,934,947 samples, 0.03%)</title><rect x="50.9514%" y="373" width="0.0281%" height="15" fill="rgb(219,145,47)" fg:x="164784474203" fg:w="90934947"/><text x="51.2014%" y="383.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (90,934,947 samples, 0.03%)</title><rect x="50.9514%" y="357" width="0.0281%" height="15" fill="rgb(243,12,26)" fg:x="164784474203" fg:w="90934947"/><text x="51.2014%" y="367.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (90,934,947 samples, 0.03%)</title><rect x="50.9514%" y="341" width="0.0281%" height="15" fill="rgb(214,87,16)" fg:x="164784474203" fg:w="90934947"/><text x="51.2014%" y="351.50"></text></g><g><title>core::ptr::read (90,934,947 samples, 0.03%)</title><rect x="50.9514%" y="325" width="0.0281%" height="15" fill="rgb(208,99,42)" fg:x="164784474203" fg:w="90934947"/><text x="51.2014%" y="335.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_edge (430,326,929 samples, 0.13%)</title><rect x="50.9795%" y="373" width="0.1331%" height="15" fill="rgb(253,99,2)" fg:x="164875409150" fg:w="430326929"/><text x="51.2295%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (430,326,929 samples, 0.13%)</title><rect x="50.9795%" y="357" width="0.1331%" height="15" fill="rgb(220,168,23)" fg:x="164875409150" fg:w="430326929"/><text x="51.2295%" y="367.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::last (984,314,382 samples, 0.30%)</title><rect x="50.9437%" y="421" width="0.3044%" height="15" fill="rgb(242,38,24)" fg:x="164759640101" fg:w="984314382"/><text x="51.1937%" y="431.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::last_key_value (984,314,382 samples, 0.30%)</title><rect x="50.9437%" y="405" width="0.3044%" height="15" fill="rgb(225,182,9)" fg:x="164759640101" fg:w="984314382"/><text x="51.1937%" y="415.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (984,314,382 samples, 0.30%)</title><rect x="50.9437%" y="389" width="0.3044%" height="15" fill="rgb(243,178,37)" fg:x="164759640101" fg:w="984314382"/><text x="51.1937%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (438,218,404 samples, 0.14%)</title><rect x="51.1125%" y="373" width="0.1355%" height="15" fill="rgb(232,139,19)" fg:x="165305736079" fg:w="438218404"/><text x="51.3625%" y="383.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::is_subset (2,270,730,155 samples, 0.70%)</title><rect x="50.5690%" y="453" width="0.7021%" height="15" fill="rgb(225,201,24)" fg:x="163547716048" fg:w="2270730155"/><text x="50.8190%" y="463.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::is_subset (2,175,498,492 samples, 0.67%)</title><rect x="50.5984%" y="437" width="0.6727%" height="15" fill="rgb(221,47,46)" fg:x="163642947711" fg:w="2175498492"/><text x="50.8484%" y="447.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::len (74,491,720 samples, 0.02%)</title><rect x="51.2480%" y="421" width="0.0230%" height="15" fill="rgb(249,23,13)" fg:x="165743954483" fg:w="74491720"/><text x="51.4980%" y="431.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::len (74,491,720 samples, 0.02%)</title><rect x="51.2480%" y="405" width="0.0230%" height="15" fill="rgb(219,9,5)" fg:x="165743954483" fg:w="74491720"/><text x="51.4980%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_edge (37,242,628 samples, 0.01%)</title><rect x="51.3414%" y="373" width="0.0115%" height="15" fill="rgb(254,171,16)" fg:x="166045951753" fg:w="37242628"/><text x="51.5914%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (37,242,628 samples, 0.01%)</title><rect x="51.3414%" y="357" width="0.0115%" height="15" fill="rgb(230,171,20)" fg:x="166045951753" fg:w="37242628"/><text x="51.5914%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (70,336,611 samples, 0.02%)</title><rect x="51.3363%" y="389" width="0.0217%" height="15" fill="rgb(210,71,41)" fg:x="166029422265" fg:w="70336611"/><text x="51.5863%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::difference (198,569,822 samples, 0.06%)</title><rect x="51.2979%" y="437" width="0.0614%" height="15" fill="rgb(206,173,20)" fg:x="165905329839" fg:w="198569822"/><text x="51.5479%" y="447.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::last (74,477,396 samples, 0.02%)</title><rect x="51.3363%" y="421" width="0.0230%" height="15" fill="rgb(233,88,34)" fg:x="166029422265" fg:w="74477396"/><text x="51.5863%" y="431.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::last_key_value (74,477,396 samples, 0.02%)</title><rect x="51.3363%" y="405" width="0.0230%" height="15" fill="rgb(223,209,46)" fg:x="166029422265" fg:w="74477396"/><text x="51.5863%" y="415.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::subtraction (303,850,177 samples, 0.09%)</title><rect x="51.2711%" y="453" width="0.0940%" height="15" fill="rgb(250,43,18)" fg:x="165818446203" fg:w="303850177"/><text x="51.5211%" y="463.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::clone::Clone&gt;::clone (45,531,316 samples, 0.01%)</title><rect x="51.3663%" y="437" width="0.0141%" height="15" fill="rgb(208,13,10)" fg:x="166126441263" fg:w="45531316"/><text x="51.6163%" y="447.50"></text></g><g><title>&lt;rsprocess::system::System as core::clone::Clone&gt;::clone (144,088,342 samples, 0.04%)</title><rect x="51.3650%" y="453" width="0.0446%" height="15" fill="rgb(212,200,36)" fg:x="166122296380" fg:w="144088342"/><text x="51.6150%" y="463.50"></text></g><g><title>&lt;rsprocess::set::Set as core::clone::Clone&gt;::clone (70,244,165 samples, 0.02%)</title><rect x="51.3879%" y="437" width="0.0217%" height="15" fill="rgb(225,90,30)" fg:x="166196140557" fg:w="70244165"/><text x="51.6379%" y="447.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T,A&gt; as core::clone::Clone&gt;::clone (70,244,165 samples, 0.02%)</title><rect x="51.3879%" y="421" width="0.0217%" height="15" fill="rgb(236,182,39)" fg:x="166196140557" fg:w="70244165"/><text x="51.6379%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone (57,893,017 samples, 0.02%)</title><rect x="51.3917%" y="405" width="0.0179%" height="15" fill="rgb(212,144,35)" fg:x="166208491705" fg:w="57893017"/><text x="51.6417%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::clone::Clone&gt;::clone::clone_subtree (57,893,017 samples, 0.02%)</title><rect x="51.3917%" y="389" width="0.0179%" height="15" fill="rgb(228,63,44)" fg:x="166208491705" fg:w="57893017"/><text x="51.6417%" y="399.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (41,328,682 samples, 0.01%)</title><rect x="51.6130%" y="389" width="0.0128%" height="15" fill="rgb(228,109,6)" fg:x="166924227792" fg:w="41328682"/><text x="51.8630%" y="399.50"></text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (41,328,682 samples, 0.01%)</title><rect x="51.6130%" y="373" width="0.0128%" height="15" fill="rgb(238,117,24)" fg:x="166924227792" fg:w="41328682"/><text x="51.8630%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (82,698,743 samples, 0.03%)</title><rect x="51.6015%" y="405" width="0.0256%" height="15" fill="rgb(242,26,26)" fg:x="166886983348" fg:w="82698743"/><text x="51.8515%" y="415.50"></text></g><g><title>&lt;T as rsprocess::set::ExtensionsSet&gt;::iter (37,275,131 samples, 0.01%)</title><rect x="51.6373%" y="389" width="0.0115%" height="15" fill="rgb(221,92,48)" fg:x="167002794163" fg:w="37275131"/><text x="51.8873%" y="399.50"></text></g><g><title>&lt;&amp;rsprocess::set::Set as core::iter::traits::collect::IntoIterator&gt;::into_iter (37,275,131 samples, 0.01%)</title><rect x="51.6373%" y="373" width="0.0115%" height="15" fill="rgb(209,209,32)" fg:x="167002794163" fg:w="37275131"/><text x="51.8873%" y="383.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::iter (37,275,131 samples, 0.01%)</title><rect x="51.6373%" y="357" width="0.0115%" height="15" fill="rgb(221,70,22)" fg:x="167002794163" fg:w="37275131"/><text x="51.8873%" y="367.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::keys (37,275,131 samples, 0.01%)</title><rect x="51.6373%" y="341" width="0.0115%" height="15" fill="rgb(248,145,5)" fg:x="167002794163" fg:w="37275131"/><text x="51.8873%" y="351.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::iter (37,275,131 samples, 0.01%)</title><rect x="51.6373%" y="325" width="0.0115%" height="15" fill="rgb(226,116,26)" fg:x="167002794163" fg:w="37275131"/><text x="51.8873%" y="335.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::union (148,783,976 samples, 0.05%)</title><rect x="51.6360%" y="405" width="0.0460%" height="15" fill="rgb(244,5,17)" fg:x="166998670515" fg:w="148783976"/><text x="51.8860%" y="415.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (107,385,197 samples, 0.03%)</title><rect x="51.6488%" y="389" width="0.0332%" height="15" fill="rgb(252,159,33)" fg:x="167040069294" fg:w="107385197"/><text x="51.8988%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (107,385,197 samples, 0.03%)</title><rect x="51.6488%" y="373" width="0.0332%" height="15" fill="rgb(206,71,0)" fg:x="167040069294" fg:w="107385197"/><text x="51.8988%" y="383.50"></text></g><g><title>&lt;I as core::iter::traits::collect::IntoIterator&gt;::into_iter (107,385,197 samples, 0.03%)</title><rect x="51.6488%" y="357" width="0.0332%" height="15" fill="rgb(233,118,54)" fg:x="167040069294" fg:w="107385197"/><text x="51.8988%" y="367.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::iter::traits::collect::IntoIterator&gt;::into_iter (99,376,079 samples, 0.03%)</title><rect x="51.6820%" y="341" width="0.0307%" height="15" fill="rgb(234,83,48)" fg:x="167147454491" fg:w="99376079"/><text x="51.9320%" y="351.50"></text></g><g><title>core::mem::drop (4,584,961,852 samples, 1.42%)</title><rect x="51.7127%" y="341" width="1.4177%" height="15" fill="rgb(228,3,54)" fg:x="167246830570" fg:w="4584961852"/><text x="51.9627%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (4,584,961,852 samples, 1.42%)</title><rect x="51.7127%" y="325" width="1.4177%" height="15" fill="rgb(226,155,13)" fg:x="167246830570" fg:w="4584961852"/><text x="51.9627%" y="335.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (4,584,961,852 samples, 1.42%)</title><rect x="51.7127%" y="309" width="1.4177%" height="15" fill="rgb(241,28,37)" fg:x="167246830570" fg:w="4584961852"/><text x="51.9627%" y="319.50"></text></g><g><title>&lt;rsprocess::transitions::TransitionsIterator&lt;rsprocess::set::Set,rsprocess::system::System,rsprocess::process::Process&gt; as core::iter::traits::iterator::Iterator&gt;::next::{{closure}} (5,453,881,876 samples, 1.69%)</title><rect x="51.4453%" y="421" width="1.6863%" height="15" fill="rgb(233,93,10)" fg:x="166382055959" fg:w="5453881876"/><text x="51.6953%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::set::Set&gt; (4,688,483,344 samples, 1.45%)</title><rect x="51.6820%" y="405" width="1.4497%" height="15" fill="rgb(225,113,19)" fg:x="167147454491" fg:w="4688483344"/><text x="51.9320%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;u32&gt;&gt; (4,688,483,344 samples, 1.45%)</title><rect x="51.6820%" y="389" width="1.4497%" height="15" fill="rgb(241,2,18)" fg:x="167147454491" fg:w="4688483344"/><text x="51.9320%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (4,688,483,344 samples, 1.45%)</title><rect x="51.6820%" y="373" width="1.4497%" height="15" fill="rgb(228,207,21)" fg:x="167147454491" fg:w="4688483344"/><text x="51.9320%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (4,688,483,344 samples, 1.45%)</title><rect x="51.6820%" y="357" width="1.4497%" height="15" fill="rgb(213,211,35)" fg:x="167147454491" fg:w="4688483344"/><text x="51.9320%" y="367.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (5,627,490,423 samples, 1.74%)</title><rect x="51.4224%" y="437" width="1.7400%" height="15" fill="rgb(209,83,10)" fg:x="166307787484" fg:w="5627490423"/><text x="51.6724%" y="447.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_add (99,340,072 samples, 0.03%)</title><rect x="53.1317%" y="421" width="0.0307%" height="15" fill="rgb(209,164,1)" fg:x="171835937835" fg:w="99340072"/><text x="53.3817%" y="431.50"></text></g><g><title>&lt;rsprocess::transitions::TransitionsIterator&lt;rsprocess::set::Set,rsprocess::system::System,rsprocess::process::Process&gt; as core::iter::traits::iterator::Iterator&gt;::next (5,685,372,936 samples, 1.76%)</title><rect x="51.4096%" y="453" width="1.7579%" height="15" fill="rgb(213,184,43)" fg:x="166266384722" fg:w="5685372936"/><text x="51.6596%" y="463.50"></text></g><g><title>&lt;std::hash::random::DefaultHasher as core::hash::Hasher&gt;::write (48,858,376 samples, 0.02%)</title><rect x="53.1675%" y="453" width="0.0151%" height="15" fill="rgb(231,61,34)" fg:x="171951757658" fg:w="48858376"/><text x="53.4175%" y="463.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (48,858,376 samples, 0.02%)</title><rect x="53.1675%" y="437" width="0.0151%" height="15" fill="rgb(235,75,3)" fg:x="171951757658" fg:w="48858376"/><text x="53.4175%" y="447.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (48,858,376 samples, 0.02%)</title><rect x="53.1675%" y="421" width="0.0151%" height="15" fill="rgb(220,106,47)" fg:x="171951757658" fg:w="48858376"/><text x="53.4175%" y="431.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 (103,152,961 samples, 0.03%)</title><rect x="53.1902%" y="437" width="0.0319%" height="15" fill="rgb(210,196,33)" fg:x="172025119419" fg:w="103152961"/><text x="53.4402%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (103,152,961 samples, 0.03%)</title><rect x="53.1902%" y="421" width="0.0319%" height="15" fill="rgb(229,154,42)" fg:x="172025119419" fg:w="103152961"/><text x="53.4402%" y="431.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (99,013,784 samples, 0.03%)</title><rect x="53.1915%" y="405" width="0.0306%" height="15" fill="rgb(228,114,26)" fg:x="172029258596" fg:w="99013784"/><text x="53.4415%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (99,013,784 samples, 0.03%)</title><rect x="53.1915%" y="389" width="0.0306%" height="15" fill="rgb(208,144,1)" fg:x="172029258596" fg:w="99013784"/><text x="53.4415%" y="399.50"></text></g><g><title>core::iter::traits::exact_size::ExactSizeIterator::len (53,796,247 samples, 0.02%)</title><rect x="53.2054%" y="373" width="0.0166%" height="15" fill="rgb(239,112,37)" fg:x="172074476133" fg:w="53796247"/><text x="53.4554%" y="383.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (53,796,247 samples, 0.02%)</title><rect x="53.2054%" y="357" width="0.0166%" height="15" fill="rgb(210,96,50)" fg:x="172074476133" fg:w="53796247"/><text x="53.4554%" y="367.50"></text></g><g><title>[libc.so.6] (128,007,427 samples, 0.04%)</title><rect x="53.1863%" y="453" width="0.0396%" height="15" fill="rgb(222,178,2)" fg:x="172012687265" fg:w="128007427"/><text x="53.4363%" y="463.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (322,822,717 samples, 0.10%)</title><rect x="53.2924%" y="341" width="0.0998%" height="15" fill="rgb(226,74,18)" fg:x="172355751042" fg:w="322822717"/><text x="53.5424%" y="351.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (41,294,612 samples, 0.01%)</title><rect x="53.3795%" y="325" width="0.0128%" height="15" fill="rgb(225,67,54)" fg:x="172637279147" fg:w="41294612"/><text x="53.6295%" y="335.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_kv (339,366,719 samples, 0.10%)</title><rect x="53.2924%" y="357" width="0.1049%" height="15" fill="rgb(251,92,32)" fg:x="172355751042" fg:w="339366719"/><text x="53.5424%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,alloc::collections::btree::node::marker::KV&gt;&gt;::next_leaf_edge (53,643,823 samples, 0.02%)</title><rect x="53.3973%" y="357" width="0.0166%" height="15" fill="rgb(228,149,22)" fg:x="172695117761" fg:w="53643823"/><text x="53.6473%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked::{{closure}} (566,614,185 samples, 0.18%)</title><rect x="53.2924%" y="373" width="0.1752%" height="15" fill="rgb(243,54,13)" fg:x="172355751042" fg:w="566614185"/><text x="53.5424%" y="383.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::into_kv (173,603,643 samples, 0.05%)</title><rect x="53.4139%" y="357" width="0.0537%" height="15" fill="rgb(243,180,28)" fg:x="172748761584" fg:w="173603643"/><text x="53.6639%" y="367.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (169,482,250 samples, 0.05%)</title><rect x="53.4152%" y="341" width="0.0524%" height="15" fill="rgb(208,167,24)" fg:x="172752882977" fg:w="169482250"/><text x="53.6652%" y="351.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (169,482,250 samples, 0.05%)</title><rect x="53.4152%" y="325" width="0.0524%" height="15" fill="rgb(245,73,45)" fg:x="172752882977" fg:w="169482250"/><text x="53.6652%" y="335.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked (1,021,476,244 samples, 0.32%)</title><rect x="53.2924%" y="405" width="0.3158%" height="15" fill="rgb(237,203,48)" fg:x="172355751042" fg:w="1021476244"/><text x="53.5424%" y="415.50"></text></g><g><title>alloc::collections::btree::mem::replace (1,021,476,244 samples, 0.32%)</title><rect x="53.2924%" y="389" width="0.3158%" height="15" fill="rgb(211,197,16)" fg:x="172355751042" fg:w="1021476244"/><text x="53.5424%" y="399.50"></text></g><g><title>core::ptr::write (454,862,059 samples, 0.14%)</title><rect x="53.4676%" y="373" width="0.1406%" height="15" fill="rgb(243,99,51)" fg:x="172922365227" fg:w="454862059"/><text x="53.7176%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (66,128,134 samples, 0.02%)</title><rect x="53.7068%" y="389" width="0.0204%" height="15" fill="rgb(215,123,29)" fg:x="173695846459" fg:w="66128134"/><text x="53.9568%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (49,578,297 samples, 0.02%)</title><rect x="53.7119%" y="373" width="0.0153%" height="15" fill="rgb(239,186,37)" fg:x="173712396296" fg:w="49578297"/><text x="53.9619%" y="383.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,629,588,043 samples, 0.50%)</title><rect x="53.2285%" y="437" width="0.5039%" height="15" fill="rgb(252,136,39)" fg:x="172148937896" fg:w="1629588043"/><text x="53.4785%" y="447.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Immut,K,V&gt;::next_unchecked (1,422,774,897 samples, 0.44%)</title><rect x="53.2924%" y="421" width="0.4399%" height="15" fill="rgb(223,213,32)" fg:x="172355751042" fg:w="1422774897"/><text x="53.5424%" y="431.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (401,298,653 samples, 0.12%)</title><rect x="53.6082%" y="405" width="0.1241%" height="15" fill="rgb(233,115,5)" fg:x="173377227286" fg:w="401298653"/><text x="53.8582%" y="415.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (41,380,907 samples, 0.01%)</title><rect x="53.7362%" y="437" width="0.0128%" height="15" fill="rgb(207,226,44)" fg:x="173790914122" fg:w="41380907"/><text x="53.9862%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::bulk_build_from_sorted_iter (41,368,683 samples, 0.01%)</title><rect x="53.7604%" y="437" width="0.0128%" height="15" fill="rgb(208,126,0)" fg:x="173869462482" fg:w="41368683"/><text x="54.0104%" y="447.50"></text></g><g><title>core::hash::BuildHasher::hash_one (74,515,981 samples, 0.02%)</title><rect x="53.7745%" y="437" width="0.0230%" height="15" fill="rgb(244,66,21)" fg:x="173914969019" fg:w="74515981"/><text x="54.0245%" y="447.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for &amp;T&gt;::hash (53,811,797 samples, 0.02%)</title><rect x="53.7809%" y="421" width="0.0166%" height="15" fill="rgb(222,97,12)" fg:x="173935673203" fg:w="53811797"/><text x="54.0309%" y="431.50"></text></g><g><title>&lt;rsprocess::system::System as core::hash::Hash&gt;::hash (53,811,797 samples, 0.02%)</title><rect x="53.7809%" y="405" width="0.0166%" height="15" fill="rgb(219,213,19)" fg:x="173935673203" fg:w="53811797"/><text x="54.0309%" y="415.50"></text></g><g><title>&lt;rsprocess::set::Set as core::hash::Hash&gt;::hash (53,811,797 samples, 0.02%)</title><rect x="53.7809%" y="389" width="0.0166%" height="15" fill="rgb(252,169,30)" fg:x="173935673203" fg:w="53811797"/><text x="54.0309%" y="399.50"></text></g><g><title>&lt;alloc::collections::btree::set::BTreeSet&lt;T,A&gt; as core::hash::Hash&gt;::hash (53,811,797 samples, 0.02%)</title><rect x="53.7809%" y="373" width="0.0166%" height="15" fill="rgb(206,32,51)" fg:x="173935673203" fg:w="53811797"/><text x="54.0309%" y="383.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (53,811,797 samples, 0.02%)</title><rect x="53.7809%" y="357" width="0.0166%" height="15" fill="rgb(250,172,42)" fg:x="173935673203" fg:w="53811797"/><text x="54.0309%" y="367.50"></text></g><g><title>[unknown] (1,960,443,242 samples, 0.61%)</title><rect x="53.2259%" y="453" width="0.6062%" height="15" fill="rgb(209,34,43)" fg:x="172140694692" fg:w="1960443242"/><text x="53.4759%" y="463.50"></text></g><g><title>core::slice::sort::stable::drift::sort (90,930,580 samples, 0.03%)</title><rect x="53.8040%" y="437" width="0.0281%" height="15" fill="rgb(223,11,35)" fg:x="174010207354" fg:w="90930580"/><text x="54.0540%" y="447.50"></text></g><g><title>__rustc::__rust_alloc (256,132,170 samples, 0.08%)</title><rect x="53.8359%" y="453" width="0.0792%" height="15" fill="rgb(251,219,26)" fg:x="174113594790" fg:w="256132170"/><text x="54.0859%" y="463.50"></text></g><g><title>__rustc::__rust_dealloc (1,783,153,380 samples, 0.55%)</title><rect x="53.9151%" y="453" width="0.5514%" height="15" fill="rgb(231,119,3)" fg:x="174369726960" fg:w="1783153380"/><text x="54.1651%" y="463.50"></text></g><g><title>alloc::collections::btree::append::&lt;impl alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::bulk_push (161,406,899 samples, 0.05%)</title><rect x="54.4665%" y="453" width="0.0499%" height="15" fill="rgb(216,97,11)" fg:x="176152880340" fg:w="161406899"/><text x="54.7165%" y="463.50"></text></g><g><title>alloc::collections::btree::fix::&lt;impl alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::fix_right_border_of_plentiful (293,675,599 samples, 0.09%)</title><rect x="54.5164%" y="453" width="0.0908%" height="15" fill="rgb(223,59,9)" fg:x="176314287239" fg:w="293675599"/><text x="54.7664%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (91,118,386 samples, 0.03%)</title><rect x="54.5790%" y="437" width="0.0282%" height="15" fill="rgb(233,93,31)" fg:x="176516844452" fg:w="91118386"/><text x="54.8290%" y="447.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 (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="437" width="0.2635%" height="15" fill="rgb(239,81,33)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="421" width="0.2635%" height="15" fill="rgb(213,120,34)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="405" width="0.2635%" height="15" fill="rgb(243,49,53)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="389" width="0.2635%" height="15" fill="rgb(247,216,33)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="373" width="0.2635%" height="15" fill="rgb(226,26,14)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="357" width="0.2635%" height="15" fill="rgb(215,49,53)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="367.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (852,053,616 samples, 0.26%)</title><rect x="54.7287%" y="341" width="0.2635%" height="15" fill="rgb(245,162,40)" fg:x="177001009884" fg:w="852053616"/><text x="54.9787%" y="351.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (769,248,874 samples, 0.24%)</title><rect x="54.7543%" y="325" width="0.2379%" height="15" fill="rgb(229,68,17)" fg:x="177083814626" fg:w="769248874"/><text x="55.0043%" y="335.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (769,248,874 samples, 0.24%)</title><rect x="54.7543%" y="309" width="0.2379%" height="15" fill="rgb(213,182,10)" fg:x="177083814626" fg:w="769248874"/><text x="55.0043%" y="319.50"></text></g><g><title>alloc::alloc::alloc (769,248,874 samples, 0.24%)</title><rect x="54.7543%" y="293" width="0.2379%" height="15" fill="rgb(245,125,30)" fg:x="177083814626" fg:w="769248874"/><text x="55.0043%" y="303.50"></text></g><g><title>malloc (760,961,741 samples, 0.24%)</title><rect x="54.7569%" y="277" width="0.2353%" height="15" fill="rgb(232,202,2)" fg:x="177092101759" fg:w="760961741"/><text x="55.0069%" y="287.50"></text></g><g><title>alloc::collections::btree::dedup_sorted_iter::DedupSortedIter&lt;K,V,I&gt;::new (9,810,733,974 samples, 3.03%)</title><rect x="54.9922%" y="437" width="3.0335%" height="15" fill="rgb(237,140,51)" fg:x="177853063500" fg:w="9810733974"/><text x="55.2422%" y="447.50">all..</text></g><g><title>core::iter::traits::iterator::Iterator::peekable (479,055,436 samples, 0.15%)</title><rect x="57.8775%" y="421" width="0.1481%" height="15" fill="rgb(236,157,25)" fg:x="187184742038" fg:w="479055436"/><text x="58.1275%" y="431.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::new (479,055,436 samples, 0.15%)</title><rect x="57.8775%" y="405" width="0.1481%" height="15" fill="rgb(219,209,0)" fg:x="187184742038" fg:w="479055436"/><text x="58.1275%" y="415.50"></text></g><g><title>[libc.so.6] (103,310,902 samples, 0.03%)</title><rect x="58.9068%" y="277" width="0.0319%" height="15" fill="rgb(240,116,54)" fg:x="190513562877" fg:w="103310902"/><text x="59.1568%" y="287.50"></text></g><g><title>[libc.so.6] (655,047,599 samples, 0.20%)</title><rect x="58.7751%" y="309" width="0.2025%" height="15" fill="rgb(216,10,36)" fg:x="190087470559" fg:w="655047599"/><text x="59.0251%" y="319.50"></text></g><g><title>[libc.so.6] (530,968,180 samples, 0.16%)</title><rect x="58.8134%" y="293" width="0.1642%" height="15" fill="rgb(222,72,44)" fg:x="190211549978" fg:w="530968180"/><text x="59.0634%" y="303.50"></text></g><g><title>[unknown] (125,644,379 samples, 0.04%)</title><rect x="58.9387%" y="277" width="0.0388%" height="15" fill="rgb(232,159,9)" fg:x="190616873779" fg:w="125644379"/><text x="59.1887%" y="287.50"></text></g><g><title>[unknown] (125,644,379 samples, 0.04%)</title><rect x="58.9387%" y="261" width="0.0388%" height="15" fill="rgb(210,39,32)" fg:x="190616873779" fg:w="125644379"/><text x="59.1887%" y="271.50"></text></g><g><title>[unknown] (121,501,729 samples, 0.04%)</title><rect x="58.9400%" y="245" width="0.0376%" height="15" fill="rgb(216,194,45)" fg:x="190621016429" fg:w="121501729"/><text x="59.1900%" y="255.50"></text></g><g><title>[unknown] (121,501,729 samples, 0.04%)</title><rect x="58.9400%" y="229" width="0.0376%" height="15" fill="rgb(218,18,35)" fg:x="190621016429" fg:w="121501729"/><text x="59.1900%" y="239.50"></text></g><g><title>[unknown] (117,361,680 samples, 0.04%)</title><rect x="58.9413%" y="213" width="0.0363%" height="15" fill="rgb(207,83,51)" fg:x="190625156478" fg:w="117361680"/><text x="59.1913%" y="223.50"></text></g><g><title>[unknown] (84,225,340 samples, 0.03%)</title><rect x="58.9516%" y="197" width="0.0260%" height="15" fill="rgb(225,63,43)" fg:x="190658292818" fg:w="84225340"/><text x="59.2016%" y="207.50"></text></g><g><title>[unknown] (75,943,908 samples, 0.02%)</title><rect x="58.9541%" y="181" width="0.0235%" height="15" fill="rgb(207,57,36)" fg:x="190666574250" fg:w="75943908"/><text x="59.2041%" y="191.50"></text></g><g><title>[unknown] (62,069,001 samples, 0.02%)</title><rect x="58.9584%" y="165" width="0.0192%" height="15" fill="rgb(216,99,33)" fg:x="190680449157" fg:w="62069001"/><text x="59.2084%" y="175.50"></text></g><g><title>[unknown] (57,959,337 samples, 0.02%)</title><rect x="58.9597%" y="149" width="0.0179%" height="15" fill="rgb(225,42,16)" fg:x="190684558821" fg:w="57959337"/><text x="59.2097%" y="159.50"></text></g><g><title>[unknown] (45,538,804 samples, 0.01%)</title><rect x="58.9635%" y="133" width="0.0141%" height="15" fill="rgb(220,201,45)" fg:x="190696979354" fg:w="45538804"/><text x="59.2135%" y="143.50"></text></g><g><title>[unknown] (45,538,804 samples, 0.01%)</title><rect x="58.9635%" y="117" width="0.0141%" height="15" fill="rgb(225,33,4)" fg:x="190696979354" fg:w="45538804"/><text x="59.2135%" y="127.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (1,030,470,825 samples, 0.32%)</title><rect x="58.9776%" y="309" width="0.3186%" height="15" fill="rgb(224,33,50)" fg:x="190742518158" fg:w="1030470825"/><text x="59.2276%" y="319.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (9,604,369,480 samples, 2.97%)</title><rect x="58.0308%" y="389" width="2.9697%" height="15" fill="rgb(246,198,51)" fg:x="187680351546" fg:w="9604369480"/><text x="58.2808%" y="399.50">all..</text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (9,604,369,480 samples, 2.97%)</title><rect x="58.0308%" y="373" width="2.9697%" height="15" fill="rgb(205,22,4)" fg:x="187680351546" fg:w="9604369480"/><text x="58.2808%" y="383.50">all..</text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (9,604,369,480 samples, 2.97%)</title><rect x="58.0308%" y="357" width="2.9697%" height="15" fill="rgb(206,3,8)" fg:x="187680351546" fg:w="9604369480"/><text x="58.2808%" y="367.50">&lt;al..</text></g><g><title>alloc::alloc::Global::alloc_impl (9,604,369,480 samples, 2.97%)</title><rect x="58.0308%" y="341" width="2.9697%" height="15" fill="rgb(251,23,15)" fg:x="187680351546" fg:w="9604369480"/><text x="58.2808%" y="351.50">all..</text></g><g><title>alloc::alloc::alloc (9,604,369,480 samples, 2.97%)</title><rect x="58.0308%" y="325" width="2.9697%" height="15" fill="rgb(252,88,28)" fg:x="187680351546" fg:w="9604369480"/><text x="58.2808%" y="335.50">all..</text></g><g><title>malloc (5,511,732,043 samples, 1.70%)</title><rect x="59.2962%" y="309" width="1.7042%" height="15" fill="rgb(212,127,14)" fg:x="191772988983" fg:w="5511732043"/><text x="59.5462%" y="319.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::bulk_build_from_sorted_iter (20,776,046,469 samples, 6.42%)</title><rect x="54.6072%" y="453" width="6.4240%" height="15" fill="rgb(247,145,37)" fg:x="176607962838" fg:w="20776046469"/><text x="54.8572%" y="463.50">alloc::c..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (9,720,211,833 samples, 3.01%)</title><rect x="58.0257%" y="437" width="3.0055%" height="15" fill="rgb(209,117,53)" fg:x="187663797474" fg:w="9720211833"/><text x="58.2757%" y="447.50">all..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (9,703,657,761 samples, 3.00%)</title><rect x="58.0308%" y="421" width="3.0004%" height="15" fill="rgb(212,90,42)" fg:x="187680351546" fg:w="9703657761"/><text x="58.2808%" y="431.50">all..</text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (9,703,657,761 samples, 3.00%)</title><rect x="58.0308%" y="405" width="3.0004%" height="15" fill="rgb(218,164,37)" fg:x="187680351546" fg:w="9703657761"/><text x="58.2808%" y="415.50">all..</text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::init (99,288,281 samples, 0.03%)</title><rect x="61.0004%" y="389" width="0.0307%" height="15" fill="rgb(246,65,34)" fg:x="197284721026" fg:w="99288281"/><text x="61.2504%" y="399.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (99,288,281 samples, 0.03%)</title><rect x="61.0004%" y="373" width="0.0307%" height="15" fill="rgb(231,100,33)" fg:x="197284721026" fg:w="99288281"/><text x="61.2504%" y="383.50"></text></g><g><title>core::ptr::write (99,288,281 samples, 0.03%)</title><rect x="61.0004%" y="357" width="0.0307%" height="15" fill="rgb(228,126,14)" fg:x="197284721026" fg:w="99288281"/><text x="61.2504%" y="367.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (5,939,020,554 samples, 1.84%)</title><rect x="61.6883%" y="389" width="1.8363%" height="15" fill="rgb(215,173,21)" fg:x="199509180707" fg:w="5939020554"/><text x="61.9383%" y="399.50">&lt;..</text></g><g><title>alloc::alloc::dealloc (5,939,020,554 samples, 1.84%)</title><rect x="61.6883%" y="373" width="1.8363%" height="15" fill="rgb(210,6,40)" fg:x="199509180707" fg:w="5939020554"/><text x="61.9383%" y="383.50">a..</text></g><g><title>cfree (5,740,404,386 samples, 1.77%)</title><rect x="61.7497%" y="357" width="1.7749%" height="15" fill="rgb(212,48,18)" fg:x="199707796875" fg:w="5740404386"/><text x="61.9997%" y="367.50">c..</text></g><g><title>core::option::Option&lt;T&gt;::as_ref (223,055,138 samples, 0.07%)</title><rect x="63.6793%" y="373" width="0.0690%" height="15" fill="rgb(230,214,11)" fg:x="205948460125" fg:w="223055138"/><text x="63.9293%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_end (6,823,679,179 samples, 2.11%)</title><rect x="61.6396%" y="437" width="2.1099%" height="15" fill="rgb(254,105,39)" fg:x="199351978811" fg:w="6823679179"/><text x="61.8896%" y="447.50">a..</text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_end (6,823,679,179 samples, 2.11%)</title><rect x="61.6396%" y="421" width="2.1099%" height="15" fill="rgb(245,158,5)" fg:x="199351978811" fg:w="6823679179"/><text x="61.8896%" y="431.50">a..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (6,823,679,179 samples, 2.11%)</title><rect x="61.6396%" y="405" width="2.1099%" height="15" fill="rgb(249,208,11)" fg:x="199351978811" fg:w="6823679179"/><text x="61.8896%" y="415.50">a..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (727,456,729 samples, 0.22%)</title><rect x="63.5246%" y="389" width="0.2249%" height="15" fill="rgb(210,39,28)" fg:x="205448201261" fg:w="727456729"/><text x="63.7746%" y="399.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (15,240,966,304 samples, 4.71%)</title><rect x="61.0311%" y="453" width="4.7125%" height="15" fill="rgb(211,56,53)" fg:x="197384009307" fg:w="15240966304"/><text x="61.2811%" y="463.50">alloc..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_next_unchecked (6,449,317,621 samples, 1.99%)</title><rect x="63.7495%" y="437" width="1.9941%" height="15" fill="rgb(226,201,30)" fg:x="206175657990" fg:w="6449317621"/><text x="63.9995%" y="447.50">a..</text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next_unchecked (6,449,317,621 samples, 1.99%)</title><rect x="63.7495%" y="421" width="1.9941%" height="15" fill="rgb(239,101,34)" fg:x="206175657990" fg:w="6449317621"/><text x="63.9995%" y="431.50">a..</text></g><g><title>alloc::collections::btree::mem::replace (6,449,317,621 samples, 1.99%)</title><rect x="63.7495%" y="405" width="1.9941%" height="15" fill="rgb(226,209,5)" fg:x="206175657990" fg:w="6449317621"/><text x="63.9995%" y="415.50">a..</text></g><g><title>core::ptr::write (3,584,622,607 samples, 1.11%)</title><rect x="64.6353%" y="389" width="1.1084%" height="15" fill="rgb(250,105,47)" fg:x="209040353004" fg:w="3584622607"/><text x="64.8853%" y="399.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (103,462,010 samples, 0.03%)</title><rect x="65.9599%" y="405" width="0.0320%" height="15" fill="rgb(230,72,3)" fg:x="213324241543" fg:w="103462010"/><text x="66.2099%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (78,614,271 samples, 0.02%)</title><rect x="65.9676%" y="389" width="0.0243%" height="15" fill="rgb(232,218,39)" fg:x="213349089282" fg:w="78614271"/><text x="66.2176%" y="399.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (215,242,316 samples, 0.07%)</title><rect x="65.9522%" y="437" width="0.0666%" height="15" fill="rgb(248,166,6)" fg:x="213299417649" fg:w="215242316"/><text x="66.2022%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (215,242,316 samples, 0.07%)</title><rect x="65.9522%" y="421" width="0.0666%" height="15" fill="rgb(247,89,20)" fg:x="213299417649" fg:w="215242316"/><text x="66.2022%" y="431.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (86,956,412 samples, 0.03%)</title><rect x="65.9919%" y="405" width="0.0269%" height="15" fill="rgb(248,130,54)" fg:x="213427703553" fg:w="86956412"/><text x="66.2419%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_edge (66,226,050 samples, 0.02%)</title><rect x="66.0239%" y="389" width="0.0205%" height="15" fill="rgb(234,196,4)" fg:x="213531222123" fg:w="66226050"/><text x="66.2739%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (66,226,050 samples, 0.02%)</title><rect x="66.0239%" y="373" width="0.0205%" height="15" fill="rgb(250,143,31)" fg:x="213531222123" fg:w="66226050"/><text x="66.2739%" y="383.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::last (86,914,746 samples, 0.03%)</title><rect x="66.0213%" y="437" width="0.0269%" height="15" fill="rgb(211,110,34)" fg:x="213522947344" fg:w="86914746"/><text x="66.2713%" y="447.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::last_key_value (86,914,746 samples, 0.03%)</title><rect x="66.0213%" y="421" width="0.0269%" height="15" fill="rgb(215,124,48)" fg:x="213522947344" fg:w="86914746"/><text x="66.2713%" y="431.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (86,914,746 samples, 0.03%)</title><rect x="66.0213%" y="405" width="0.0269%" height="15" fill="rgb(216,46,13)" fg:x="213522947344" fg:w="86914746"/><text x="66.2713%" y="415.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::intersection (989,026,499 samples, 0.31%)</title><rect x="65.7437%" y="453" width="0.3058%" height="15" fill="rgb(205,184,25)" fg:x="212624975611" fg:w="989026499"/><text x="65.9937%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;petgraph::graph_impl::Graph&lt;alloc::string::String,alloc::string::String&gt;&gt; (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="453" width="0.1265%" height="15" fill="rgb(228,1,10)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;petgraph::graph_impl::Node&lt;alloc::string::String&gt;&gt;&gt; (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="437" width="0.1265%" height="15" fill="rgb(213,116,27)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;petgraph::graph_impl::Node&lt;alloc::string::String&gt;&gt;&gt; (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="421" width="0.1265%" height="15" fill="rgb(241,95,50)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="431.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="405" width="0.1265%" height="15" fill="rgb(238,48,32)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="389" width="0.1265%" height="15" fill="rgb(235,113,49)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="399.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="373" width="0.1265%" height="15" fill="rgb(205,127,43)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="383.50"></text></g><g><title>alloc::alloc::dealloc (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="357" width="0.1265%" height="15" fill="rgb(250,162,2)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="367.50"></text></g><g><title>[libc.so.6] (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="341" width="0.1265%" height="15" fill="rgb(220,13,41)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="351.50"></text></g><g><title>[libc.so.6] (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="325" width="0.1265%" height="15" fill="rgb(249,221,25)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="335.50"></text></g><g><title>[libc.so.6] (409,098,618 samples, 0.13%)</title><rect x="66.0633%" y="309" width="0.1265%" height="15" fill="rgb(215,208,19)" fg:x="213658693702" fg:w="409098618"/><text x="66.3133%" y="319.50"></text></g><g><title>[libc.so.6] (252,049,690 samples, 0.08%)</title><rect x="66.1118%" y="293" width="0.0779%" height="15" fill="rgb(236,175,2)" fg:x="213815742630" fg:w="252049690"/><text x="66.3618%" y="303.50"></text></g><g><title>[libc.so.6] (161,179,500 samples, 0.05%)</title><rect x="66.1987%" y="389" width="0.0498%" height="15" fill="rgb(241,52,2)" fg:x="214096633805" fg:w="161179500"/><text x="66.4487%" y="399.50"></text></g><g><title>[libc.so.6] (128,152,370 samples, 0.04%)</title><rect x="66.2089%" y="373" width="0.0396%" height="15" fill="rgb(248,140,14)" fg:x="214129660935" fg:w="128152370"/><text x="66.4589%" y="383.50"></text></g><g><title>[libc.so.6] (78,846,114 samples, 0.02%)</title><rect x="66.2242%" y="357" width="0.0244%" height="15" fill="rgb(253,22,42)" fg:x="214178967191" fg:w="78846114"/><text x="66.4742%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::label::Label&gt; (289,427,606 samples, 0.09%)</title><rect x="66.1898%" y="453" width="0.0895%" height="15" fill="rgb(234,61,47)" fg:x="214067792320" fg:w="289427606"/><text x="66.4398%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::set::Set&gt; (268,854,142 samples, 0.08%)</title><rect x="66.1961%" y="437" width="0.0831%" height="15" fill="rgb(208,226,15)" fg:x="214088365784" fg:w="268854142"/><text x="66.4461%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;u32&gt;&gt; (268,854,142 samples, 0.08%)</title><rect x="66.1961%" y="421" width="0.0831%" height="15" fill="rgb(217,221,4)" fg:x="214088365784" fg:w="268854142"/><text x="66.4461%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (268,854,142 samples, 0.08%)</title><rect x="66.1961%" y="405" width="0.0831%" height="15" fill="rgb(212,174,34)" fg:x="214088365784" fg:w="268854142"/><text x="66.4461%" y="415.50"></text></g><g><title>cfree (99,406,621 samples, 0.03%)</title><rect x="66.2485%" y="389" width="0.0307%" height="15" fill="rgb(253,83,4)" fg:x="214257813305" fg:w="99406621"/><text x="66.4985%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,394,504 samples, 0.01%)</title><rect x="66.2805%" y="421" width="0.0128%" height="15" fill="rgb(250,195,49)" fg:x="214361358126" fg:w="41394504"/><text x="66.5305%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[alloc::sync::Arc&lt;rsprocess::process::Process&gt;]&gt; (41,394,504 samples, 0.01%)</title><rect x="66.2805%" y="405" width="0.0128%" height="15" fill="rgb(241,192,25)" fg:x="214361358126" fg:w="41394504"/><text x="66.5305%" y="415.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;rsprocess::process::Process&gt;&gt; (41,394,504 samples, 0.01%)</title><rect x="66.2805%" y="389" width="0.0128%" height="15" fill="rgb(208,124,10)" fg:x="214361358126" fg:w="41394504"/><text x="66.5305%" y="399.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,394,504 samples, 0.01%)</title><rect x="66.2805%" y="373" width="0.0128%" height="15" fill="rgb(222,33,0)" fg:x="214361358126" fg:w="41394504"/><text x="66.5305%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::process::Process&gt; (49,668,312 samples, 0.02%)</title><rect x="66.2793%" y="453" width="0.0154%" height="15" fill="rgb(234,209,28)" fg:x="214357219926" fg:w="49668312"/><text x="66.5293%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::sync::Arc&lt;rsprocess::process::Process&gt;&gt;&gt; (45,530,112 samples, 0.01%)</title><rect x="66.2805%" y="437" width="0.0141%" height="15" fill="rgb(224,11,23)" fg:x="214361358126" fg:w="45530112"/><text x="66.5305%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::system::System&gt; (72,615,925 samples, 0.02%)</title><rect x="66.2946%" y="453" width="0.0225%" height="15" fill="rgb(232,99,1)" fg:x="214406888238" fg:w="72615925"/><text x="66.5446%" y="463.50"></text></g><g><title>core::slice::sort::stable::drift::sort (310,299,512 samples, 0.10%)</title><rect x="66.3171%" y="453" width="0.0959%" height="15" fill="rgb(237,95,45)" fg:x="214479504163" fg:w="310299512"/><text x="66.5671%" y="463.50"></text></g><g><title>core::slice::sort::stable::drift::merge_tree_depth (45,524,152 samples, 0.01%)</title><rect x="66.3989%" y="437" width="0.0141%" height="15" fill="rgb(208,109,11)" fg:x="214744279523" fg:w="45524152"/><text x="66.6489%" y="447.50"></text></g><g><title>core::cmp::min (33,110,707 samples, 0.01%)</title><rect x="66.5574%" y="437" width="0.0102%" height="15" fill="rgb(216,190,48)" fg:x="215256850783" fg:w="33110707"/><text x="66.8074%" y="447.50"></text></g><g><title>core::cmp::Ord::min (33,110,707 samples, 0.01%)</title><rect x="66.5574%" y="421" width="0.0102%" height="15" fill="rgb(251,171,36)" fg:x="215256850783" fg:w="33110707"/><text x="66.8074%" y="431.50"></text></g><g><title>core::cmp::min (45,533,246 samples, 0.01%)</title><rect x="67.0948%" y="421" width="0.0141%" height="15" fill="rgb(230,62,22)" fg:x="216994886334" fg:w="45533246"/><text x="67.3448%" y="431.50"></text></g><g><title>core::cmp::Ord::min (45,533,246 samples, 0.01%)</title><rect x="67.0948%" y="405" width="0.0141%" height="15" fill="rgb(225,114,35)" fg:x="216994886334" fg:w="45533246"/><text x="67.3448%" y="415.50"></text></g><g><title>core::slice::sort::shared::find_existing_run (1,541,971,515 samples, 0.48%)</title><rect x="67.4222%" y="405" width="0.4768%" height="15" fill="rgb(215,118,42)" fg:x="218053698551" fg:w="1541971515"/><text x="67.6722%" y="415.50"></text></g><g><title>core::ops::function::FnMut::call_mut (467,187,387 samples, 0.14%)</title><rect x="67.7545%" y="389" width="0.1445%" height="15" fill="rgb(243,119,21)" fg:x="219128482679" fg:w="467187387"/><text x="68.0045%" y="399.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for u32&gt;::lt (467,187,387 samples, 0.14%)</title><rect x="67.7545%" y="373" width="0.1445%" height="15" fill="rgb(252,177,53)" fg:x="219128482679" fg:w="467187387"/><text x="68.0045%" y="383.50"></text></g><g><title>core::slice::sort::stable::drift::create_run (2,968,775,900 samples, 0.92%)</title><rect x="67.1128%" y="421" width="0.9179%" height="15" fill="rgb(237,209,29)" fg:x="217052836303" fg:w="2968775900"/><text x="67.3628%" y="431.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (421,801,474 samples, 0.13%)</title><rect x="67.9003%" y="405" width="0.1304%" height="15" fill="rgb(212,65,23)" fg:x="219599810729" fg:w="421801474"/><text x="68.1503%" y="415.50"></text></g><g><title>&lt;T as core::slice::sort::shared::smallsort::StableSmallSortTypeImpl&gt;::small_sort (310,363,147 samples, 0.10%)</title><rect x="67.9347%" y="389" width="0.0960%" height="15" fill="rgb(230,222,46)" fg:x="219711249056" fg:w="310363147"/><text x="68.1847%" y="399.50"></text></g><g><title>core::slice::sort::shared::smallsort::small_sort_general_with_scratch (53,785,468 samples, 0.02%)</title><rect x="68.0141%" y="373" width="0.0166%" height="15" fill="rgb(215,135,32)" fg:x="219967826735" fg:w="53785468"/><text x="68.2641%" y="383.50"></text></g><g><title>core::ptr::copy_nonoverlapping (372,250,988 samples, 0.12%)</title><rect x="68.0831%" y="389" width="0.1151%" height="15" fill="rgb(246,101,22)" fg:x="220191191795" fg:w="372250988"/><text x="68.3331%" y="399.50"></text></g><g><title>[libc.so.6] (235,790,325 samples, 0.07%)</title><rect x="68.1253%" y="373" width="0.0729%" height="15" fill="rgb(206,107,13)" fg:x="220327652458" fg:w="235790325"/><text x="68.3753%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::slice::sort::stable::merge::MergeState&lt;u32&gt;&gt; (794,271,451 samples, 0.25%)</title><rect x="68.1982%" y="389" width="0.2456%" height="15" fill="rgb(250,100,44)" fg:x="220563442783" fg:w="794271451"/><text x="68.4482%" y="399.50"></text></g><g><title>&lt;core::slice::sort::stable::merge::MergeState&lt;T&gt; as core::ops::drop::Drop&gt;::drop (794,271,451 samples, 0.25%)</title><rect x="68.1982%" y="373" width="0.2456%" height="15" fill="rgb(231,147,38)" fg:x="220563442783" fg:w="794271451"/><text x="68.4482%" y="383.50"></text></g><g><title>core::ptr::copy_nonoverlapping (794,271,451 samples, 0.25%)</title><rect x="68.1982%" y="357" width="0.2456%" height="15" fill="rgb(229,8,40)" fg:x="220563442783" fg:w="794271451"/><text x="68.4482%" y="367.50"></text></g><g><title>[libc.so.6] (367,986,897 samples, 0.11%)</title><rect x="68.3300%" y="341" width="0.1138%" height="15" fill="rgb(221,135,30)" fg:x="220989727337" fg:w="367986897"/><text x="68.5800%" y="351.50"></text></g><g><title>core::ops::function::FnMut::call_mut (512,853,784 samples, 0.16%)</title><rect x="69.7251%" y="373" width="0.1586%" height="15" fill="rgb(249,193,18)" fg:x="225501454493" fg:w="512853784"/><text x="69.9751%" y="383.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for u32&gt;::lt (512,853,784 samples, 0.16%)</title><rect x="69.7251%" y="357" width="0.1586%" height="15" fill="rgb(209,133,39)" fg:x="225501454493" fg:w="512853784"/><text x="69.9751%" y="367.50"></text></g><g><title>core::ptr::copy_nonoverlapping (1,606,614,288 samples, 0.50%)</title><rect x="69.8836%" y="373" width="0.4968%" height="15" fill="rgb(232,100,14)" fg:x="226014308277" fg:w="1606614288"/><text x="70.1336%" y="383.50"></text></g><g><title>core::slice::sort::stable::drift::logical_merge (9,167,107,811 samples, 2.83%)</title><rect x="68.0307%" y="421" width="2.8345%" height="15" fill="rgb(224,185,1)" fg:x="220021612203" fg:w="9167107811"/><text x="68.2807%" y="431.50">co..</text></g><g><title>core::slice::sort::stable::merge::merge (9,092,742,026 samples, 2.81%)</title><rect x="68.0537%" y="405" width="2.8115%" height="15" fill="rgb(223,139,8)" fg:x="220095977988" fg:w="9092742026"/><text x="68.3037%" y="415.50">co..</text></g><g><title>core::slice::sort::stable::merge::MergeState&lt;T&gt;::merge_down (7,826,964,847 samples, 2.42%)</title><rect x="68.4451%" y="389" width="2.4201%" height="15" fill="rgb(232,213,38)" fg:x="221361755167" fg:w="7826964847"/><text x="68.6951%" y="399.50">co..</text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (1,567,797,449 samples, 0.48%)</title><rect x="70.3804%" y="373" width="0.4848%" height="15" fill="rgb(207,94,22)" fg:x="227620922565" fg:w="1567797449"/><text x="70.6304%" y="383.50"></text></g><g><title>core::slice::sort::stable::drift::merge_tree_depth (607,841,406 samples, 0.19%)</title><rect x="70.8652%" y="421" width="0.1879%" height="15" fill="rgb(219,183,54)" fg:x="229188720014" fg:w="607841406"/><text x="71.1152%" y="431.50"></text></g><g><title>core::num::&lt;impl u64&gt;::leading_zeros (529,061,347 samples, 0.16%)</title><rect x="70.8895%" y="405" width="0.1636%" height="15" fill="rgb(216,185,54)" fg:x="229267500073" fg:w="529061347"/><text x="71.1395%" y="415.50"></text></g><g><title>core::slice::sort::stable::driftsort_main (16,678,067,119 samples, 5.16%)</title><rect x="66.4130%" y="453" width="5.1569%" height="15" fill="rgb(254,217,39)" fg:x="214789803675" fg:w="16678067119"/><text x="66.6630%" y="463.50">core::..</text></g><g><title>core::slice::sort::stable::drift::sort (16,177,909,304 samples, 5.00%)</title><rect x="66.5677%" y="437" width="5.0022%" height="15" fill="rgb(240,178,23)" fg:x="215289961490" fg:w="16177909304"/><text x="66.8177%" y="447.50">core::..</text></g><g><title>core::slice::sort::stable::drift::merge_tree_scale_factor (1,671,309,374 samples, 0.52%)</title><rect x="71.0531%" y="421" width="0.5168%" height="15" fill="rgb(218,11,47)" fg:x="229796561420" fg:w="1671309374"/><text x="71.3031%" y="431.50"></text></g><g><title>core::num::&lt;impl u64&gt;::div_ceil (1,671,309,374 samples, 0.52%)</title><rect x="71.0531%" y="405" width="0.5168%" height="15" fill="rgb(218,51,51)" fg:x="229796561420" fg:w="1671309374"/><text x="71.3031%" y="415.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (33,100,946 samples, 0.01%)</title><rect x="71.5699%" y="453" width="0.0102%" height="15" fill="rgb(238,126,27)" fg:x="231467870794" fg:w="33100946"/><text x="71.8199%" y="463.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="357" width="0.0154%" height="15" fill="rgb(249,202,22)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="367.50"></text></g><g><title>&lt;str as alloc::string::SpecToString&gt;::spec_to_string (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="341" width="0.0154%" height="15" fill="rgb(254,195,49)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="351.50"></text></g><g><title>&lt;alloc::string::String as core::convert::From&lt;&amp;str&gt;&gt;::from (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="325" width="0.0154%" height="15" fill="rgb(208,123,14)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="335.50"></text></g><g><title>alloc::str::&lt;impl alloc::borrow::ToOwned for str&gt;::to_owned (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="309" width="0.0154%" height="15" fill="rgb(224,200,8)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="319.50"></text></g><g><title>alloc::slice::&lt;impl alloc::borrow::ToOwned for [T]&gt;::to_owned (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="293" width="0.0154%" height="15" fill="rgb(217,61,36)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="303.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="277" width="0.0154%" height="15" fill="rgb(206,35,45)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="287.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="261" width="0.0154%" height="15" fill="rgb(217,65,33)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="271.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="245" width="0.0154%" height="15" fill="rgb(222,158,48)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="255.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="229" width="0.0154%" height="15" fill="rgb(254,2,54)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="239.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="213" width="0.0154%" height="15" fill="rgb(250,143,38)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="223.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="197" width="0.0154%" height="15" fill="rgb(248,25,0)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="207.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (49,660,775 samples, 0.02%)</title><rect x="71.5801%" y="181" width="0.0154%" height="15" fill="rgb(206,152,27)" fg:x="231500971740" fg:w="49660775"/><text x="71.8301%" y="191.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (37,791,206 samples, 0.01%)</title><rect x="71.5838%" y="165" width="0.0117%" height="15" fill="rgb(240,77,30)" fg:x="231512841309" fg:w="37791206"/><text x="71.8338%" y="175.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (37,791,206 samples, 0.01%)</title><rect x="71.5838%" y="149" width="0.0117%" height="15" fill="rgb(231,5,3)" fg:x="231512841309" fg:w="37791206"/><text x="71.8338%" y="159.50"></text></g><g><title>alloc::alloc::alloc (37,791,206 samples, 0.01%)</title><rect x="71.5838%" y="133" width="0.0117%" height="15" fill="rgb(207,226,32)" fg:x="231512841309" fg:w="37791206"/><text x="71.8338%" y="143.50"></text></g><g><title>[analysis] (53,700,710 samples, 0.02%)</title><rect x="71.5801%" y="389" width="0.0166%" height="15" fill="rgb(222,207,47)" fg:x="231500971740" fg:w="53700710"/><text x="71.8301%" y="399.50"></text></g><g><title>rsprocess::graph::edge_formatter_base_color (53,700,710 samples, 0.02%)</title><rect x="71.5801%" y="373" width="0.0166%" height="15" fill="rgb(229,115,45)" fg:x="231500971740" fg:w="53700710"/><text x="71.8301%" y="383.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (37,277,403 samples, 0.01%)</title><rect x="71.6112%" y="261" width="0.0115%" height="15" fill="rgb(224,191,6)" fg:x="231601573016" fg:w="37277403"/><text x="71.8612%" y="271.50"></text></g><g><title>alloc::string::String::push_str (37,277,403 samples, 0.01%)</title><rect x="71.6112%" y="245" width="0.0115%" height="15" fill="rgb(230,227,24)" fg:x="231601573016" fg:w="37277403"/><text x="71.8612%" y="255.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (37,277,403 samples, 0.01%)</title><rect x="71.6112%" y="229" width="0.0115%" height="15" fill="rgb(228,80,19)" fg:x="231601573016" fg:w="37277403"/><text x="71.8612%" y="239.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;&amp;T,core::slice::iter::Iter&lt;T&gt;&gt;&gt;::spec_extend (37,277,403 samples, 0.01%)</title><rect x="71.6112%" y="213" width="0.0115%" height="15" fill="rgb(247,229,0)" fg:x="231601573016" fg:w="37277403"/><text x="71.8612%" y="223.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (37,277,403 samples, 0.01%)</title><rect x="71.6112%" y="197" width="0.0115%" height="15" fill="rgb(237,194,15)" fg:x="231601573016" fg:w="37277403"/><text x="71.8612%" y="207.50"></text></g><g><title>core::fmt::rt::Argument::fmt (105,250,603 samples, 0.03%)</title><rect x="71.6458%" y="245" width="0.0325%" height="15" fill="rgb(219,203,20)" fg:x="231713261985" fg:w="105250603"/><text x="71.8958%" y="255.50"></text></g><g><title>core::fmt::num::imp::&lt;impl core::fmt::Display for u64&gt;::fmt (64,302,104 samples, 0.02%)</title><rect x="71.6584%" y="229" width="0.0199%" height="15" fill="rgb(234,128,8)" fg:x="231754210484" fg:w="64302104"/><text x="71.9084%" y="239.50"></text></g><g><title>core::fmt::Formatter::write_fmt (221,013,584 samples, 0.07%)</title><rect x="71.6112%" y="277" width="0.0683%" height="15" fill="rgb(248,202,8)" fg:x="231601573016" fg:w="221013584"/><text x="71.8612%" y="287.50"></text></g><g><title>core::fmt::write (179,766,170 samples, 0.06%)</title><rect x="71.6240%" y="261" width="0.0556%" height="15" fill="rgb(206,104,37)" fg:x="231642820430" fg:w="179766170"/><text x="71.8740%" y="271.50"></text></g><g><title>alloc::fmt::format (349,519,943 samples, 0.11%)</title><rect x="71.5801%" y="437" width="0.1081%" height="15" fill="rgb(223,8,27)" fg:x="231500971740" fg:w="349519943"/><text x="71.8301%" y="447.50"></text></g><g><title>core::option::Option&lt;T&gt;::map_or_else (349,519,943 samples, 0.11%)</title><rect x="71.5801%" y="421" width="0.1081%" height="15" fill="rgb(216,217,28)" fg:x="231500971740" fg:w="349519943"/><text x="71.8301%" y="431.50"></text></g><g><title>alloc::fmt::format::{{closure}} (349,519,943 samples, 0.11%)</title><rect x="71.5801%" y="405" width="0.1081%" height="15" fill="rgb(249,199,1)" fg:x="231500971740" fg:w="349519943"/><text x="71.8301%" y="415.50"></text></g><g><title>alloc::fmt::format::format_inner (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="389" width="0.0915%" height="15" fill="rgb(240,85,17)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="399.50"></text></g><g><title>core::fmt::Write::write_fmt (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="373" width="0.0915%" height="15" fill="rgb(206,108,45)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="383.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write::write_fmt::SpecWriteFmt&gt;::spec_write_fmt (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="357" width="0.0915%" height="15" fill="rgb(245,210,41)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="367.50"></text></g><g><title>core::fmt::write (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="341" width="0.0915%" height="15" fill="rgb(206,13,37)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="351.50"></text></g><g><title>core::fmt::rt::Argument::fmt (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="325" width="0.0915%" height="15" fill="rgb(250,61,18)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="335.50"></text></g><g><title>&lt;rsprocess::dot::Dot&lt;G&gt; as core::fmt::Display&gt;::fmt (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="309" width="0.0915%" height="15" fill="rgb(235,172,48)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="319.50"></text></g><g><title>rsprocess::dot::Dot&lt;G&gt;::graph_fmt (295,819,233 samples, 0.09%)</title><rect x="71.5967%" y="293" width="0.0915%" height="15" fill="rgb(249,201,17)" fg:x="231554672450" fg:w="295819233"/><text x="71.8467%" y="303.50"></text></g><g><title>execution::presets::dot (353,670,547 samples, 0.11%)</title><rect x="71.5801%" y="453" width="0.1094%" height="15" fill="rgb(219,208,6)" fg:x="231500971740" fg:w="353670547"/><text x="71.8301%" y="463.50"></text></g><g><title>petgraph::graph_impl::Graph&lt;N,E,Ty,Ix&gt;::add_edge (49,613,068 samples, 0.02%)</title><rect x="71.6895%" y="453" width="0.0153%" height="15" fill="rgb(248,31,23)" fg:x="231854642298" fg:w="49613068"/><text x="71.9395%" y="463.50"></text></g><g><title>petgraph::graph_impl::Graph&lt;N,E,Ty,Ix&gt;::try_add_edge (45,464,712 samples, 0.01%)</title><rect x="71.6908%" y="437" width="0.0141%" height="15" fill="rgb(245,15,42)" fg:x="231858790654" fg:w="45464712"/><text x="71.9408%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (37,204,424 samples, 0.01%)</title><rect x="71.6933%" y="421" width="0.0115%" height="15" fill="rgb(222,217,39)" fg:x="231867050942" fg:w="37204424"/><text x="71.9433%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push_mut (37,204,424 samples, 0.01%)</title><rect x="71.6933%" y="405" width="0.0115%" height="15" fill="rgb(210,219,27)" fg:x="231867050942" fg:w="37204424"/><text x="71.9433%" y="415.50"></text></g><g><title>core::ptr::write (37,204,424 samples, 0.01%)</title><rect x="71.6933%" y="389" width="0.0115%" height="15" fill="rgb(252,166,36)" fg:x="231867050942" fg:w="37204424"/><text x="71.9433%" y="399.50"></text></g><g><title>[libc.so.6] (37,204,424 samples, 0.01%)</title><rect x="71.6933%" y="373" width="0.0115%" height="15" fill="rgb(245,132,34)" fg:x="231867050942" fg:w="37204424"/><text x="71.9433%" y="383.50"></text></g><g><title>[libc.so.6] (34,802,365 samples, 0.01%)</title><rect x="71.7060%" y="261" width="0.0108%" height="15" fill="rgb(236,54,3)" fg:x="231908043865" fg:w="34802365"/><text x="71.9560%" y="271.50"></text></g><g><title>[libc.so.6] (34,802,365 samples, 0.01%)</title><rect x="71.7060%" y="245" width="0.0108%" height="15" fill="rgb(241,173,43)" fg:x="231908043865" fg:w="34802365"/><text x="71.9560%" y="255.50"></text></g><g><title>[libc.so.6] (34,802,365 samples, 0.01%)</title><rect x="71.7060%" y="229" width="0.0108%" height="15" fill="rgb(215,190,9)" fg:x="231908043865" fg:w="34802365"/><text x="71.9560%" y="239.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (46,789,649 samples, 0.01%)</title><rect x="71.7048%" y="373" width="0.0145%" height="15" fill="rgb(242,101,16)" fg:x="231904255366" fg:w="46789649"/><text x="71.9548%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (46,789,649 samples, 0.01%)</title><rect x="71.7048%" y="357" width="0.0145%" height="15" fill="rgb(223,190,21)" fg:x="231904255366" fg:w="46789649"/><text x="71.9548%" y="367.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (46,789,649 samples, 0.01%)</title><rect x="71.7048%" y="341" width="0.0145%" height="15" fill="rgb(215,228,25)" fg:x="231904255366" fg:w="46789649"/><text x="71.9548%" y="351.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (46,789,649 samples, 0.01%)</title><rect x="71.7048%" y="325" width="0.0145%" height="15" fill="rgb(225,36,22)" fg:x="231904255366" fg:w="46789649"/><text x="71.9548%" y="335.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (43,001,150 samples, 0.01%)</title><rect x="71.7060%" y="309" width="0.0133%" height="15" fill="rgb(251,106,46)" fg:x="231908043865" fg:w="43001150"/><text x="71.9560%" y="319.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (43,001,150 samples, 0.01%)</title><rect x="71.7060%" y="293" width="0.0133%" height="15" fill="rgb(208,90,1)" fg:x="231908043865" fg:w="43001150"/><text x="71.9560%" y="303.50"></text></g><g><title>alloc::alloc::alloc (43,001,150 samples, 0.01%)</title><rect x="71.7060%" y="277" width="0.0133%" height="15" fill="rgb(243,10,4)" fg:x="231908043865" fg:w="43001150"/><text x="71.9560%" y="287.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (50,716,773 samples, 0.02%)</title><rect x="71.7048%" y="437" width="0.0157%" height="15" fill="rgb(212,137,27)" fg:x="231904255366" fg:w="50716773"/><text x="71.9548%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (50,716,773 samples, 0.02%)</title><rect x="71.7048%" y="421" width="0.0157%" height="15" fill="rgb(231,220,49)" fg:x="231904255366" fg:w="50716773"/><text x="71.9548%" y="431.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (50,716,773 samples, 0.02%)</title><rect x="71.7048%" y="405" width="0.0157%" height="15" fill="rgb(237,96,20)" fg:x="231904255366" fg:w="50716773"/><text x="71.9548%" y="415.50"></text></g><g><title>&lt;T as alloc::slice::&lt;impl [T]&gt;::to_vec_in::ConvertVec&gt;::to_vec (50,716,773 samples, 0.02%)</title><rect x="71.7048%" y="389" width="0.0157%" height="15" fill="rgb(239,229,30)" fg:x="231904255366" fg:w="50716773"/><text x="71.9548%" y="399.50"></text></g><g><title>rsprocess::graph::EdgeColor::generate::{{closure}} (62,578,105 samples, 0.02%)</title><rect x="71.7048%" y="453" width="0.0193%" height="15" fill="rgb(219,65,33)" fg:x="231904255366" fg:w="62578105"/><text x="71.9548%" y="463.50"></text></g><g><title>[unknown] (94,743,165,527 samples, 29.29%)</title><rect x="42.4303%" y="469" width="29.2946%" height="15" fill="rgb(243,134,7)" fg:x="137226083876" fg:w="94743165527"/><text x="42.6803%" y="479.50">[unknown]</text></g><g><title>__rustc::__rdl_alloc (902,499,526 samples, 0.28%)</title><rect x="71.7249%" y="469" width="0.2791%" height="15" fill="rgb(216,177,54)" fg:x="231969249403" fg:w="902499526"/><text x="71.9749%" y="479.50"></text></g><g><title>__rustc::__rdl_dealloc (682,798,289 samples, 0.21%)</title><rect x="72.0040%" y="469" width="0.2111%" height="15" fill="rgb(211,160,20)" fg:x="232871748929" fg:w="682798289"/><text x="72.2540%" y="479.50"></text></g><g><title>std::sys::alloc::unix::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (682,798,289 samples, 0.21%)</title><rect x="72.0040%" y="453" width="0.2111%" height="15" fill="rgb(239,85,39)" fg:x="232871748929" fg:w="682798289"/><text x="72.2540%" y="463.50"></text></g><g><title>__rustc::__rust_alloc (724,931,215 samples, 0.22%)</title><rect x="72.2151%" y="469" width="0.2241%" height="15" fill="rgb(232,125,22)" fg:x="233554547218" fg:w="724931215"/><text x="72.4651%" y="479.50"></text></g><g><title>__rustc::__rust_dealloc (1,321,992,791 samples, 0.41%)</title><rect x="72.4392%" y="469" width="0.4088%" height="15" fill="rgb(244,57,34)" fg:x="234279478433" fg:w="1321992791"/><text x="72.6892%" y="479.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,502,622,928 samples, 0.46%)</title><rect x="77.5086%" y="437" width="0.4646%" height="15" fill="rgb(214,203,32)" fg:x="250674452028" fg:w="1502622928"/><text x="77.7586%" y="447.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,142,484,670 samples, 0.35%)</title><rect x="77.6199%" y="421" width="0.3533%" height="15" fill="rgb(207,58,43)" fg:x="251034590286" fg:w="1142484670"/><text x="77.8699%" y="431.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (1,142,484,670 samples, 0.35%)</title><rect x="77.6199%" y="405" width="0.3533%" height="15" fill="rgb(215,193,15)" fg:x="251034590286" fg:w="1142484670"/><text x="77.8699%" y="415.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::add (1,084,522,175 samples, 0.34%)</title><rect x="77.6378%" y="389" width="0.3353%" height="15" fill="rgb(232,15,44)" fg:x="251092552781" fg:w="1084522175"/><text x="77.8878%" y="399.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (119,749,641 samples, 0.04%)</title><rect x="77.9732%" y="421" width="0.0370%" height="15" fill="rgb(212,3,48)" fg:x="252177074956" fg:w="119749641"/><text x="78.2232%" y="431.50"></text></g><g><title>&lt;core::ptr::non_null::NonNull&lt;T&gt; as core::cmp::PartialEq&gt;::eq (496,495,495 samples, 0.15%)</title><rect x="78.0969%" y="357" width="0.1535%" height="15" fill="rgb(218,128,7)" fg:x="252577242974" fg:w="496495495"/><text x="78.3469%" y="367.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::add (2,307,921,422 samples, 0.71%)</title><rect x="78.2504%" y="357" width="0.7136%" height="15" fill="rgb(226,216,39)" fg:x="253073738469" fg:w="2307921422"/><text x="78.5004%" y="367.50"></text></g><g><title>&lt;alloc::collections::btree::dedup_sorted_iter::DedupSortedIter&lt;K,V,I&gt; as core::iter::traits::iterator::Iterator&gt;::next (5,406,045,354 samples, 1.67%)</title><rect x="77.3859%" y="453" width="1.6715%" height="15" fill="rgb(243,47,51)" fg:x="250277664819" fg:w="5406045354"/><text x="77.6359%" y="463.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek (3,506,635,217 samples, 1.08%)</title><rect x="77.9732%" y="437" width="1.0843%" height="15" fill="rgb(241,183,40)" fg:x="252177074956" fg:w="3506635217"/><text x="78.2232%" y="447.50"></text></g><g><title>core::option::Option&lt;T&gt;::get_or_insert_with (3,386,885,576 samples, 1.05%)</title><rect x="78.0102%" y="421" width="1.0472%" height="15" fill="rgb(231,217,32)" fg:x="252296824597" fg:w="3386885576"/><text x="78.2602%" y="431.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::peek::{{closure}} (3,386,885,576 samples, 1.05%)</title><rect x="78.0102%" y="405" width="1.0472%" height="15" fill="rgb(229,61,38)" fg:x="252296824597" fg:w="3386885576"/><text x="78.2602%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,386,885,576 samples, 1.05%)</title><rect x="78.0102%" y="389" width="1.0472%" height="15" fill="rgb(225,210,5)" fg:x="252296824597" fg:w="3386885576"/><text x="78.2602%" y="399.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::next (3,386,885,576 samples, 1.05%)</title><rect x="78.0102%" y="373" width="1.0472%" height="15" fill="rgb(231,79,45)" fg:x="252296824597" fg:w="3386885576"/><text x="78.2602%" y="383.50"></text></g><g><title>core::ptr::non_null::NonNull&lt;T&gt;::read (302,050,282 samples, 0.09%)</title><rect x="78.9640%" y="357" width="0.0934%" height="15" fill="rgb(224,100,7)" fg:x="255381659891" fg:w="302050282"/><text x="79.2140%" y="367.50"></text></g><g><title>core::ptr::read (302,050,282 samples, 0.09%)</title><rect x="78.9640%" y="341" width="0.0934%" height="15" fill="rgb(241,198,18)" fg:x="255381659891" fg:w="302050282"/><text x="79.2140%" y="351.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Internal&gt;,alloc::collections::btree::node::marker::Edge&gt;::descend (86,765,032 samples, 0.03%)</title><rect x="79.0754%" y="437" width="0.0268%" height="15" fill="rgb(252,97,53)" fg:x="255741736977" fg:w="86765032"/><text x="79.3254%" y="447.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (86,765,032 samples, 0.03%)</title><rect x="79.0754%" y="421" width="0.0268%" height="15" fill="rgb(220,88,7)" fg:x="255741736977" fg:w="86765032"/><text x="79.3254%" y="431.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (86,765,032 samples, 0.03%)</title><rect x="79.0754%" y="405" width="0.0268%" height="15" fill="rgb(213,176,14)" fg:x="255741736977" fg:w="86765032"/><text x="79.3254%" y="415.50"></text></g><g><title>core::ptr::read (86,765,032 samples, 0.03%)</title><rect x="79.0754%" y="389" width="0.0268%" height="15" fill="rgb(246,73,7)" fg:x="255741736977" fg:w="86765032"/><text x="79.3254%" y="399.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (652,489,669 samples, 0.20%)</title><rect x="79.0574%" y="453" width="0.2017%" height="15" fill="rgb(245,64,36)" fg:x="255683710173" fg:w="652489669"/><text x="79.3074%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (491,148,765 samples, 0.15%)</title><rect x="79.1073%" y="437" width="0.1519%" height="15" fill="rgb(245,80,10)" fg:x="255845051077" fg:w="491148765"/><text x="79.3573%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (57,904,731 samples, 0.02%)</title><rect x="79.2592%" y="453" width="0.0179%" height="15" fill="rgb(232,107,50)" fg:x="256336199842" fg:w="57904731"/><text x="79.5092%" y="463.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (49,617,720 samples, 0.02%)</title><rect x="79.2617%" y="437" width="0.0153%" height="15" fill="rgb(253,3,0)" fg:x="256344486853" fg:w="49617720"/><text x="79.5117%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (3,866,431,983 samples, 1.20%)</title><rect x="79.2771%" y="453" width="1.1955%" height="15" fill="rgb(212,99,53)" fg:x="256394104573" fg:w="3866431983"/><text x="79.5271%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Internal&gt;::push (256,718,700 samples, 0.08%)</title><rect x="80.4726%" y="453" width="0.0794%" height="15" fill="rgb(249,111,54)" fg:x="260260536556" fg:w="256718700"/><text x="80.7226%" y="463.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (45,547,569 samples, 0.01%)</title><rect x="80.5379%" y="437" width="0.0141%" height="15" fill="rgb(249,55,30)" fg:x="260471707687" fg:w="45547569"/><text x="80.7879%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push (1,204,208,598 samples, 0.37%)</title><rect x="80.5520%" y="453" width="0.3723%" height="15" fill="rgb(237,47,42)" fg:x="260517255256" fg:w="1204208598"/><text x="80.8020%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,alloc::collections::btree::node::marker::Leaf&gt;::push_with_handle (1,204,208,598 samples, 0.37%)</title><rect x="80.5520%" y="437" width="0.3723%" height="15" fill="rgb(211,20,18)" fg:x="260517255256" fg:w="1204208598"/><text x="80.8020%" y="447.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (724,179,297 samples, 0.22%)</title><rect x="80.7004%" y="421" width="0.2239%" height="15" fill="rgb(231,203,46)" fg:x="260997284557" fg:w="724179297"/><text x="80.9504%" y="431.50"></text></g><g><title>[libc.so.6] (115,669,582 samples, 0.04%)</title><rect x="81.2066%" y="293" width="0.0358%" height="15" fill="rgb(237,142,3)" fg:x="262634408977" fg:w="115669582"/><text x="81.4566%" y="303.50"></text></g><g><title>[libc.so.6] (541,731,120 samples, 0.17%)</title><rect x="81.1030%" y="325" width="0.1675%" height="15" fill="rgb(241,107,1)" fg:x="262299367075" fg:w="541731120"/><text x="81.3530%" y="335.50"></text></g><g><title>[libc.so.6] (458,919,476 samples, 0.14%)</title><rect x="81.1286%" y="309" width="0.1419%" height="15" fill="rgb(229,83,13)" fg:x="262382178719" fg:w="458919476"/><text x="81.3786%" y="319.50"></text></g><g><title>[unknown] (91,019,636 samples, 0.03%)</title><rect x="81.2423%" y="293" width="0.0281%" height="15" fill="rgb(241,91,40)" fg:x="262750078559" fg:w="91019636"/><text x="81.4923%" y="303.50"></text></g><g><title>[unknown] (78,624,858 samples, 0.02%)</title><rect x="81.2462%" y="277" width="0.0243%" height="15" fill="rgb(225,3,45)" fg:x="262762473337" fg:w="78624858"/><text x="81.4962%" y="287.50"></text></g><g><title>[unknown] (66,199,299 samples, 0.02%)</title><rect x="81.2500%" y="261" width="0.0205%" height="15" fill="rgb(244,223,14)" fg:x="262774898896" fg:w="66199299"/><text x="81.5000%" y="271.50"></text></g><g><title>[unknown] (66,199,299 samples, 0.02%)</title><rect x="81.2500%" y="245" width="0.0205%" height="15" fill="rgb(224,124,37)" fg:x="262774898896" fg:w="66199299"/><text x="81.5000%" y="255.50"></text></g><g><title>[unknown] (62,052,417 samples, 0.02%)</title><rect x="81.2513%" y="229" width="0.0192%" height="15" fill="rgb(251,171,30)" fg:x="262779045778" fg:w="62052417"/><text x="81.5013%" y="239.50"></text></g><g><title>[unknown] (57,932,210 samples, 0.02%)</title><rect x="81.2526%" y="213" width="0.0179%" height="15" fill="rgb(236,46,54)" fg:x="262783165985" fg:w="57932210"/><text x="81.5026%" y="223.50"></text></g><g><title>[unknown] (53,800,027 samples, 0.02%)</title><rect x="81.2538%" y="197" width="0.0166%" height="15" fill="rgb(245,213,5)" fg:x="262787298168" fg:w="53800027"/><text x="81.5038%" y="207.50"></text></g><g><title>[unknown] (53,800,027 samples, 0.02%)</title><rect x="81.2538%" y="181" width="0.0166%" height="15" fill="rgb(230,144,27)" fg:x="262787298168" fg:w="53800027"/><text x="81.5038%" y="191.50"></text></g><g><title>[unknown] (49,666,561 samples, 0.02%)</title><rect x="81.2551%" y="165" width="0.0154%" height="15" fill="rgb(220,86,6)" fg:x="262791431634" fg:w="49666561"/><text x="81.5051%" y="175.50"></text></g><g><title>[unknown] (37,245,029 samples, 0.01%)</title><rect x="81.2590%" y="149" width="0.0115%" height="15" fill="rgb(240,20,13)" fg:x="262803853166" fg:w="37245029"/><text x="81.5090%" y="159.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (227,552,061 samples, 0.07%)</title><rect x="81.2705%" y="325" width="0.0704%" height="15" fill="rgb(217,89,34)" fg:x="262841098195" fg:w="227552061"/><text x="81.5205%" y="335.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (2,766,238,714 samples, 0.86%)</title><rect x="80.9243%" y="405" width="0.8553%" height="15" fill="rgb(229,13,5)" fg:x="261721463854" fg:w="2766238714"/><text x="81.1743%" y="415.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (2,551,986,295 samples, 0.79%)</title><rect x="80.9905%" y="389" width="0.7891%" height="15" fill="rgb(244,67,35)" fg:x="261935716273" fg:w="2551986295"/><text x="81.2405%" y="399.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2,551,986,295 samples, 0.79%)</title><rect x="80.9905%" y="373" width="0.7891%" height="15" fill="rgb(221,40,2)" fg:x="261935716273" fg:w="2551986295"/><text x="81.2405%" y="383.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2,551,986,295 samples, 0.79%)</title><rect x="80.9905%" y="357" width="0.7891%" height="15" fill="rgb(237,157,21)" fg:x="261935716273" fg:w="2551986295"/><text x="81.2405%" y="367.50"></text></g><g><title>alloc::alloc::alloc (2,551,986,295 samples, 0.79%)</title><rect x="80.9905%" y="341" width="0.7891%" height="15" fill="rgb(222,94,11)" fg:x="261935716273" fg:w="2551986295"/><text x="81.2405%" y="351.50"></text></g><g><title>malloc (1,419,052,312 samples, 0.44%)</title><rect x="81.3408%" y="325" width="0.4388%" height="15" fill="rgb(249,113,6)" fg:x="263068650256" fg:w="1419052312"/><text x="81.5908%" y="335.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (2,840,701,598 samples, 0.88%)</title><rect x="80.9243%" y="453" width="0.8783%" height="15" fill="rgb(238,137,36)" fg:x="261721463854" fg:w="2840701598"/><text x="81.1743%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (2,840,701,598 samples, 0.88%)</title><rect x="80.9243%" y="437" width="0.8783%" height="15" fill="rgb(210,102,26)" fg:x="261721463854" fg:w="2840701598"/><text x="81.1743%" y="447.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (2,840,701,598 samples, 0.88%)</title><rect x="80.9243%" y="421" width="0.8783%" height="15" fill="rgb(218,30,30)" fg:x="261721463854" fg:w="2840701598"/><text x="81.1743%" y="431.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::init (74,462,884 samples, 0.02%)</title><rect x="81.7796%" y="405" width="0.0230%" height="15" fill="rgb(214,67,26)" fg:x="264487702568" fg:w="74462884"/><text x="82.0296%" y="415.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (74,462,884 samples, 0.02%)</title><rect x="81.7796%" y="389" width="0.0230%" height="15" fill="rgb(251,9,53)" fg:x="264487702568" fg:w="74462884"/><text x="82.0296%" y="399.50"></text></g><g><title>core::ptr::write (74,462,884 samples, 0.02%)</title><rect x="81.7796%" y="373" width="0.0230%" height="15" fill="rgb(228,204,25)" fg:x="264487702568" fg:w="74462884"/><text x="82.0296%" y="383.50"></text></g><g><title>[libc.so.6] (111,575,666 samples, 0.03%)</title><rect x="81.9892%" y="229" width="0.0345%" height="15" fill="rgb(207,153,8)" fg:x="265165542252" fg:w="111575666"/><text x="82.2392%" y="239.50"></text></g><g><title>[libc.so.6] (553,857,548 samples, 0.17%)</title><rect x="81.9228%" y="261" width="0.1713%" height="15" fill="rgb(242,9,16)" fg:x="264950636935" fg:w="553857548"/><text x="82.1728%" y="271.50"></text></g><g><title>[libc.so.6] (520,781,471 samples, 0.16%)</title><rect x="81.9330%" y="245" width="0.1610%" height="15" fill="rgb(217,211,10)" fg:x="264983713012" fg:w="520781471"/><text x="82.1830%" y="255.50"></text></g><g><title>[unknown] (227,376,565 samples, 0.07%)</title><rect x="82.0237%" y="229" width="0.0703%" height="15" fill="rgb(219,228,52)" fg:x="265277117918" fg:w="227376565"/><text x="82.2737%" y="239.50"></text></g><g><title>[unknown] (198,463,396 samples, 0.06%)</title><rect x="82.0326%" y="213" width="0.0614%" height="15" fill="rgb(231,92,29)" fg:x="265306031087" fg:w="198463396"/><text x="82.2826%" y="223.50"></text></g><g><title>[unknown] (194,323,049 samples, 0.06%)</title><rect x="82.0339%" y="197" width="0.0601%" height="15" fill="rgb(232,8,23)" fg:x="265310171434" fg:w="194323049"/><text x="82.2839%" y="207.50"></text></g><g><title>[unknown] (181,922,020 samples, 0.06%)</title><rect x="82.0378%" y="181" width="0.0563%" height="15" fill="rgb(216,211,34)" fg:x="265322572463" fg:w="181922020"/><text x="82.2878%" y="191.50"></text></g><g><title>[unknown] (177,777,399 samples, 0.05%)</title><rect x="82.0390%" y="165" width="0.0550%" height="15" fill="rgb(236,151,0)" fg:x="265326717084" fg:w="177777399"/><text x="82.2890%" y="175.50"></text></g><g><title>[unknown] (144,644,151 samples, 0.04%)</title><rect x="82.0493%" y="149" width="0.0447%" height="15" fill="rgb(209,168,3)" fg:x="265359850332" fg:w="144644151"/><text x="82.2993%" y="159.50"></text></g><g><title>[unknown] (119,883,469 samples, 0.04%)</title><rect x="82.0569%" y="133" width="0.0371%" height="15" fill="rgb(208,129,28)" fg:x="265384611014" fg:w="119883469"/><text x="82.3069%" y="143.50"></text></g><g><title>[unknown] (111,598,274 samples, 0.03%)</title><rect x="82.0595%" y="117" width="0.0345%" height="15" fill="rgb(229,78,22)" fg:x="265392896209" fg:w="111598274"/><text x="82.3095%" y="127.50"></text></g><g><title>[unknown] (99,175,297 samples, 0.03%)</title><rect x="82.0633%" y="101" width="0.0307%" height="15" fill="rgb(228,187,13)" fg:x="265405319186" fg:w="99175297"/><text x="82.3133%" y="111.50"></text></g><g><title>[unknown] (90,886,810 samples, 0.03%)</title><rect x="82.0659%" y="85" width="0.0281%" height="15" fill="rgb(240,119,24)" fg:x="265413607673" fg:w="90886810"/><text x="82.3159%" y="95.50"></text></g><g><title>[unknown] (90,886,810 samples, 0.03%)</title><rect x="82.0659%" y="69" width="0.0281%" height="15" fill="rgb(209,194,42)" fg:x="265413607673" fg:w="90886810"/><text x="82.3159%" y="79.50"></text></g><g><title>[unknown] (66,045,388 samples, 0.02%)</title><rect x="82.0736%" y="53" width="0.0204%" height="15" fill="rgb(247,200,46)" fg:x="265438449095" fg:w="66045388"/><text x="82.3236%" y="63.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (177,796,209 samples, 0.05%)</title><rect x="82.0940%" y="261" width="0.0550%" height="15" fill="rgb(218,76,16)" fg:x="265504494483" fg:w="177796209"/><text x="82.3440%" y="271.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (2,227,119,749 samples, 0.69%)</title><rect x="81.8051%" y="341" width="0.6886%" height="15" fill="rgb(225,21,48)" fg:x="264570161184" fg:w="2227119749"/><text x="82.0551%" y="351.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (2,181,689,055 samples, 0.67%)</title><rect x="81.8192%" y="325" width="0.6746%" height="15" fill="rgb(239,223,50)" fg:x="264615591878" fg:w="2181689055"/><text x="82.0692%" y="335.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2,181,689,055 samples, 0.67%)</title><rect x="81.8192%" y="309" width="0.6746%" height="15" fill="rgb(244,45,21)" fg:x="264615591878" fg:w="2181689055"/><text x="82.0692%" y="319.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2,181,689,055 samples, 0.67%)</title><rect x="81.8192%" y="293" width="0.6746%" height="15" fill="rgb(232,33,43)" fg:x="264615591878" fg:w="2181689055"/><text x="82.0692%" y="303.50"></text></g><g><title>alloc::alloc::alloc (2,181,689,055 samples, 0.67%)</title><rect x="81.8192%" y="277" width="0.6746%" height="15" fill="rgb(209,8,3)" fg:x="264615591878" fg:w="2181689055"/><text x="82.0692%" y="287.50"></text></g><g><title>malloc (1,114,990,241 samples, 0.34%)</title><rect x="82.1490%" y="261" width="0.3448%" height="15" fill="rgb(214,25,53)" fg:x="265682290692" fg:w="1114990241"/><text x="82.3990%" y="271.50"></text></g><g><title>alloc::collections::btree::node::InternalNode&lt;K,V&gt;::new (2,338,712,269 samples, 0.72%)</title><rect x="81.8051%" y="357" width="0.7231%" height="15" fill="rgb(254,186,54)" fg:x="264570161184" fg:w="2338712269"/><text x="82.0551%" y="367.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::init (111,592,520 samples, 0.03%)</title><rect x="82.4937%" y="341" width="0.0345%" height="15" fill="rgb(208,174,49)" fg:x="266797280933" fg:w="111592520"/><text x="82.7437%" y="351.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (111,592,520 samples, 0.03%)</title><rect x="82.4937%" y="325" width="0.0345%" height="15" fill="rgb(233,191,51)" fg:x="266797280933" fg:w="111592520"/><text x="82.7437%" y="335.50"></text></g><g><title>core::ptr::write (111,592,520 samples, 0.03%)</title><rect x="82.4937%" y="309" width="0.0345%" height="15" fill="rgb(222,134,10)" fg:x="266797280933" fg:w="111592520"/><text x="82.7437%" y="319.50"></text></g><g><title>alloc::collections::btree::mem::take_mut::{{closure}} (2,350,841,714 samples, 0.73%)</title><rect x="81.8026%" y="405" width="0.7269%" height="15" fill="rgb(230,226,20)" fg:x="264562165452" fg:w="2350841714"/><text x="82.0526%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::push_internal_level::{{closure}} (2,350,841,714 samples, 0.73%)</title><rect x="81.8026%" y="389" width="0.7269%" height="15" fill="rgb(251,111,25)" fg:x="264562165452" fg:w="2350841714"/><text x="82.0526%" y="399.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Internal&gt;::new_internal (2,350,841,714 samples, 0.73%)</title><rect x="81.8026%" y="373" width="0.7269%" height="15" fill="rgb(224,40,46)" fg:x="264562165452" fg:w="2350841714"/><text x="82.0526%" y="383.50"></text></g><g><title>core::ptr::read (102,911,274 samples, 0.03%)</title><rect x="82.5295%" y="405" width="0.0318%" height="15" fill="rgb(236,108,47)" fg:x="266913007166" fg:w="102911274"/><text x="82.7795%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::push_internal_level (2,478,591,057 samples, 0.77%)</title><rect x="81.8026%" y="453" width="0.7664%" height="15" fill="rgb(234,93,0)" fg:x="264562165452" fg:w="2478591057"/><text x="82.0526%" y="463.50"></text></g><g><title>alloc::collections::btree::mem::take_mut (2,478,591,057 samples, 0.77%)</title><rect x="81.8026%" y="437" width="0.7664%" height="15" fill="rgb(224,213,32)" fg:x="264562165452" fg:w="2478591057"/><text x="82.0526%" y="447.50"></text></g><g><title>alloc::collections::btree::mem::replace (2,478,591,057 samples, 0.77%)</title><rect x="81.8026%" y="421" width="0.7664%" height="15" fill="rgb(251,11,48)" fg:x="264562165452" fg:w="2478591057"/><text x="82.0526%" y="431.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (53,852,766 samples, 0.02%)</title><rect x="82.6188%" y="149" width="0.0167%" height="15" fill="rgb(236,173,5)" fg:x="267201872577" fg:w="53852766"/><text x="82.8688%" y="159.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_kv (70,262,621 samples, 0.02%)</title><rect x="82.6150%" y="165" width="0.0217%" height="15" fill="rgb(230,95,12)" fg:x="267189607053" fg:w="70262621"/><text x="82.8650%" y="175.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked::{{closure}} (119,933,305 samples, 0.04%)</title><rect x="82.6150%" y="181" width="0.0371%" height="15" fill="rgb(232,209,1)" fg:x="267189607053" fg:w="119933305"/><text x="82.8650%" y="191.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::next_unchecked (198,549,657 samples, 0.06%)</title><rect x="82.6150%" y="213" width="0.0614%" height="15" fill="rgb(232,6,1)" fg:x="267189607053" fg:w="198549657"/><text x="82.8650%" y="223.50"></text></g><g><title>alloc::collections::btree::mem::replace (198,549,657 samples, 0.06%)</title><rect x="82.6150%" y="197" width="0.0614%" height="15" fill="rgb(210,224,50)" fg:x="267189607053" fg:w="198549657"/><text x="82.8650%" y="207.50"></text></g><g><title>core::ptr::write (78,616,352 samples, 0.02%)</title><rect x="82.6521%" y="181" width="0.0243%" height="15" fill="rgb(228,127,35)" fg:x="267309540358" fg:w="78616352"/><text x="82.9021%" y="191.50"></text></g><g><title>&lt;alloc::collections::btree::map::Iter&lt;K,V&gt; as core::iter::traits::iterator::Iterator&gt;::next (285,407,819 samples, 0.09%)</title><rect x="82.6048%" y="245" width="0.0882%" height="15" fill="rgb(245,102,45)" fg:x="267156518130" fg:w="285407819"/><text x="82.8548%" y="255.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Immut,K,V&gt;::next_unchecked (252,318,896 samples, 0.08%)</title><rect x="82.6150%" y="229" width="0.0780%" height="15" fill="rgb(214,1,49)" fg:x="267189607053" fg:w="252318896"/><text x="82.8650%" y="239.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (53,769,239 samples, 0.02%)</title><rect x="82.6764%" y="213" width="0.0166%" height="15" fill="rgb(226,163,40)" fg:x="267388156710" fg:w="53769239"/><text x="82.9264%" y="223.50"></text></g><g><title>[libc.so.6] (289,544,325 samples, 0.09%)</title><rect x="82.6048%" y="261" width="0.0895%" height="15" fill="rgb(239,212,28)" fg:x="267156518130" fg:w="289544325"/><text x="82.8548%" y="271.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2,843,890,581 samples, 0.88%)</title><rect x="82.5690%" y="293" width="0.8793%" height="15" fill="rgb(220,20,13)" fg:x="267040756509" fg:w="2843890581"/><text x="82.8190%" y="303.50"></text></g><g><title>alloc::alloc::dealloc (2,843,890,581 samples, 0.88%)</title><rect x="82.5690%" y="277" width="0.8793%" height="15" fill="rgb(210,164,35)" fg:x="267040756509" fg:w="2843890581"/><text x="82.8190%" y="287.50"></text></g><g><title>cfree (2,438,584,635 samples, 0.75%)</title><rect x="82.6943%" y="261" width="0.7540%" height="15" fill="rgb(248,109,41)" fg:x="267446062455" fg:w="2438584635"/><text x="82.9443%" y="271.50"></text></g><g><title>alloc::collections::btree::append::&lt;impl alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::bulk_push (34,601,662,429 samples, 10.70%)</title><rect x="72.8480%" y="469" width="10.6988%" height="15" fill="rgb(238,23,50)" fg:x="235601471224" fg:w="34601662429"/><text x="73.0980%" y="479.50">alloc::collectio..</text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::dedup_sorted_iter::DedupSortedIter&lt;u32,alloc::collections::btree::set_val::SetValZST,core::iter::adapters::map::Map&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;,alloc::collections::btree::set::BTreeSet&lt;u32&gt;::from_sorted_iter&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;&gt;::{{closure}}&gt;&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="453" width="0.9778%" height="15" fill="rgb(211,48,49)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::iter::adapters::peekable::Peekable&lt;core::iter::adapters::map::Map&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;,alloc::collections::btree::set::BTreeSet&lt;u32&gt;::from_sorted_iter&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;&gt;::{{closure}}&gt;&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="437" width="0.9778%" height="15" fill="rgb(223,36,21)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::iter::adapters::map::Map&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;,alloc::collections::btree::set::BTreeSet&lt;u32&gt;::from_sorted_iter&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;&gt;::{{closure}}&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="421" width="0.9778%" height="15" fill="rgb(207,123,46)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::into_iter::IntoIter&lt;u32&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="405" width="0.9778%" height="15" fill="rgb(240,218,32)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="415.50"></text></g><g><title>&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="389" width="0.9778%" height="15" fill="rgb(252,5,43)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;u32,alloc::alloc::Global&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="373" width="0.9778%" height="15" fill="rgb(252,84,19)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="383.50"></text></g><g><title>&lt;&lt;alloc::vec::into_iter::IntoIter&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop::DropGuard&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="357" width="0.9778%" height="15" fill="rgb(243,152,39)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="367.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u32&gt;&gt; (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="341" width="0.9778%" height="15" fill="rgb(234,160,15)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="351.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="325" width="0.9778%" height="15" fill="rgb(237,34,20)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="335.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (3,162,377,144 samples, 0.98%)</title><rect x="82.5690%" y="309" width="0.9778%" height="15" fill="rgb(229,97,13)" fg:x="267040756509" fg:w="3162377144"/><text x="82.8190%" y="319.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::current_memory (318,486,563 samples, 0.10%)</title><rect x="83.4484%" y="293" width="0.0985%" height="15" fill="rgb(234,71,50)" fg:x="269884647090" fg:w="318486563"/><text x="83.6984%" y="303.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_mul (107,437,468 samples, 0.03%)</title><rect x="83.5136%" y="277" width="0.0332%" height="15" fill="rgb(253,155,4)" fg:x="270095696185" fg:w="107437468"/><text x="83.7636%" y="287.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::replace_kv (173,804,369 samples, 0.05%)</title><rect x="83.8628%" y="437" width="0.0537%" height="15" fill="rgb(222,185,37)" fg:x="271225047414" fg:w="173804369"/><text x="84.1128%" y="447.50"></text></g><g><title>core::mem::replace (173,804,369 samples, 0.05%)</title><rect x="83.8628%" y="421" width="0.0537%" height="15" fill="rgb(251,177,13)" fg:x="271225047414" fg:w="173804369"/><text x="84.1128%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Mut,K,V,Type&gt;::key_area_mut (33,083,243 samples, 0.01%)</title><rect x="83.9165%" y="437" width="0.0102%" height="15" fill="rgb(250,179,40)" fg:x="271398851783" fg:w="33083243"/><text x="84.1665%" y="447.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked_mut (33,083,243 samples, 0.01%)</title><rect x="83.9165%" y="421" width="0.0102%" height="15" fill="rgb(242,44,2)" fg:x="271398851783" fg:w="33083243"/><text x="84.1665%" y="431.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked_mut (33,083,243 samples, 0.01%)</title><rect x="83.9165%" y="405" width="0.0102%" height="15" fill="rgb(216,177,13)" fg:x="271398851783" fg:w="33083243"/><text x="84.1665%" y="415.50"></text></g><g><title>core::slice::index::get_offset_len_mut_noubcheck (33,083,243 samples, 0.01%)</title><rect x="83.9165%" y="389" width="0.0102%" height="15" fill="rgb(216,106,43)" fg:x="271398851783" fg:w="33083243"/><text x="84.1665%" y="399.50"></text></g><g><title>alloc::collections::btree::node::move_to_slice (620,051,720 samples, 0.19%)</title><rect x="83.9268%" y="437" width="0.1917%" height="15" fill="rgb(216,183,2)" fg:x="271431935026" fg:w="620051720"/><text x="84.1768%" y="447.50"></text></g><g><title>core::ptr::copy_nonoverlapping (615,907,400 samples, 0.19%)</title><rect x="83.9281%" y="421" width="0.1904%" height="15" fill="rgb(249,75,3)" fg:x="271436079346" fg:w="615907400"/><text x="84.1781%" y="431.50"></text></g><g><title>[libc.so.6] (446,302,129 samples, 0.14%)</title><rect x="83.9805%" y="405" width="0.1380%" height="15" fill="rgb(219,67,39)" fg:x="271605684617" fg:w="446302129"/><text x="84.2305%" y="415.50"></text></g><g><title>core::ptr::copy (269,073,922 samples, 0.08%)</title><rect x="84.1185%" y="421" width="0.0832%" height="15" fill="rgb(253,228,2)" fg:x="272051986746" fg:w="269073922"/><text x="84.3685%" y="431.50"></text></g><g><title>[libc.so.6] (269,073,922 samples, 0.08%)</title><rect x="84.1185%" y="405" width="0.0832%" height="15" fill="rgb(235,138,27)" fg:x="272051986746" fg:w="269073922"/><text x="84.3685%" y="415.50"></text></g><g><title>alloc::collections::btree::node::slice_shr (277,336,344 samples, 0.09%)</title><rect x="84.1185%" y="437" width="0.0858%" height="15" fill="rgb(236,97,51)" fg:x="272051986746" fg:w="277336344"/><text x="84.3685%" y="447.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::assume_init_read (41,392,820 samples, 0.01%)</title><rect x="84.2042%" y="437" width="0.0128%" height="15" fill="rgb(240,80,30)" fg:x="272329323090" fg:w="41392820"/><text x="84.4542%" y="447.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::read (41,392,820 samples, 0.01%)</title><rect x="84.2042%" y="421" width="0.0128%" height="15" fill="rgb(230,178,19)" fg:x="272329323090" fg:w="41392820"/><text x="84.4542%" y="431.50"></text></g><g><title>core::ptr::read (41,392,820 samples, 0.01%)</title><rect x="84.2042%" y="405" width="0.0128%" height="15" fill="rgb(210,190,27)" fg:x="272329323090" fg:w="41392820"/><text x="84.4542%" y="415.50"></text></g><g><title>alloc::collections::btree::node::BalancingContext&lt;K,V&gt;::bulk_steal_left (1,637,893,258 samples, 0.51%)</title><rect x="83.7375%" y="453" width="0.5064%" height="15" fill="rgb(222,107,31)" fg:x="270819671718" fg:w="1637893258"/><text x="83.9875%" y="463.50"></text></g><g><title>core::mem::maybe_uninit::MaybeUninit&lt;T&gt;::write (86,849,066 samples, 0.03%)</title><rect x="84.2170%" y="437" width="0.0269%" height="15" fill="rgb(216,127,34)" fg:x="272370715910" fg:w="86849066"/><text x="84.4670%" y="447.50"></text></g><g><title>alloc::collections::btree::node::BalancingContext&lt;K,V&gt;::right_child_len (608,276,978 samples, 0.19%)</title><rect x="84.2439%" y="453" width="0.1881%" height="15" fill="rgb(234,116,52)" fg:x="272457564976" fg:w="608276978"/><text x="84.4939%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (608,276,978 samples, 0.19%)</title><rect x="84.2439%" y="437" width="0.1881%" height="15" fill="rgb(222,124,15)" fg:x="272457564976" fg:w="608276978"/><text x="84.4939%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_kv (49,673,842 samples, 0.02%)</title><rect x="84.4320%" y="453" width="0.0154%" height="15" fill="rgb(231,179,28)" fg:x="273065841954" fg:w="49673842"/><text x="84.6820%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (49,673,842 samples, 0.02%)</title><rect x="84.4320%" y="437" width="0.0154%" height="15" fill="rgb(226,93,45)" fg:x="273065841954" fg:w="49673842"/><text x="84.6820%" y="447.50"></text></g><g><title>alloc::collections::btree::fix::&lt;impl alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::fix_right_border_of_plentiful (3,359,104,654 samples, 1.04%)</title><rect x="83.5468%" y="469" width="1.0386%" height="15" fill="rgb(215,8,51)" fg:x="270203133653" fg:w="3359104654"/><text x="83.7968%" y="479.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (446,722,511 samples, 0.14%)</title><rect x="84.4473%" y="453" width="0.1381%" height="15" fill="rgb(223,106,5)" fg:x="273115515796" fg:w="446722511"/><text x="84.6973%" y="463.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 (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="453" width="0.0333%" height="15" fill="rgb(250,191,5)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="437" width="0.0333%" height="15" fill="rgb(242,132,44)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="421" width="0.0333%" height="15" fill="rgb(251,152,29)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="405" width="0.0333%" height="15" fill="rgb(218,179,5)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="389" width="0.0333%" height="15" fill="rgb(227,67,19)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="373" width="0.0333%" height="15" fill="rgb(233,119,31)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (107,548,914 samples, 0.03%)</title><rect x="85.1267%" y="357" width="0.0333%" height="15" fill="rgb(241,120,22)" fg:x="275312540108" fg:w="107548914"/><text x="85.3767%" y="367.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (103,441,602 samples, 0.03%)</title><rect x="85.1279%" y="341" width="0.0320%" height="15" fill="rgb(224,102,30)" fg:x="275316647420" fg:w="103441602"/><text x="85.3779%" y="351.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (103,441,602 samples, 0.03%)</title><rect x="85.1279%" y="325" width="0.0320%" height="15" fill="rgb(210,164,37)" fg:x="275316647420" fg:w="103441602"/><text x="85.3779%" y="335.50"></text></g><g><title>alloc::alloc::alloc (103,441,602 samples, 0.03%)</title><rect x="85.1279%" y="309" width="0.0320%" height="15" fill="rgb(226,191,16)" fg:x="275316647420" fg:w="103441602"/><text x="85.3779%" y="319.50"></text></g><g><title>malloc (99,298,772 samples, 0.03%)</title><rect x="85.1292%" y="293" width="0.0307%" height="15" fill="rgb(214,40,45)" fg:x="275320790250" fg:w="99298772"/><text x="85.3792%" y="303.50"></text></g><g><title>alloc::collections::btree::dedup_sorted_iter::DedupSortedIter&lt;K,V,I&gt;::new (553,765,379 samples, 0.17%)</title><rect x="85.1599%" y="453" width="0.1712%" height="15" fill="rgb(244,29,26)" fg:x="275420089022" fg:w="553765379"/><text x="85.4099%" y="463.50"></text></g><g><title>core::iter::traits::iterator::Iterator::peekable (53,816,840 samples, 0.02%)</title><rect x="85.3145%" y="437" width="0.0166%" height="15" fill="rgb(216,16,5)" fg:x="275920037561" fg:w="53816840"/><text x="85.5645%" y="447.50"></text></g><g><title>core::iter::adapters::peekable::Peekable&lt;I&gt;::new (53,816,840 samples, 0.02%)</title><rect x="85.3145%" y="421" width="0.0166%" height="15" fill="rgb(249,76,35)" fg:x="275920037561" fg:w="53816840"/><text x="85.5645%" y="431.50"></text></g><g><title>[libc.so.6] (144,433,542 samples, 0.04%)</title><rect x="85.6955%" y="325" width="0.0447%" height="15" fill="rgb(207,11,44)" fg:x="277152203464" fg:w="144433542"/><text x="85.9455%" y="335.50"></text></g><g><title>[libc.so.6] (123,735,331 samples, 0.04%)</title><rect x="85.7019%" y="309" width="0.0383%" height="15" fill="rgb(228,190,49)" fg:x="277172901675" fg:w="123735331"/><text x="85.9519%" y="319.50"></text></g><g><title>[unknown] (33,112,546 samples, 0.01%)</title><rect x="85.7299%" y="293" width="0.0102%" height="15" fill="rgb(214,173,12)" fg:x="277263524460" fg:w="33112546"/><text x="85.9799%" y="303.50"></text></g><g><title>[unknown] (33,112,546 samples, 0.01%)</title><rect x="85.7299%" y="277" width="0.0102%" height="15" fill="rgb(218,26,35)" fg:x="277263524460" fg:w="33112546"/><text x="85.9799%" y="287.50"></text></g><g><title>[unknown] (33,112,546 samples, 0.01%)</title><rect x="85.7299%" y="261" width="0.0102%" height="15" fill="rgb(220,200,19)" fg:x="277263524460" fg:w="33112546"/><text x="85.9799%" y="271.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (49,671,228 samples, 0.02%)</title><rect x="85.7401%" y="325" width="0.0154%" height="15" fill="rgb(239,95,49)" fg:x="277296637006" fg:w="49671228"/><text x="85.9901%" y="335.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::bulk_build_from_sorted_iter (4,024,078,083 samples, 1.24%)</title><rect x="84.5855%" y="469" width="1.2442%" height="15" fill="rgb(235,85,53)" fg:x="273562238307" fg:w="4024078083"/><text x="84.8355%" y="479.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::new (1,612,461,989 samples, 0.50%)</title><rect x="85.3311%" y="453" width="0.4986%" height="15" fill="rgb(233,133,31)" fg:x="275973854401" fg:w="1612461989"/><text x="85.5811%" y="463.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Owned,K,V,alloc::collections::btree::node::marker::Leaf&gt;::new_leaf (1,608,325,113 samples, 0.50%)</title><rect x="85.3324%" y="437" width="0.4973%" height="15" fill="rgb(218,25,20)" fg:x="275977991277" fg:w="1608325113"/><text x="85.5824%" y="447.50"></text></g><g><title>alloc::collections::btree::node::LeafNode&lt;K,V&gt;::new (1,608,325,113 samples, 0.50%)</title><rect x="85.3324%" y="421" width="0.4973%" height="15" fill="rgb(252,210,38)" fg:x="275977991277" fg:w="1608325113"/><text x="85.5824%" y="431.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::new_uninit_in (1,608,325,113 samples, 0.50%)</title><rect x="85.3324%" y="405" width="0.4973%" height="15" fill="rgb(242,134,21)" fg:x="275977991277" fg:w="1608325113"/><text x="85.5824%" y="415.50"></text></g><g><title>alloc::boxed::Box&lt;T,A&gt;::try_new_uninit_in (558,179,402 samples, 0.17%)</title><rect x="85.6571%" y="389" width="0.1726%" height="15" fill="rgb(213,28,48)" fg:x="277028136988" fg:w="558179402"/><text x="85.9071%" y="399.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (558,179,402 samples, 0.17%)</title><rect x="85.6571%" y="373" width="0.1726%" height="15" fill="rgb(250,196,2)" fg:x="277028136988" fg:w="558179402"/><text x="85.9071%" y="383.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (558,179,402 samples, 0.17%)</title><rect x="85.6571%" y="357" width="0.1726%" height="15" fill="rgb(227,5,17)" fg:x="277028136988" fg:w="558179402"/><text x="85.9071%" y="367.50"></text></g><g><title>alloc::alloc::alloc (558,179,402 samples, 0.17%)</title><rect x="85.6571%" y="341" width="0.1726%" height="15" fill="rgb(221,226,24)" fg:x="277028136988" fg:w="558179402"/><text x="85.9071%" y="351.50"></text></g><g><title>malloc (240,008,156 samples, 0.07%)</title><rect x="85.7555%" y="325" width="0.0742%" height="15" fill="rgb(211,5,48)" fg:x="277346308234" fg:w="240008156"/><text x="86.0055%" y="335.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (124,118,640 samples, 0.04%)</title><rect x="91.7280%" y="341" width="0.0384%" height="15" fill="rgb(219,150,6)" fg:x="296662213335" fg:w="124118640"/><text x="91.9780%" y="351.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (124,118,640 samples, 0.04%)</title><rect x="91.7280%" y="325" width="0.0384%" height="15" fill="rgb(251,46,16)" fg:x="296662213335" fg:w="124118640"/><text x="91.9780%" y="335.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (115,828,986 samples, 0.04%)</title><rect x="91.7305%" y="309" width="0.0358%" height="15" fill="rgb(220,204,40)" fg:x="296670502989" fg:w="115828986"/><text x="91.9805%" y="319.50"></text></g><g><title>&lt;rsprocess::set::Set as rsprocess::set::BasicSet&gt;::is_subset (591,369,406 samples, 0.18%)</title><rect x="91.5925%" y="373" width="0.1829%" height="15" fill="rgb(211,85,2)" fg:x="296223916969" fg:w="591369406"/><text x="91.8425%" y="383.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::is_subset (591,369,406 samples, 0.18%)</title><rect x="91.5925%" y="357" width="0.1829%" height="15" fill="rgb(229,17,7)" fg:x="296223916969" fg:w="591369406"/><text x="91.8425%" y="367.50"></text></g><g><title>[libc.so.6] (111,117,931 samples, 0.03%)</title><rect x="91.7753%" y="373" width="0.0344%" height="15" fill="rgb(239,72,28)" fg:x="296815286375" fg:w="111117931"/><text x="92.0253%" y="383.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2,380,966,609 samples, 0.74%)</title><rect x="91.5669%" y="405" width="0.7362%" height="15" fill="rgb(230,47,54)" fg:x="296141115178" fg:w="2380966609"/><text x="91.8169%" y="415.50"></text></g><g><title>alloc::alloc::dealloc (2,380,966,609 samples, 0.74%)</title><rect x="91.5669%" y="389" width="0.7362%" height="15" fill="rgb(214,50,8)" fg:x="296141115178" fg:w="2380966609"/><text x="91.8169%" y="399.50"></text></g><g><title>cfree (1,595,677,481 samples, 0.49%)</title><rect x="91.8097%" y="373" width="0.4934%" height="15" fill="rgb(216,198,43)" fg:x="296926404306" fg:w="1595677481"/><text x="92.0597%" y="383.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_end (2,451,390,224 samples, 0.76%)</title><rect x="91.5630%" y="437" width="0.7580%" height="15" fill="rgb(234,20,35)" fg:x="296128697073" fg:w="2451390224"/><text x="91.8130%" y="447.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (2,451,390,224 samples, 0.76%)</title><rect x="91.5630%" y="421" width="0.7580%" height="15" fill="rgb(254,45,19)" fg:x="296128697073" fg:w="2451390224"/><text x="91.8130%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (58,005,510 samples, 0.02%)</title><rect x="92.3030%" y="405" width="0.0179%" height="15" fill="rgb(219,14,44)" fg:x="298522081787" fg:w="58005510"/><text x="92.5530%" y="415.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::ops::try_trait::Try&gt;::branch (794,444,390 samples, 0.25%)</title><rect x="92.3235%" y="421" width="0.2456%" height="15" fill="rgb(217,220,26)" fg:x="298588371327" fg:w="794444390"/><text x="92.5735%" y="431.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_end (4,787,660,912 samples, 1.48%)</title><rect x="91.5630%" y="453" width="1.4803%" height="15" fill="rgb(213,158,28)" fg:x="296128697073" fg:w="4787660912"/><text x="91.8130%" y="463.50"></text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::take_front (2,336,270,688 samples, 0.72%)</title><rect x="92.3210%" y="437" width="0.7224%" height="15" fill="rgb(252,51,52)" fg:x="298580087297" fg:w="2336270688"/><text x="92.5710%" y="447.50"></text></g><g><title>core::option::Option&lt;T&gt;::take (1,533,542,268 samples, 0.47%)</title><rect x="92.5692%" y="421" width="0.4742%" height="15" fill="rgb(246,89,16)" fg:x="299382815717" fg:w="1533542268"/><text x="92.8192%" y="431.50"></text></g><g><title>core::mem::replace (1,533,542,268 samples, 0.47%)</title><rect x="92.5692%" y="405" width="0.4742%" height="15" fill="rgb(216,158,49)" fg:x="299382815717" fg:w="1533542268"/><text x="92.8192%" y="415.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (136,354,947 samples, 0.04%)</title><rect x="93.7655%" y="357" width="0.0422%" height="15" fill="rgb(236,107,19)" fg:x="303251826563" fg:w="136354947"/><text x="94.0155%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,alloc::collections::btree::node::marker::KV&gt;&gt;::next_leaf_edge (653,853,337 samples, 0.20%)</title><rect x="93.7232%" y="373" width="0.2022%" height="15" fill="rgb(228,185,30)" fg:x="303115173111" fg:w="653853337"/><text x="93.9732%" y="383.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;,Type&gt;::force (372,542,756 samples, 0.12%)</title><rect x="93.8102%" y="357" width="0.1152%" height="15" fill="rgb(246,134,8)" fg:x="303396483692" fg:w="372542756"/><text x="94.0602%" y="367.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (372,542,756 samples, 0.12%)</title><rect x="93.8102%" y="341" width="0.1152%" height="15" fill="rgb(214,143,50)" fg:x="303396483692" fg:w="372542756"/><text x="94.0602%" y="351.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,NodeType&gt;,alloc::collections::btree::node::marker::Edge&gt;::right_kv (5,252,267,374 samples, 1.62%)</title><rect x="93.9254%" y="373" width="1.6240%" height="15" fill="rgb(228,75,8)" fg:x="303769026448" fg:w="5252267374"/><text x="94.1754%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (160,928,247 samples, 0.05%)</title><rect x="95.4996%" y="357" width="0.0498%" height="15" fill="rgb(207,175,4)" fg:x="308860365575" fg:w="160928247"/><text x="95.7496%" y="367.50"></text></g><g><title>[libc.so.6] (45,621,940 samples, 0.01%)</title><rect x="95.5801%" y="325" width="0.0141%" height="15" fill="rgb(205,108,24)" fg:x="309120621390" fg:w="45621940"/><text x="95.8301%" y="335.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2,149,438,537 samples, 0.66%)</title><rect x="95.5788%" y="357" width="0.6646%" height="15" fill="rgb(244,120,49)" fg:x="309116481583" fg:w="2149438537"/><text x="95.8288%" y="367.50"></text></g><g><title>alloc::alloc::dealloc (2,149,438,537 samples, 0.66%)</title><rect x="95.5788%" y="341" width="0.6646%" height="15" fill="rgb(223,47,38)" fg:x="309116481583" fg:w="2149438537"/><text x="95.8288%" y="351.50"></text></g><g><title>cfree (2,099,676,790 samples, 0.65%)</title><rect x="95.5942%" y="325" width="0.6492%" height="15" fill="rgb(229,179,11)" fg:x="309166243330" fg:w="2099676790"/><text x="95.8442%" y="335.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (132,394,411 samples, 0.04%)</title><rect x="96.2665%" y="341" width="0.0409%" height="15" fill="rgb(231,122,1)" fg:x="311340438891" fg:w="132394411"/><text x="96.5165%" y="351.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next_unchecked::{{closure}} (9,764,162,119 samples, 3.02%)</title><rect x="93.2909%" y="405" width="3.0191%" height="15" fill="rgb(245,119,9)" fg:x="301716903735" fg:w="9764162119"/><text x="93.5409%" y="415.50">all..</text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next (9,764,162,119 samples, 3.02%)</title><rect x="93.2909%" y="389" width="3.0191%" height="15" fill="rgb(241,163,25)" fg:x="301716903735" fg:w="9764162119"/><text x="93.5409%" y="399.50">all..</text></g><g><title>alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::deallocate_and_ascend (2,459,772,032 samples, 0.76%)</title><rect x="95.5494%" y="373" width="0.7606%" height="15" fill="rgb(217,214,3)" fg:x="309021293822" fg:w="2459772032"/><text x="95.7994%" y="383.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::ascend (215,145,734 samples, 0.07%)</title><rect x="96.2434%" y="357" width="0.0665%" height="15" fill="rgb(240,86,28)" fg:x="311265920120" fg:w="215145734"/><text x="96.4934%" y="367.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Dying,K,V,alloc::collections::btree::node::marker::Leaf&gt;,alloc::collections::btree::node::marker::Edge&gt;&gt;::deallocating_next_unchecked (11,097,999,962 samples, 3.43%)</title><rect x="93.0434%" y="437" width="3.4315%" height="15" fill="rgb(215,47,9)" fg:x="300916357985" fg:w="11097999962"/><text x="93.2934%" y="447.50">all..</text></g><g><title>alloc::collections::btree::mem::replace (11,097,999,962 samples, 3.43%)</title><rect x="93.0434%" y="421" width="3.4315%" height="15" fill="rgb(252,25,45)" fg:x="300916357985" fg:w="11097999962"/><text x="93.2934%" y="431.50">all..</text></g><g><title>core::ptr::write (533,292,093 samples, 0.16%)</title><rect x="96.3100%" y="405" width="0.1649%" height="15" fill="rgb(251,164,9)" fg:x="311481065854" fg:w="533292093"/><text x="96.5600%" y="415.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (512,685,034 samples, 0.16%)</title><rect x="97.1848%" y="421" width="0.1585%" height="15" fill="rgb(233,194,0)" fg:x="314310430277" fg:w="512685034"/><text x="97.4348%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (429,887,813 samples, 0.13%)</title><rect x="97.2104%" y="405" width="0.1329%" height="15" fill="rgb(249,111,24)" fg:x="314393227498" fg:w="429887813"/><text x="97.4604%" y="415.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (37,418,928,123 samples, 11.57%)</title><rect x="85.8297%" y="469" width="11.5699%" height="15" fill="rgb(250,223,3)" fg:x="277586316390" fg:w="37418928123"/><text x="86.0797%" y="479.50">alloc::collection..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;alloc::collections::btree::node::marker::Dying,K,V&gt;::deallocating_next_unchecked (14,088,886,528 samples, 4.36%)</title><rect x="93.0434%" y="453" width="4.3563%" height="15" fill="rgb(236,178,37)" fg:x="300916357985" fg:w="14088886528"/><text x="93.2934%" y="463.50">alloc..</text></g><g><title>alloc::collections::btree::navigate::LazyLeafRange&lt;BorrowType,K,V&gt;::init_front (2,990,886,566 samples, 0.92%)</title><rect x="96.4749%" y="437" width="0.9248%" height="15" fill="rgb(241,158,50)" fg:x="312014357947" fg:w="2990886566"/><text x="96.7249%" y="447.50"></text></g><g><title>core::ptr::read (182,129,202 samples, 0.06%)</title><rect x="97.3433%" y="421" width="0.0563%" height="15" fill="rgb(213,121,41)" fg:x="314823115311" fg:w="182129202"/><text x="97.5933%" y="431.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::first_leaf_edge (273,265,861 samples, 0.08%)</title><rect x="97.4443%" y="421" width="0.0845%" height="15" fill="rgb(240,92,3)" fg:x="315149618195" fg:w="273265861"/><text x="97.6943%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (264,974,675 samples, 0.08%)</title><rect x="97.4468%" y="405" width="0.0819%" height="15" fill="rgb(205,123,3)" fg:x="315157909381" fg:w="264974675"/><text x="97.6968%" y="415.50"></text></g><g><title>core::option::Option&lt;T&gt;::as_ref (434,239,159 samples, 0.13%)</title><rect x="97.5377%" y="421" width="0.1343%" height="15" fill="rgb(205,97,47)" fg:x="315451852284" fg:w="434239159"/><text x="97.7877%" y="431.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::first (1,182,901,648 samples, 0.37%)</title><rect x="97.4443%" y="453" width="0.3658%" height="15" fill="rgb(247,152,14)" fg:x="315149618195" fg:w="1182901648"/><text x="97.6943%" y="463.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::first_key_value (1,182,901,648 samples, 0.37%)</title><rect x="97.4443%" y="437" width="0.3658%" height="15" fill="rgb(248,195,53)" fg:x="315149618195" fg:w="1182901648"/><text x="97.6943%" y="447.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (446,428,400 samples, 0.14%)</title><rect x="97.6720%" y="421" width="0.1380%" height="15" fill="rgb(226,201,16)" fg:x="315886091443" fg:w="446428400"/><text x="97.9220%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::last_edge (401,408,920 samples, 0.12%)</title><rect x="97.8177%" y="405" width="0.1241%" height="15" fill="rgb(205,98,0)" fg:x="316357310797" fg:w="401408920"/><text x="98.0677%" y="415.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,Type&gt;::len (401,408,920 samples, 0.12%)</title><rect x="97.8177%" y="389" width="0.1241%" height="15" fill="rgb(214,191,48)" fg:x="316357310797" fg:w="401408920"/><text x="98.0677%" y="399.50"></text></g><g><title>alloc::collections::btree::navigate::&lt;impl alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;&gt;::last_leaf_edge (653,493,611 samples, 0.20%)</title><rect x="97.8113%" y="421" width="0.2021%" height="15" fill="rgb(237,112,39)" fg:x="316336658937" fg:w="653493611"/><text x="98.0613%" y="431.50"></text></g><g><title>alloc::collections::btree::node::NodeRef&lt;BorrowType,K,V,alloc::collections::btree::node::marker::LeafOrInternal&gt;::force (231,432,831 samples, 0.07%)</title><rect x="97.9418%" y="405" width="0.0716%" height="15" fill="rgb(247,203,27)" fg:x="316758719717" fg:w="231432831"/><text x="98.1918%" y="415.50"></text></g><g><title>alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt;::last_key_value (839,562,991 samples, 0.26%)</title><rect x="97.8113%" y="437" width="0.2596%" height="15" fill="rgb(235,124,28)" fg:x="316336658937" fg:w="839562991"/><text x="98.0613%" y="447.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (186,069,380 samples, 0.06%)</title><rect x="98.0134%" y="421" width="0.0575%" height="15" fill="rgb(208,207,46)" fg:x="316990152548" fg:w="186069380"/><text x="98.2634%" y="431.50"></text></g><g><title>core::ops::function::FnOnce::call_once (186,069,380 samples, 0.06%)</title><rect x="98.0134%" y="405" width="0.0575%" height="15" fill="rgb(234,176,4)" fg:x="316990152548" fg:w="186069380"/><text x="98.2634%" y="415.50"></text></g><g><title>alloc::collections::btree::node::Handle&lt;alloc::collections::btree::node::NodeRef&lt;alloc::collections::btree::node::marker::Immut,K,V,NodeType&gt;,alloc::collections::btree::node::marker::KV&gt;::into_kv (186,069,380 samples, 0.06%)</title><rect x="98.0134%" y="389" width="0.0575%" height="15" fill="rgb(230,133,28)" fg:x="316990152548" fg:w="186069380"/><text x="98.2634%" y="399.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::get_unchecked (186,069,380 samples, 0.06%)</title><rect x="98.0134%" y="373" width="0.0575%" height="15" fill="rgb(211,137,40)" fg:x="316990152548" fg:w="186069380"/><text x="98.2634%" y="383.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (186,069,380 samples, 0.06%)</title><rect x="98.0134%" y="357" width="0.0575%" height="15" fill="rgb(254,35,13)" fg:x="316990152548" fg:w="186069380"/><text x="98.2634%" y="367.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::intersection (2,179,247,967 samples, 0.67%)</title><rect x="97.3996%" y="469" width="0.6738%" height="15" fill="rgb(225,49,51)" fg:x="315005244513" fg:w="2179247967"/><text x="97.6496%" y="479.50"></text></g><g><title>alloc::collections::btree::set::BTreeSet&lt;T,A&gt;::last (847,833,543 samples, 0.26%)</title><rect x="97.8113%" y="453" width="0.2622%" height="15" fill="rgb(251,10,15)" fg:x="316336658937" fg:w="847833543"/><text x="98.0613%" y="463.50"></text></g><g><title>[libc.so.6] (144,998,056 samples, 0.04%)</title><rect x="98.1102%" y="357" width="0.0448%" height="15" fill="rgb(228,207,15)" fg:x="317303447127" fg:w="144998056"/><text x="98.3602%" y="367.50"></text></g><g><title>alloc::raw_vec::finish_grow (264,318,300 samples, 0.08%)</title><rect x="98.0798%" y="469" width="0.0817%" height="15" fill="rgb(241,99,19)" fg:x="317204856931" fg:w="264318300"/><text x="98.3298%" y="479.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (260,595,441 samples, 0.08%)</title><rect x="98.0809%" y="453" width="0.0806%" height="15" fill="rgb(207,104,49)" fg:x="317208579790" fg:w="260595441"/><text x="98.3309%" y="463.50"></text></g><g><title>alloc::alloc::Global::grow_impl (260,595,441 samples, 0.08%)</title><rect x="98.0809%" y="437" width="0.0806%" height="15" fill="rgb(234,99,18)" fg:x="317208579790" fg:w="260595441"/><text x="98.3309%" y="447.50"></text></g><g><title>alloc::alloc::realloc (260,595,441 samples, 0.08%)</title><rect x="98.0809%" y="421" width="0.0806%" height="15" fill="rgb(213,191,49)" fg:x="317208579790" fg:w="260595441"/><text x="98.3309%" y="431.50"></text></g><g><title>realloc (260,595,441 samples, 0.08%)</title><rect x="98.0809%" y="405" width="0.0806%" height="15" fill="rgb(210,226,19)" fg:x="317208579790" fg:w="260595441"/><text x="98.3309%" y="415.50"></text></g><g><title>[libc.so.6] (256,695,673 samples, 0.08%)</title><rect x="98.0821%" y="389" width="0.0794%" height="15" fill="rgb(229,97,18)" fg:x="317212479558" fg:w="256695673"/><text x="98.3321%" y="399.50"></text></g><g><title>[libc.so.6] (256,695,673 samples, 0.08%)</title><rect x="98.0821%" y="373" width="0.0794%" height="15" fill="rgb(211,167,15)" fg:x="317212479558" fg:w="256695673"/><text x="98.3321%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;petgraph::graph_impl::Edge&lt;rsprocess::label::Label&gt;&gt;&gt; (45,696,134 samples, 0.01%)</title><rect x="98.1733%" y="437" width="0.0141%" height="15" fill="rgb(210,169,34)" fg:x="317507444988" fg:w="45696134"/><text x="98.4233%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (45,696,134 samples, 0.01%)</title><rect x="98.1733%" y="421" width="0.0141%" height="15" fill="rgb(241,121,31)" fg:x="317507444988" fg:w="45696134"/><text x="98.4233%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;[petgraph::graph_impl::Edge&lt;rsprocess::label::Label&gt;]&gt; (45,696,134 samples, 0.01%)</title><rect x="98.1733%" y="405" width="0.0141%" height="15" fill="rgb(232,40,11)" fg:x="317507444988" fg:w="45696134"/><text x="98.4233%" y="415.50"></text></g><g><title>alloc::collections::btree::map::IntoIter&lt;K,V,A&gt;::dying_next (45,696,134 samples, 0.01%)</title><rect x="98.1733%" y="389" width="0.0141%" height="15" fill="rgb(205,86,26)" fg:x="317507444988" fg:w="45696134"/><text x="98.4233%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;petgraph::graph_impl::Graph&lt;rsprocess::system::System,rsprocess::label::Label&gt;&gt; (86,171,854 samples, 0.03%)</title><rect x="98.1733%" y="453" width="0.0266%" height="15" fill="rgb(231,126,28)" fg:x="317507444988" fg:w="86171854"/><text x="98.4233%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;petgraph::graph_impl::Node&lt;rsprocess::system::System&gt;&gt;&gt; (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="437" width="0.0125%" height="15" fill="rgb(219,221,18)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;petgraph::graph_impl::Node&lt;rsprocess::system::System&gt;&gt;&gt; (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="421" width="0.0125%" height="15" fill="rgb(211,40,0)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="431.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="405" width="0.0125%" height="15" fill="rgb(239,85,43)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::deallocate (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="389" width="0.0125%" height="15" fill="rgb(231,55,21)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="399.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="373" width="0.0125%" height="15" fill="rgb(225,184,43)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="383.50"></text></g><g><title>alloc::alloc::dealloc (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="357" width="0.0125%" height="15" fill="rgb(251,158,41)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="367.50"></text></g><g><title>[libc.so.6] (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="341" width="0.0125%" height="15" fill="rgb(234,159,37)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="351.50"></text></g><g><title>[libc.so.6] (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="325" width="0.0125%" height="15" fill="rgb(216,204,22)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="335.50"></text></g><g><title>[libc.so.6] (40,475,720 samples, 0.01%)</title><rect x="98.1875%" y="309" width="0.0125%" height="15" fill="rgb(214,17,3)" fg:x="317553141122" fg:w="40475720"/><text x="98.4375%" y="319.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::process::Process&gt; (33,125,023 samples, 0.01%)</title><rect x="98.2000%" y="453" width="0.0102%" height="15" fill="rgb(212,111,17)" fg:x="317593616842" fg:w="33125023"/><text x="98.4500%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::sync::Arc&lt;rsprocess::process::Process&gt;&gt;&gt; (33,125,023 samples, 0.01%)</title><rect x="98.2000%" y="437" width="0.0102%" height="15" fill="rgb(221,157,24)" fg:x="317593616842" fg:w="33125023"/><text x="98.4500%" y="447.50"></text></g><g><title>alloc::sync::Arc&lt;T,A&gt;::drop_slow (165,853,537 samples, 0.05%)</title><rect x="98.1615%" y="469" width="0.0513%" height="15" fill="rgb(252,16,13)" fg:x="317469175231" fg:w="165853537"/><text x="98.4115%" y="479.50"></text></g><g><title>&lt;core::iter::adapters::peekable::Peekable&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (78,685,427 samples, 0.02%)</title><rect x="98.3023%" y="373" width="0.0243%" height="15" fill="rgb(221,62,2)" fg:x="317924615122" fg:w="78685427"/><text x="98.5523%" y="383.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (78,685,427 samples, 0.02%)</title><rect x="98.3023%" y="357" width="0.0243%" height="15" fill="rgb(247,87,22)" fg:x="317924615122" fg:w="78685427"/><text x="98.5523%" y="367.50"></text></g><g><title>core::intrinsics::unlikely (78,685,427 samples, 0.02%)</title><rect x="98.3023%" y="341" width="0.0243%" height="15" fill="rgb(215,73,9)" fg:x="317924615122" fg:w="78685427"/><text x="98.5523%" y="351.50"></text></g><g><title>core::iter::traits::exact_size::ExactSizeIterator::len (240,002,054 samples, 0.07%)</title><rect x="98.2678%" y="389" width="0.0742%" height="15" fill="rgb(207,175,33)" fg:x="317812967496" fg:w="240002054"/><text x="98.5178%" y="399.50"></text></g><g><title>&lt;core::option::Option&lt;T&gt; as core::cmp::PartialEq&gt;::eq (49,669,001 samples, 0.02%)</title><rect x="98.3266%" y="373" width="0.0154%" height="15" fill="rgb(243,129,54)" fg:x="318003300549" fg:w="49669001"/><text x="98.5766%" y="383.50"></text></g><g><title>&lt;core::iter::adapters::copied::Copied&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (289,572,303 samples, 0.09%)</title><rect x="98.2563%" y="421" width="0.0895%" height="15" fill="rgb(227,119,45)" fg:x="317775706023" fg:w="289572303"/><text x="98.5063%" y="431.50"></text></g><g><title>&lt;alloc::collections::btree::set::Difference&lt;T,A&gt; as core::iter::traits::iterator::Iterator&gt;::size_hint (289,572,303 samples, 0.09%)</title><rect x="98.2563%" y="405" width="0.0895%" height="15" fill="rgb(205,109,36)" fg:x="317775706023" fg:w="289572303"/><text x="98.5063%" y="415.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1,629,013,462 samples, 0.50%)</title><rect x="98.3714%" y="341" width="0.5037%" height="15" fill="rgb(205,6,39)" fg:x="318148085677" fg:w="1629013462"/><text x="98.6214%" y="351.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1,629,013,462 samples, 0.50%)</title><rect x="98.3714%" y="325" width="0.5037%" height="15" fill="rgb(221,32,16)" fg:x="318148085677" fg:w="1629013462"/><text x="98.6214%" y="335.50"></text></g><g><title>alloc::alloc::alloc (1,629,013,462 samples, 0.50%)</title><rect x="98.3714%" y="309" width="0.5037%" height="15" fill="rgb(228,144,50)" fg:x="318148085677" fg:w="1629013462"/><text x="98.6214%" y="319.50"></text></g><g><title>malloc (1,401,495,710 samples, 0.43%)</title><rect x="98.4418%" y="293" width="0.4333%" height="15" fill="rgb(229,201,53)" fg:x="318375603429" fg:w="1401495710"/><text x="98.6918%" y="303.50"></text></g><g><title>__rustc::__rust_no_alloc_shim_is_unstable_v2 (144,821,841 samples, 0.04%)</title><rect x="98.8751%" y="341" width="0.0448%" height="15" fill="rgb(249,153,27)" fg:x="319777099139" fg:w="144821841"/><text x="99.1251%" y="351.50"></text></g><g><title>core::intrinsics::unlikely (291,813,719 samples, 0.09%)</title><rect x="98.9199%" y="277" width="0.0902%" height="15" fill="rgb(227,106,25)" fg:x="319921920980" fg:w="291813719"/><text x="99.1699%" y="287.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2,413,067,857 samples, 0.75%)</title><rect x="98.3458%" y="421" width="0.7461%" height="15" fill="rgb(230,65,29)" fg:x="318065278326" fg:w="2413067857"/><text x="98.5958%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2,413,067,857 samples, 0.75%)</title><rect x="98.3458%" y="405" width="0.7461%" height="15" fill="rgb(221,57,46)" fg:x="318065278326" fg:w="2413067857"/><text x="98.5958%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2,413,067,857 samples, 0.75%)</title><rect x="98.3458%" y="389" width="0.7461%" height="15" fill="rgb(229,161,17)" fg:x="318065278326" fg:w="2413067857"/><text x="98.5958%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::with_capacity_in (2,413,067,857 samples, 0.75%)</title><rect x="98.3458%" y="373" width="0.7461%" height="15" fill="rgb(222,213,11)" fg:x="318065278326" fg:w="2413067857"/><text x="98.5958%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVecInner&lt;A&gt;::try_allocate_in (2,413,067,857 samples, 0.75%)</title><rect x="98.3458%" y="357" width="0.7461%" height="15" fill="rgb(235,35,13)" fg:x="318065278326" fg:w="2413067857"/><text x="98.5958%" y="367.50"></text></g><g><title>alloc::raw_vec::layout_array (556,425,203 samples, 0.17%)</title><rect x="98.9199%" y="341" width="0.1720%" height="15" fill="rgb(233,158,34)" fg:x="319921920980" fg:w="556425203"/><text x="99.1699%" y="351.50"></text></g><g><title>core::alloc::layout::Layout::repeat (556,425,203 samples, 0.17%)</title><rect x="98.9199%" y="325" width="0.1720%" height="15" fill="rgb(215,151,48)" fg:x="319921920980" fg:w="556425203"/><text x="99.1699%" y="335.50"></text></g><g><title>core::alloc::layout::Layout::repeat_packed (556,425,203 samples, 0.17%)</title><rect x="98.9199%" y="309" width="0.1720%" height="15" fill="rgb(229,84,14)" fg:x="319921920980" fg:w="556425203"/><text x="99.1699%" y="319.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (556,425,203 samples, 0.17%)</title><rect x="98.9199%" y="293" width="0.1720%" height="15" fill="rgb(229,68,14)" fg:x="319921920980" fg:w="556425203"/><text x="99.1699%" y="303.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (264,611,484 samples, 0.08%)</title><rect x="99.0101%" y="277" width="0.0818%" height="15" fill="rgb(243,106,26)" fg:x="320213734699" fg:w="264611484"/><text x="99.2601%" y="287.50"></text></g><g><title>core::cmp::max (124,217,710 samples, 0.04%)</title><rect x="99.0919%" y="421" width="0.0384%" height="15" fill="rgb(206,45,38)" fg:x="320478346183" fg:w="124217710"/><text x="99.3419%" y="431.50"></text></g><g><title>core::cmp::Ord::max (124,217,710 samples, 0.04%)</title><rect x="99.0919%" y="405" width="0.0384%" height="15" fill="rgb(226,6,15)" fg:x="320478346183" fg:w="124217710"/><text x="99.3419%" y="415.50"></text></g><g><title>anon.a8034a099c7bdf771447e28c89ac7fdd.1.llvm.13230301628104807196 (3,100,044,287 samples, 0.96%)</title><rect x="98.2128%" y="469" width="0.9585%" height="15" fill="rgb(232,22,54)" fg:x="317635028768" fg:w="3100044287"/><text x="98.4628%" y="479.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 (3,100,044,287 samples, 0.96%)</title><rect x="98.2128%" y="453" width="0.9585%" height="15" fill="rgb(229,222,32)" fg:x="317635028768" fg:w="3100044287"/><text x="98.4628%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter_nested::SpecFromIterNested&lt;T,I&gt;&gt;::from_iter (3,100,044,287 samples, 0.96%)</title><rect x="98.2128%" y="437" width="0.9585%" height="15" fill="rgb(228,62,29)" fg:x="317635028768" fg:w="3100044287"/><text x="98.4628%" y="447.50"></text></g><g><title>core::num::&lt;impl usize&gt;::saturating_add (132,509,162 samples, 0.04%)</title><rect x="99.1303%" y="421" width="0.0410%" height="15" fill="rgb(251,103,34)" fg:x="320602563893" fg:w="132509162"/><text x="99.3803%" y="431.50"></text></g><g><title>core::mem::drop (136,905,036 samples, 0.04%)</title><rect x="99.1816%" y="373" width="0.0423%" height="15" fill="rgb(233,12,30)" fg:x="320768366175" fg:w="136905036"/><text x="99.4316%" y="383.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::IntoIter&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (136,905,036 samples, 0.04%)</title><rect x="99.1816%" y="357" width="0.0423%" height="15" fill="rgb(238,52,0)" fg:x="320768366175" fg:w="136905036"/><text x="99.4316%" y="367.50"></text></g><g><title>&lt;alloc::collections::btree::map::IntoIter&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (136,905,036 samples, 0.04%)</title><rect x="99.1816%" y="341" width="0.0423%" height="15" fill="rgb(223,98,5)" fg:x="320768366175" fg:w="136905036"/><text x="99.4316%" y="351.50"></text></g><g><title>core::ptr::drop_in_place&lt;petgraph::graph_impl::Edge&lt;rsprocess::label::Label&gt;&gt; (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="469" width="0.0475%" height="15" fill="rgb(228,75,37)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::label::Label&gt; (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="453" width="0.0475%" height="15" fill="rgb(205,115,49)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::set::Set&gt; (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="437" width="0.0475%" height="15" fill="rgb(250,154,43)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::set::BTreeSet&lt;u32&gt;&gt; (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="421" width="0.0475%" height="15" fill="rgb(226,43,29)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::collections::btree::map::BTreeMap&lt;u32,alloc::collections::btree::set_val::SetValZST&gt;&gt; (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="405" width="0.0475%" height="15" fill="rgb(249,228,39)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="415.50"></text></g><g><title>&lt;alloc::collections::btree::map::BTreeMap&lt;K,V,A&gt; as core::ops::drop::Drop&gt;::drop (153,476,566 samples, 0.05%)</title><rect x="99.1778%" y="389" width="0.0475%" height="15" fill="rgb(216,79,43)" fg:x="320755922883" fg:w="153476566"/><text x="99.4278%" y="399.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,330,364 samples, 0.01%)</title><rect x="99.2303%" y="437" width="0.0128%" height="15" fill="rgb(228,95,12)" fg:x="320925988132" fg:w="41330364"/><text x="99.4803%" y="447.50"></text></g><g><title>core::ptr::drop_in_place&lt;[alloc::sync::Arc&lt;rsprocess::process::Process&gt;]&gt; (41,330,364 samples, 0.01%)</title><rect x="99.2303%" y="421" width="0.0128%" height="15" fill="rgb(249,221,15)" fg:x="320925988132" fg:w="41330364"/><text x="99.4803%" y="431.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;rsprocess::process::Process&gt;&gt; (41,330,364 samples, 0.01%)</title><rect x="99.2303%" y="405" width="0.0128%" height="15" fill="rgb(233,34,13)" fg:x="320925988132" fg:w="41330364"/><text x="99.4803%" y="415.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,330,364 samples, 0.01%)</title><rect x="99.2303%" y="389" width="0.0128%" height="15" fill="rgb(214,103,39)" fg:x="320925988132" fg:w="41330364"/><text x="99.4803%" y="399.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::process::Process&gt; (53,766,621 samples, 0.02%)</title><rect x="99.2278%" y="469" width="0.0166%" height="15" fill="rgb(251,126,39)" fg:x="320917701584" fg:w="53766621"/><text x="99.4778%" y="479.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::sync::Arc&lt;rsprocess::process::Process&gt;&gt;&gt; (45,480,073 samples, 0.01%)</title><rect x="99.2303%" y="453" width="0.0141%" height="15" fill="rgb(214,216,36)" fg:x="320925988132" fg:w="45480073"/><text x="99.4803%" y="463.50"></text></g><g><title>&lt;usize as core::iter::range::Step&gt;::forward_unchecked (45,544,698 samples, 0.01%)</title><rect x="99.3892%" y="405" width="0.0141%" height="15" fill="rgb(220,221,8)" fg:x="321439857205" fg:w="45544698"/><text x="99.6392%" y="415.50"></text></g><g><title>core::num::&lt;impl usize&gt;::unchecked_add (45,544,698 samples, 0.01%)</title><rect x="99.3892%" y="389" width="0.0141%" height="15" fill="rgb(240,216,3)" fg:x="321439857205" fg:w="45544698"/><text x="99.6392%" y="399.50"></text></g><g><title>core::iter::range::&lt;impl core::iter::traits::iterator::Iterator for core::ops::range::Range&lt;A&gt;&gt;::next (86,914,592 samples, 0.03%)</title><rect x="99.3892%" y="437" width="0.0269%" height="15" fill="rgb(232,218,17)" fg:x="321439857205" fg:w="86914592"/><text x="99.6392%" y="447.50"></text></g><g><title>&lt;core::ops::range::Range&lt;T&gt; as core::iter::range::RangeIteratorImpl&gt;::spec_next (86,914,592 samples, 0.03%)</title><rect x="99.3892%" y="421" width="0.0269%" height="15" fill="rgb(229,163,45)" fg:x="321439857205" fg:w="86914592"/><text x="99.6392%" y="431.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for usize&gt;::lt (41,369,894 samples, 0.01%)</title><rect x="99.4033%" y="405" width="0.0128%" height="15" fill="rgb(231,110,42)" fg:x="321485401903" fg:w="41369894"/><text x="99.6533%" y="415.50"></text></g><g><title>core::slice::sort::shared::smallsort::merge_down (107,523,340 samples, 0.03%)</title><rect x="99.4251%" y="437" width="0.0332%" height="15" fill="rgb(208,170,48)" fg:x="321555755216" fg:w="107523340"/><text x="99.6751%" y="447.50"></text></g><g><title>core::slice::sort::shared::smallsort::small_sort_general_with_scratch (741,386,678 samples, 0.23%)</title><rect x="99.2470%" y="469" width="0.2292%" height="15" fill="rgb(239,116,25)" fg:x="320979760600" fg:w="741386678"/><text x="99.4970%" y="479.50"></text></g><g><title>core::slice::sort::shared::smallsort::bidirectional_merge (318,453,117 samples, 0.10%)</title><rect x="99.3777%" y="453" width="0.0985%" height="15" fill="rgb(219,200,50)" fg:x="321402694161" fg:w="318453117"/><text x="99.6277%" y="463.50"></text></g><g><title>core::slice::sort::shared::smallsort::merge_up (57,868,722 samples, 0.02%)</title><rect x="99.4583%" y="437" width="0.0179%" height="15" fill="rgb(245,200,0)" fg:x="321663278556" fg:w="57868722"/><text x="99.7083%" y="447.50"></text></g><g><title>core::ptr::copy_nonoverlapping (33,016,963 samples, 0.01%)</title><rect x="99.4660%" y="421" width="0.0102%" height="15" fill="rgb(245,119,33)" fg:x="321688130315" fg:w="33016963"/><text x="99.7160%" y="431.50"></text></g><g><title>core::slice::sort::stable::drift::DriftsortRun::len (57,939,414 samples, 0.02%)</title><rect x="99.5466%" y="453" width="0.0179%" height="15" fill="rgb(231,125,12)" fg:x="321948751651" fg:w="57939414"/><text x="99.7966%" y="463.50"></text></g><g><title>core::slice::sort::stable::drift::sort (587,359,039 samples, 0.18%)</title><rect x="99.4762%" y="469" width="0.1816%" height="15" fill="rgb(216,96,41)" fg:x="321721147278" fg:w="587359039"/><text x="99.7262%" y="479.50"></text></g><g><title>core::slice::sort::stable::drift::merge_tree_depth (301,815,252 samples, 0.09%)</title><rect x="99.5645%" y="453" width="0.0933%" height="15" fill="rgb(248,43,45)" fg:x="322006691065" fg:w="301815252"/><text x="99.8145%" y="463.50"></text></g><g><title>core::slice::sort::stable::driftsort_main (260,895,160 samples, 0.08%)</title><rect x="99.6578%" y="469" width="0.0807%" height="15" fill="rgb(217,222,7)" fg:x="322308506317" fg:w="260895160"/><text x="99.9078%" y="479.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (144,711,650 samples, 0.04%)</title><rect x="99.7385%" y="469" width="0.0447%" height="15" fill="rgb(233,28,6)" fg:x="322569401477" fg:w="144711650"/><text x="99.9885%" y="479.50"></text></g><g><title>[libc.so.6] (399,668,677 samples, 0.12%)</title><rect x="99.7832%" y="437" width="0.1236%" height="15" fill="rgb(231,218,15)" fg:x="322714113127" fg:w="399668677"/><text x="100.0332%" y="447.50"></text></g><g><title>[libc.so.6] (399,668,677 samples, 0.12%)</title><rect x="99.7832%" y="421" width="0.1236%" height="15" fill="rgb(226,171,48)" fg:x="322714113127" fg:w="399668677"/><text x="100.0332%" y="431.50"></text></g><g><title>[libc.so.6] (399,668,677 samples, 0.12%)</title><rect x="99.7832%" y="405" width="0.1236%" height="15" fill="rgb(235,201,9)" fg:x="322714113127" fg:w="399668677"/><text x="100.0332%" y="415.50"></text></g><g><title>[libc.so.6] (251,857,951 samples, 0.08%)</title><rect x="99.8289%" y="389" width="0.0779%" height="15" fill="rgb(217,80,15)" fg:x="322861923853" fg:w="251857951"/><text x="100.0789%" y="399.50"></text></g><g><title>execution::presets::run (399,673,467 samples, 0.12%)</title><rect x="99.7832%" y="469" width="0.1236%" height="15" fill="rgb(219,152,8)" fg:x="322714113127" fg:w="399673467"/><text x="100.0332%" y="479.50"></text></g><g><title>execution::presets::execute (399,673,467 samples, 0.12%)</title><rect x="99.7832%" y="453" width="0.1236%" height="15" fill="rgb(243,107,38)" fg:x="322714113127" fg:w="399673467"/><text x="100.0332%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;rsprocess::system::System&gt; (37,227,642 samples, 0.01%)</title><rect x="99.9081%" y="453" width="0.0115%" height="15" fill="rgb(231,17,5)" fg:x="323117929108" fg:w="37227642"/><text x="100.1581%" y="463.50"></text></g><g><title>hashbrown::rustc_entry::&lt;impl hashbrown::map::HashMap&lt;K,V,S,A&gt;&gt;::rustc_entry (70,184,000 samples, 0.02%)</title><rect x="99.9068%" y="469" width="0.0217%" height="15" fill="rgb(209,25,54)" fg:x="323113786595" fg:w="70184000"/><text x="100.1568%" y="479.50"></text></g><g><title>petgraph::graph_impl::Graph&lt;N,E,Ty,Ix&gt;::map (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="469" width="0.0131%" height="15" fill="rgb(219,0,2)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::iter::traits::collect::Extend&lt;T&gt;&gt;::extend (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="453" width="0.0131%" height="15" fill="rgb(246,9,5)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as alloc::vec::spec_extend::SpecExtend&lt;T,I&gt;&gt;::spec_extend (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="437" width="0.0131%" height="15" fill="rgb(226,159,4)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_trusted (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="421" width="0.0131%" height="15" fill="rgb(219,175,34)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="431.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="405" width="0.0131%" height="15" fill="rgb(236,10,46)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="415.50"></text></g><g><title>&lt;core::iter::adapters::map::Map&lt;I,F&gt; as core::iter::traits::iterator::Iterator&gt;::fold (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="389" width="0.0131%" height="15" fill="rgb(240,211,16)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="399.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::fold (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="373" width="0.0131%" height="15" fill="rgb(205,3,43)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="383.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::fold (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="357" width="0.0131%" height="15" fill="rgb(245,7,22)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="367.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::fold::enumerate::{{closure}} (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="341" width="0.0131%" height="15" fill="rgb(239,132,32)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="351.50"></text></g><g><title>core::iter::adapters::map::map_fold::{{closure}} (42,340,328 samples, 0.01%)</title><rect x="99.9323%" y="325" width="0.0131%" height="15" fill="rgb(228,202,34)" fg:x="323196367697" fg:w="42340328"/><text x="100.1823%" y="335.50"></text></g><g><title>regex_syntax::ast::parse::ParserI&lt;P&gt;::pop_class_op (61,985,468 samples, 0.02%)</title><rect x="99.9454%" y="469" width="0.0192%" height="15" fill="rgb(254,200,22)" fg:x="323238708025" fg:w="61985468"/><text x="100.1954%" y="479.50"></text></g><g><title>core::slice::sort::stable::quicksort::quicksort (61,985,468 samples, 0.02%)</title><rect x="99.9454%" y="453" width="0.0192%" height="15" fill="rgb(219,10,39)" fg:x="323238708025" fg:w="61985468"/><text x="100.1954%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::sync::Arc&lt;alloc::vec::Vec&lt;rsprocess::reaction::Reaction&gt;&gt;&gt; (41,341,905 samples, 0.01%)</title><rect x="99.9834%" y="453" width="0.0128%" height="15" fill="rgb(226,210,39)" fg:x="323361448556" fg:w="41341905"/><text x="100.2334%" y="463.50"></text></g><g><title>&lt;alloc::sync::Arc&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (41,341,905 samples, 0.01%)</title><rect x="99.9834%" y="437" width="0.0128%" height="15" fill="rgb(208,219,16)" fg:x="323361448556" fg:w="41341905"/><text x="100.2334%" y="447.50"></text></g><g><title>all (323,415,197,143 samples, 100%)</title><rect x="0.0000%" y="501" width="100.0000%" height="15" fill="rgb(216,158,51)" fg:x="0" fg:w="323415197143"/><text x="0.2500%" y="511.50"></text></g><g><title>analysis (323,415,197,143 samples, 100.00%)</title><rect x="0.0000%" y="485" width="100.0000%" height="15" fill="rgb(233,14,44)" fg:x="0" fg:w="323415197143"/><text x="0.2500%" y="495.50">analysis</text></g><g><title>rsprocess::system::System::from (99,260,229 samples, 0.03%)</title><rect x="99.9693%" y="469" width="0.0307%" height="15" fill="rgb(237,97,39)" fg:x="323315936914" fg:w="99260229"/><text x="100.2193%" y="479.50"></text></g></svg></svg>