Skip to content

Instantly share code, notes, and snippets.

@ToucheSir
Created August 5, 2021 02:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ToucheSir/36c17f12779cb34d3c35598cddcf323c to your computer and use it in GitHub Desktop.
Save ToucheSir/36c17f12779cb34d3c35598cddcf323c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
<?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="982" onload="init(evt)" viewBox="0 0 1200 982" 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:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { 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;
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");
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.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
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 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 (/^ *\$/.test(txt) || 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;
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);
update_text(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);
update_text(e);
}
}
}
}
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(el[i]);
}
}
// 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="982" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="965.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="965.00"> </text><svg id="frames" x="10" width="1180" total_samples="5531"><g><title>perf (5 samples, 0.09%)</title><rect x="0.0000%" y="917" width="0.0904%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="5"/><text x="0.2500%" y="927.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="901" width="0.0904%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="5"/><text x="0.2500%" y="911.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="885" width="0.0904%" height="15" fill="rgb(221,193,54)" fg:x="0" fg:w="5"/><text x="0.2500%" y="895.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="869" width="0.0904%" height="15" fill="rgb(248,212,6)" fg:x="0" fg:w="5"/><text x="0.2500%" y="879.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="853" width="0.0904%" height="15" fill="rgb(208,68,35)" fg:x="0" fg:w="5"/><text x="0.2500%" y="863.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="837" width="0.0904%" height="15" fill="rgb(232,128,0)" fg:x="0" fg:w="5"/><text x="0.2500%" y="847.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="821" width="0.0904%" height="15" fill="rgb(207,160,47)" fg:x="0" fg:w="5"/><text x="0.2500%" y="831.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="805" width="0.0904%" height="15" fill="rgb(228,23,34)" fg:x="0" fg:w="5"/><text x="0.2500%" y="815.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="789" width="0.0904%" height="15" fill="rgb(218,30,26)" fg:x="0" fg:w="5"/><text x="0.2500%" y="799.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="773" width="0.0904%" height="15" fill="rgb(220,122,19)" fg:x="0" fg:w="5"/><text x="0.2500%" y="783.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="757" width="0.0904%" height="15" fill="rgb(250,228,42)" fg:x="0" fg:w="5"/><text x="0.2500%" y="767.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="741" width="0.0904%" height="15" fill="rgb(240,193,28)" fg:x="0" fg:w="5"/><text x="0.2500%" y="751.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="725" width="0.0904%" height="15" fill="rgb(216,20,37)" fg:x="0" fg:w="5"/><text x="0.2500%" y="735.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="0.0000%" y="709" width="0.0904%" height="15" fill="rgb(206,188,39)" fg:x="0" fg:w="5"/><text x="0.2500%" y="719.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="0.0904%" y="901" width="0.0181%" height="15" fill="rgb(217,207,13)" fg:x="5" fg:w="1"/><text x="0.3404%" y="911.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (3 samples, 0.05%)</title><rect x="0.1085%" y="901" width="0.0542%" height="15" fill="rgb(231,73,38)" fg:x="6" fg:w="3"/><text x="0.3585%" y="911.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="0.1627%" y="901" width="0.0181%" height="15" fill="rgb(225,20,46)" fg:x="9" fg:w="1"/><text x="0.4127%" y="911.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (3 samples, 0.05%)</title><rect x="0.1808%" y="901" width="0.0542%" height="15" fill="rgb(210,31,41)" fg:x="10" fg:w="3"/><text x="0.4308%" y="911.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="0.2170%" y="885" width="0.0181%" height="15" fill="rgb(221,200,47)" fg:x="12" fg:w="1"/><text x="0.4670%" y="895.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="0.2170%" y="869" width="0.0181%" height="15" fill="rgb(226,26,5)" fg:x="12" fg:w="1"/><text x="0.4670%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::spec_from_iter::SpecFromIter&lt;T,I&gt;&gt;::from_iter (4 samples, 0.07%)</title><rect x="0.2350%" y="885" width="0.0723%" height="15" fill="rgb(249,33,26)" fg:x="13" fg:w="4"/><text x="0.4850%" y="895.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 (2 samples, 0.04%)</title><rect x="0.2712%" y="869" width="0.0362%" height="15" fill="rgb(235,183,28)" fg:x="15" fg:w="2"/><text x="0.5212%" y="879.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.04%)</title><rect x="0.2712%" y="853" width="0.0362%" height="15" fill="rgb(221,5,38)" fg:x="15" fg:w="2"/><text x="0.5212%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="0.2712%" y="837" width="0.0362%" height="15" fill="rgb(247,18,42)" fg:x="15" fg:w="2"/><text x="0.5212%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="0.2712%" y="821" width="0.0362%" height="15" fill="rgb(241,131,45)" fg:x="15" fg:w="2"/><text x="0.5212%" y="831.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="0.2712%" y="805" width="0.0362%" height="15" fill="rgb(249,31,29)" fg:x="15" fg:w="2"/><text x="0.5212%" y="815.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="0.2712%" y="789" width="0.0362%" height="15" fill="rgb(225,111,53)" fg:x="15" fg:w="2"/><text x="0.5212%" y="799.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="0.2712%" y="773" width="0.0362%" height="15" fill="rgb(238,160,17)" fg:x="15" fg:w="2"/><text x="0.5212%" y="783.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="0.2712%" y="757" width="0.0362%" height="15" fill="rgb(214,148,48)" fg:x="15" fg:w="2"/><text x="0.5212%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::string::String&gt;&gt; (1 samples, 0.02%)</title><rect x="0.3074%" y="821" width="0.0181%" height="15" fill="rgb(232,36,49)" fg:x="17" fg:w="1"/><text x="0.5574%" y="831.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="0.3074%" y="805" width="0.0181%" height="15" fill="rgb(209,103,24)" fg:x="17" fg:w="1"/><text x="0.5574%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;[alloc::string::String]&gt; (1 samples, 0.02%)</title><rect x="0.3074%" y="789" width="0.0181%" height="15" fill="rgb(229,88,8)" fg:x="17" fg:w="1"/><text x="0.5574%" y="799.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.02%)</title><rect x="0.3074%" y="773" width="0.0181%" height="15" fill="rgb(213,181,19)" fg:x="17" fg:w="1"/><text x="0.5574%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="0.3074%" y="757" width="0.0181%" height="15" fill="rgb(254,191,54)" fg:x="17" fg:w="1"/><text x="0.5574%" y="767.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="0.3074%" y="741" width="0.0181%" height="15" fill="rgb(241,83,37)" fg:x="17" fg:w="1"/><text x="0.5574%" y="751.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="0.3074%" y="725" width="0.0181%" height="15" fill="rgb(233,36,39)" fg:x="17" fg:w="1"/><text x="0.5574%" y="735.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="0.3074%" y="709" width="0.0181%" height="15" fill="rgb(226,3,54)" fg:x="17" fg:w="1"/><text x="0.5574%" y="719.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="0.3074%" y="693" width="0.0181%" height="15" fill="rgb(245,192,40)" fg:x="17" fg:w="1"/><text x="0.5574%" y="703.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (3 samples, 0.05%)</title><rect x="0.3074%" y="869" width="0.0542%" height="15" fill="rgb(238,167,29)" fg:x="17" fg:w="3"/><text x="0.5574%" y="879.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (3 samples, 0.05%)</title><rect x="0.3074%" y="853" width="0.0542%" height="15" fill="rgb(232,182,51)" fg:x="17" fg:w="3"/><text x="0.5574%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;(num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;)&gt; (3 samples, 0.05%)</title><rect x="0.3074%" y="837" width="0.0542%" height="15" fill="rgb(231,60,39)" fg:x="17" fg:w="3"/><text x="0.5574%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (2 samples, 0.04%)</title><rect x="0.3254%" y="821" width="0.0362%" height="15" fill="rgb(208,69,12)" fg:x="18" fg:w="2"/><text x="0.5754%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (2 samples, 0.04%)</title><rect x="0.3254%" y="805" width="0.0362%" height="15" fill="rgb(235,93,37)" fg:x="18" fg:w="2"/><text x="0.5754%" y="815.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (2 samples, 0.04%)</title><rect x="0.3254%" y="789" width="0.0362%" height="15" fill="rgb(213,116,39)" fg:x="18" fg:w="2"/><text x="0.5754%" y="799.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="0.3254%" y="773" width="0.0362%" height="15" fill="rgb(222,207,29)" fg:x="18" fg:w="2"/><text x="0.5754%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="0.3254%" y="757" width="0.0362%" height="15" fill="rgb(206,96,30)" fg:x="18" fg:w="2"/><text x="0.5754%" y="767.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="0.3254%" y="741" width="0.0362%" height="15" fill="rgb(218,138,4)" fg:x="18" fg:w="2"/><text x="0.5754%" y="751.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.07%)</title><rect x="0.3074%" y="885" width="0.0723%" height="15" fill="rgb(250,191,14)" fg:x="17" fg:w="4"/><text x="0.5574%" y="895.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::is_empty_singleton (1 samples, 0.02%)</title><rect x="0.3616%" y="869" width="0.0181%" height="15" fill="rgb(239,60,40)" fg:x="20" fg:w="1"/><text x="0.6116%" y="879.50"></text></g><g><title>&lt;std::io::Lines&lt;B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="0.3797%" y="885" width="0.0181%" height="15" fill="rgb(206,27,48)" fg:x="21" fg:w="1"/><text x="0.6297%" y="895.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="0.3978%" y="885" width="0.0181%" height="15" fill="rgb(225,35,8)" fg:x="22" fg:w="1"/><text x="0.6478%" y="895.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (3 samples, 0.05%)</title><rect x="0.4158%" y="885" width="0.0542%" height="15" fill="rgb(250,213,24)" fg:x="23" fg:w="3"/><text x="0.6658%" y="895.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.02%)</title><rect x="0.4520%" y="869" width="0.0181%" height="15" fill="rgb(247,123,22)" fg:x="25" fg:w="1"/><text x="0.7020%" y="879.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 (1 samples, 0.02%)</title><rect x="0.4520%" y="853" width="0.0181%" height="15" fill="rgb(231,138,38)" fg:x="25" fg:w="1"/><text x="0.7020%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (1 samples, 0.02%)</title><rect x="0.4520%" y="837" width="0.0181%" height="15" fill="rgb(231,145,46)" fg:x="25" fg:w="1"/><text x="0.7020%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="0.4520%" y="821" width="0.0181%" height="15" fill="rgb(251,118,11)" fg:x="25" fg:w="1"/><text x="0.7020%" y="831.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="0.4701%" y="885" width="0.0181%" height="15" fill="rgb(217,147,25)" fg:x="26" fg:w="1"/><text x="0.7201%" y="895.50"></text></g><g><title>__GI___libc_malloc (3 samples, 0.05%)</title><rect x="0.4882%" y="885" width="0.0542%" height="15" fill="rgb(247,81,37)" fg:x="27" fg:w="3"/><text x="0.7382%" y="895.50"></text></g><g><title>__libc_calloc (15 samples, 0.27%)</title><rect x="0.5424%" y="885" width="0.2712%" height="15" fill="rgb(209,12,38)" fg:x="30" fg:w="15"/><text x="0.7924%" y="895.50"></text></g><g><title>__libc_read (2 samples, 0.04%)</title><rect x="0.8136%" y="885" width="0.0362%" height="15" fill="rgb(227,1,9)" fg:x="45" fg:w="2"/><text x="1.0636%" y="895.50"></text></g><g><title>[unknown] (2 samples, 0.04%)</title><rect x="0.8136%" y="869" width="0.0362%" height="15" fill="rgb(248,47,43)" fg:x="45" fg:w="2"/><text x="1.0636%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="0.8498%" y="885" width="0.0181%" height="15" fill="rgb(221,10,30)" fg:x="47" fg:w="1"/><text x="1.0998%" y="895.50"></text></g><g><title>__rdl_alloc_zeroed (5 samples, 0.09%)</title><rect x="0.8678%" y="885" width="0.0904%" height="15" fill="rgb(210,229,1)" fg:x="48" fg:w="5"/><text x="1.1178%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (5 samples, 0.09%)</title><rect x="0.8678%" y="869" width="0.0904%" height="15" fill="rgb(222,148,37)" fg:x="48" fg:w="5"/><text x="1.1178%" y="879.50"></text></g><g><title>_int_free (16 samples, 0.29%)</title><rect x="0.9582%" y="885" width="0.2893%" height="15" fill="rgb(234,67,33)" fg:x="53" fg:w="16"/><text x="1.2082%" y="895.50"></text></g><g><title>_int_malloc (12 samples, 0.22%)</title><rect x="1.2475%" y="885" width="0.2170%" height="15" fill="rgb(247,98,35)" fg:x="69" fg:w="12"/><text x="1.4975%" y="895.50"></text></g><g><title>_int_realloc (1 samples, 0.02%)</title><rect x="1.4645%" y="885" width="0.0181%" height="15" fill="rgb(247,138,52)" fg:x="81" fg:w="1"/><text x="1.7145%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="1.4826%" y="885" width="0.0362%" height="15" fill="rgb(213,79,30)" fg:x="82" fg:w="2"/><text x="1.7326%" y="895.50"></text></g><g><title>alloc::raw_vec::finish_grow (5 samples, 0.09%)</title><rect x="1.5187%" y="885" width="0.0904%" height="15" fill="rgb(246,177,23)" fg:x="84" fg:w="5"/><text x="1.7687%" y="895.50"></text></g><g><title>core::fmt::write (2 samples, 0.04%)</title><rect x="1.6091%" y="885" width="0.0362%" height="15" fill="rgb(230,62,27)" fg:x="89" fg:w="2"/><text x="1.8591%" y="895.50"></text></g><g><title>hashbrown::map::make_hash (5 samples, 0.09%)</title><rect x="1.6453%" y="885" width="0.0904%" height="15" fill="rgb(216,154,8)" fg:x="91" fg:w="5"/><text x="1.8953%" y="895.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::fallible_with_capacity (1 samples, 0.02%)</title><rect x="1.7357%" y="885" width="0.0181%" height="15" fill="rgb(244,35,45)" fg:x="96" fg:w="1"/><text x="1.9857%" y="895.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (9 samples, 0.16%)</title><rect x="1.7538%" y="885" width="0.1627%" height="15" fill="rgb(251,115,12)" fg:x="97" fg:w="9"/><text x="2.0038%" y="895.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_le (2 samples, 0.04%)</title><rect x="1.9165%" y="885" width="0.0362%" height="15" fill="rgb(240,54,50)" fg:x="106" fg:w="2"/><text x="2.1665%" y="895.50"></text></g><g><title>num_bigint::biguint::multiplication::mac3 (2 samples, 0.04%)</title><rect x="1.9526%" y="885" width="0.0362%" height="15" fill="rgb(233,84,52)" fg:x="108" fg:w="2"/><text x="2.2026%" y="895.50"></text></g><g><title>num_bigint::biguint::multiplication::mul3 (8 samples, 0.14%)</title><rect x="1.9888%" y="885" width="0.1446%" height="15" fill="rgb(207,117,47)" fg:x="110" fg:w="8"/><text x="2.2388%" y="895.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="2.2781%" y="805" width="0.0362%" height="15" fill="rgb(249,43,39)" fg:x="126" fg:w="2"/><text x="2.5281%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="2.2781%" y="789" width="0.0362%" height="15" fill="rgb(209,38,44)" fg:x="126" fg:w="2"/><text x="2.5281%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="2.2781%" y="773" width="0.0362%" height="15" fill="rgb(236,212,23)" fg:x="126" fg:w="2"/><text x="2.5281%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="2.2781%" y="757" width="0.0362%" height="15" fill="rgb(242,79,21)" fg:x="126" fg:w="2"/><text x="2.5281%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="2.2781%" y="741" width="0.0362%" height="15" fill="rgb(211,96,35)" fg:x="126" fg:w="2"/><text x="2.5281%" y="751.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="2.2781%" y="725" width="0.0362%" height="15" fill="rgb(253,215,40)" fg:x="126" fg:w="2"/><text x="2.5281%" y="735.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (3 samples, 0.05%)</title><rect x="2.2781%" y="869" width="0.0542%" height="15" fill="rgb(211,81,21)" fg:x="126" fg:w="3"/><text x="2.5281%" y="879.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (3 samples, 0.05%)</title><rect x="2.2781%" y="853" width="0.0542%" height="15" fill="rgb(208,190,38)" fg:x="126" fg:w="3"/><text x="2.5281%" y="863.50"></text></g><g><title>alloc::slice::hack::to_vec (3 samples, 0.05%)</title><rect x="2.2781%" y="837" width="0.0542%" height="15" fill="rgb(235,213,38)" fg:x="126" fg:w="3"/><text x="2.5281%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (3 samples, 0.05%)</title><rect x="2.2781%" y="821" width="0.0542%" height="15" fill="rgb(237,122,38)" fg:x="126" fg:w="3"/><text x="2.5281%" y="831.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="2.3142%" y="805" width="0.0181%" height="15" fill="rgb(244,218,35)" fg:x="128" fg:w="1"/><text x="2.5642%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="2.3142%" y="789" width="0.0181%" height="15" fill="rgb(240,68,47)" fg:x="128" fg:w="1"/><text x="2.5642%" y="799.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="2.3323%" y="869" width="0.0181%" height="15" fill="rgb(210,16,53)" fg:x="129" fg:w="1"/><text x="2.5823%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="2.3323%" y="853" width="0.0181%" height="15" fill="rgb(235,124,12)" fg:x="129" fg:w="1"/><text x="2.5823%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="2.3323%" y="837" width="0.0181%" height="15" fill="rgb(224,169,11)" fg:x="129" fg:w="1"/><text x="2.5823%" y="847.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="2.3323%" y="821" width="0.0181%" height="15" fill="rgb(250,166,2)" fg:x="129" fg:w="1"/><text x="2.5823%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="2.3323%" y="805" width="0.0181%" height="15" fill="rgb(242,216,29)" fg:x="129" fg:w="1"/><text x="2.5823%" y="815.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="2.3323%" y="789" width="0.0181%" height="15" fill="rgb(230,116,27)" fg:x="129" fg:w="1"/><text x="2.5823%" y="799.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="2.3323%" y="773" width="0.0181%" height="15" fill="rgb(228,99,48)" fg:x="129" fg:w="1"/><text x="2.5823%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (11 samples, 0.20%)</title><rect x="2.3504%" y="869" width="0.1989%" height="15" fill="rgb(253,11,6)" fg:x="130" fg:w="11"/><text x="2.6004%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (11 samples, 0.20%)</title><rect x="2.3504%" y="853" width="0.1989%" height="15" fill="rgb(247,143,39)" fg:x="130" fg:w="11"/><text x="2.6004%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (11 samples, 0.20%)</title><rect x="2.3504%" y="837" width="0.1989%" height="15" fill="rgb(236,97,10)" fg:x="130" fg:w="11"/><text x="2.6004%" y="847.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (11 samples, 0.20%)</title><rect x="2.3504%" y="821" width="0.1989%" height="15" fill="rgb(233,208,19)" fg:x="130" fg:w="11"/><text x="2.6004%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (11 samples, 0.20%)</title><rect x="2.3504%" y="805" width="0.1989%" height="15" fill="rgb(216,164,2)" fg:x="130" fg:w="11"/><text x="2.6004%" y="815.50"></text></g><g><title>alloc::alloc::dealloc (11 samples, 0.20%)</title><rect x="2.3504%" y="789" width="0.1989%" height="15" fill="rgb(220,129,5)" fg:x="130" fg:w="11"/><text x="2.6004%" y="799.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (3 samples, 0.05%)</title><rect x="2.5493%" y="869" width="0.0542%" height="15" fill="rgb(242,17,10)" fg:x="141" fg:w="3"/><text x="2.7993%" y="879.50"></text></g><g><title>phone_encoder::nth_digit (1 samples, 0.02%)</title><rect x="2.6035%" y="869" width="0.0181%" height="15" fill="rgb(242,107,0)" fg:x="144" fg:w="1"/><text x="2.8535%" y="879.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (1 samples, 0.02%)</title><rect x="2.6035%" y="853" width="0.0181%" height="15" fill="rgb(251,28,31)" fg:x="144" fg:w="1"/><text x="2.8535%" y="863.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (1 samples, 0.02%)</title><rect x="2.6035%" y="837" width="0.0181%" height="15" fill="rgb(233,223,10)" fg:x="144" fg:w="1"/><text x="2.8535%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (1 samples, 0.02%)</title><rect x="2.6035%" y="821" width="0.0181%" height="15" fill="rgb(215,21,27)" fg:x="144" fg:w="1"/><text x="2.8535%" y="831.50"></text></g><g><title>core::ops::function::FnOnce::call_once (1 samples, 0.02%)</title><rect x="2.6035%" y="805" width="0.0181%" height="15" fill="rgb(232,23,21)" fg:x="144" fg:w="1"/><text x="2.8535%" y="815.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (1 samples, 0.02%)</title><rect x="2.6035%" y="789" width="0.0181%" height="15" fill="rgb(244,5,23)" fg:x="144" fg:w="1"/><text x="2.8535%" y="799.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (1 samples, 0.02%)</title><rect x="2.6035%" y="773" width="0.0181%" height="15" fill="rgb(226,81,46)" fg:x="144" fg:w="1"/><text x="2.8535%" y="783.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.02%)</title><rect x="2.6035%" y="757" width="0.0181%" height="15" fill="rgb(247,70,30)" fg:x="144" fg:w="1"/><text x="2.8535%" y="767.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="2.6035%" y="741" width="0.0181%" height="15" fill="rgb(212,68,19)" fg:x="144" fg:w="1"/><text x="2.8535%" y="751.50"></text></g><g><title>phone_encoder::print_translations (28 samples, 0.51%)</title><rect x="2.1334%" y="885" width="0.5062%" height="15" fill="rgb(240,187,13)" fg:x="118" fg:w="28"/><text x="2.3834%" y="895.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (1 samples, 0.02%)</title><rect x="2.6216%" y="869" width="0.0181%" height="15" fill="rgb(223,113,26)" fg:x="145" fg:w="1"/><text x="2.8716%" y="879.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (1 samples, 0.02%)</title><rect x="2.6216%" y="853" width="0.0181%" height="15" fill="rgb(206,192,2)" fg:x="145" fg:w="1"/><text x="2.8716%" y="863.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (1 samples, 0.02%)</title><rect x="2.6216%" y="837" width="0.0181%" height="15" fill="rgb(241,108,4)" fg:x="145" fg:w="1"/><text x="2.8716%" y="847.50"></text></g><g><title>std::io::append_to_string (8 samples, 0.14%)</title><rect x="2.6397%" y="885" width="0.1446%" height="15" fill="rgb(247,173,49)" fg:x="146" fg:w="8"/><text x="2.8897%" y="895.50"></text></g><g><title>std::io::BufRead::read_line::{{closure}} (4 samples, 0.07%)</title><rect x="2.7120%" y="869" width="0.0723%" height="15" fill="rgb(224,114,35)" fg:x="150" fg:w="4"/><text x="2.9620%" y="879.50"></text></g><g><title>std::io::read_until (4 samples, 0.07%)</title><rect x="2.7120%" y="853" width="0.0723%" height="15" fill="rgb(245,159,27)" fg:x="150" fg:w="4"/><text x="2.9620%" y="863.50"></text></g><g><title>std::memchr::memchr (4 samples, 0.07%)</title><rect x="2.7120%" y="837" width="0.0723%" height="15" fill="rgb(245,172,44)" fg:x="150" fg:w="4"/><text x="2.9620%" y="847.50"></text></g><g><title>std::sys::unix::fs::File::open_c (3 samples, 0.05%)</title><rect x="2.7843%" y="885" width="0.0542%" height="15" fill="rgb(236,23,11)" fg:x="154" fg:w="3"/><text x="3.0343%" y="895.50"></text></g><g><title>std::sys::unix::cvt_r (1 samples, 0.02%)</title><rect x="2.8205%" y="869" width="0.0181%" height="15" fill="rgb(205,117,38)" fg:x="156" fg:w="1"/><text x="3.0705%" y="879.50"></text></g><g><title>std::sys::unix::fs::File::open_c::{{closure}} (1 samples, 0.02%)</title><rect x="2.8205%" y="853" width="0.0181%" height="15" fill="rgb(237,72,25)" fg:x="156" fg:w="1"/><text x="3.0705%" y="863.50"></text></g><g><title>[[heap]] (150 samples, 2.71%)</title><rect x="0.2350%" y="901" width="2.7120%" height="15" fill="rgb(244,70,9)" fg:x="13" fg:w="150"/><text x="0.4850%" y="911.50">[[..</text></g><g><title>unlink_chunk (6 samples, 0.11%)</title><rect x="2.8385%" y="885" width="0.1085%" height="15" fill="rgb(217,125,39)" fg:x="157" fg:w="6"/><text x="3.0885%" y="895.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="2.9470%" y="885" width="0.0362%" height="15" fill="rgb(235,36,10)" fg:x="163" fg:w="2"/><text x="3.1970%" y="895.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="2.9470%" y="869" width="0.0362%" height="15" fill="rgb(251,123,47)" fg:x="163" fg:w="2"/><text x="3.1970%" y="879.50"></text></g><g><title>alloc::string::String::push_str (2 samples, 0.04%)</title><rect x="2.9470%" y="853" width="0.0362%" height="15" fill="rgb(221,13,13)" fg:x="163" fg:w="2"/><text x="3.1970%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (2 samples, 0.04%)</title><rect x="2.9470%" y="837" width="0.0362%" height="15" fill="rgb(238,131,9)" fg:x="163" fg:w="2"/><text x="3.1970%" y="847.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 (2 samples, 0.04%)</title><rect x="2.9470%" y="821" width="0.0362%" height="15" fill="rgb(211,50,8)" fg:x="163" fg:w="2"/><text x="3.1970%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (2 samples, 0.04%)</title><rect x="2.9470%" y="805" width="0.0362%" height="15" fill="rgb(245,182,24)" fg:x="163" fg:w="2"/><text x="3.1970%" y="815.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="2.9470%" y="789" width="0.0362%" height="15" fill="rgb(242,14,37)" fg:x="163" fg:w="2"/><text x="3.1970%" y="799.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (9 samples, 0.16%)</title><rect x="2.9832%" y="885" width="0.1627%" height="15" fill="rgb(246,228,12)" fg:x="165" fg:w="9"/><text x="3.2332%" y="895.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="3.1459%" y="885" width="0.0181%" height="15" fill="rgb(213,55,15)" fg:x="174" fg:w="1"/><text x="3.3959%" y="895.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="3.1640%" y="885" width="0.0181%" height="15" fill="rgb(209,9,3)" fg:x="175" fg:w="1"/><text x="3.4140%" y="895.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="3.1640%" y="869" width="0.0181%" height="15" fill="rgb(230,59,30)" fg:x="175" fg:w="1"/><text x="3.4140%" y="879.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="3.1640%" y="853" width="0.0181%" height="15" fill="rgb(209,121,21)" fg:x="175" fg:w="1"/><text x="3.4140%" y="863.50"></text></g><g><title>__GI___libc_malloc (7 samples, 0.13%)</title><rect x="3.1821%" y="885" width="0.1266%" height="15" fill="rgb(220,109,13)" fg:x="176" fg:w="7"/><text x="3.4321%" y="895.50"></text></g><g><title>__libc_calloc (1 samples, 0.02%)</title><rect x="3.3086%" y="885" width="0.0181%" height="15" fill="rgb(232,18,1)" fg:x="183" fg:w="1"/><text x="3.5586%" y="895.50"></text></g><g><title>__libc_open64 (6 samples, 0.11%)</title><rect x="3.3267%" y="885" width="0.1085%" height="15" fill="rgb(215,41,42)" fg:x="184" fg:w="6"/><text x="3.5767%" y="895.50"></text></g><g><title>[unknown] (6 samples, 0.11%)</title><rect x="3.3267%" y="869" width="0.1085%" height="15" fill="rgb(224,123,36)" fg:x="184" fg:w="6"/><text x="3.5767%" y="879.50"></text></g><g><title>__rdl_alloc (2 samples, 0.04%)</title><rect x="3.4352%" y="885" width="0.0362%" height="15" fill="rgb(240,125,3)" fg:x="190" fg:w="2"/><text x="3.6852%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (2 samples, 0.04%)</title><rect x="3.4352%" y="869" width="0.0362%" height="15" fill="rgb(205,98,50)" fg:x="190" fg:w="2"/><text x="3.6852%" y="879.50"></text></g><g><title>_int_free (44 samples, 0.80%)</title><rect x="3.4713%" y="885" width="0.7955%" height="15" fill="rgb(205,185,37)" fg:x="192" fg:w="44"/><text x="3.7213%" y="895.50"></text></g><g><title>_int_malloc (3 samples, 0.05%)</title><rect x="4.2669%" y="885" width="0.0542%" height="15" fill="rgb(238,207,15)" fg:x="236" fg:w="3"/><text x="4.5169%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (9 samples, 0.16%)</title><rect x="4.3211%" y="885" width="0.1627%" height="15" fill="rgb(213,199,42)" fg:x="239" fg:w="9"/><text x="4.5711%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (6 samples, 0.11%)</title><rect x="4.3753%" y="869" width="0.1085%" height="15" fill="rgb(235,201,11)" fg:x="242" fg:w="6"/><text x="4.6253%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (5 samples, 0.09%)</title><rect x="4.3934%" y="853" width="0.0904%" height="15" fill="rgb(207,46,11)" fg:x="243" fg:w="5"/><text x="4.6434%" y="863.50"></text></g><g><title>alloc::raw_vec::finish_grow (4 samples, 0.07%)</title><rect x="4.4838%" y="885" width="0.0723%" height="15" fill="rgb(241,35,35)" fg:x="248" fg:w="4"/><text x="4.7338%" y="895.50"></text></g><g><title>core::fmt::Formatter::pad (1 samples, 0.02%)</title><rect x="4.5561%" y="885" width="0.0181%" height="15" fill="rgb(243,32,47)" fg:x="252" fg:w="1"/><text x="4.8061%" y="895.50"></text></g><g><title>core::fmt::write (2 samples, 0.04%)</title><rect x="4.5742%" y="885" width="0.0362%" height="15" fill="rgb(247,202,23)" fg:x="253" fg:w="2"/><text x="4.8242%" y="895.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (3 samples, 0.05%)</title><rect x="4.6465%" y="821" width="0.0542%" height="15" fill="rgb(219,102,11)" fg:x="257" fg:w="3"/><text x="4.8965%" y="831.50"></text></g><g><title>hashbrown::map::make_hash (8 samples, 0.14%)</title><rect x="4.6104%" y="885" width="0.1446%" height="15" fill="rgb(243,110,44)" fg:x="255" fg:w="8"/><text x="4.8604%" y="895.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (6 samples, 0.11%)</title><rect x="4.6465%" y="869" width="0.1085%" height="15" fill="rgb(222,74,54)" fg:x="257" fg:w="6"/><text x="4.8965%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (6 samples, 0.11%)</title><rect x="4.6465%" y="853" width="0.1085%" height="15" fill="rgb(216,99,12)" fg:x="257" fg:w="6"/><text x="4.8965%" y="863.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (6 samples, 0.11%)</title><rect x="4.6465%" y="837" width="0.1085%" height="15" fill="rgb(226,22,26)" fg:x="257" fg:w="6"/><text x="4.8965%" y="847.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for usize&gt;::hash (3 samples, 0.05%)</title><rect x="4.7008%" y="821" width="0.0542%" height="15" fill="rgb(217,163,10)" fg:x="260" fg:w="3"/><text x="4.9508%" y="831.50"></text></g><g><title>core::hash::Hasher::write_usize (3 samples, 0.05%)</title><rect x="4.7008%" y="805" width="0.0542%" height="15" fill="rgb(213,25,53)" fg:x="260" fg:w="3"/><text x="4.9508%" y="815.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (8 samples, 0.14%)</title><rect x="4.7550%" y="885" width="0.1446%" height="15" fill="rgb(252,105,26)" fg:x="263" fg:w="8"/><text x="5.0050%" y="895.50"></text></g><g><title>num_bigint::biguint::multiplication::mul3 (15 samples, 0.27%)</title><rect x="4.8997%" y="885" width="0.2712%" height="15" fill="rgb(220,39,43)" fg:x="271" fg:w="15"/><text x="5.1497%" y="895.50"></text></g><g><title>alloc::vec::from_elem (6 samples, 0.11%)</title><rect x="5.0624%" y="869" width="0.1085%" height="15" fill="rgb(229,68,48)" fg:x="280" fg:w="6"/><text x="5.3124%" y="879.50"></text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (6 samples, 0.11%)</title><rect x="5.0624%" y="853" width="0.1085%" height="15" fill="rgb(252,8,32)" fg:x="280" fg:w="6"/><text x="5.3124%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (6 samples, 0.11%)</title><rect x="5.0624%" y="837" width="0.1085%" height="15" fill="rgb(223,20,43)" fg:x="280" fg:w="6"/><text x="5.3124%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (6 samples, 0.11%)</title><rect x="5.0624%" y="821" width="0.1085%" height="15" fill="rgb(229,81,49)" fg:x="280" fg:w="6"/><text x="5.3124%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (6 samples, 0.11%)</title><rect x="5.0624%" y="805" width="0.1085%" height="15" fill="rgb(236,28,36)" fg:x="280" fg:w="6"/><text x="5.3124%" y="815.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (6 samples, 0.11%)</title><rect x="5.0624%" y="789" width="0.1085%" height="15" fill="rgb(249,185,26)" fg:x="280" fg:w="6"/><text x="5.3124%" y="799.50"></text></g><g><title>alloc::alloc::alloc_zeroed (6 samples, 0.11%)</title><rect x="5.0624%" y="773" width="0.1085%" height="15" fill="rgb(249,174,33)" fg:x="280" fg:w="6"/><text x="5.3124%" y="783.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="5.2251%" y="869" width="0.0181%" height="15" fill="rgb(233,201,37)" fg:x="289" fg:w="1"/><text x="5.4751%" y="879.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="5.2251%" y="853" width="0.0181%" height="15" fill="rgb(221,78,26)" fg:x="289" fg:w="1"/><text x="5.4751%" y="863.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="5.2251%" y="837" width="0.0181%" height="15" fill="rgb(250,127,30)" fg:x="289" fg:w="1"/><text x="5.4751%" y="847.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="5.2251%" y="821" width="0.0181%" height="15" fill="rgb(230,49,44)" fg:x="289" fg:w="1"/><text x="5.4751%" y="831.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="5.2251%" y="805" width="0.0181%" height="15" fill="rgb(229,67,23)" fg:x="289" fg:w="1"/><text x="5.4751%" y="815.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="5.2251%" y="789" width="0.0181%" height="15" fill="rgb(249,83,47)" fg:x="289" fg:w="1"/><text x="5.4751%" y="799.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="5.2251%" y="773" width="0.0181%" height="15" fill="rgb(215,43,3)" fg:x="289" fg:w="1"/><text x="5.4751%" y="783.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="5.2251%" y="757" width="0.0181%" height="15" fill="rgb(238,154,13)" fg:x="289" fg:w="1"/><text x="5.4751%" y="767.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="5.2251%" y="741" width="0.0181%" height="15" fill="rgb(219,56,2)" fg:x="289" fg:w="1"/><text x="5.4751%" y="751.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="5.2251%" y="725" width="0.0181%" height="15" fill="rgb(233,0,4)" fg:x="289" fg:w="1"/><text x="5.4751%" y="735.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="5.2432%" y="869" width="0.0181%" height="15" fill="rgb(235,30,7)" fg:x="290" fg:w="1"/><text x="5.4932%" y="879.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="5.2432%" y="853" width="0.0181%" height="15" fill="rgb(250,79,13)" fg:x="290" fg:w="1"/><text x="5.4932%" y="863.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="5.2432%" y="837" width="0.0181%" height="15" fill="rgb(211,146,34)" fg:x="290" fg:w="1"/><text x="5.4932%" y="847.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="5.2432%" y="821" width="0.0181%" height="15" fill="rgb(228,22,38)" fg:x="290" fg:w="1"/><text x="5.4932%" y="831.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="5.2432%" y="805" width="0.0181%" height="15" fill="rgb(235,168,5)" fg:x="290" fg:w="1"/><text x="5.4932%" y="815.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="5.2432%" y="789" width="0.0181%" height="15" fill="rgb(221,155,16)" fg:x="290" fg:w="1"/><text x="5.4932%" y="799.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="5.2432%" y="773" width="0.0181%" height="15" fill="rgb(215,215,53)" fg:x="290" fg:w="1"/><text x="5.4932%" y="783.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (3 samples, 0.05%)</title><rect x="5.2613%" y="869" width="0.0542%" height="15" fill="rgb(223,4,10)" fg:x="291" fg:w="3"/><text x="5.5113%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (3 samples, 0.05%)</title><rect x="5.2613%" y="853" width="0.0542%" height="15" fill="rgb(234,103,6)" fg:x="291" fg:w="3"/><text x="5.5113%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (3 samples, 0.05%)</title><rect x="5.2613%" y="837" width="0.0542%" height="15" fill="rgb(227,97,0)" fg:x="291" fg:w="3"/><text x="5.5113%" y="847.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3 samples, 0.05%)</title><rect x="5.2613%" y="821" width="0.0542%" height="15" fill="rgb(234,150,53)" fg:x="291" fg:w="3"/><text x="5.5113%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (3 samples, 0.05%)</title><rect x="5.2613%" y="805" width="0.0542%" height="15" fill="rgb(228,201,54)" fg:x="291" fg:w="3"/><text x="5.5113%" y="815.50"></text></g><g><title>alloc::alloc::dealloc (3 samples, 0.05%)</title><rect x="5.2613%" y="789" width="0.0542%" height="15" fill="rgb(222,22,37)" fg:x="291" fg:w="3"/><text x="5.5113%" y="799.50"></text></g><g><title>phone_encoder::nth_digit (2 samples, 0.04%)</title><rect x="5.3155%" y="869" width="0.0362%" height="15" fill="rgb(237,53,32)" fg:x="294" fg:w="2"/><text x="5.5655%" y="879.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (2 samples, 0.04%)</title><rect x="5.3155%" y="853" width="0.0362%" height="15" fill="rgb(233,25,53)" fg:x="294" fg:w="2"/><text x="5.5655%" y="863.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (2 samples, 0.04%)</title><rect x="5.3155%" y="837" width="0.0362%" height="15" fill="rgb(210,40,34)" fg:x="294" fg:w="2"/><text x="5.5655%" y="847.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (2 samples, 0.04%)</title><rect x="5.3155%" y="821" width="0.0362%" height="15" fill="rgb(241,220,44)" fg:x="294" fg:w="2"/><text x="5.5655%" y="831.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.04%)</title><rect x="5.3155%" y="805" width="0.0362%" height="15" fill="rgb(235,28,35)" fg:x="294" fg:w="2"/><text x="5.5655%" y="815.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (2 samples, 0.04%)</title><rect x="5.3155%" y="789" width="0.0362%" height="15" fill="rgb(210,56,17)" fg:x="294" fg:w="2"/><text x="5.5655%" y="799.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (2 samples, 0.04%)</title><rect x="5.3155%" y="773" width="0.0362%" height="15" fill="rgb(224,130,29)" fg:x="294" fg:w="2"/><text x="5.5655%" y="783.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (2 samples, 0.04%)</title><rect x="5.3155%" y="757" width="0.0362%" height="15" fill="rgb(235,212,8)" fg:x="294" fg:w="2"/><text x="5.5655%" y="767.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="5.3155%" y="741" width="0.0362%" height="15" fill="rgb(223,33,50)" fg:x="294" fg:w="2"/><text x="5.5655%" y="751.50"></text></g><g><title>phone_encoder::print_solution (1 samples, 0.02%)</title><rect x="5.3517%" y="869" width="0.0181%" height="15" fill="rgb(219,149,13)" fg:x="296" fg:w="1"/><text x="5.6017%" y="879.50"></text></g><g><title>phone_encoder::print_translations (12 samples, 0.22%)</title><rect x="5.1709%" y="885" width="0.2170%" height="15" fill="rgb(250,156,29)" fg:x="286" fg:w="12"/><text x="5.4209%" y="895.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (1 samples, 0.02%)</title><rect x="5.3697%" y="869" width="0.0181%" height="15" fill="rgb(216,193,19)" fg:x="297" fg:w="1"/><text x="5.6197%" y="879.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (1 samples, 0.02%)</title><rect x="5.3697%" y="853" width="0.0181%" height="15" fill="rgb(216,135,14)" fg:x="297" fg:w="1"/><text x="5.6197%" y="863.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (1 samples, 0.02%)</title><rect x="5.3697%" y="837" width="0.0181%" height="15" fill="rgb(241,47,5)" fg:x="297" fg:w="1"/><text x="5.6197%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::c_str::CString&gt; (1 samples, 0.02%)</title><rect x="5.3878%" y="853" width="0.0181%" height="15" fill="rgb(233,42,35)" fg:x="298" fg:w="1"/><text x="5.6378%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (1 samples, 0.02%)</title><rect x="5.3878%" y="837" width="0.0181%" height="15" fill="rgb(231,13,6)" fg:x="298" fg:w="1"/><text x="5.6378%" y="847.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.02%)</title><rect x="5.3878%" y="821" width="0.0181%" height="15" fill="rgb(207,181,40)" fg:x="298" fg:w="1"/><text x="5.6378%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="5.3878%" y="805" width="0.0181%" height="15" fill="rgb(254,173,49)" fg:x="298" fg:w="1"/><text x="5.6378%" y="815.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="5.3878%" y="789" width="0.0181%" height="15" fill="rgb(221,1,38)" fg:x="298" fg:w="1"/><text x="5.6378%" y="799.50"></text></g><g><title>std::fs::OpenOptions::_open (2 samples, 0.04%)</title><rect x="5.3878%" y="885" width="0.0362%" height="15" fill="rgb(206,124,46)" fg:x="298" fg:w="2"/><text x="5.6378%" y="895.50"></text></g><g><title>std::sys::unix::fs::File::open (2 samples, 0.04%)</title><rect x="5.3878%" y="869" width="0.0362%" height="15" fill="rgb(249,21,11)" fg:x="298" fg:w="2"/><text x="5.6378%" y="879.50"></text></g><g><title>std::sys::unix::fs::cstr (1 samples, 0.02%)</title><rect x="5.4059%" y="853" width="0.0181%" height="15" fill="rgb(222,201,40)" fg:x="299" fg:w="1"/><text x="5.6559%" y="863.50"></text></g><g><title>std::ffi::c_str::CString::new (1 samples, 0.02%)</title><rect x="5.4059%" y="837" width="0.0181%" height="15" fill="rgb(235,61,29)" fg:x="299" fg:w="1"/><text x="5.6559%" y="847.50"></text></g><g><title>std::io::stdio::_print (1 samples, 0.02%)</title><rect x="5.4240%" y="885" width="0.0181%" height="15" fill="rgb(219,207,3)" fg:x="300" fg:w="1"/><text x="5.6740%" y="895.50"></text></g><g><title>[[stack]] (139 samples, 2.51%)</title><rect x="2.9470%" y="901" width="2.5131%" height="15" fill="rgb(222,56,46)" fg:x="163" fg:w="139"/><text x="3.1970%" y="911.50">[[..</text></g><g><title>std::sys::unix::memchr::memchr (1 samples, 0.02%)</title><rect x="5.4421%" y="885" width="0.0181%" height="15" fill="rgb(239,76,54)" fg:x="301" fg:w="1"/><text x="5.6921%" y="895.50"></text></g><g><title>[anon] (1 samples, 0.02%)</title><rect x="5.4601%" y="901" width="0.0181%" height="15" fill="rgb(231,124,27)" fg:x="302" fg:w="1"/><text x="5.7101%" y="911.50"></text></g><g><title>__memset_avx2_unaligned_erms (1 samples, 0.02%)</title><rect x="5.4601%" y="885" width="0.0181%" height="15" fill="rgb(249,195,6)" fg:x="302" fg:w="1"/><text x="5.7101%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (2 samples, 0.04%)</title><rect x="5.4782%" y="869" width="0.0362%" height="15" fill="rgb(237,174,47)" fg:x="303" fg:w="2"/><text x="5.7282%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (2 samples, 0.04%)</title><rect x="5.4782%" y="853" width="0.0362%" height="15" fill="rgb(206,201,31)" fg:x="303" fg:w="2"/><text x="5.7282%" y="863.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="5.4782%" y="837" width="0.0362%" height="15" fill="rgb(231,57,52)" fg:x="303" fg:w="2"/><text x="5.7282%" y="847.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (2 samples, 0.04%)</title><rect x="5.4782%" y="821" width="0.0362%" height="15" fill="rgb(248,177,22)" fg:x="303" fg:w="2"/><text x="5.7282%" y="831.50"></text></g><g><title>std::io::Write::write_fmt (1 samples, 0.02%)</title><rect x="5.5144%" y="869" width="0.0181%" height="15" fill="rgb(215,211,37)" fg:x="305" fg:w="1"/><text x="5.7644%" y="879.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (5 samples, 0.09%)</title><rect x="5.4782%" y="885" width="0.0904%" height="15" fill="rgb(241,128,51)" fg:x="303" fg:w="5"/><text x="5.7282%" y="895.50"></text></g><g><title>std::io::stdio::Stdout::lock (2 samples, 0.04%)</title><rect x="5.5325%" y="869" width="0.0362%" height="15" fill="rgb(227,165,31)" fg:x="306" fg:w="2"/><text x="5.7825%" y="879.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (2 samples, 0.04%)</title><rect x="5.5325%" y="853" width="0.0362%" height="15" fill="rgb(228,167,24)" fg:x="306" fg:w="2"/><text x="5.7825%" y="863.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (2 samples, 0.04%)</title><rect x="5.5325%" y="837" width="0.0362%" height="15" fill="rgb(228,143,12)" fg:x="306" fg:w="2"/><text x="5.7825%" y="847.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (4 samples, 0.07%)</title><rect x="5.5686%" y="885" width="0.0723%" height="15" fill="rgb(249,149,8)" fg:x="308" fg:w="4"/><text x="5.8186%" y="895.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (6 samples, 0.11%)</title><rect x="5.6409%" y="885" width="0.1085%" height="15" fill="rgb(243,35,44)" fg:x="312" fg:w="6"/><text x="5.8909%" y="895.50"></text></g><g><title>__GI___pthread_mutex_lock (3 samples, 0.05%)</title><rect x="5.7494%" y="885" width="0.0542%" height="15" fill="rgb(246,89,9)" fg:x="318" fg:w="3"/><text x="5.9994%" y="895.50"></text></g><g><title>__memrchr_avx2 (1 samples, 0.02%)</title><rect x="5.8037%" y="885" width="0.0181%" height="15" fill="rgb(233,213,13)" fg:x="321" fg:w="1"/><text x="6.0537%" y="895.50"></text></g><g><title>_int_malloc (3 samples, 0.05%)</title><rect x="5.8217%" y="885" width="0.0542%" height="15" fill="rgb(233,141,41)" fg:x="322" fg:w="3"/><text x="6.0717%" y="895.50"></text></g><g><title>[phone_encoder] (24 samples, 0.43%)</title><rect x="5.4782%" y="901" width="0.4339%" height="15" fill="rgb(239,167,4)" fg:x="303" fg:w="24"/><text x="5.7282%" y="911.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (2 samples, 0.04%)</title><rect x="5.8760%" y="885" width="0.0362%" height="15" fill="rgb(209,217,16)" fg:x="325" fg:w="2"/><text x="6.1260%" y="895.50"></text></g><g><title>std::io::Write::write_fmt (5 samples, 0.09%)</title><rect x="6.8161%" y="869" width="0.0904%" height="15" fill="rgb(219,88,35)" fg:x="377" fg:w="5"/><text x="7.0661%" y="879.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (11 samples, 0.20%)</title><rect x="6.7438%" y="885" width="0.1989%" height="15" fill="rgb(220,193,23)" fg:x="373" fg:w="11"/><text x="6.9938%" y="895.50"></text></g><g><title>std::io::stdio::Stdout::lock (2 samples, 0.04%)</title><rect x="6.9065%" y="869" width="0.0362%" height="15" fill="rgb(230,90,52)" fg:x="382" fg:w="2"/><text x="7.1565%" y="879.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (2 samples, 0.04%)</title><rect x="6.9065%" y="853" width="0.0362%" height="15" fill="rgb(252,106,19)" fg:x="382" fg:w="2"/><text x="7.1565%" y="863.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (2 samples, 0.04%)</title><rect x="6.9065%" y="837" width="0.0362%" height="15" fill="rgb(206,74,20)" fg:x="382" fg:w="2"/><text x="7.1565%" y="847.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 samples, 0.02%)</title><rect x="6.9427%" y="885" width="0.0181%" height="15" fill="rgb(230,138,44)" fg:x="384" fg:w="1"/><text x="7.1927%" y="895.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::fmt::Display&gt;::fmt (2 samples, 0.04%)</title><rect x="6.9608%" y="885" width="0.0362%" height="15" fill="rgb(235,182,43)" fg:x="385" fg:w="2"/><text x="7.2108%" y="895.50"></text></g><g><title>num_bigint::biguint::BigUint::to_str_radix (1 samples, 0.02%)</title><rect x="6.9788%" y="869" width="0.0181%" height="15" fill="rgb(242,16,51)" fg:x="386" fg:w="1"/><text x="7.2288%" y="879.50"></text></g><g><title>num_bigint::biguint::convert::to_str_radix_reversed (1 samples, 0.02%)</title><rect x="6.9788%" y="853" width="0.0181%" height="15" fill="rgb(248,9,4)" fg:x="386" fg:w="1"/><text x="7.2288%" y="863.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (19 samples, 0.34%)</title><rect x="6.9969%" y="885" width="0.3435%" height="15" fill="rgb(210,31,22)" fg:x="387" fg:w="19"/><text x="7.2469%" y="895.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (13 samples, 0.24%)</title><rect x="7.3404%" y="885" width="0.2350%" height="15" fill="rgb(239,54,39)" fg:x="406" fg:w="13"/><text x="7.5904%" y="895.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (5 samples, 0.09%)</title><rect x="7.4851%" y="869" width="0.0904%" height="15" fill="rgb(230,99,41)" fg:x="414" fg:w="5"/><text x="7.7351%" y="879.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (5 samples, 0.09%)</title><rect x="7.4851%" y="853" width="0.0904%" height="15" fill="rgb(253,106,12)" fg:x="414" fg:w="5"/><text x="7.7351%" y="863.50"></text></g><g><title>std::memchr::memrchr (3 samples, 0.05%)</title><rect x="7.5212%" y="837" width="0.0542%" height="15" fill="rgb(213,46,41)" fg:x="416" fg:w="3"/><text x="7.7712%" y="847.50"></text></g><g><title>std::sys::unix::memchr::memrchr (3 samples, 0.05%)</title><rect x="7.5212%" y="821" width="0.0542%" height="15" fill="rgb(215,133,35)" fg:x="416" fg:w="3"/><text x="7.7712%" y="831.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (3 samples, 0.05%)</title><rect x="7.5212%" y="805" width="0.0542%" height="15" fill="rgb(213,28,5)" fg:x="416" fg:w="3"/><text x="7.7712%" y="815.50"></text></g><g><title>[phone_encoder] (1 samples, 0.02%)</title><rect x="7.5755%" y="885" width="0.0181%" height="15" fill="rgb(215,77,49)" fg:x="419" fg:w="1"/><text x="7.8255%" y="895.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="7.5755%" y="869" width="0.0181%" height="15" fill="rgb(248,100,22)" fg:x="419" fg:w="1"/><text x="7.8255%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="7.5936%" y="885" width="0.0181%" height="15" fill="rgb(208,67,9)" fg:x="420" fg:w="1"/><text x="7.8436%" y="895.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="7.5936%" y="869" width="0.0181%" height="15" fill="rgb(219,133,21)" fg:x="420" fg:w="1"/><text x="7.8436%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="7.5936%" y="853" width="0.0181%" height="15" fill="rgb(246,46,29)" fg:x="420" fg:w="1"/><text x="7.8436%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="7.5936%" y="837" width="0.0181%" height="15" fill="rgb(246,185,52)" fg:x="420" fg:w="1"/><text x="7.8436%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="7.5936%" y="821" width="0.0181%" height="15" fill="rgb(252,136,11)" fg:x="420" fg:w="1"/><text x="7.8436%" y="831.50"></text></g><g><title>__GI___libc_malloc (8 samples, 0.14%)</title><rect x="7.6116%" y="885" width="0.1446%" height="15" fill="rgb(219,138,53)" fg:x="421" fg:w="8"/><text x="7.8616%" y="895.50"></text></g><g><title>__GI___libc_realloc (6 samples, 0.11%)</title><rect x="7.7563%" y="885" width="0.1085%" height="15" fill="rgb(211,51,23)" fg:x="429" fg:w="6"/><text x="8.0063%" y="895.50"></text></g><g><title>__GI___pthread_mutex_lock (1 samples, 0.02%)</title><rect x="7.8648%" y="885" width="0.0181%" height="15" fill="rgb(247,221,28)" fg:x="435" fg:w="1"/><text x="8.1148%" y="895.50"></text></g><g><title>__libc_calloc (4 samples, 0.07%)</title><rect x="7.8828%" y="885" width="0.0723%" height="15" fill="rgb(251,222,45)" fg:x="436" fg:w="4"/><text x="8.1328%" y="895.50"></text></g><g><title>__libc_read (7 samples, 0.13%)</title><rect x="7.9552%" y="885" width="0.1266%" height="15" fill="rgb(217,162,53)" fg:x="440" fg:w="7"/><text x="8.2052%" y="895.50"></text></g><g><title>[unknown] (7 samples, 0.13%)</title><rect x="7.9552%" y="869" width="0.1266%" height="15" fill="rgb(229,93,14)" fg:x="440" fg:w="7"/><text x="8.2052%" y="879.50"></text></g><g><title>__memmove_avx_unaligned_erms (10 samples, 0.18%)</title><rect x="8.0817%" y="885" width="0.1808%" height="15" fill="rgb(209,67,49)" fg:x="447" fg:w="10"/><text x="8.3317%" y="895.50"></text></g><g><title>__rdl_alloc (4 samples, 0.07%)</title><rect x="8.2625%" y="885" width="0.0723%" height="15" fill="rgb(213,87,29)" fg:x="457" fg:w="4"/><text x="8.5125%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (3 samples, 0.05%)</title><rect x="8.2806%" y="869" width="0.0542%" height="15" fill="rgb(205,151,52)" fg:x="458" fg:w="3"/><text x="8.5306%" y="879.50"></text></g><g><title>__rdl_alloc_zeroed (3 samples, 0.05%)</title><rect x="8.3348%" y="885" width="0.0542%" height="15" fill="rgb(253,215,39)" fg:x="461" fg:w="3"/><text x="8.5848%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (2 samples, 0.04%)</title><rect x="8.3529%" y="869" width="0.0362%" height="15" fill="rgb(221,220,41)" fg:x="462" fg:w="2"/><text x="8.6029%" y="879.50"></text></g><g><title>__rdl_realloc (5 samples, 0.09%)</title><rect x="8.3891%" y="885" width="0.0904%" height="15" fill="rgb(218,133,21)" fg:x="464" fg:w="5"/><text x="8.6391%" y="895.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::realloc (1 samples, 0.02%)</title><rect x="8.4614%" y="869" width="0.0181%" height="15" fill="rgb(221,193,43)" fg:x="468" fg:w="1"/><text x="8.7114%" y="879.50"></text></g><g><title>_fini (1 samples, 0.02%)</title><rect x="8.4795%" y="885" width="0.0181%" height="15" fill="rgb(240,128,52)" fg:x="469" fg:w="1"/><text x="8.7295%" y="895.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (1 samples, 0.02%)</title><rect x="8.4795%" y="869" width="0.0181%" height="15" fill="rgb(253,114,12)" fg:x="469" fg:w="1"/><text x="8.7295%" y="879.50"></text></g><g><title>_int_free (33 samples, 0.60%)</title><rect x="8.4976%" y="885" width="0.5966%" height="15" fill="rgb(215,223,47)" fg:x="470" fg:w="33"/><text x="8.7476%" y="895.50"></text></g><g><title>_int_malloc (18 samples, 0.33%)</title><rect x="9.0942%" y="885" width="0.3254%" height="15" fill="rgb(248,225,23)" fg:x="503" fg:w="18"/><text x="9.3442%" y="895.50"></text></g><g><title>_int_realloc (4 samples, 0.07%)</title><rect x="9.4196%" y="885" width="0.0723%" height="15" fill="rgb(250,108,0)" fg:x="521" fg:w="4"/><text x="9.6696%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (16 samples, 0.29%)</title><rect x="9.4920%" y="885" width="0.2893%" height="15" fill="rgb(228,208,7)" fg:x="525" fg:w="16"/><text x="9.7420%" y="895.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (7 samples, 0.13%)</title><rect x="9.6547%" y="869" width="0.1266%" height="15" fill="rgb(244,45,10)" fg:x="534" fg:w="7"/><text x="9.9047%" y="879.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.04%)</title><rect x="9.7451%" y="853" width="0.0362%" height="15" fill="rgb(207,125,25)" fg:x="539" fg:w="2"/><text x="9.9951%" y="863.50"></text></g><g><title>alloc::raw_vec::finish_grow (17 samples, 0.31%)</title><rect x="9.7812%" y="885" width="0.3074%" height="15" fill="rgb(210,195,18)" fg:x="541" fg:w="17"/><text x="10.0312%" y="895.50"></text></g><g><title>core::fmt::Formatter::pad (3 samples, 0.05%)</title><rect x="10.0886%" y="885" width="0.0542%" height="15" fill="rgb(249,80,12)" fg:x="558" fg:w="3"/><text x="10.3386%" y="895.50"></text></g><g><title>core::fmt::write (8 samples, 0.14%)</title><rect x="10.1428%" y="885" width="0.1446%" height="15" fill="rgb(221,65,9)" fg:x="561" fg:w="8"/><text x="10.3928%" y="895.50"></text></g><g><title>core::str::converts::from_utf8 (1 samples, 0.02%)</title><rect x="10.2875%" y="885" width="0.0181%" height="15" fill="rgb(235,49,36)" fg:x="569" fg:w="1"/><text x="10.5375%" y="895.50"></text></g><g><title>hashbrown::map::make_hash (3 samples, 0.05%)</title><rect x="10.3056%" y="885" width="0.0542%" height="15" fill="rgb(225,32,20)" fg:x="570" fg:w="3"/><text x="10.5556%" y="895.50"></text></g><g><title>malloc_consolidate (1 samples, 0.02%)</title><rect x="10.3598%" y="885" width="0.0181%" height="15" fill="rgb(215,141,46)" fg:x="573" fg:w="1"/><text x="10.6098%" y="895.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (6 samples, 0.11%)</title><rect x="10.3779%" y="885" width="0.1085%" height="15" fill="rgb(250,160,47)" fg:x="574" fg:w="6"/><text x="10.6279%" y="895.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_le (2 samples, 0.04%)</title><rect x="10.4863%" y="885" width="0.0362%" height="15" fill="rgb(216,222,40)" fg:x="580" fg:w="2"/><text x="10.7363%" y="895.50"></text></g><g><title>num_bigint::biguint::multiplication::mac3 (2 samples, 0.04%)</title><rect x="10.5225%" y="885" width="0.0362%" height="15" fill="rgb(234,217,39)" fg:x="582" fg:w="2"/><text x="10.7725%" y="895.50"></text></g><g><title>num_bigint::biguint::multiplication::mul3 (20 samples, 0.36%)</title><rect x="10.5587%" y="885" width="0.3616%" height="15" fill="rgb(207,178,40)" fg:x="584" fg:w="20"/><text x="10.8087%" y="895.50"></text></g><g><title>alloc::vec::from_elem (3 samples, 0.05%)</title><rect x="10.8660%" y="869" width="0.0542%" height="15" fill="rgb(221,136,13)" fg:x="601" fg:w="3"/><text x="11.1160%" y="879.50"></text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (3 samples, 0.05%)</title><rect x="10.8660%" y="853" width="0.0542%" height="15" fill="rgb(249,199,10)" fg:x="601" fg:w="3"/><text x="11.1160%" y="863.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (3 samples, 0.05%)</title><rect x="10.8660%" y="837" width="0.0542%" height="15" fill="rgb(249,222,13)" fg:x="601" fg:w="3"/><text x="11.1160%" y="847.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (3 samples, 0.05%)</title><rect x="10.8660%" y="821" width="0.0542%" height="15" fill="rgb(244,185,38)" fg:x="601" fg:w="3"/><text x="11.1160%" y="831.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (3 samples, 0.05%)</title><rect x="10.8660%" y="805" width="0.0542%" height="15" fill="rgb(236,202,9)" fg:x="601" fg:w="3"/><text x="11.1160%" y="815.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 0.05%)</title><rect x="10.8660%" y="789" width="0.0542%" height="15" fill="rgb(250,229,37)" fg:x="601" fg:w="3"/><text x="11.1160%" y="799.50"></text></g><g><title>alloc::alloc::alloc_zeroed (3 samples, 0.05%)</title><rect x="10.8660%" y="773" width="0.0542%" height="15" fill="rgb(206,174,23)" fg:x="601" fg:w="3"/><text x="11.1160%" y="783.50"></text></g><g><title>phone_encoder::word_to_number (13 samples, 0.24%)</title><rect x="10.9564%" y="853" width="0.2350%" height="15" fill="rgb(211,33,43)" fg:x="606" fg:w="13"/><text x="11.2064%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (13 samples, 0.24%)</title><rect x="10.9564%" y="837" width="0.2350%" height="15" fill="rgb(245,58,50)" fg:x="606" fg:w="13"/><text x="11.2064%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (13 samples, 0.24%)</title><rect x="10.9564%" y="821" width="0.2350%" height="15" fill="rgb(244,68,36)" fg:x="606" fg:w="13"/><text x="11.2064%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (13 samples, 0.24%)</title><rect x="10.9564%" y="805" width="0.2350%" height="15" fill="rgb(232,229,15)" fg:x="606" fg:w="13"/><text x="11.2064%" y="815.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (13 samples, 0.24%)</title><rect x="10.9564%" y="789" width="0.2350%" height="15" fill="rgb(254,30,23)" fg:x="606" fg:w="13"/><text x="11.2064%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (13 samples, 0.24%)</title><rect x="10.9564%" y="773" width="0.2350%" height="15" fill="rgb(235,160,14)" fg:x="606" fg:w="13"/><text x="11.2064%" y="783.50"></text></g><g><title>alloc::alloc::dealloc (13 samples, 0.24%)</title><rect x="10.9564%" y="757" width="0.2350%" height="15" fill="rgb(212,155,44)" fg:x="606" fg:w="13"/><text x="11.2064%" y="767.50"></text></g><g><title>phone_encoder::load_dict (15 samples, 0.27%)</title><rect x="10.9383%" y="869" width="0.2712%" height="15" fill="rgb(226,2,50)" fg:x="605" fg:w="15"/><text x="11.1883%" y="879.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::entry (1 samples, 0.02%)</title><rect x="11.1915%" y="853" width="0.0181%" height="15" fill="rgb(234,177,6)" fg:x="619" fg:w="1"/><text x="11.4415%" y="863.50"></text></g><g><title>hashbrown::rustc_entry::&lt;impl hashbrown::map::HashMap&lt;K,V,S&gt;&gt;::rustc_entry (1 samples, 0.02%)</title><rect x="11.1915%" y="837" width="0.0181%" height="15" fill="rgb(217,24,9)" fg:x="619" fg:w="1"/><text x="11.4415%" y="847.50"></text></g><g><title>phone_encoder::main (17 samples, 0.31%)</title><rect x="10.9203%" y="885" width="0.3074%" height="15" fill="rgb(220,13,46)" fg:x="604" fg:w="17"/><text x="11.1703%" y="895.50"></text></g><g><title>phone_encoder::read_lines (1 samples, 0.02%)</title><rect x="11.2095%" y="869" width="0.0181%" height="15" fill="rgb(239,221,27)" fg:x="620" fg:w="1"/><text x="11.4595%" y="879.50"></text></g><g><title>std::fs::File::open (1 samples, 0.02%)</title><rect x="11.2095%" y="853" width="0.0181%" height="15" fill="rgb(222,198,25)" fg:x="620" fg:w="1"/><text x="11.4595%" y="863.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.02%)</title><rect x="11.2095%" y="837" width="0.0181%" height="15" fill="rgb(211,99,13)" fg:x="620" fg:w="1"/><text x="11.4595%" y="847.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="11.2095%" y="821" width="0.0181%" height="15" fill="rgb(232,111,31)" fg:x="620" fg:w="1"/><text x="11.4595%" y="831.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="11.2095%" y="805" width="0.0181%" height="15" fill="rgb(245,82,37)" fg:x="620" fg:w="1"/><text x="11.4595%" y="815.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="11.2095%" y="789" width="0.0181%" height="15" fill="rgb(227,149,46)" fg:x="620" fg:w="1"/><text x="11.4595%" y="799.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="11.2095%" y="773" width="0.0181%" height="15" fill="rgb(218,36,50)" fg:x="620" fg:w="1"/><text x="11.4595%" y="783.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="11.2095%" y="757" width="0.0181%" height="15" fill="rgb(226,80,48)" fg:x="620" fg:w="1"/><text x="11.4595%" y="767.50"></text></g><g><title>phone_encoder::print_translations (8 samples, 0.14%)</title><rect x="11.2276%" y="885" width="0.1446%" height="15" fill="rgb(238,224,15)" fg:x="621" fg:w="8"/><text x="11.4776%" y="895.50"></text></g><g><title>std::io::append_to_string (1 samples, 0.02%)</title><rect x="11.3723%" y="885" width="0.0181%" height="15" fill="rgb(241,136,10)" fg:x="629" fg:w="1"/><text x="11.6223%" y="895.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (3 samples, 0.05%)</title><rect x="11.3903%" y="885" width="0.0542%" height="15" fill="rgb(208,32,45)" fg:x="630" fg:w="3"/><text x="11.6403%" y="895.50"></text></g><g><title>std::io::stdio::_print (11 samples, 0.20%)</title><rect x="11.4446%" y="885" width="0.1989%" height="15" fill="rgb(207,135,9)" fg:x="633" fg:w="11"/><text x="11.6946%" y="895.50"></text></g><g><title>std::sys::unix::memchr::memchr (1 samples, 0.02%)</title><rect x="11.6435%" y="885" width="0.0181%" height="15" fill="rgb(206,86,44)" fg:x="644" fg:w="1"/><text x="11.8935%" y="895.50"></text></g><g><title>[unknown] (319 samples, 5.77%)</title><rect x="5.9121%" y="901" width="5.7675%" height="15" fill="rgb(245,177,15)" fg:x="327" fg:w="319"/><text x="6.1621%" y="911.50">[unknow..</text></g><g><title>unlink_chunk (1 samples, 0.02%)</title><rect x="11.6615%" y="885" width="0.0181%" height="15" fill="rgb(206,64,50)" fg:x="645" fg:w="1"/><text x="11.9115%" y="895.50"></text></g><g><title>__libc_calloc (6 samples, 0.11%)</title><rect x="11.6796%" y="901" width="0.1085%" height="15" fill="rgb(234,36,40)" fg:x="646" fg:w="6"/><text x="11.9296%" y="911.50"></text></g><g><title>__libc_write (2 samples, 0.04%)</title><rect x="11.7881%" y="901" width="0.0362%" height="15" fill="rgb(213,64,8)" fg:x="652" fg:w="2"/><text x="12.0381%" y="911.50"></text></g><g><title>[unknown] (2 samples, 0.04%)</title><rect x="11.7881%" y="885" width="0.0362%" height="15" fill="rgb(210,75,36)" fg:x="652" fg:w="2"/><text x="12.0381%" y="895.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="11.8243%" y="901" width="0.0181%" height="15" fill="rgb(229,88,21)" fg:x="654" fg:w="1"/><text x="12.0743%" y="911.50"></text></g><g><title>__rdl_alloc_zeroed (2 samples, 0.04%)</title><rect x="11.8423%" y="901" width="0.0362%" height="15" fill="rgb(252,204,47)" fg:x="655" fg:w="2"/><text x="12.0923%" y="911.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (2 samples, 0.04%)</title><rect x="11.8423%" y="885" width="0.0362%" height="15" fill="rgb(208,77,27)" fg:x="655" fg:w="2"/><text x="12.0923%" y="895.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (12 samples, 0.22%)</title><rect x="11.8785%" y="885" width="0.2170%" height="15" fill="rgb(221,76,26)" fg:x="657" fg:w="12"/><text x="12.1285%" y="895.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (11 samples, 0.20%)</title><rect x="11.8966%" y="869" width="0.1989%" height="15" fill="rgb(225,139,18)" fg:x="658" fg:w="11"/><text x="12.1466%" y="879.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (11 samples, 0.20%)</title><rect x="11.8966%" y="853" width="0.1989%" height="15" fill="rgb(230,137,11)" fg:x="658" fg:w="11"/><text x="12.1466%" y="863.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (11 samples, 0.20%)</title><rect x="11.8966%" y="837" width="0.1989%" height="15" fill="rgb(212,28,1)" fg:x="658" fg:w="11"/><text x="12.1466%" y="847.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (11 samples, 0.20%)</title><rect x="11.8966%" y="821" width="0.1989%" height="15" fill="rgb(248,164,17)" fg:x="658" fg:w="11"/><text x="12.1466%" y="831.50"></text></g><g><title>core::fmt::write (11 samples, 0.20%)</title><rect x="11.8966%" y="805" width="0.1989%" height="15" fill="rgb(222,171,42)" fg:x="658" fg:w="11"/><text x="12.1466%" y="815.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (11 samples, 0.20%)</title><rect x="11.8966%" y="789" width="0.1989%" height="15" fill="rgb(243,84,45)" fg:x="658" fg:w="11"/><text x="12.1466%" y="799.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (11 samples, 0.20%)</title><rect x="11.8966%" y="773" width="0.1989%" height="15" fill="rgb(252,49,23)" fg:x="658" fg:w="11"/><text x="12.1466%" y="783.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (11 samples, 0.20%)</title><rect x="11.8966%" y="757" width="0.1989%" height="15" fill="rgb(215,19,7)" fg:x="658" fg:w="11"/><text x="12.1466%" y="767.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (11 samples, 0.20%)</title><rect x="11.8966%" y="741" width="0.1989%" height="15" fill="rgb(238,81,41)" fg:x="658" fg:w="11"/><text x="12.1466%" y="751.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (11 samples, 0.20%)</title><rect x="11.8966%" y="725" width="0.1989%" height="15" fill="rgb(210,199,37)" fg:x="658" fg:w="11"/><text x="12.1466%" y="735.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (11 samples, 0.20%)</title><rect x="11.8966%" y="709" width="0.1989%" height="15" fill="rgb(244,192,49)" fg:x="658" fg:w="11"/><text x="12.1466%" y="719.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (11 samples, 0.20%)</title><rect x="11.8966%" y="693" width="0.1989%" height="15" fill="rgb(226,211,11)" fg:x="658" fg:w="11"/><text x="12.1466%" y="703.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (11 samples, 0.20%)</title><rect x="11.8966%" y="677" width="0.1989%" height="15" fill="rgb(236,162,54)" fg:x="658" fg:w="11"/><text x="12.1466%" y="687.50"></text></g><g><title>__libc_write (11 samples, 0.20%)</title><rect x="11.8966%" y="661" width="0.1989%" height="15" fill="rgb(220,229,9)" fg:x="658" fg:w="11"/><text x="12.1466%" y="671.50"></text></g><g><title>[unknown] (11 samples, 0.20%)</title><rect x="11.8966%" y="645" width="0.1989%" height="15" fill="rgb(250,87,22)" fg:x="658" fg:w="11"/><text x="12.1466%" y="655.50"></text></g><g><title>_fini (21 samples, 0.38%)</title><rect x="11.8785%" y="901" width="0.3797%" height="15" fill="rgb(239,43,17)" fg:x="657" fg:w="21"/><text x="12.1285%" y="911.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (9 samples, 0.16%)</title><rect x="12.0955%" y="885" width="0.1627%" height="15" fill="rgb(231,177,25)" fg:x="669" fg:w="9"/><text x="12.3455%" y="895.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (3 samples, 0.05%)</title><rect x="12.2039%" y="869" width="0.0542%" height="15" fill="rgb(219,179,1)" fg:x="675" fg:w="3"/><text x="12.4539%" y="879.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 (3 samples, 0.05%)</title><rect x="12.2039%" y="853" width="0.0542%" height="15" fill="rgb(238,219,53)" fg:x="675" fg:w="3"/><text x="12.4539%" y="863.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (3 samples, 0.05%)</title><rect x="12.2039%" y="837" width="0.0542%" height="15" fill="rgb(232,167,36)" fg:x="675" fg:w="3"/><text x="12.4539%" y="847.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.05%)</title><rect x="12.2039%" y="821" width="0.0542%" height="15" fill="rgb(244,19,51)" fg:x="675" fg:w="3"/><text x="12.4539%" y="831.50"></text></g><g><title>_init (1 samples, 0.02%)</title><rect x="12.2582%" y="901" width="0.0181%" height="15" fill="rgb(224,6,22)" fg:x="678" fg:w="1"/><text x="12.5082%" y="911.50"></text></g><g><title>__pthread_initialize_minimal_internal (1 samples, 0.02%)</title><rect x="12.2582%" y="885" width="0.0181%" height="15" fill="rgb(224,145,5)" fg:x="678" fg:w="1"/><text x="12.5082%" y="895.50"></text></g><g><title>__libc_pthread_init (1 samples, 0.02%)</title><rect x="12.2582%" y="869" width="0.0181%" height="15" fill="rgb(234,130,49)" fg:x="678" fg:w="1"/><text x="12.5082%" y="879.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="853" width="0.0181%" height="15" fill="rgb(254,6,2)" fg:x="678" fg:w="1"/><text x="12.5082%" y="863.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="837" width="0.0181%" height="15" fill="rgb(208,96,46)" fg:x="678" fg:w="1"/><text x="12.5082%" y="847.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="821" width="0.0181%" height="15" fill="rgb(239,3,39)" fg:x="678" fg:w="1"/><text x="12.5082%" y="831.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="805" width="0.0181%" height="15" fill="rgb(233,210,1)" fg:x="678" fg:w="1"/><text x="12.5082%" y="815.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="789" width="0.0181%" height="15" fill="rgb(244,137,37)" fg:x="678" fg:w="1"/><text x="12.5082%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="773" width="0.0181%" height="15" fill="rgb(240,136,2)" fg:x="678" fg:w="1"/><text x="12.5082%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="757" width="0.0181%" height="15" fill="rgb(239,18,37)" fg:x="678" fg:w="1"/><text x="12.5082%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="741" width="0.0181%" height="15" fill="rgb(218,185,22)" fg:x="678" fg:w="1"/><text x="12.5082%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="725" width="0.0181%" height="15" fill="rgb(225,218,4)" fg:x="678" fg:w="1"/><text x="12.5082%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="12.2582%" y="709" width="0.0181%" height="15" fill="rgb(230,182,32)" fg:x="678" fg:w="1"/><text x="12.5082%" y="719.50"></text></g><g><title>_int_free (3 samples, 0.05%)</title><rect x="12.2763%" y="901" width="0.0542%" height="15" fill="rgb(242,56,43)" fg:x="679" fg:w="3"/><text x="12.5263%" y="911.50"></text></g><g><title>_int_malloc (16 samples, 0.29%)</title><rect x="12.3305%" y="901" width="0.2893%" height="15" fill="rgb(233,99,24)" fg:x="682" fg:w="16"/><text x="12.5805%" y="911.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="12.6921%" y="629" width="0.0181%" height="15" fill="rgb(234,209,42)" fg:x="702" fg:w="1"/><text x="12.9421%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="12.6921%" y="613" width="0.0181%" height="15" fill="rgb(227,7,12)" fg:x="702" fg:w="1"/><text x="12.9421%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="12.6921%" y="597" width="0.0181%" height="15" fill="rgb(245,203,43)" fg:x="702" fg:w="1"/><text x="12.9421%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="12.6921%" y="581" width="0.0181%" height="15" fill="rgb(238,205,33)" fg:x="702" fg:w="1"/><text x="12.9421%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="12.6921%" y="565" width="0.0181%" height="15" fill="rgb(231,56,7)" fg:x="702" fg:w="1"/><text x="12.9421%" y="575.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="12.6921%" y="549" width="0.0181%" height="15" fill="rgb(244,186,29)" fg:x="702" fg:w="1"/><text x="12.9421%" y="559.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="12.6921%" y="533" width="0.0181%" height="15" fill="rgb(234,111,31)" fg:x="702" fg:w="1"/><text x="12.9421%" y="543.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="12.6921%" y="517" width="0.0181%" height="15" fill="rgb(241,149,10)" fg:x="702" fg:w="1"/><text x="12.9421%" y="527.50"></text></g><g><title>&lt;alloc::string::String as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="12.6921%" y="709" width="0.0362%" height="15" fill="rgb(249,206,44)" fg:x="702" fg:w="2"/><text x="12.9421%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="12.6921%" y="693" width="0.0362%" height="15" fill="rgb(251,153,30)" fg:x="702" fg:w="2"/><text x="12.9421%" y="703.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="12.6921%" y="677" width="0.0362%" height="15" fill="rgb(239,152,38)" fg:x="702" fg:w="2"/><text x="12.9421%" y="687.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="12.6921%" y="661" width="0.0362%" height="15" fill="rgb(249,139,47)" fg:x="702" fg:w="2"/><text x="12.9421%" y="671.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="12.6921%" y="645" width="0.0362%" height="15" fill="rgb(244,64,35)" fg:x="702" fg:w="2"/><text x="12.9421%" y="655.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="12.7102%" y="629" width="0.0181%" height="15" fill="rgb(216,46,15)" fg:x="703" fg:w="1"/><text x="12.9602%" y="639.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="12.7102%" y="613" width="0.0181%" height="15" fill="rgb(250,74,19)" fg:x="703" fg:w="1"/><text x="12.9602%" y="623.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="12.7102%" y="597" width="0.0181%" height="15" fill="rgb(249,42,33)" fg:x="703" fg:w="1"/><text x="12.9602%" y="607.50"></text></g><g><title>&lt;alloc::string::String as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="12.7283%" y="709" width="0.0181%" height="15" fill="rgb(242,149,17)" fg:x="704" fg:w="1"/><text x="12.9783%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="12.7283%" y="693" width="0.0181%" height="15" fill="rgb(244,29,21)" fg:x="704" fg:w="1"/><text x="12.9783%" y="703.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="12.7283%" y="677" width="0.0181%" height="15" fill="rgb(220,130,37)" fg:x="704" fg:w="1"/><text x="12.9783%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.02%)</title><rect x="12.7644%" y="693" width="0.0181%" height="15" fill="rgb(211,67,2)" fg:x="706" fg:w="1"/><text x="13.0144%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="12.7644%" y="677" width="0.0181%" height="15" fill="rgb(235,68,52)" fg:x="706" fg:w="1"/><text x="13.0144%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="12.7644%" y="661" width="0.0181%" height="15" fill="rgb(246,142,3)" fg:x="706" fg:w="1"/><text x="13.0144%" y="671.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="12.7644%" y="645" width="0.0181%" height="15" fill="rgb(241,25,7)" fg:x="706" fg:w="1"/><text x="13.0144%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (1 samples, 0.02%)</title><rect x="12.7644%" y="629" width="0.0181%" height="15" fill="rgb(242,119,39)" fg:x="706" fg:w="1"/><text x="13.0144%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (2 samples, 0.04%)</title><rect x="12.8006%" y="661" width="0.0362%" height="15" fill="rgb(241,98,45)" fg:x="708" fg:w="2"/><text x="13.0506%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="12.8006%" y="645" width="0.0362%" height="15" fill="rgb(254,28,30)" fg:x="708" fg:w="2"/><text x="13.0506%" y="655.50"></text></g><g><title>core::str::converts::from_utf8 (4 samples, 0.07%)</title><rect x="12.8367%" y="661" width="0.0723%" height="15" fill="rgb(241,142,54)" fg:x="710" fg:w="4"/><text x="13.0867%" y="671.50"></text></g><g><title>core::str::validations::run_utf8_validation (4 samples, 0.07%)</title><rect x="12.8367%" y="645" width="0.0723%" height="15" fill="rgb(222,85,15)" fg:x="710" fg:w="4"/><text x="13.0867%" y="655.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::BufRead&gt;::consume (1 samples, 0.02%)</title><rect x="12.9271%" y="629" width="0.0181%" height="15" fill="rgb(210,85,47)" fg:x="715" fg:w="1"/><text x="13.1771%" y="639.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::BufRead&gt;::fill_buf (140 samples, 2.53%)</title><rect x="12.9452%" y="629" width="2.5312%" height="15" fill="rgb(224,206,25)" fg:x="716" fg:w="140"/><text x="13.1952%" y="639.50">&lt;s..</text></g><g><title>&lt;std::fs::File as std::io::Read&gt;::read (140 samples, 2.53%)</title><rect x="12.9452%" y="613" width="2.5312%" height="15" fill="rgb(243,201,19)" fg:x="716" fg:w="140"/><text x="13.1952%" y="623.50">&lt;s..</text></g><g><title>std::sys::unix::fs::File::read (140 samples, 2.53%)</title><rect x="12.9452%" y="597" width="2.5312%" height="15" fill="rgb(236,59,4)" fg:x="716" fg:w="140"/><text x="13.1952%" y="607.50">st..</text></g><g><title>std::sys::unix::fd::FileDesc::read (140 samples, 2.53%)</title><rect x="12.9452%" y="581" width="2.5312%" height="15" fill="rgb(254,179,45)" fg:x="716" fg:w="140"/><text x="13.1952%" y="591.50">st..</text></g><g><title>__libc_read (140 samples, 2.53%)</title><rect x="12.9452%" y="565" width="2.5312%" height="15" fill="rgb(226,14,10)" fg:x="716" fg:w="140"/><text x="13.1952%" y="575.50">__..</text></g><g><title>[unknown] (136 samples, 2.46%)</title><rect x="13.0175%" y="549" width="2.4589%" height="15" fill="rgb(244,27,41)" fg:x="720" fg:w="136"/><text x="13.2675%" y="559.50">[u..</text></g><g><title>[unknown] (113 samples, 2.04%)</title><rect x="13.4334%" y="533" width="2.0430%" height="15" fill="rgb(235,35,32)" fg:x="743" fg:w="113"/><text x="13.6834%" y="543.50">[..</text></g><g><title>[unknown] (73 samples, 1.32%)</title><rect x="14.1566%" y="517" width="1.3198%" height="15" fill="rgb(218,68,31)" fg:x="783" fg:w="73"/><text x="14.4066%" y="527.50"></text></g><g><title>[unknown] (70 samples, 1.27%)</title><rect x="14.2108%" y="501" width="1.2656%" height="15" fill="rgb(207,120,37)" fg:x="786" fg:w="70"/><text x="14.4608%" y="511.50"></text></g><g><title>[unknown] (63 samples, 1.14%)</title><rect x="14.3374%" y="485" width="1.1390%" height="15" fill="rgb(227,98,0)" fg:x="793" fg:w="63"/><text x="14.5874%" y="495.50"></text></g><g><title>[unknown] (49 samples, 0.89%)</title><rect x="14.5905%" y="469" width="0.8859%" height="15" fill="rgb(207,7,3)" fg:x="807" fg:w="49"/><text x="14.8405%" y="479.50"></text></g><g><title>[unknown] (37 samples, 0.67%)</title><rect x="14.8074%" y="453" width="0.6690%" height="15" fill="rgb(206,98,19)" fg:x="819" fg:w="37"/><text x="15.0574%" y="463.50"></text></g><g><title>[unknown] (30 samples, 0.54%)</title><rect x="14.9340%" y="437" width="0.5424%" height="15" fill="rgb(217,5,26)" fg:x="826" fg:w="30"/><text x="15.1840%" y="447.50"></text></g><g><title>[unknown] (27 samples, 0.49%)</title><rect x="14.9882%" y="421" width="0.4882%" height="15" fill="rgb(235,190,38)" fg:x="829" fg:w="27"/><text x="15.2382%" y="431.50"></text></g><g><title>[unknown] (13 samples, 0.24%)</title><rect x="15.2414%" y="405" width="0.2350%" height="15" fill="rgb(247,86,24)" fg:x="843" fg:w="13"/><text x="15.4914%" y="415.50"></text></g><g><title>[unknown] (8 samples, 0.14%)</title><rect x="15.3318%" y="389" width="0.1446%" height="15" fill="rgb(205,101,16)" fg:x="848" fg:w="8"/><text x="15.5818%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="15.4583%" y="373" width="0.0181%" height="15" fill="rgb(246,168,33)" fg:x="855" fg:w="1"/><text x="15.7083%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="15.4583%" y="357" width="0.0181%" height="15" fill="rgb(231,114,1)" fg:x="855" fg:w="1"/><text x="15.7083%" y="367.50"></text></g><g><title>__GI___libc_malloc (3 samples, 0.05%)</title><rect x="15.5306%" y="501" width="0.0542%" height="15" fill="rgb(207,184,53)" fg:x="859" fg:w="3"/><text x="15.7806%" y="511.50"></text></g><g><title>tcache_get (2 samples, 0.04%)</title><rect x="15.5487%" y="485" width="0.0362%" height="15" fill="rgb(224,95,51)" fg:x="860" fg:w="2"/><text x="15.7987%" y="495.50"></text></g><g><title>__rdl_alloc (2 samples, 0.04%)</title><rect x="15.5849%" y="501" width="0.0362%" height="15" fill="rgb(212,188,45)" fg:x="862" fg:w="2"/><text x="15.8349%" y="511.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (2 samples, 0.04%)</title><rect x="15.5849%" y="485" width="0.0362%" height="15" fill="rgb(223,154,38)" fg:x="862" fg:w="2"/><text x="15.8349%" y="495.50"></text></g><g><title>alloc::raw_vec::finish_grow (9 samples, 0.16%)</title><rect x="15.4764%" y="517" width="0.1627%" height="15" fill="rgb(251,22,52)" fg:x="856" fg:w="9"/><text x="15.7264%" y="527.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="15.6210%" y="501" width="0.0181%" height="15" fill="rgb(229,209,22)" fg:x="864" fg:w="1"/><text x="15.8710%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (10 samples, 0.18%)</title><rect x="15.4764%" y="629" width="0.1808%" height="15" fill="rgb(234,138,34)" fg:x="856" fg:w="10"/><text x="15.7264%" y="639.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 (10 samples, 0.18%)</title><rect x="15.4764%" y="613" width="0.1808%" height="15" fill="rgb(212,95,11)" fg:x="856" fg:w="10"/><text x="15.7264%" y="623.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (10 samples, 0.18%)</title><rect x="15.4764%" y="597" width="0.1808%" height="15" fill="rgb(240,179,47)" fg:x="856" fg:w="10"/><text x="15.7264%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (10 samples, 0.18%)</title><rect x="15.4764%" y="581" width="0.1808%" height="15" fill="rgb(240,163,11)" fg:x="856" fg:w="10"/><text x="15.7264%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (10 samples, 0.18%)</title><rect x="15.4764%" y="565" width="0.1808%" height="15" fill="rgb(236,37,12)" fg:x="856" fg:w="10"/><text x="15.7264%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (10 samples, 0.18%)</title><rect x="15.4764%" y="549" width="0.1808%" height="15" fill="rgb(232,164,16)" fg:x="856" fg:w="10"/><text x="15.7264%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (10 samples, 0.18%)</title><rect x="15.4764%" y="533" width="0.1808%" height="15" fill="rgb(244,205,15)" fg:x="856" fg:w="10"/><text x="15.7264%" y="543.50"></text></g><g><title>core::cmp::max (1 samples, 0.02%)</title><rect x="15.6391%" y="517" width="0.0181%" height="15" fill="rgb(223,117,47)" fg:x="865" fg:w="1"/><text x="15.8891%" y="527.50"></text></g><g><title>core::cmp::Ord::max (1 samples, 0.02%)</title><rect x="15.6391%" y="501" width="0.0181%" height="15" fill="rgb(244,107,35)" fg:x="865" fg:w="1"/><text x="15.8891%" y="511.50"></text></g><g><title>core::cmp::max_by (1 samples, 0.02%)</title><rect x="15.6391%" y="485" width="0.0181%" height="15" fill="rgb(205,140,8)" fg:x="865" fg:w="1"/><text x="15.8891%" y="495.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.02%)</title><rect x="15.6572%" y="629" width="0.0181%" height="15" fill="rgb(228,84,46)" fg:x="866" fg:w="1"/><text x="15.9072%" y="639.50"></text></g><g><title>&lt;core::ops::range::RangeToInclusive&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.02%)</title><rect x="15.6572%" y="613" width="0.0181%" height="15" fill="rgb(254,188,9)" fg:x="866" fg:w="1"/><text x="15.9072%" y="623.50"></text></g><g><title>&lt;core::ops::range::RangeInclusive&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.02%)</title><rect x="15.6572%" y="597" width="0.0181%" height="15" fill="rgb(206,112,54)" fg:x="866" fg:w="1"/><text x="15.9072%" y="607.50"></text></g><g><title>&lt;std::io::Lines&lt;B&gt; as core::iter::traits::iterator::Iterator&gt;::next (166 samples, 3.00%)</title><rect x="12.7463%" y="709" width="3.0013%" height="15" fill="rgb(216,84,49)" fg:x="705" fg:w="166"/><text x="12.9963%" y="719.50">&lt;st..</text></g><g><title>std::io::BufRead::read_line (164 samples, 2.97%)</title><rect x="12.7825%" y="693" width="2.9651%" height="15" fill="rgb(214,194,35)" fg:x="707" fg:w="164"/><text x="13.0325%" y="703.50">std..</text></g><g><title>std::io::append_to_string (164 samples, 2.97%)</title><rect x="12.7825%" y="677" width="2.9651%" height="15" fill="rgb(249,28,3)" fg:x="707" fg:w="164"/><text x="13.0325%" y="687.50">std..</text></g><g><title>std::io::BufRead::read_line::{{closure}} (157 samples, 2.84%)</title><rect x="12.9091%" y="661" width="2.8385%" height="15" fill="rgb(222,56,52)" fg:x="714" fg:w="157"/><text x="13.1591%" y="671.50">st..</text></g><g><title>std::io::read_until (157 samples, 2.84%)</title><rect x="12.9091%" y="645" width="2.8385%" height="15" fill="rgb(245,217,50)" fg:x="714" fg:w="157"/><text x="13.1591%" y="655.50">st..</text></g><g><title>std::memchr::memchr (4 samples, 0.07%)</title><rect x="15.6753%" y="629" width="0.0723%" height="15" fill="rgb(213,201,24)" fg:x="867" fg:w="4"/><text x="15.9253%" y="639.50"></text></g><g><title>std::sys::unix::memchr::memchr (2 samples, 0.04%)</title><rect x="15.7114%" y="613" width="0.0362%" height="15" fill="rgb(248,116,28)" fg:x="869" fg:w="2"/><text x="15.9614%" y="623.50"></text></g><g><title>__memchr_avx2 (2 samples, 0.04%)</title><rect x="15.7114%" y="597" width="0.0362%" height="15" fill="rgb(219,72,43)" fg:x="869" fg:w="2"/><text x="15.9614%" y="607.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="15.8561%" y="565" width="0.0181%" height="15" fill="rgb(209,138,14)" fg:x="877" fg:w="1"/><text x="16.1061%" y="575.50"></text></g><g><title>core::str::validations::next_code_point (1 samples, 0.02%)</title><rect x="15.8561%" y="549" width="0.0181%" height="15" fill="rgb(222,18,33)" fg:x="877" fg:w="1"/><text x="16.1061%" y="559.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="15.8561%" y="533" width="0.0181%" height="15" fill="rgb(213,199,7)" fg:x="877" fg:w="1"/><text x="16.1061%" y="543.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (1 samples, 0.02%)</title><rect x="15.8561%" y="517" width="0.0181%" height="15" fill="rgb(250,110,10)" fg:x="877" fg:w="1"/><text x="16.1061%" y="527.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (1 samples, 0.02%)</title><rect x="15.8561%" y="501" width="0.0181%" height="15" fill="rgb(248,123,6)" fg:x="877" fg:w="1"/><text x="16.1061%" y="511.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_alphabetic (5 samples, 0.09%)</title><rect x="15.8742%" y="501" width="0.0904%" height="15" fill="rgb(206,91,31)" fg:x="878" fg:w="5"/><text x="16.1242%" y="511.50"></text></g><g><title>&lt;core::iter::adapters::filter::Filter&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.14%)</title><rect x="15.8380%" y="613" width="0.1446%" height="15" fill="rgb(211,154,13)" fg:x="876" fg:w="8"/><text x="16.0880%" y="623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find (8 samples, 0.14%)</title><rect x="15.8380%" y="597" width="0.1446%" height="15" fill="rgb(225,148,7)" fg:x="876" fg:w="8"/><text x="16.0880%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (8 samples, 0.14%)</title><rect x="15.8380%" y="581" width="0.1446%" height="15" fill="rgb(220,160,43)" fg:x="876" fg:w="8"/><text x="16.0880%" y="591.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find::check::{{closure}} (6 samples, 0.11%)</title><rect x="15.8742%" y="565" width="0.1085%" height="15" fill="rgb(213,52,39)" fg:x="878" fg:w="6"/><text x="16.1242%" y="575.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (6 samples, 0.11%)</title><rect x="15.8742%" y="549" width="0.1085%" height="15" fill="rgb(243,137,7)" fg:x="878" fg:w="6"/><text x="16.1242%" y="559.50"></text></g><g><title>phone_encoder::main::{{closure}} (6 samples, 0.11%)</title><rect x="15.8742%" y="533" width="0.1085%" height="15" fill="rgb(230,79,13)" fg:x="878" fg:w="6"/><text x="16.1242%" y="543.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_alphanumeric (6 samples, 0.11%)</title><rect x="15.8742%" y="517" width="0.1085%" height="15" fill="rgb(247,105,23)" fg:x="878" fg:w="6"/><text x="16.1242%" y="527.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_numeric (1 samples, 0.02%)</title><rect x="15.9646%" y="501" width="0.0181%" height="15" fill="rgb(223,179,41)" fg:x="883" fg:w="1"/><text x="16.2146%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (2 samples, 0.04%)</title><rect x="15.9826%" y="613" width="0.0362%" height="15" fill="rgb(218,9,34)" fg:x="884" fg:w="2"/><text x="16.2326%" y="623.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.05%)</title><rect x="16.1996%" y="453" width="0.0542%" height="15" fill="rgb(222,106,8)" fg:x="896" fg:w="3"/><text x="16.4496%" y="463.50"></text></g><g><title>_int_free (4 samples, 0.07%)</title><rect x="16.2538%" y="453" width="0.0723%" height="15" fill="rgb(211,220,0)" fg:x="899" fg:w="4"/><text x="16.5038%" y="463.50"></text></g><g><title>tcache_put (1 samples, 0.02%)</title><rect x="16.3081%" y="437" width="0.0181%" height="15" fill="rgb(229,52,16)" fg:x="902" fg:w="1"/><text x="16.5581%" y="447.50"></text></g><g><title>_int_realloc (15 samples, 0.27%)</title><rect x="16.1273%" y="469" width="0.2712%" height="15" fill="rgb(212,155,18)" fg:x="892" fg:w="15"/><text x="16.3773%" y="479.50"></text></g><g><title>_int_malloc (4 samples, 0.07%)</title><rect x="16.3262%" y="453" width="0.0723%" height="15" fill="rgb(242,21,14)" fg:x="903" fg:w="4"/><text x="16.5762%" y="463.50"></text></g><g><title>alloc::raw_vec::finish_grow (20 samples, 0.36%)</title><rect x="16.0550%" y="549" width="0.3616%" height="15" fill="rgb(222,19,48)" fg:x="888" fg:w="20"/><text x="16.3050%" y="559.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (19 samples, 0.34%)</title><rect x="16.0730%" y="533" width="0.3435%" height="15" fill="rgb(232,45,27)" fg:x="889" fg:w="19"/><text x="16.3230%" y="543.50"></text></g><g><title>alloc::alloc::Global::grow_impl (19 samples, 0.34%)</title><rect x="16.0730%" y="517" width="0.3435%" height="15" fill="rgb(249,103,42)" fg:x="889" fg:w="19"/><text x="16.3230%" y="527.50"></text></g><g><title>alloc::alloc::realloc (19 samples, 0.34%)</title><rect x="16.0730%" y="501" width="0.3435%" height="15" fill="rgb(246,81,33)" fg:x="889" fg:w="19"/><text x="16.3230%" y="511.50"></text></g><g><title>__GI___libc_realloc (19 samples, 0.34%)</title><rect x="16.0730%" y="485" width="0.3435%" height="15" fill="rgb(252,33,42)" fg:x="889" fg:w="19"/><text x="16.3230%" y="495.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="16.3985%" y="469" width="0.0181%" height="15" fill="rgb(209,212,41)" fg:x="907" fg:w="1"/><text x="16.6485%" y="479.50"></text></g><g><title>core::cmp::max (4 samples, 0.07%)</title><rect x="16.4166%" y="549" width="0.0723%" height="15" fill="rgb(207,154,6)" fg:x="908" fg:w="4"/><text x="16.6666%" y="559.50"></text></g><g><title>core::cmp::Ord::max (4 samples, 0.07%)</title><rect x="16.4166%" y="533" width="0.0723%" height="15" fill="rgb(223,64,47)" fg:x="908" fg:w="4"/><text x="16.6666%" y="543.50"></text></g><g><title>core::cmp::max_by (4 samples, 0.07%)</title><rect x="16.4166%" y="517" width="0.0723%" height="15" fill="rgb(211,161,38)" fg:x="908" fg:w="4"/><text x="16.6666%" y="527.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (28 samples, 0.51%)</title><rect x="16.0188%" y="613" width="0.5062%" height="15" fill="rgb(219,138,40)" fg:x="886" fg:w="28"/><text x="16.2688%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (28 samples, 0.51%)</title><rect x="16.0188%" y="597" width="0.5062%" height="15" fill="rgb(241,228,46)" fg:x="886" fg:w="28"/><text x="16.2688%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (28 samples, 0.51%)</title><rect x="16.0188%" y="581" width="0.5062%" height="15" fill="rgb(223,209,38)" fg:x="886" fg:w="28"/><text x="16.2688%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (28 samples, 0.51%)</title><rect x="16.0188%" y="565" width="0.5062%" height="15" fill="rgb(236,164,45)" fg:x="886" fg:w="28"/><text x="16.2688%" y="575.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (2 samples, 0.04%)</title><rect x="16.4889%" y="549" width="0.0362%" height="15" fill="rgb(231,15,5)" fg:x="912" fg:w="2"/><text x="16.7389%" y="559.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_add (2 samples, 0.04%)</title><rect x="16.4889%" y="533" width="0.0362%" height="15" fill="rgb(252,35,15)" fg:x="912" fg:w="2"/><text x="16.7389%" y="543.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 (45 samples, 0.81%)</title><rect x="15.7657%" y="645" width="0.8136%" height="15" fill="rgb(248,181,18)" fg:x="872" fg:w="45"/><text x="16.0157%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_desugared (45 samples, 0.81%)</title><rect x="15.7657%" y="629" width="0.8136%" height="15" fill="rgb(233,39,42)" fg:x="872" fg:w="45"/><text x="16.0157%" y="639.50"></text></g><g><title>core::ptr::write (3 samples, 0.05%)</title><rect x="16.5250%" y="613" width="0.0542%" height="15" fill="rgb(238,110,33)" fg:x="914" fg:w="3"/><text x="16.7750%" y="623.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="16.5793%" y="597" width="0.0181%" height="15" fill="rgb(233,195,10)" fg:x="917" fg:w="1"/><text x="16.8293%" y="607.50"></text></g><g><title>core::str::validations::next_code_point (1 samples, 0.02%)</title><rect x="16.5793%" y="581" width="0.0181%" height="15" fill="rgb(254,105,3)" fg:x="917" fg:w="1"/><text x="16.8293%" y="591.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_alphabetic (1 samples, 0.02%)</title><rect x="16.5974%" y="533" width="0.0181%" height="15" fill="rgb(221,225,9)" fg:x="918" fg:w="1"/><text x="16.8474%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::filter::Filter&lt;I,P&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.05%)</title><rect x="16.5793%" y="645" width="0.0542%" height="15" fill="rgb(224,227,45)" fg:x="917" fg:w="3"/><text x="16.8293%" y="655.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find (3 samples, 0.05%)</title><rect x="16.5793%" y="629" width="0.0542%" height="15" fill="rgb(229,198,43)" fg:x="917" fg:w="3"/><text x="16.8293%" y="639.50"></text></g><g><title>core::iter::traits::iterator::Iterator::try_fold (3 samples, 0.05%)</title><rect x="16.5793%" y="613" width="0.0542%" height="15" fill="rgb(206,209,35)" fg:x="917" fg:w="3"/><text x="16.8293%" y="623.50"></text></g><g><title>core::iter::traits::iterator::Iterator::find::check::{{closure}} (2 samples, 0.04%)</title><rect x="16.5974%" y="597" width="0.0362%" height="15" fill="rgb(245,195,53)" fg:x="918" fg:w="2"/><text x="16.8474%" y="607.50"></text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnMut&lt;A&gt; for &amp;mut F&gt;::call_mut (2 samples, 0.04%)</title><rect x="16.5974%" y="581" width="0.0362%" height="15" fill="rgb(240,92,26)" fg:x="918" fg:w="2"/><text x="16.8474%" y="591.50"></text></g><g><title>phone_encoder::main::{{closure}} (2 samples, 0.04%)</title><rect x="16.5974%" y="565" width="0.0362%" height="15" fill="rgb(207,40,23)" fg:x="918" fg:w="2"/><text x="16.8474%" y="575.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_alphanumeric (2 samples, 0.04%)</title><rect x="16.5974%" y="549" width="0.0362%" height="15" fill="rgb(223,111,35)" fg:x="918" fg:w="2"/><text x="16.8474%" y="559.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_numeric (1 samples, 0.02%)</title><rect x="16.6154%" y="533" width="0.0181%" height="15" fill="rgb(229,147,28)" fg:x="919" fg:w="1"/><text x="16.8654%" y="543.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="16.6335%" y="533" width="0.0362%" height="15" fill="rgb(211,29,28)" fg:x="920" fg:w="2"/><text x="16.8835%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (3 samples, 0.05%)</title><rect x="16.6335%" y="645" width="0.0542%" height="15" fill="rgb(228,72,33)" fg:x="920" fg:w="3"/><text x="16.8835%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (3 samples, 0.05%)</title><rect x="16.6335%" y="629" width="0.0542%" height="15" fill="rgb(205,214,31)" fg:x="920" fg:w="3"/><text x="16.8835%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (3 samples, 0.05%)</title><rect x="16.6335%" y="613" width="0.0542%" height="15" fill="rgb(224,111,15)" fg:x="920" fg:w="3"/><text x="16.8835%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (3 samples, 0.05%)</title><rect x="16.6335%" y="597" width="0.0542%" height="15" fill="rgb(253,21,26)" fg:x="920" fg:w="3"/><text x="16.8835%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (3 samples, 0.05%)</title><rect x="16.6335%" y="581" width="0.0542%" height="15" fill="rgb(245,139,43)" fg:x="920" fg:w="3"/><text x="16.8835%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (3 samples, 0.05%)</title><rect x="16.6335%" y="565" width="0.0542%" height="15" fill="rgb(252,170,7)" fg:x="920" fg:w="3"/><text x="16.8835%" y="575.50"></text></g><g><title>alloc::alloc::alloc (3 samples, 0.05%)</title><rect x="16.6335%" y="549" width="0.0542%" height="15" fill="rgb(231,118,14)" fg:x="920" fg:w="3"/><text x="16.8835%" y="559.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="16.6697%" y="533" width="0.0181%" height="15" fill="rgb(238,83,0)" fg:x="922" fg:w="1"/><text x="16.9197%" y="543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (53 samples, 0.96%)</title><rect x="15.7476%" y="709" width="0.9582%" height="15" fill="rgb(221,39,39)" fg:x="871" fg:w="53"/><text x="15.9976%" y="719.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T&gt; as core::iter::traits::collect::FromIterator&lt;T&gt;&gt;::from_iter (53 samples, 0.96%)</title><rect x="15.7476%" y="693" width="0.9582%" height="15" fill="rgb(222,119,46)" fg:x="871" fg:w="53"/><text x="15.9976%" y="703.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 (53 samples, 0.96%)</title><rect x="15.7476%" y="677" width="0.9582%" height="15" fill="rgb(222,165,49)" fg:x="871" fg:w="53"/><text x="15.9976%" y="687.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 (52 samples, 0.94%)</title><rect x="15.7657%" y="661" width="0.9402%" height="15" fill="rgb(219,113,52)" fg:x="872" fg:w="52"/><text x="16.0157%" y="671.50"></text></g><g><title>core::ptr::write (1 samples, 0.02%)</title><rect x="16.6878%" y="645" width="0.0181%" height="15" fill="rgb(214,7,15)" fg:x="923" fg:w="1"/><text x="16.9378%" y="655.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="16.7239%" y="613" width="0.0181%" height="15" fill="rgb(235,32,4)" fg:x="925" fg:w="1"/><text x="16.9739%" y="623.50"></text></g><g><title>__rust_dealloc (1 samples, 0.02%)</title><rect x="16.7420%" y="613" width="0.0181%" height="15" fill="rgb(238,90,54)" fg:x="926" fg:w="1"/><text x="16.9920%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (8 samples, 0.14%)</title><rect x="16.7058%" y="709" width="0.1446%" height="15" fill="rgb(213,208,19)" fg:x="924" fg:w="8"/><text x="16.9558%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (8 samples, 0.14%)</title><rect x="16.7058%" y="693" width="0.1446%" height="15" fill="rgb(233,156,4)" fg:x="924" fg:w="8"/><text x="16.9558%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (8 samples, 0.14%)</title><rect x="16.7058%" y="677" width="0.1446%" height="15" fill="rgb(207,194,5)" fg:x="924" fg:w="8"/><text x="16.9558%" y="687.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 0.14%)</title><rect x="16.7058%" y="661" width="0.1446%" height="15" fill="rgb(206,111,30)" fg:x="924" fg:w="8"/><text x="16.9558%" y="671.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (8 samples, 0.14%)</title><rect x="16.7058%" y="645" width="0.1446%" height="15" fill="rgb(243,70,54)" fg:x="924" fg:w="8"/><text x="16.9558%" y="655.50"></text></g><g><title>alloc::alloc::dealloc (8 samples, 0.14%)</title><rect x="16.7058%" y="629" width="0.1446%" height="15" fill="rgb(242,28,8)" fg:x="924" fg:w="8"/><text x="16.9558%" y="639.50"></text></g><g><title>_int_free (5 samples, 0.09%)</title><rect x="16.7601%" y="613" width="0.0904%" height="15" fill="rgb(219,106,18)" fg:x="927" fg:w="5"/><text x="17.0101%" y="623.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="16.8866%" y="629" width="0.0181%" height="15" fill="rgb(244,222,10)" fg:x="934" fg:w="1"/><text x="17.1366%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;char&gt;&gt; (8 samples, 0.14%)</title><rect x="16.8505%" y="709" width="0.1446%" height="15" fill="rgb(236,179,52)" fg:x="932" fg:w="8"/><text x="17.1005%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;char&gt;&gt; (8 samples, 0.14%)</title><rect x="16.8505%" y="693" width="0.1446%" height="15" fill="rgb(213,23,39)" fg:x="932" fg:w="8"/><text x="17.1005%" y="703.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (8 samples, 0.14%)</title><rect x="16.8505%" y="677" width="0.1446%" height="15" fill="rgb(238,48,10)" fg:x="932" fg:w="8"/><text x="17.1005%" y="687.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (6 samples, 0.11%)</title><rect x="16.8866%" y="661" width="0.1085%" height="15" fill="rgb(251,196,23)" fg:x="934" fg:w="6"/><text x="17.1366%" y="671.50"></text></g><g><title>alloc::alloc::dealloc (6 samples, 0.11%)</title><rect x="16.8866%" y="645" width="0.1085%" height="15" fill="rgb(250,152,24)" fg:x="934" fg:w="6"/><text x="17.1366%" y="655.50"></text></g><g><title>_int_free (5 samples, 0.09%)</title><rect x="16.9047%" y="629" width="0.0904%" height="15" fill="rgb(209,150,17)" fg:x="935" fg:w="5"/><text x="17.1547%" y="639.50"></text></g><g><title>__GI___libc_free (5 samples, 0.09%)</title><rect x="17.0313%" y="453" width="0.0904%" height="15" fill="rgb(234,202,34)" fg:x="942" fg:w="5"/><text x="17.2813%" y="463.50"></text></g><g><title>__rust_dealloc (2 samples, 0.04%)</title><rect x="17.1217%" y="453" width="0.0362%" height="15" fill="rgb(253,148,53)" fg:x="947" fg:w="2"/><text x="17.3717%" y="463.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (18 samples, 0.33%)</title><rect x="17.0313%" y="485" width="0.3254%" height="15" fill="rgb(218,129,16)" fg:x="942" fg:w="18"/><text x="17.2813%" y="495.50"></text></g><g><title>alloc::alloc::dealloc (18 samples, 0.33%)</title><rect x="17.0313%" y="469" width="0.3254%" height="15" fill="rgb(216,85,19)" fg:x="942" fg:w="18"/><text x="17.2813%" y="479.50"></text></g><g><title>_int_free (11 samples, 0.20%)</title><rect x="17.1578%" y="453" width="0.1989%" height="15" fill="rgb(235,228,7)" fg:x="949" fg:w="11"/><text x="17.4078%" y="463.50"></text></g><g><title>free_perturb (1 samples, 0.02%)</title><rect x="17.3386%" y="437" width="0.0181%" height="15" fill="rgb(245,175,0)" fg:x="959" fg:w="1"/><text x="17.5886%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (21 samples, 0.38%)</title><rect x="16.9951%" y="581" width="0.3797%" height="15" fill="rgb(208,168,36)" fg:x="940" fg:w="21"/><text x="17.2451%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;[alloc::string::String]&gt; (21 samples, 0.38%)</title><rect x="16.9951%" y="565" width="0.3797%" height="15" fill="rgb(246,171,24)" fg:x="940" fg:w="21"/><text x="17.2451%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (21 samples, 0.38%)</title><rect x="16.9951%" y="549" width="0.3797%" height="15" fill="rgb(215,142,24)" fg:x="940" fg:w="21"/><text x="17.2451%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (21 samples, 0.38%)</title><rect x="16.9951%" y="533" width="0.3797%" height="15" fill="rgb(250,187,7)" fg:x="940" fg:w="21"/><text x="17.2451%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (21 samples, 0.38%)</title><rect x="16.9951%" y="517" width="0.3797%" height="15" fill="rgb(228,66,33)" fg:x="940" fg:w="21"/><text x="17.2451%" y="527.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (21 samples, 0.38%)</title><rect x="16.9951%" y="501" width="0.3797%" height="15" fill="rgb(234,215,21)" fg:x="940" fg:w="21"/><text x="17.2451%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (1 samples, 0.02%)</title><rect x="17.3567%" y="485" width="0.0181%" height="15" fill="rgb(222,191,20)" fg:x="960" fg:w="1"/><text x="17.6067%" y="495.50"></text></g><g><title>__GI___libc_free (2 samples, 0.04%)</title><rect x="17.3748%" y="517" width="0.0362%" height="15" fill="rgb(245,79,54)" fg:x="961" fg:w="2"/><text x="17.6248%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;alloc::string::String&gt;&gt; (36 samples, 0.65%)</title><rect x="16.9951%" y="597" width="0.6509%" height="15" fill="rgb(240,10,37)" fg:x="940" fg:w="36"/><text x="17.2451%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;alloc::string::String&gt;&gt; (15 samples, 0.27%)</title><rect x="17.3748%" y="581" width="0.2712%" height="15" fill="rgb(214,192,32)" fg:x="961" fg:w="15"/><text x="17.6248%" y="591.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (15 samples, 0.27%)</title><rect x="17.3748%" y="565" width="0.2712%" height="15" fill="rgb(209,36,54)" fg:x="961" fg:w="15"/><text x="17.6248%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (15 samples, 0.27%)</title><rect x="17.3748%" y="549" width="0.2712%" height="15" fill="rgb(220,10,11)" fg:x="961" fg:w="15"/><text x="17.6248%" y="559.50"></text></g><g><title>alloc::alloc::dealloc (15 samples, 0.27%)</title><rect x="17.3748%" y="533" width="0.2712%" height="15" fill="rgb(221,106,17)" fg:x="961" fg:w="15"/><text x="17.6248%" y="543.50"></text></g><g><title>_int_free (13 samples, 0.24%)</title><rect x="17.4110%" y="517" width="0.2350%" height="15" fill="rgb(251,142,44)" fg:x="963" fg:w="13"/><text x="17.6610%" y="527.50"></text></g><g><title>__GI___libc_free (5 samples, 0.09%)</title><rect x="17.6641%" y="501" width="0.0904%" height="15" fill="rgb(238,13,15)" fg:x="977" fg:w="5"/><text x="17.9141%" y="511.50"></text></g><g><title>__rust_dealloc (2 samples, 0.04%)</title><rect x="17.7545%" y="501" width="0.0362%" height="15" fill="rgb(208,107,27)" fg:x="982" fg:w="2"/><text x="18.0045%" y="511.50"></text></g><g><title>&lt;hashbrown::raw::RawTable&lt;T&gt; as core::ops::drop::Drop&gt;::drop (63 samples, 1.14%)</title><rect x="16.9951%" y="661" width="1.1390%" height="15" fill="rgb(205,136,37)" fg:x="940" fg:w="63"/><text x="17.2451%" y="671.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::drop (63 samples, 1.14%)</title><rect x="16.9951%" y="645" width="1.1390%" height="15" fill="rgb(250,205,27)" fg:x="940" fg:w="63"/><text x="17.2451%" y="655.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::drop_in_place (63 samples, 1.14%)</title><rect x="16.9951%" y="629" width="1.1390%" height="15" fill="rgb(210,80,43)" fg:x="940" fg:w="63"/><text x="17.2451%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;(num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;)&gt; (63 samples, 1.14%)</title><rect x="16.9951%" y="613" width="1.1390%" height="15" fill="rgb(247,160,36)" fg:x="940" fg:w="63"/><text x="17.2451%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (27 samples, 0.49%)</title><rect x="17.6460%" y="597" width="0.4882%" height="15" fill="rgb(234,13,49)" fg:x="976" fg:w="27"/><text x="17.8960%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (27 samples, 0.49%)</title><rect x="17.6460%" y="581" width="0.4882%" height="15" fill="rgb(234,122,0)" fg:x="976" fg:w="27"/><text x="17.8960%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (27 samples, 0.49%)</title><rect x="17.6460%" y="565" width="0.4882%" height="15" fill="rgb(207,146,38)" fg:x="976" fg:w="27"/><text x="17.8960%" y="575.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (27 samples, 0.49%)</title><rect x="17.6460%" y="549" width="0.4882%" height="15" fill="rgb(207,177,25)" fg:x="976" fg:w="27"/><text x="17.8960%" y="559.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (26 samples, 0.47%)</title><rect x="17.6641%" y="533" width="0.4701%" height="15" fill="rgb(211,178,42)" fg:x="977" fg:w="26"/><text x="17.9141%" y="543.50"></text></g><g><title>alloc::alloc::dealloc (26 samples, 0.47%)</title><rect x="17.6641%" y="517" width="0.4701%" height="15" fill="rgb(230,69,54)" fg:x="977" fg:w="26"/><text x="17.9141%" y="527.50"></text></g><g><title>_int_free (19 samples, 0.34%)</title><rect x="17.7906%" y="501" width="0.3435%" height="15" fill="rgb(214,135,41)" fg:x="984" fg:w="19"/><text x="18.0406%" y="511.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="18.1342%" y="661" width="0.0181%" height="15" fill="rgb(237,67,25)" fg:x="1003" fg:w="1"/><text x="18.3842%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::collections::hash::map::HashMap&lt;num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;&gt;&gt; (66 samples, 1.19%)</title><rect x="16.9951%" y="709" width="1.1933%" height="15" fill="rgb(222,189,50)" fg:x="940" fg:w="66"/><text x="17.2451%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::map::HashMap&lt;num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;,std::collections::hash::map::RandomState&gt;&gt; (66 samples, 1.19%)</title><rect x="16.9951%" y="693" width="1.1933%" height="15" fill="rgb(245,148,34)" fg:x="940" fg:w="66"/><text x="17.2451%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::raw::RawTable&lt;(num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;)&gt;&gt; (66 samples, 1.19%)</title><rect x="16.9951%" y="677" width="1.1933%" height="15" fill="rgb(222,29,6)" fg:x="940" fg:w="66"/><text x="17.2451%" y="687.50"></text></g><g><title>_int_free (2 samples, 0.04%)</title><rect x="18.1522%" y="661" width="0.0362%" height="15" fill="rgb(221,189,43)" fg:x="1004" fg:w="2"/><text x="18.4022%" y="671.50"></text></g><g><title>__rdl_dealloc (1 samples, 0.02%)</title><rect x="18.2065%" y="613" width="0.0181%" height="15" fill="rgb(207,36,27)" fg:x="1007" fg:w="1"/><text x="18.4565%" y="623.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (1 samples, 0.02%)</title><rect x="18.2065%" y="597" width="0.0181%" height="15" fill="rgb(217,90,24)" fg:x="1007" fg:w="1"/><text x="18.4565%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (3 samples, 0.05%)</title><rect x="18.1884%" y="677" width="0.0542%" height="15" fill="rgb(224,66,35)" fg:x="1006" fg:w="3"/><text x="18.4384%" y="687.50"></text></g><g><title>alloc::alloc::box_free (3 samples, 0.05%)</title><rect x="18.1884%" y="661" width="0.0542%" height="15" fill="rgb(221,13,50)" fg:x="1006" fg:w="3"/><text x="18.4384%" y="671.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (3 samples, 0.05%)</title><rect x="18.1884%" y="645" width="0.0542%" height="15" fill="rgb(236,68,49)" fg:x="1006" fg:w="3"/><text x="18.4384%" y="655.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="18.2065%" y="629" width="0.0362%" height="15" fill="rgb(229,146,28)" fg:x="1007" fg:w="2"/><text x="18.4565%" y="639.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="18.2246%" y="613" width="0.0181%" height="15" fill="rgb(225,31,38)" fg:x="1008" fg:w="1"/><text x="18.4746%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::Lines&lt;std::io::buffered::bufreader::BufReader&lt;std::fs::File&gt;&gt;&gt; (45 samples, 0.81%)</title><rect x="18.1884%" y="709" width="0.8136%" height="15" fill="rgb(250,208,3)" fg:x="1006" fg:w="45"/><text x="18.4384%" y="719.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::buffered::bufreader::BufReader&lt;std::fs::File&gt;&gt; (45 samples, 0.81%)</title><rect x="18.1884%" y="693" width="0.8136%" height="15" fill="rgb(246,54,23)" fg:x="1006" fg:w="45"/><text x="18.4384%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::fs::File&gt; (42 samples, 0.76%)</title><rect x="18.2426%" y="677" width="0.7594%" height="15" fill="rgb(243,76,11)" fg:x="1009" fg:w="42"/><text x="18.4926%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::unix::fs::File&gt; (42 samples, 0.76%)</title><rect x="18.2426%" y="661" width="0.7594%" height="15" fill="rgb(245,21,50)" fg:x="1009" fg:w="42"/><text x="18.4926%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::unix::fd::FileDesc&gt; (42 samples, 0.76%)</title><rect x="18.2426%" y="645" width="0.7594%" height="15" fill="rgb(228,9,43)" fg:x="1009" fg:w="42"/><text x="18.4926%" y="655.50"></text></g><g><title>__close (42 samples, 0.76%)</title><rect x="18.2426%" y="629" width="0.7594%" height="15" fill="rgb(208,100,47)" fg:x="1009" fg:w="42"/><text x="18.4926%" y="639.50"></text></g><g><title>[unknown] (40 samples, 0.72%)</title><rect x="18.2788%" y="613" width="0.7232%" height="15" fill="rgb(232,26,8)" fg:x="1011" fg:w="40"/><text x="18.5288%" y="623.50"></text></g><g><title>[unknown] (37 samples, 0.67%)</title><rect x="18.3330%" y="597" width="0.6690%" height="15" fill="rgb(216,166,38)" fg:x="1014" fg:w="37"/><text x="18.5830%" y="607.50"></text></g><g><title>[unknown] (23 samples, 0.42%)</title><rect x="18.5862%" y="581" width="0.4158%" height="15" fill="rgb(251,202,51)" fg:x="1028" fg:w="23"/><text x="18.8362%" y="591.50"></text></g><g><title>[unknown] (23 samples, 0.42%)</title><rect x="18.5862%" y="565" width="0.4158%" height="15" fill="rgb(254,216,34)" fg:x="1028" fg:w="23"/><text x="18.8362%" y="575.50"></text></g><g><title>[unknown] (21 samples, 0.38%)</title><rect x="18.6223%" y="549" width="0.3797%" height="15" fill="rgb(251,32,27)" fg:x="1030" fg:w="21"/><text x="18.8723%" y="559.50"></text></g><g><title>[unknown] (19 samples, 0.34%)</title><rect x="18.6585%" y="533" width="0.3435%" height="15" fill="rgb(208,127,28)" fg:x="1032" fg:w="19"/><text x="18.9085%" y="543.50"></text></g><g><title>[unknown] (13 samples, 0.24%)</title><rect x="18.7669%" y="517" width="0.2350%" height="15" fill="rgb(224,137,22)" fg:x="1038" fg:w="13"/><text x="19.0169%" y="527.50"></text></g><g><title>[unknown] (6 samples, 0.11%)</title><rect x="18.8935%" y="501" width="0.1085%" height="15" fill="rgb(254,70,32)" fg:x="1045" fg:w="6"/><text x="19.1435%" y="511.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="18.9116%" y="485" width="0.0904%" height="15" fill="rgb(229,75,37)" fg:x="1046" fg:w="5"/><text x="19.1616%" y="495.50"></text></g><g><title>core::str::&lt;impl str&gt;::chars (1 samples, 0.02%)</title><rect x="19.0020%" y="709" width="0.0181%" height="15" fill="rgb(252,64,23)" fg:x="1051" fg:w="1"/><text x="19.2520%" y="719.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::iter (1 samples, 0.02%)</title><rect x="19.0020%" y="693" width="0.0181%" height="15" fill="rgb(232,162,48)" fg:x="1051" fg:w="1"/><text x="19.2520%" y="703.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::new (1 samples, 0.02%)</title><rect x="19.0020%" y="677" width="0.0181%" height="15" fill="rgb(246,160,12)" fg:x="1051" fg:w="1"/><text x="19.2520%" y="687.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::add (1 samples, 0.02%)</title><rect x="19.0020%" y="661" width="0.0181%" height="15" fill="rgb(247,166,0)" fg:x="1051" fg:w="1"/><text x="19.2520%" y="671.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset (1 samples, 0.02%)</title><rect x="19.0020%" y="645" width="0.0181%" height="15" fill="rgb(249,219,21)" fg:x="1051" fg:w="1"/><text x="19.2520%" y="655.50"></text></g><g><title>alloc::string::String::new (1 samples, 0.02%)</title><rect x="19.2913%" y="677" width="0.0181%" height="15" fill="rgb(205,209,3)" fg:x="1067" fg:w="1"/><text x="19.5413%" y="687.50"></text></g><g><title>core::str::&lt;impl str&gt;::ends_with (4 samples, 0.07%)</title><rect x="19.3093%" y="677" width="0.0723%" height="15" fill="rgb(243,44,1)" fg:x="1068" fg:w="4"/><text x="19.5593%" y="687.50"></text></g><g><title>&lt;char as core::str::pattern::Pattern&gt;::is_suffix_of (4 samples, 0.07%)</title><rect x="19.3093%" y="661" width="0.0723%" height="15" fill="rgb(206,159,16)" fg:x="1068" fg:w="4"/><text x="19.5593%" y="671.50"></text></g><g><title>&lt;&amp;str as core::str::pattern::Pattern&gt;::is_suffix_of (4 samples, 0.07%)</title><rect x="19.3093%" y="645" width="0.0723%" height="15" fill="rgb(244,77,30)" fg:x="1068" fg:w="4"/><text x="19.5593%" y="655.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::ends_with (4 samples, 0.07%)</title><rect x="19.3093%" y="629" width="0.0723%" height="15" fill="rgb(218,69,12)" fg:x="1068" fg:w="4"/><text x="19.5593%" y="639.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialEq&lt;&amp;B&gt; for &amp;A&gt;::eq (3 samples, 0.05%)</title><rect x="19.3274%" y="613" width="0.0542%" height="15" fill="rgb(212,87,7)" fg:x="1069" fg:w="3"/><text x="19.5774%" y="623.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (3 samples, 0.05%)</title><rect x="19.3274%" y="597" width="0.0542%" height="15" fill="rgb(245,114,25)" fg:x="1069" fg:w="3"/><text x="19.5774%" y="607.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (3 samples, 0.05%)</title><rect x="19.3274%" y="581" width="0.0542%" height="15" fill="rgb(210,61,42)" fg:x="1069" fg:w="3"/><text x="19.5774%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (2 samples, 0.04%)</title><rect x="19.4901%" y="645" width="0.0362%" height="15" fill="rgb(211,52,33)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="655.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (2 samples, 0.04%)</title><rect x="19.4901%" y="629" width="0.0362%" height="15" fill="rgb(234,58,33)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="639.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.04%)</title><rect x="19.4901%" y="613" width="0.0362%" height="15" fill="rgb(220,115,36)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="623.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (2 samples, 0.04%)</title><rect x="19.4901%" y="597" width="0.0362%" height="15" fill="rgb(243,153,54)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="607.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (2 samples, 0.04%)</title><rect x="19.4901%" y="581" width="0.0362%" height="15" fill="rgb(251,47,18)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="591.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::add (2 samples, 0.04%)</title><rect x="19.4901%" y="565" width="0.0362%" height="15" fill="rgb(242,102,42)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="575.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset (2 samples, 0.04%)</title><rect x="19.4901%" y="549" width="0.0362%" height="15" fill="rgb(234,31,38)" fg:x="1078" fg:w="2"/><text x="19.7401%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::Guard&gt; (2 samples, 0.04%)</title><rect x="19.5263%" y="645" width="0.0362%" height="15" fill="rgb(221,117,51)" fg:x="1080" fg:w="2"/><text x="19.7763%" y="655.50"></text></g><g><title>&lt;std::io::Guard as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="19.5263%" y="629" width="0.0362%" height="15" fill="rgb(212,20,18)" fg:x="1080" fg:w="2"/><text x="19.7763%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::set_len (2 samples, 0.04%)</title><rect x="19.5263%" y="613" width="0.0362%" height="15" fill="rgb(245,133,36)" fg:x="1080" fg:w="2"/><text x="19.7763%" y="623.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::is_err (1 samples, 0.02%)</title><rect x="19.5625%" y="645" width="0.0181%" height="15" fill="rgb(212,6,19)" fg:x="1082" fg:w="1"/><text x="19.8125%" y="655.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::is_ok (1 samples, 0.02%)</title><rect x="19.5625%" y="629" width="0.0181%" height="15" fill="rgb(218,1,36)" fg:x="1082" fg:w="1"/><text x="19.8125%" y="639.50"></text></g><g><title>core::str::converts::from_utf8 (10 samples, 0.18%)</title><rect x="19.5805%" y="645" width="0.1808%" height="15" fill="rgb(246,84,54)" fg:x="1083" fg:w="10"/><text x="19.8305%" y="655.50"></text></g><g><title>core::str::validations::run_utf8_validation (9 samples, 0.16%)</title><rect x="19.5986%" y="629" width="0.1627%" height="15" fill="rgb(242,110,6)" fg:x="1084" fg:w="9"/><text x="19.8486%" y="639.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::BufRead&gt;::consume (1 samples, 0.02%)</title><rect x="19.8156%" y="613" width="0.0181%" height="15" fill="rgb(214,47,5)" fg:x="1096" fg:w="1"/><text x="20.0656%" y="623.50"></text></g><g><title>core::cmp::min (1 samples, 0.02%)</title><rect x="19.8156%" y="597" width="0.0181%" height="15" fill="rgb(218,159,25)" fg:x="1096" fg:w="1"/><text x="20.0656%" y="607.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.02%)</title><rect x="19.8156%" y="581" width="0.0181%" height="15" fill="rgb(215,211,28)" fg:x="1096" fg:w="1"/><text x="20.0656%" y="591.50"></text></g><g><title>core::cmp::min_by (1 samples, 0.02%)</title><rect x="19.8156%" y="565" width="0.0181%" height="15" fill="rgb(238,59,32)" fg:x="1096" fg:w="1"/><text x="20.0656%" y="575.50"></text></g><g><title>&lt;std::io::buffered::bufreader::BufReader&lt;R&gt; as std::io::BufRead&gt;::fill_buf (121 samples, 2.19%)</title><rect x="19.8337%" y="613" width="2.1877%" height="15" fill="rgb(226,82,3)" fg:x="1097" fg:w="121"/><text x="20.0837%" y="623.50">&lt;..</text></g><g><title>&lt;std::fs::File as std::io::Read&gt;::read (120 samples, 2.17%)</title><rect x="19.8517%" y="597" width="2.1696%" height="15" fill="rgb(240,164,32)" fg:x="1098" fg:w="120"/><text x="20.1017%" y="607.50">&lt;..</text></g><g><title>std::sys::unix::fs::File::read (120 samples, 2.17%)</title><rect x="19.8517%" y="581" width="2.1696%" height="15" fill="rgb(232,46,7)" fg:x="1098" fg:w="120"/><text x="20.1017%" y="591.50">s..</text></g><g><title>std::sys::unix::fd::FileDesc::read (120 samples, 2.17%)</title><rect x="19.8517%" y="565" width="2.1696%" height="15" fill="rgb(229,129,53)" fg:x="1098" fg:w="120"/><text x="20.1017%" y="575.50">s..</text></g><g><title>__libc_read (120 samples, 2.17%)</title><rect x="19.8517%" y="549" width="2.1696%" height="15" fill="rgb(234,188,29)" fg:x="1098" fg:w="120"/><text x="20.1017%" y="559.50">_..</text></g><g><title>[unknown] (119 samples, 2.15%)</title><rect x="19.8698%" y="533" width="2.1515%" height="15" fill="rgb(246,141,4)" fg:x="1099" fg:w="119"/><text x="20.1198%" y="543.50">[..</text></g><g><title>[unknown] (96 samples, 1.74%)</title><rect x="20.2857%" y="517" width="1.7357%" height="15" fill="rgb(229,23,39)" fg:x="1122" fg:w="96"/><text x="20.5357%" y="527.50"></text></g><g><title>[unknown] (56 samples, 1.01%)</title><rect x="21.0089%" y="501" width="1.0125%" height="15" fill="rgb(206,12,3)" fg:x="1162" fg:w="56"/><text x="21.2589%" y="511.50"></text></g><g><title>[unknown] (56 samples, 1.01%)</title><rect x="21.0089%" y="485" width="1.0125%" height="15" fill="rgb(252,226,20)" fg:x="1162" fg:w="56"/><text x="21.2589%" y="495.50"></text></g><g><title>[unknown] (53 samples, 0.96%)</title><rect x="21.0631%" y="469" width="0.9582%" height="15" fill="rgb(216,123,35)" fg:x="1165" fg:w="53"/><text x="21.3131%" y="479.50"></text></g><g><title>[unknown] (45 samples, 0.81%)</title><rect x="21.2077%" y="453" width="0.8136%" height="15" fill="rgb(212,68,40)" fg:x="1173" fg:w="45"/><text x="21.4577%" y="463.50"></text></g><g><title>[unknown] (37 samples, 0.67%)</title><rect x="21.3524%" y="437" width="0.6690%" height="15" fill="rgb(254,125,32)" fg:x="1181" fg:w="37"/><text x="21.6024%" y="447.50"></text></g><g><title>[unknown] (30 samples, 0.54%)</title><rect x="21.4789%" y="421" width="0.5424%" height="15" fill="rgb(253,97,22)" fg:x="1188" fg:w="30"/><text x="21.7289%" y="431.50"></text></g><g><title>[unknown] (25 samples, 0.45%)</title><rect x="21.5693%" y="405" width="0.4520%" height="15" fill="rgb(241,101,14)" fg:x="1193" fg:w="25"/><text x="21.8193%" y="415.50"></text></g><g><title>[unknown] (15 samples, 0.27%)</title><rect x="21.7501%" y="389" width="0.2712%" height="15" fill="rgb(238,103,29)" fg:x="1203" fg:w="15"/><text x="22.0001%" y="399.50"></text></g><g><title>[unknown] (11 samples, 0.20%)</title><rect x="21.8225%" y="373" width="0.1989%" height="15" fill="rgb(233,195,47)" fg:x="1207" fg:w="11"/><text x="22.0725%" y="383.50"></text></g><g><title>[unknown] (9 samples, 0.16%)</title><rect x="21.8586%" y="357" width="0.1627%" height="15" fill="rgb(246,218,30)" fg:x="1209" fg:w="9"/><text x="22.1086%" y="367.50"></text></g><g><title>[unknown] (2 samples, 0.04%)</title><rect x="21.9852%" y="341" width="0.0362%" height="15" fill="rgb(219,145,47)" fg:x="1216" fg:w="2"/><text x="22.2352%" y="351.50"></text></g><g><title>_int_malloc (1 samples, 0.02%)</title><rect x="22.2383%" y="469" width="0.0181%" height="15" fill="rgb(243,12,26)" fg:x="1230" fg:w="1"/><text x="22.4883%" y="479.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="22.2564%" y="469" width="0.0181%" height="15" fill="rgb(214,87,16)" fg:x="1231" fg:w="1"/><text x="22.5064%" y="479.50"></text></g><g><title>__GI___libc_malloc (5 samples, 0.09%)</title><rect x="22.2021%" y="485" width="0.0904%" height="15" fill="rgb(208,99,42)" fg:x="1228" fg:w="5"/><text x="22.4521%" y="495.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="22.2745%" y="469" width="0.0181%" height="15" fill="rgb(253,99,2)" fg:x="1232" fg:w="1"/><text x="22.5245%" y="479.50"></text></g><g><title>__rust_alloc (4 samples, 0.07%)</title><rect x="22.2925%" y="485" width="0.0723%" height="15" fill="rgb(220,168,23)" fg:x="1233" fg:w="4"/><text x="22.5425%" y="495.50"></text></g><g><title>alloc::raw_vec::finish_grow (16 samples, 0.29%)</title><rect x="22.0937%" y="501" width="0.2893%" height="15" fill="rgb(242,38,24)" fg:x="1222" fg:w="16"/><text x="22.3437%" y="511.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map_err (1 samples, 0.02%)</title><rect x="22.3649%" y="485" width="0.0181%" height="15" fill="rgb(225,182,9)" fg:x="1237" fg:w="1"/><text x="22.6149%" y="495.50"></text></g><g><title>core::cmp::max (7 samples, 0.13%)</title><rect x="22.3829%" y="501" width="0.1266%" height="15" fill="rgb(243,178,37)" fg:x="1238" fg:w="7"/><text x="22.6329%" y="511.50"></text></g><g><title>core::cmp::Ord::max (7 samples, 0.13%)</title><rect x="22.3829%" y="485" width="0.1266%" height="15" fill="rgb(232,139,19)" fg:x="1238" fg:w="7"/><text x="22.6329%" y="495.50"></text></g><g><title>core::cmp::max_by (7 samples, 0.13%)</title><rect x="22.3829%" y="469" width="0.1266%" height="15" fill="rgb(225,201,24)" fg:x="1238" fg:w="7"/><text x="22.6329%" y="479.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (26 samples, 0.47%)</title><rect x="22.0756%" y="517" width="0.4701%" height="15" fill="rgb(221,47,46)" fg:x="1221" fg:w="26"/><text x="22.3256%" y="527.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (2 samples, 0.04%)</title><rect x="22.5095%" y="501" width="0.0362%" height="15" fill="rgb(249,23,13)" fg:x="1245" fg:w="2"/><text x="22.7595%" y="511.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_add (2 samples, 0.04%)</title><rect x="22.5095%" y="485" width="0.0362%" height="15" fill="rgb(219,9,5)" fg:x="1245" fg:w="2"/><text x="22.7595%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (30 samples, 0.54%)</title><rect x="22.0213%" y="613" width="0.5424%" height="15" fill="rgb(254,171,16)" fg:x="1218" fg:w="30"/><text x="22.2713%" y="623.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 (30 samples, 0.54%)</title><rect x="22.0213%" y="597" width="0.5424%" height="15" fill="rgb(230,171,20)" fg:x="1218" fg:w="30"/><text x="22.2713%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (30 samples, 0.54%)</title><rect x="22.0213%" y="581" width="0.5424%" height="15" fill="rgb(210,71,41)" fg:x="1218" fg:w="30"/><text x="22.2713%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (30 samples, 0.54%)</title><rect x="22.0213%" y="565" width="0.5424%" height="15" fill="rgb(206,173,20)" fg:x="1218" fg:w="30"/><text x="22.2713%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (29 samples, 0.52%)</title><rect x="22.0394%" y="549" width="0.5243%" height="15" fill="rgb(233,88,34)" fg:x="1219" fg:w="29"/><text x="22.2894%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (27 samples, 0.49%)</title><rect x="22.0756%" y="533" width="0.4882%" height="15" fill="rgb(223,209,46)" fg:x="1221" fg:w="27"/><text x="22.3256%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="22.5457%" y="517" width="0.0181%" height="15" fill="rgb(250,43,18)" fg:x="1247" fg:w="1"/><text x="22.7957%" y="527.50"></text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (1 samples, 0.02%)</title><rect x="22.5457%" y="501" width="0.0181%" height="15" fill="rgb(208,13,10)" fg:x="1247" fg:w="1"/><text x="22.7957%" y="511.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (2 samples, 0.04%)</title><rect x="22.5637%" y="613" width="0.0362%" height="15" fill="rgb(212,200,36)" fg:x="1248" fg:w="2"/><text x="22.8137%" y="623.50"></text></g><g><title>&lt;core::ops::range::RangeToInclusive&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.04%)</title><rect x="22.5637%" y="597" width="0.0362%" height="15" fill="rgb(225,90,30)" fg:x="1248" fg:w="2"/><text x="22.8137%" y="607.50"></text></g><g><title>&lt;core::ops::range::RangeInclusive&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.04%)</title><rect x="22.5637%" y="581" width="0.0362%" height="15" fill="rgb(236,182,39)" fg:x="1248" fg:w="2"/><text x="22.8137%" y="591.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (2 samples, 0.04%)</title><rect x="22.5637%" y="565" width="0.0362%" height="15" fill="rgb(212,144,35)" fg:x="1248" fg:w="2"/><text x="22.8137%" y="575.50"></text></g><g><title>__memchr_avx2 (3 samples, 0.05%)</title><rect x="22.6541%" y="581" width="0.0542%" height="15" fill="rgb(228,63,44)" fg:x="1253" fg:w="3"/><text x="22.9041%" y="591.50"></text></g><g><title>&lt;std::io::Lines&lt;B&gt; as core::iter::traits::iterator::Iterator&gt;::next (195 samples, 3.53%)</title><rect x="19.2009%" y="693" width="3.5256%" height="15" fill="rgb(228,109,6)" fg:x="1062" fg:w="195"/><text x="19.4509%" y="703.50">&lt;st..</text></g><g><title>std::io::BufRead::read_line (185 samples, 3.34%)</title><rect x="19.3817%" y="677" width="3.3448%" height="15" fill="rgb(238,117,24)" fg:x="1072" fg:w="185"/><text x="19.6317%" y="687.50">std..</text></g><g><title>std::io::append_to_string (185 samples, 3.34%)</title><rect x="19.3817%" y="661" width="3.3448%" height="15" fill="rgb(242,26,26)" fg:x="1072" fg:w="185"/><text x="19.6317%" y="671.50">std..</text></g><g><title>std::io::BufRead::read_line::{{closure}} (164 samples, 2.97%)</title><rect x="19.7613%" y="645" width="2.9651%" height="15" fill="rgb(221,92,48)" fg:x="1093" fg:w="164"/><text x="20.0113%" y="655.50">std..</text></g><g><title>std::io::read_until (164 samples, 2.97%)</title><rect x="19.7613%" y="629" width="2.9651%" height="15" fill="rgb(209,209,32)" fg:x="1093" fg:w="164"/><text x="20.0113%" y="639.50">std..</text></g><g><title>std::memchr::memchr (7 samples, 0.13%)</title><rect x="22.5999%" y="613" width="0.1266%" height="15" fill="rgb(221,70,22)" fg:x="1250" fg:w="7"/><text x="22.8499%" y="623.50"></text></g><g><title>std::sys::unix::memchr::memchr (6 samples, 0.11%)</title><rect x="22.6180%" y="597" width="0.1085%" height="15" fill="rgb(248,145,5)" fg:x="1251" fg:w="6"/><text x="22.8680%" y="607.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::is_null (1 samples, 0.02%)</title><rect x="22.7084%" y="581" width="0.0181%" height="15" fill="rgb(226,116,26)" fg:x="1256" fg:w="1"/><text x="22.9584%" y="591.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::guaranteed_eq (1 samples, 0.02%)</title><rect x="22.7084%" y="565" width="0.0181%" height="15" fill="rgb(244,5,17)" fg:x="1256" fg:w="1"/><text x="22.9584%" y="575.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="23.2508%" y="565" width="0.0181%" height="15" fill="rgb(252,159,33)" fg:x="1286" fg:w="1"/><text x="23.5008%" y="575.50"></text></g><g><title>tcache_put (1 samples, 0.02%)</title><rect x="23.2688%" y="565" width="0.0181%" height="15" fill="rgb(206,71,0)" fg:x="1287" fg:w="1"/><text x="23.5188%" y="575.50"></text></g><g><title>_int_malloc (22 samples, 0.40%)</title><rect x="22.9073%" y="581" width="0.3978%" height="15" fill="rgb(233,118,54)" fg:x="1267" fg:w="22"/><text x="23.1573%" y="591.50"></text></g><g><title>unlink_chunk (1 samples, 0.02%)</title><rect x="23.2869%" y="565" width="0.0181%" height="15" fill="rgb(234,83,48)" fg:x="1288" fg:w="1"/><text x="23.5369%" y="575.50"></text></g><g><title>alloc::raw_vec::finish_grow (33 samples, 0.60%)</title><rect x="22.7807%" y="613" width="0.5966%" height="15" fill="rgb(228,3,54)" fg:x="1260" fg:w="33"/><text x="23.0307%" y="623.50"></text></g><g><title>__GI___libc_malloc (33 samples, 0.60%)</title><rect x="22.7807%" y="597" width="0.5966%" height="15" fill="rgb(226,155,13)" fg:x="1260" fg:w="33"/><text x="23.0307%" y="607.50"></text></g><g><title>checked_request2size (4 samples, 0.07%)</title><rect x="23.3050%" y="581" width="0.0723%" height="15" fill="rgb(241,28,37)" fg:x="1289" fg:w="4"/><text x="23.5550%" y="591.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="23.3773%" y="613" width="0.0181%" height="15" fill="rgb(233,93,10)" fg:x="1293" fg:w="1"/><text x="23.6273%" y="623.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="23.3773%" y="597" width="0.0181%" height="15" fill="rgb(225,113,19)" fg:x="1293" fg:w="1"/><text x="23.6273%" y="607.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="23.3773%" y="581" width="0.0181%" height="15" fill="rgb(241,2,18)" fg:x="1293" fg:w="1"/><text x="23.6273%" y="591.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="23.3773%" y="565" width="0.0181%" height="15" fill="rgb(228,207,21)" fg:x="1293" fg:w="1"/><text x="23.6273%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (39 samples, 0.71%)</title><rect x="22.7265%" y="629" width="0.7051%" height="15" fill="rgb(213,211,35)" fg:x="1257" fg:w="39"/><text x="22.9765%" y="639.50"></text></g><g><title>core::cmp::max (2 samples, 0.04%)</title><rect x="23.3954%" y="613" width="0.0362%" height="15" fill="rgb(209,83,10)" fg:x="1294" fg:w="2"/><text x="23.6454%" y="623.50"></text></g><g><title>core::cmp::Ord::max (2 samples, 0.04%)</title><rect x="23.3954%" y="597" width="0.0362%" height="15" fill="rgb(209,164,1)" fg:x="1294" fg:w="2"/><text x="23.6454%" y="607.50"></text></g><g><title>core::cmp::max_by (2 samples, 0.04%)</title><rect x="23.3954%" y="581" width="0.0362%" height="15" fill="rgb(213,184,43)" fg:x="1294" fg:w="2"/><text x="23.6454%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (42 samples, 0.76%)</title><rect x="22.7265%" y="693" width="0.7594%" height="15" fill="rgb(231,61,34)" fg:x="1257" fg:w="42"/><text x="22.9765%" y="703.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (42 samples, 0.76%)</title><rect x="22.7265%" y="677" width="0.7594%" height="15" fill="rgb(235,75,3)" fg:x="1257" fg:w="42"/><text x="22.9765%" y="687.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (42 samples, 0.76%)</title><rect x="22.7265%" y="661" width="0.7594%" height="15" fill="rgb(220,106,47)" fg:x="1257" fg:w="42"/><text x="22.9765%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (42 samples, 0.76%)</title><rect x="22.7265%" y="645" width="0.7594%" height="15" fill="rgb(210,196,33)" fg:x="1257" fg:w="42"/><text x="22.9765%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (3 samples, 0.05%)</title><rect x="23.4316%" y="629" width="0.0542%" height="15" fill="rgb(229,154,42)" fg:x="1296" fg:w="3"/><text x="23.6816%" y="639.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="23.5220%" y="597" width="0.0181%" height="15" fill="rgb(228,114,26)" fg:x="1301" fg:w="1"/><text x="23.7720%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (4 samples, 0.07%)</title><rect x="23.4858%" y="661" width="0.0723%" height="15" fill="rgb(208,144,1)" fg:x="1299" fg:w="4"/><text x="23.7358%" y="671.50"></text></g><g><title>alloc::alloc::box_free (2 samples, 0.04%)</title><rect x="23.5220%" y="645" width="0.0362%" height="15" fill="rgb(239,112,37)" fg:x="1301" fg:w="2"/><text x="23.7720%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="23.5220%" y="629" width="0.0362%" height="15" fill="rgb(210,96,50)" fg:x="1301" fg:w="2"/><text x="23.7720%" y="639.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="23.5220%" y="613" width="0.0362%" height="15" fill="rgb(222,178,2)" fg:x="1301" fg:w="2"/><text x="23.7720%" y="623.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="23.5400%" y="597" width="0.0181%" height="15" fill="rgb(226,74,18)" fg:x="1302" fg:w="1"/><text x="23.7900%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::Lines&lt;std::io::buffered::bufreader::BufReader&lt;std::fs::File&gt;&gt;&gt; (54 samples, 0.98%)</title><rect x="23.4858%" y="693" width="0.9763%" height="15" fill="rgb(225,67,54)" fg:x="1299" fg:w="54"/><text x="23.7358%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::buffered::bufreader::BufReader&lt;std::fs::File&gt;&gt; (54 samples, 0.98%)</title><rect x="23.4858%" y="677" width="0.9763%" height="15" fill="rgb(251,92,32)" fg:x="1299" fg:w="54"/><text x="23.7358%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::fs::File&gt; (50 samples, 0.90%)</title><rect x="23.5581%" y="661" width="0.9040%" height="15" fill="rgb(228,149,22)" fg:x="1303" fg:w="50"/><text x="23.8081%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::unix::fs::File&gt; (50 samples, 0.90%)</title><rect x="23.5581%" y="645" width="0.9040%" height="15" fill="rgb(243,54,13)" fg:x="1303" fg:w="50"/><text x="23.8081%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys::unix::fd::FileDesc&gt; (50 samples, 0.90%)</title><rect x="23.5581%" y="629" width="0.9040%" height="15" fill="rgb(243,180,28)" fg:x="1303" fg:w="50"/><text x="23.8081%" y="639.50"></text></g><g><title>__close (50 samples, 0.90%)</title><rect x="23.5581%" y="613" width="0.9040%" height="15" fill="rgb(208,167,24)" fg:x="1303" fg:w="50"/><text x="23.8081%" y="623.50"></text></g><g><title>[unknown] (47 samples, 0.85%)</title><rect x="23.6124%" y="597" width="0.8498%" height="15" fill="rgb(245,73,45)" fg:x="1306" fg:w="47"/><text x="23.8624%" y="607.50"></text></g><g><title>[unknown] (42 samples, 0.76%)</title><rect x="23.7028%" y="581" width="0.7594%" height="15" fill="rgb(237,203,48)" fg:x="1311" fg:w="42"/><text x="23.9528%" y="591.50"></text></g><g><title>[unknown] (24 samples, 0.43%)</title><rect x="24.0282%" y="565" width="0.4339%" height="15" fill="rgb(211,197,16)" fg:x="1329" fg:w="24"/><text x="24.2782%" y="575.50"></text></g><g><title>[unknown] (24 samples, 0.43%)</title><rect x="24.0282%" y="549" width="0.4339%" height="15" fill="rgb(243,99,51)" fg:x="1329" fg:w="24"/><text x="24.2782%" y="559.50"></text></g><g><title>[unknown] (20 samples, 0.36%)</title><rect x="24.1005%" y="533" width="0.3616%" height="15" fill="rgb(215,123,29)" fg:x="1333" fg:w="20"/><text x="24.3505%" y="543.50"></text></g><g><title>[unknown] (17 samples, 0.31%)</title><rect x="24.1548%" y="517" width="0.3074%" height="15" fill="rgb(239,186,37)" fg:x="1336" fg:w="17"/><text x="24.4048%" y="527.50"></text></g><g><title>[unknown] (14 samples, 0.25%)</title><rect x="24.2090%" y="501" width="0.2531%" height="15" fill="rgb(252,136,39)" fg:x="1339" fg:w="14"/><text x="24.4590%" y="511.50"></text></g><g><title>[unknown] (10 samples, 0.18%)</title><rect x="24.2813%" y="485" width="0.1808%" height="15" fill="rgb(223,213,32)" fg:x="1343" fg:w="10"/><text x="24.5313%" y="495.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="24.3717%" y="469" width="0.0904%" height="15" fill="rgb(233,115,5)" fg:x="1348" fg:w="5"/><text x="24.6217%" y="479.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="24.4621%" y="565" width="0.0181%" height="15" fill="rgb(207,226,44)" fg:x="1353" fg:w="1"/><text x="24.7121%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (2 samples, 0.04%)</title><rect x="24.4621%" y="661" width="0.0362%" height="15" fill="rgb(208,126,0)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="24.4621%" y="645" width="0.0362%" height="15" fill="rgb(244,66,21)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="24.4621%" y="629" width="0.0362%" height="15" fill="rgb(222,97,12)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="639.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="24.4621%" y="613" width="0.0362%" height="15" fill="rgb(219,213,19)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="24.4621%" y="597" width="0.0362%" height="15" fill="rgb(252,169,30)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="607.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="24.4621%" y="581" width="0.0362%" height="15" fill="rgb(206,32,51)" fg:x="1353" fg:w="2"/><text x="24.7121%" y="591.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="24.4802%" y="565" width="0.0181%" height="15" fill="rgb(250,172,42)" fg:x="1354" fg:w="1"/><text x="24.7302%" y="575.50"></text></g><g><title>__close (3 samples, 0.05%)</title><rect x="24.4983%" y="645" width="0.0542%" height="15" fill="rgb(209,34,43)" fg:x="1355" fg:w="3"/><text x="24.7483%" y="655.50"></text></g><g><title>[unknown] (3 samples, 0.05%)</title><rect x="24.4983%" y="629" width="0.0542%" height="15" fill="rgb(223,11,35)" fg:x="1355" fg:w="3"/><text x="24.7483%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::c_str::CString&gt; (1 samples, 0.02%)</title><rect x="24.5706%" y="613" width="0.0181%" height="15" fill="rgb(251,219,26)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (1 samples, 0.02%)</title><rect x="24.5706%" y="597" width="0.0181%" height="15" fill="rgb(231,119,3)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="607.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.02%)</title><rect x="24.5706%" y="581" width="0.0181%" height="15" fill="rgb(216,97,11)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="24.5706%" y="565" width="0.0181%" height="15" fill="rgb(223,59,9)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="575.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="24.5706%" y="549" width="0.0181%" height="15" fill="rgb(233,93,31)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="559.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="24.5706%" y="533" width="0.0181%" height="15" fill="rgb(239,81,33)" fg:x="1359" fg:w="1"/><text x="24.8206%" y="543.50"></text></g><g><title>std::sys::unix::fs::File::open_c (98 samples, 1.77%)</title><rect x="24.5887%" y="613" width="1.7718%" height="15" fill="rgb(213,120,34)" fg:x="1360" fg:w="98"/><text x="24.8387%" y="623.50">s..</text></g><g><title>std::sys::unix::cvt_r (98 samples, 1.77%)</title><rect x="24.5887%" y="597" width="1.7718%" height="15" fill="rgb(243,49,53)" fg:x="1360" fg:w="98"/><text x="24.8387%" y="607.50">s..</text></g><g><title>std::sys::unix::fs::File::open_c::{{closure}} (98 samples, 1.77%)</title><rect x="24.5887%" y="581" width="1.7718%" height="15" fill="rgb(247,216,33)" fg:x="1360" fg:w="98"/><text x="24.8387%" y="591.50">s..</text></g><g><title>__libc_open64 (98 samples, 1.77%)</title><rect x="24.5887%" y="565" width="1.7718%" height="15" fill="rgb(226,26,14)" fg:x="1360" fg:w="98"/><text x="24.8387%" y="575.50">_..</text></g><g><title>[unknown] (98 samples, 1.77%)</title><rect x="24.5887%" y="549" width="1.7718%" height="15" fill="rgb(215,49,53)" fg:x="1360" fg:w="98"/><text x="24.8387%" y="559.50">[..</text></g><g><title>[unknown] (95 samples, 1.72%)</title><rect x="24.6429%" y="533" width="1.7176%" height="15" fill="rgb(245,162,40)" fg:x="1363" fg:w="95"/><text x="24.8929%" y="543.50"></text></g><g><title>[unknown] (80 samples, 1.45%)</title><rect x="24.9141%" y="517" width="1.4464%" height="15" fill="rgb(229,68,17)" fg:x="1378" fg:w="80"/><text x="25.1641%" y="527.50"></text></g><g><title>[unknown] (79 samples, 1.43%)</title><rect x="24.9322%" y="501" width="1.4283%" height="15" fill="rgb(213,182,10)" fg:x="1379" fg:w="79"/><text x="25.1822%" y="511.50"></text></g><g><title>[unknown] (78 samples, 1.41%)</title><rect x="24.9503%" y="485" width="1.4102%" height="15" fill="rgb(245,125,30)" fg:x="1380" fg:w="78"/><text x="25.2003%" y="495.50"></text></g><g><title>[unknown] (75 samples, 1.36%)</title><rect x="25.0045%" y="469" width="1.3560%" height="15" fill="rgb(232,202,2)" fg:x="1383" fg:w="75"/><text x="25.2545%" y="479.50"></text></g><g><title>[unknown] (74 samples, 1.34%)</title><rect x="25.0226%" y="453" width="1.3379%" height="15" fill="rgb(237,140,51)" fg:x="1384" fg:w="74"/><text x="25.2726%" y="463.50"></text></g><g><title>[unknown] (68 samples, 1.23%)</title><rect x="25.1311%" y="437" width="1.2294%" height="15" fill="rgb(236,157,25)" fg:x="1390" fg:w="68"/><text x="25.3811%" y="447.50"></text></g><g><title>[unknown] (50 samples, 0.90%)</title><rect x="25.4565%" y="421" width="0.9040%" height="15" fill="rgb(219,209,0)" fg:x="1408" fg:w="50"/><text x="25.7065%" y="431.50"></text></g><g><title>[unknown] (42 samples, 0.76%)</title><rect x="25.6012%" y="405" width="0.7594%" height="15" fill="rgb(240,116,54)" fg:x="1416" fg:w="42"/><text x="25.8512%" y="415.50"></text></g><g><title>[unknown] (26 samples, 0.47%)</title><rect x="25.8904%" y="389" width="0.4701%" height="15" fill="rgb(216,10,36)" fg:x="1432" fg:w="26"/><text x="26.1404%" y="399.50"></text></g><g><title>[unknown] (11 samples, 0.20%)</title><rect x="26.1616%" y="373" width="0.1989%" height="15" fill="rgb(222,72,44)" fg:x="1447" fg:w="11"/><text x="26.4116%" y="383.50"></text></g><g><title>[unknown] (3 samples, 0.05%)</title><rect x="26.3063%" y="357" width="0.0542%" height="15" fill="rgb(232,159,9)" fg:x="1455" fg:w="3"/><text x="26.5563%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="26.3424%" y="341" width="0.0181%" height="15" fill="rgb(210,39,32)" fg:x="1457" fg:w="1"/><text x="26.5924%" y="351.50"></text></g><g><title>std::fs::File::open (107 samples, 1.93%)</title><rect x="24.4621%" y="677" width="1.9346%" height="15" fill="rgb(216,194,45)" fg:x="1353" fg:w="107"/><text x="24.7121%" y="687.50">s..</text></g><g><title>std::fs::OpenOptions::open (105 samples, 1.90%)</title><rect x="24.4983%" y="661" width="1.8984%" height="15" fill="rgb(218,18,35)" fg:x="1355" fg:w="105"/><text x="24.7483%" y="671.50">s..</text></g><g><title>std::fs::OpenOptions::_open (102 samples, 1.84%)</title><rect x="24.5525%" y="645" width="1.8442%" height="15" fill="rgb(207,83,51)" fg:x="1358" fg:w="102"/><text x="24.8025%" y="655.50">s..</text></g><g><title>std::sys::unix::fs::File::open (101 samples, 1.83%)</title><rect x="24.5706%" y="629" width="1.8261%" height="15" fill="rgb(225,63,43)" fg:x="1359" fg:w="101"/><text x="24.8206%" y="639.50">s..</text></g><g><title>std::sys::unix::fs::cstr (2 samples, 0.04%)</title><rect x="26.3605%" y="613" width="0.0362%" height="15" fill="rgb(207,57,36)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="623.50"></text></g><g><title>std::ffi::c_str::CString::new (2 samples, 0.04%)</title><rect x="26.3605%" y="597" width="0.0362%" height="15" fill="rgb(216,99,33)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="607.50"></text></g><g><title>std::ffi::c_str::CString::_new (2 samples, 0.04%)</title><rect x="26.3605%" y="581" width="0.0362%" height="15" fill="rgb(225,42,16)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="591.50"></text></g><g><title>std::memchr::memchr (2 samples, 0.04%)</title><rect x="26.3605%" y="565" width="0.0362%" height="15" fill="rgb(220,201,45)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="575.50"></text></g><g><title>std::sys::unix::memchr::memchr (2 samples, 0.04%)</title><rect x="26.3605%" y="549" width="0.0362%" height="15" fill="rgb(225,33,4)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="559.50"></text></g><g><title>__memchr_avx2 (2 samples, 0.04%)</title><rect x="26.3605%" y="533" width="0.0362%" height="15" fill="rgb(224,33,50)" fg:x="1458" fg:w="2"/><text x="26.6105%" y="543.50"></text></g><g><title>phone_encoder::read_lines (137 samples, 2.48%)</title><rect x="24.4621%" y="693" width="2.4769%" height="15" fill="rgb(246,198,51)" fg:x="1353" fg:w="137"/><text x="24.7121%" y="703.50">ph..</text></g><g><title>std::io::buffered::bufreader::BufReader&lt;R&gt;::new (30 samples, 0.54%)</title><rect x="26.3967%" y="677" width="0.5424%" height="15" fill="rgb(205,22,4)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="687.50"></text></g><g><title>std::io::buffered::bufreader::BufReader&lt;R&gt;::with_capacity (30 samples, 0.54%)</title><rect x="26.3967%" y="661" width="0.5424%" height="15" fill="rgb(206,3,8)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (30 samples, 0.54%)</title><rect x="26.3967%" y="645" width="0.5424%" height="15" fill="rgb(251,23,15)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (30 samples, 0.54%)</title><rect x="26.3967%" y="629" width="0.5424%" height="15" fill="rgb(252,88,28)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (30 samples, 0.54%)</title><rect x="26.3967%" y="613" width="0.5424%" height="15" fill="rgb(212,127,14)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (30 samples, 0.54%)</title><rect x="26.3967%" y="597" width="0.5424%" height="15" fill="rgb(247,145,37)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (30 samples, 0.54%)</title><rect x="26.3967%" y="581" width="0.5424%" height="15" fill="rgb(209,117,53)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (30 samples, 0.54%)</title><rect x="26.3967%" y="565" width="0.5424%" height="15" fill="rgb(212,90,42)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="575.50"></text></g><g><title>alloc::alloc::alloc (30 samples, 0.54%)</title><rect x="26.3967%" y="549" width="0.5424%" height="15" fill="rgb(218,164,37)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="559.50"></text></g><g><title>__GI___libc_malloc (30 samples, 0.54%)</title><rect x="26.3967%" y="533" width="0.5424%" height="15" fill="rgb(246,65,34)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="543.50"></text></g><g><title>_int_malloc (30 samples, 0.54%)</title><rect x="26.3967%" y="517" width="0.5424%" height="15" fill="rgb(231,100,33)" fg:x="1460" fg:w="30"/><text x="26.6467%" y="527.50"></text></g><g><title>unlink_chunk (1 samples, 0.02%)</title><rect x="26.9210%" y="501" width="0.0181%" height="15" fill="rgb(228,126,14)" fg:x="1489" fg:w="1"/><text x="27.1710%" y="511.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.07%)</title><rect x="27.2103%" y="677" width="0.0723%" height="15" fill="rgb(215,173,21)" fg:x="1505" fg:w="4"/><text x="27.4603%" y="687.50"></text></g><g><title>core::str::validations::next_code_point (4 samples, 0.07%)</title><rect x="27.2103%" y="661" width="0.0723%" height="15" fill="rgb(210,6,40)" fg:x="1505" fg:w="4"/><text x="27.4603%" y="671.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.04%)</title><rect x="27.2464%" y="645" width="0.0362%" height="15" fill="rgb(212,48,18)" fg:x="1507" fg:w="2"/><text x="27.4964%" y="655.50"></text></g><g><title>core::slice::iter::Iter&lt;T&gt;::post_inc_start (1 samples, 0.02%)</title><rect x="27.2645%" y="629" width="0.0181%" height="15" fill="rgb(230,214,11)" fg:x="1508" fg:w="1"/><text x="27.5145%" y="639.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (1 samples, 0.02%)</title><rect x="27.2645%" y="613" width="0.0181%" height="15" fill="rgb(254,105,39)" fg:x="1508" fg:w="1"/><text x="27.5145%" y="623.50"></text></g><g><title>_int_malloc (3 samples, 0.05%)</title><rect x="27.5538%" y="485" width="0.0542%" height="15" fill="rgb(245,158,5)" fg:x="1524" fg:w="3"/><text x="27.8038%" y="495.50"></text></g><g><title>checked_request2size (3 samples, 0.05%)</title><rect x="27.6080%" y="485" width="0.0542%" height="15" fill="rgb(249,208,11)" fg:x="1527" fg:w="3"/><text x="27.8580%" y="495.50"></text></g><g><title>__GI___libc_malloc (18 samples, 0.33%)</title><rect x="27.3730%" y="501" width="0.3254%" height="15" fill="rgb(210,39,28)" fg:x="1514" fg:w="18"/><text x="27.6230%" y="511.50"></text></g><g><title>tcache_get (2 samples, 0.04%)</title><rect x="27.6623%" y="485" width="0.0362%" height="15" fill="rgb(211,56,53)" fg:x="1530" fg:w="2"/><text x="27.9123%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (25 samples, 0.45%)</title><rect x="27.3730%" y="597" width="0.4520%" height="15" fill="rgb(226,201,30)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (25 samples, 0.45%)</title><rect x="27.3730%" y="581" width="0.4520%" height="15" fill="rgb(239,101,34)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (25 samples, 0.45%)</title><rect x="27.3730%" y="565" width="0.4520%" height="15" fill="rgb(226,209,5)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (25 samples, 0.45%)</title><rect x="27.3730%" y="549" width="0.4520%" height="15" fill="rgb(250,105,47)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (25 samples, 0.45%)</title><rect x="27.3730%" y="533" width="0.4520%" height="15" fill="rgb(230,72,3)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="543.50"></text></g><g><title>alloc::alloc::alloc (25 samples, 0.45%)</title><rect x="27.3730%" y="517" width="0.4520%" height="15" fill="rgb(232,218,39)" fg:x="1514" fg:w="25"/><text x="27.6230%" y="527.50"></text></g><g><title>__rdl_alloc (7 samples, 0.13%)</title><rect x="27.6984%" y="501" width="0.1266%" height="15" fill="rgb(248,166,6)" fg:x="1532" fg:w="7"/><text x="27.9484%" y="511.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (7 samples, 0.13%)</title><rect x="27.6984%" y="485" width="0.1266%" height="15" fill="rgb(247,89,20)" fg:x="1532" fg:w="7"/><text x="27.9484%" y="495.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (31 samples, 0.56%)</title><rect x="27.2826%" y="677" width="0.5605%" height="15" fill="rgb(248,130,54)" fg:x="1509" fg:w="31"/><text x="27.5326%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (30 samples, 0.54%)</title><rect x="27.3007%" y="661" width="0.5424%" height="15" fill="rgb(234,196,4)" fg:x="1510" fg:w="30"/><text x="27.5507%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (26 samples, 0.47%)</title><rect x="27.3730%" y="645" width="0.4701%" height="15" fill="rgb(250,143,31)" fg:x="1514" fg:w="26"/><text x="27.6230%" y="655.50"></text></g><g><title>alloc::slice::hack::to_vec (26 samples, 0.47%)</title><rect x="27.3730%" y="629" width="0.4701%" height="15" fill="rgb(211,110,34)" fg:x="1514" fg:w="26"/><text x="27.6230%" y="639.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (26 samples, 0.47%)</title><rect x="27.3730%" y="613" width="0.4701%" height="15" fill="rgb(215,124,48)" fg:x="1514" fg:w="26"/><text x="27.6230%" y="623.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="27.8250%" y="597" width="0.0181%" height="15" fill="rgb(216,46,13)" fg:x="1539" fg:w="1"/><text x="28.0750%" y="607.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="27.8250%" y="581" width="0.0181%" height="15" fill="rgb(205,184,25)" fg:x="1539" fg:w="1"/><text x="28.0750%" y="591.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="27.8250%" y="565" width="0.0181%" height="15" fill="rgb(228,1,10)" fg:x="1539" fg:w="1"/><text x="28.0750%" y="575.50"></text></g><g><title>&lt;phone_encoder::TEN as core::ops::deref::Deref&gt;::deref (7 samples, 0.13%)</title><rect x="27.8431%" y="677" width="0.1266%" height="15" fill="rgb(213,116,27)" fg:x="1540" fg:w="7"/><text x="28.0931%" y="687.50"></text></g><g><title>&lt;phone_encoder::TEN as core::ops::deref::Deref&gt;::deref::__stability (7 samples, 0.13%)</title><rect x="27.8431%" y="661" width="0.1266%" height="15" fill="rgb(241,95,50)" fg:x="1540" fg:w="7"/><text x="28.0931%" y="671.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get (7 samples, 0.13%)</title><rect x="27.8431%" y="645" width="0.1266%" height="15" fill="rgb(238,48,32)" fg:x="1540" fg:w="7"/><text x="28.0931%" y="655.50"></text></g><g><title>std::sync::once::Once::call_once (2 samples, 0.04%)</title><rect x="27.9335%" y="629" width="0.0362%" height="15" fill="rgb(235,113,49)" fg:x="1545" fg:w="2"/><text x="28.1835%" y="639.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::is_alphabetic (7 samples, 0.13%)</title><rect x="27.9696%" y="677" width="0.1266%" height="15" fill="rgb(205,127,43)" fg:x="1547" fg:w="7"/><text x="28.2196%" y="687.50"></text></g><g><title>__GI___libc_free (17 samples, 0.31%)</title><rect x="28.1504%" y="581" width="0.3074%" height="15" fill="rgb(250,162,2)" fg:x="1557" fg:w="17"/><text x="28.4004%" y="591.50"></text></g><g><title>__rdl_dealloc (1 samples, 0.02%)</title><rect x="28.4578%" y="581" width="0.0181%" height="15" fill="rgb(220,13,41)" fg:x="1574" fg:w="1"/><text x="28.7078%" y="591.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (1 samples, 0.02%)</title><rect x="28.4578%" y="565" width="0.0181%" height="15" fill="rgb(249,221,25)" fg:x="1574" fg:w="1"/><text x="28.7078%" y="575.50"></text></g><g><title>__rust_dealloc (8 samples, 0.14%)</title><rect x="28.4759%" y="581" width="0.1446%" height="15" fill="rgb(215,208,19)" fg:x="1575" fg:w="8"/><text x="28.7259%" y="591.50"></text></g><g><title>free_perturb (1 samples, 0.02%)</title><rect x="29.5607%" y="565" width="0.0181%" height="15" fill="rgb(236,175,2)" fg:x="1635" fg:w="1"/><text x="29.8107%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (86 samples, 1.55%)</title><rect x="28.0962%" y="613" width="1.5549%" height="15" fill="rgb(241,52,2)" fg:x="1554" fg:w="86"/><text x="28.3462%" y="623.50"></text></g><g><title>alloc::alloc::dealloc (86 samples, 1.55%)</title><rect x="28.0962%" y="597" width="1.5549%" height="15" fill="rgb(248,140,14)" fg:x="1554" fg:w="86"/><text x="28.3462%" y="607.50"></text></g><g><title>_int_free (57 samples, 1.03%)</title><rect x="28.6205%" y="581" width="1.0306%" height="15" fill="rgb(253,22,42)" fg:x="1583" fg:w="57"/><text x="28.8705%" y="591.50"></text></g><g><title>tcache_put (4 samples, 0.07%)</title><rect x="29.5787%" y="565" width="0.0723%" height="15" fill="rgb(234,61,47)" fg:x="1636" fg:w="4"/><text x="29.8287%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (90 samples, 1.63%)</title><rect x="28.0962%" y="677" width="1.6272%" height="15" fill="rgb(208,226,15)" fg:x="1554" fg:w="90"/><text x="28.3462%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (90 samples, 1.63%)</title><rect x="28.0962%" y="661" width="1.6272%" height="15" fill="rgb(217,221,4)" fg:x="1554" fg:w="90"/><text x="28.3462%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (90 samples, 1.63%)</title><rect x="28.0962%" y="645" width="1.6272%" height="15" fill="rgb(212,174,34)" fg:x="1554" fg:w="90"/><text x="28.3462%" y="655.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (90 samples, 1.63%)</title><rect x="28.0962%" y="629" width="1.6272%" height="15" fill="rgb(253,83,4)" fg:x="1554" fg:w="90"/><text x="28.3462%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (4 samples, 0.07%)</title><rect x="29.6511%" y="613" width="0.0723%" height="15" fill="rgb(250,195,49)" fg:x="1640" fg:w="4"/><text x="29.9011%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::DerefMut&gt;::deref_mut (3 samples, 0.05%)</title><rect x="29.7776%" y="629" width="0.0542%" height="15" fill="rgb(241,192,25)" fg:x="1647" fg:w="3"/><text x="30.0276%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (3 samples, 0.05%)</title><rect x="29.7776%" y="613" width="0.0542%" height="15" fill="rgb(208,124,10)" fg:x="1647" fg:w="3"/><text x="30.0276%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;u32&gt; for num_bigint::biguint::BigUint&gt;::add (7 samples, 0.13%)</title><rect x="29.7234%" y="677" width="0.1266%" height="15" fill="rgb(222,33,0)" fg:x="1644" fg:w="7"/><text x="29.9734%" y="687.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;u32&gt; for num_bigint::biguint::BigUint&gt;::add (4 samples, 0.07%)</title><rect x="29.7776%" y="661" width="0.0723%" height="15" fill="rgb(234,209,28)" fg:x="1647" fg:w="4"/><text x="30.0276%" y="671.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::AddAssign&lt;u32&gt; for num_bigint::biguint::BigUint&gt;::add_assign (4 samples, 0.07%)</title><rect x="29.7776%" y="645" width="0.0723%" height="15" fill="rgb(224,11,23)" fg:x="1647" fg:w="4"/><text x="30.0276%" y="655.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (1 samples, 0.02%)</title><rect x="29.8319%" y="629" width="0.0181%" height="15" fill="rgb(232,99,1)" fg:x="1650" fg:w="1"/><text x="30.0819%" y="639.50"></text></g><g><title>num_bigint::biguint::addition::adc (1 samples, 0.02%)</title><rect x="29.8319%" y="613" width="0.0181%" height="15" fill="rgb(237,95,45)" fg:x="1650" fg:w="1"/><text x="30.0819%" y="623.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (1 samples, 0.02%)</title><rect x="29.8319%" y="597" width="0.0181%" height="15" fill="rgb(208,109,11)" fg:x="1650" fg:w="1"/><text x="30.0819%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="517" width="0.0181%" height="15" fill="rgb(216,190,48)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="527.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="501" width="0.0181%" height="15" fill="rgb(251,171,36)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="511.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="485" width="0.0181%" height="15" fill="rgb(230,62,22)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="469" width="0.0181%" height="15" fill="rgb(225,114,35)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="453" width="0.0181%" height="15" fill="rgb(215,118,42)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="437" width="0.0181%" height="15" fill="rgb(243,119,21)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="421" width="0.0181%" height="15" fill="rgb(252,177,53)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="405" width="0.0181%" height="15" fill="rgb(237,209,29)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="389" width="0.0181%" height="15" fill="rgb(212,65,23)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="373" width="0.0181%" height="15" fill="rgb(230,222,46)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="357" width="0.0181%" height="15" fill="rgb(215,135,32)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="341" width="0.0181%" height="15" fill="rgb(246,101,22)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="325" width="0.0181%" height="15" fill="rgb(206,107,13)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="309" width="0.0181%" height="15" fill="rgb(250,100,44)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="293" width="0.0181%" height="15" fill="rgb(231,147,38)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="30.7539%" y="277" width="0.0181%" height="15" fill="rgb(229,8,40)" fg:x="1701" fg:w="1"/><text x="31.0039%" y="287.50"></text></g><g><title>alloc_perturb (1 samples, 0.02%)</title><rect x="32.4173%" y="501" width="0.0181%" height="15" fill="rgb(221,135,30)" fg:x="1793" fg:w="1"/><text x="32.6673%" y="511.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="32.4354%" y="501" width="0.0181%" height="15" fill="rgb(249,193,18)" fg:x="1794" fg:w="1"/><text x="32.6854%" y="511.50"></text></g><g><title>get_max_fast (1 samples, 0.02%)</title><rect x="32.4534%" y="501" width="0.0181%" height="15" fill="rgb(209,133,39)" fg:x="1795" fg:w="1"/><text x="32.7034%" y="511.50"></text></g><g><title>__libc_calloc (139 samples, 2.51%)</title><rect x="30.1031%" y="533" width="2.5131%" height="15" fill="rgb(232,100,14)" fg:x="1665" fg:w="139"/><text x="30.3531%" y="543.50">__..</text></g><g><title>_int_malloc (102 samples, 1.84%)</title><rect x="30.7720%" y="517" width="1.8442%" height="15" fill="rgb(224,185,1)" fg:x="1702" fg:w="102"/><text x="31.0220%" y="527.50">_..</text></g><g><title>unlink_chunk (8 samples, 0.14%)</title><rect x="32.4715%" y="501" width="0.1446%" height="15" fill="rgb(223,139,8)" fg:x="1796" fg:w="8"/><text x="32.7215%" y="511.50"></text></g><g><title>__rdl_alloc_zeroed (4 samples, 0.07%)</title><rect x="32.6162%" y="533" width="0.0723%" height="15" fill="rgb(232,213,38)" fg:x="1804" fg:w="4"/><text x="32.8662%" y="543.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (3 samples, 0.05%)</title><rect x="32.6342%" y="517" width="0.0542%" height="15" fill="rgb(207,94,22)" fg:x="1805" fg:w="3"/><text x="32.8842%" y="527.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (146 samples, 2.64%)</title><rect x="30.0850%" y="581" width="2.6397%" height="15" fill="rgb(219,183,54)" fg:x="1664" fg:w="146"/><text x="30.3350%" y="591.50">&lt;a..</text></g><g><title>alloc::alloc::Global::alloc_impl (146 samples, 2.64%)</title><rect x="30.0850%" y="565" width="2.6397%" height="15" fill="rgb(216,185,54)" fg:x="1664" fg:w="146"/><text x="30.3350%" y="575.50">al..</text></g><g><title>alloc::alloc::alloc_zeroed (146 samples, 2.64%)</title><rect x="30.0850%" y="549" width="2.6397%" height="15" fill="rgb(254,217,39)" fg:x="1664" fg:w="146"/><text x="30.3350%" y="559.50">al..</text></g><g><title>__rust_alloc_zeroed (2 samples, 0.04%)</title><rect x="32.6885%" y="533" width="0.0362%" height="15" fill="rgb(240,178,23)" fg:x="1808" fg:w="2"/><text x="32.9385%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::capacity_from_bytes (1 samples, 0.02%)</title><rect x="32.7246%" y="581" width="0.0181%" height="15" fill="rgb(218,11,47)" fg:x="1810" fg:w="1"/><text x="32.9746%" y="591.50"></text></g><g><title>alloc::vec::from_elem (153 samples, 2.77%)</title><rect x="29.9946%" y="645" width="2.7662%" height="15" fill="rgb(218,51,51)" fg:x="1659" fg:w="153"/><text x="30.2446%" y="655.50">al..</text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (153 samples, 2.77%)</title><rect x="29.9946%" y="629" width="2.7662%" height="15" fill="rgb(238,126,27)" fg:x="1659" fg:w="153"/><text x="30.2446%" y="639.50">&lt;T..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (148 samples, 2.68%)</title><rect x="30.0850%" y="613" width="2.6758%" height="15" fill="rgb(249,202,22)" fg:x="1664" fg:w="148"/><text x="30.3350%" y="623.50">al..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (148 samples, 2.68%)</title><rect x="30.0850%" y="597" width="2.6758%" height="15" fill="rgb(254,195,49)" fg:x="1664" fg:w="148"/><text x="30.3350%" y="607.50">al..</text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="32.7427%" y="581" width="0.0181%" height="15" fill="rgb(208,123,14)" fg:x="1811" fg:w="1"/><text x="32.9927%" y="591.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="32.7427%" y="565" width="0.0181%" height="15" fill="rgb(224,200,8)" fg:x="1811" fg:w="1"/><text x="32.9927%" y="575.50"></text></g><g><title>num_bigint::biguint::BigUint::normalized (22 samples, 0.40%)</title><rect x="32.7608%" y="645" width="0.3978%" height="15" fill="rgb(217,61,36)" fg:x="1812" fg:w="22"/><text x="33.0108%" y="655.50"></text></g><g><title>num_bigint::biguint::BigUint::normalize (13 samples, 0.24%)</title><rect x="32.9235%" y="629" width="0.2350%" height="15" fill="rgb(206,35,45)" fg:x="1821" fg:w="13"/><text x="33.1735%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="33.3394%" y="629" width="0.0181%" height="15" fill="rgb(217,65,33)" fg:x="1844" fg:w="1"/><text x="33.5894%" y="639.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="33.3394%" y="613" width="0.0181%" height="15" fill="rgb(222,158,48)" fg:x="1844" fg:w="1"/><text x="33.5894%" y="623.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T]&gt;::index_mut (11 samples, 0.20%)</title><rect x="33.3574%" y="629" width="0.1989%" height="15" fill="rgb(254,2,54)" fg:x="1845" fg:w="11"/><text x="33.6074%" y="639.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (11 samples, 0.20%)</title><rect x="33.3574%" y="613" width="0.1989%" height="15" fill="rgb(250,143,38)" fg:x="1845" fg:w="11"/><text x="33.6074%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (8 samples, 0.14%)</title><rect x="33.5744%" y="613" width="0.1446%" height="15" fill="rgb(248,25,0)" fg:x="1857" fg:w="8"/><text x="33.8244%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (8 samples, 0.14%)</title><rect x="33.5744%" y="597" width="0.1446%" height="15" fill="rgb(206,152,27)" fg:x="1857" fg:w="8"/><text x="33.8244%" y="607.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::split_at_mut (1 samples, 0.02%)</title><rect x="33.7190%" y="613" width="0.0181%" height="15" fill="rgb(240,77,30)" fg:x="1865" fg:w="1"/><text x="33.9690%" y="623.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::split_at_mut (1 samples, 0.02%)</title><rect x="33.7371%" y="597" width="0.0181%" height="15" fill="rgb(231,5,3)" fg:x="1866" fg:w="1"/><text x="33.9871%" y="607.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (6 samples, 0.11%)</title><rect x="33.7371%" y="613" width="0.1085%" height="15" fill="rgb(207,226,32)" fg:x="1866" fg:w="6"/><text x="33.9871%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::adc (5 samples, 0.09%)</title><rect x="33.7552%" y="597" width="0.0904%" height="15" fill="rgb(222,207,47)" fg:x="1867" fg:w="5"/><text x="34.0052%" y="607.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (5 samples, 0.09%)</title><rect x="33.7552%" y="581" width="0.0904%" height="15" fill="rgb(229,115,45)" fg:x="1867" fg:w="5"/><text x="34.0052%" y="591.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (231 samples, 4.18%)</title><rect x="29.8499%" y="677" width="4.1765%" height="15" fill="rgb(224,191,6)" fg:x="1651" fg:w="231"/><text x="30.0999%" y="687.50">num_b..</text></g><g><title>num_bigint::biguint::multiplication::mul3 (231 samples, 4.18%)</title><rect x="29.8499%" y="661" width="4.1765%" height="15" fill="rgb(230,227,24)" fg:x="1651" fg:w="231"/><text x="30.0999%" y="671.50">num_b..</text></g><g><title>num_bigint::biguint::multiplication::mac3 (48 samples, 0.87%)</title><rect x="33.1586%" y="645" width="0.8678%" height="15" fill="rgb(228,80,19)" fg:x="1834" fg:w="48"/><text x="33.4086%" y="655.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_digit (26 samples, 0.47%)</title><rect x="33.5563%" y="629" width="0.4701%" height="15" fill="rgb(247,229,0)" fg:x="1856" fg:w="26"/><text x="33.8063%" y="639.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_with_carry (10 samples, 0.18%)</title><rect x="33.8456%" y="613" width="0.1808%" height="15" fill="rgb(237,194,15)" fg:x="1872" fg:w="10"/><text x="34.0956%" y="623.50"></text></g><g><title>phone_encoder::word_to_number (397 samples, 7.18%)</title><rect x="26.9391%" y="693" width="7.1777%" height="15" fill="rgb(219,203,20)" fg:x="1490" fg:w="397"/><text x="27.1891%" y="703.50">phone_enco..</text></g><g><title>phone_encoder::char_to_digit (5 samples, 0.09%)</title><rect x="34.0264%" y="677" width="0.0904%" height="15" fill="rgb(234,128,8)" fg:x="1882" fg:w="5"/><text x="34.2764%" y="687.50"></text></g><g><title>core::char::methods::&lt;impl char&gt;::to_ascii_lowercase (4 samples, 0.07%)</title><rect x="34.0445%" y="661" width="0.0723%" height="15" fill="rgb(248,202,8)" fg:x="1883" fg:w="4"/><text x="34.2945%" y="671.50"></text></g><g><title>std::collections::hash::map::OccupiedEntry&lt;K,V&gt;::into_mut (1 samples, 0.02%)</title><rect x="34.1168%" y="677" width="0.0181%" height="15" fill="rgb(206,104,37)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="687.50"></text></g><g><title>hashbrown::rustc_entry::RustcOccupiedEntry&lt;K,V&gt;::into_mut (1 samples, 0.02%)</title><rect x="34.1168%" y="661" width="0.0181%" height="15" fill="rgb(223,8,27)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;hashbrown::rustc_entry::RustcOccupiedEntry&lt;num_bigint::biguint::BigUint,alloc::vec::Vec&lt;alloc::string::String&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="34.1168%" y="645" width="0.0181%" height="15" fill="rgb(216,217,28)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::option::Option&lt;num_bigint::biguint::BigUint&gt;&gt; (1 samples, 0.02%)</title><rect x="34.1168%" y="629" width="0.0181%" height="15" fill="rgb(249,199,1)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (1 samples, 0.02%)</title><rect x="34.1168%" y="613" width="0.0181%" height="15" fill="rgb(240,85,17)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="34.1168%" y="597" width="0.0181%" height="15" fill="rgb(206,108,45)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="34.1168%" y="581" width="0.0181%" height="15" fill="rgb(245,210,41)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="591.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="34.1168%" y="565" width="0.0181%" height="15" fill="rgb(206,13,37)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="34.1168%" y="549" width="0.0181%" height="15" fill="rgb(250,61,18)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="559.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="34.1168%" y="533" width="0.0181%" height="15" fill="rgb(235,172,48)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="543.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="34.1168%" y="517" width="0.0181%" height="15" fill="rgb(249,201,17)" fg:x="1887" fg:w="1"/><text x="34.3668%" y="527.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::write (3 samples, 0.05%)</title><rect x="34.1891%" y="613" width="0.0542%" height="15" fill="rgb(219,208,6)" fg:x="1891" fg:w="3"/><text x="34.4391%" y="623.50"></text></g><g><title>core::ptr::write (3 samples, 0.05%)</title><rect x="34.1891%" y="597" width="0.0542%" height="15" fill="rgb(248,31,23)" fg:x="1891" fg:w="3"/><text x="34.4391%" y="607.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::write (4 samples, 0.07%)</title><rect x="34.1891%" y="629" width="0.0723%" height="15" fill="rgb(245,15,42)" fg:x="1891" fg:w="4"/><text x="34.4391%" y="639.50"></text></g><g><title>hashbrown::raw::Bucket&lt;T&gt;::as_ptr (1 samples, 0.02%)</title><rect x="34.2434%" y="613" width="0.0181%" height="15" fill="rgb(222,217,39)" fg:x="1894" fg:w="1"/><text x="34.4934%" y="623.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::sub (1 samples, 0.02%)</title><rect x="34.2434%" y="597" width="0.0181%" height="15" fill="rgb(210,219,27)" fg:x="1894" fg:w="1"/><text x="34.4934%" y="607.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (1 samples, 0.02%)</title><rect x="34.2434%" y="581" width="0.0181%" height="15" fill="rgb(252,166,36)" fg:x="1894" fg:w="1"/><text x="34.4934%" y="591.50"></text></g><g><title>std::collections::hash::map::Entry&lt;K,V&gt;::or_insert_with (12 samples, 0.22%)</title><rect x="34.1168%" y="693" width="0.2170%" height="15" fill="rgb(245,132,34)" fg:x="1887" fg:w="12"/><text x="34.3668%" y="703.50"></text></g><g><title>std::collections::hash::map::VacantEntry&lt;K,V&gt;::insert (11 samples, 0.20%)</title><rect x="34.1349%" y="677" width="0.1989%" height="15" fill="rgb(236,54,3)" fg:x="1888" fg:w="11"/><text x="34.3849%" y="687.50"></text></g><g><title>hashbrown::rustc_entry::RustcVacantEntry&lt;K,V&gt;::insert (11 samples, 0.20%)</title><rect x="34.1349%" y="661" width="0.1989%" height="15" fill="rgb(241,173,43)" fg:x="1888" fg:w="11"/><text x="34.3849%" y="671.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::insert_no_grow (11 samples, 0.20%)</title><rect x="34.1349%" y="645" width="0.1989%" height="15" fill="rgb(215,190,9)" fg:x="1888" fg:w="11"/><text x="34.3849%" y="655.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::find_insert_slot (4 samples, 0.07%)</title><rect x="34.2614%" y="629" width="0.0723%" height="15" fill="rgb(242,101,16)" fg:x="1895" fg:w="4"/><text x="34.5114%" y="639.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::lowest_set_bit (1 samples, 0.02%)</title><rect x="34.3157%" y="613" width="0.0181%" height="15" fill="rgb(223,190,21)" fg:x="1898" fg:w="1"/><text x="34.5657%" y="623.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::reserve (3 samples, 0.05%)</title><rect x="34.3699%" y="661" width="0.0542%" height="15" fill="rgb(215,228,25)" fg:x="1901" fg:w="3"/><text x="34.6199%" y="671.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::reserve (2 samples, 0.04%)</title><rect x="34.3880%" y="645" width="0.0362%" height="15" fill="rgb(225,36,22)" fg:x="1902" fg:w="2"/><text x="34.6380%" y="655.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (1 samples, 0.02%)</title><rect x="34.4965%" y="517" width="0.0181%" height="15" fill="rgb(251,106,46)" fg:x="1908" fg:w="1"/><text x="34.7465%" y="527.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (5 samples, 0.09%)</title><rect x="34.4422%" y="597" width="0.0904%" height="15" fill="rgb(208,90,1)" fg:x="1905" fg:w="5"/><text x="34.6922%" y="607.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (5 samples, 0.09%)</title><rect x="34.4422%" y="581" width="0.0904%" height="15" fill="rgb(243,10,4)" fg:x="1905" fg:w="5"/><text x="34.6922%" y="591.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (5 samples, 0.09%)</title><rect x="34.4422%" y="565" width="0.0904%" height="15" fill="rgb(212,137,27)" fg:x="1905" fg:w="5"/><text x="34.6922%" y="575.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (5 samples, 0.09%)</title><rect x="34.4422%" y="549" width="0.0904%" height="15" fill="rgb(231,220,49)" fg:x="1905" fg:w="5"/><text x="34.6922%" y="559.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (2 samples, 0.04%)</title><rect x="34.4965%" y="533" width="0.0362%" height="15" fill="rgb(237,96,20)" fg:x="1908" fg:w="2"/><text x="34.7465%" y="543.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (1 samples, 0.02%)</title><rect x="34.5146%" y="517" width="0.0181%" height="15" fill="rgb(239,229,30)" fg:x="1909" fg:w="1"/><text x="34.7646%" y="527.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (3 samples, 0.05%)</title><rect x="34.6773%" y="501" width="0.0542%" height="15" fill="rgb(219,65,33)" fg:x="1918" fg:w="3"/><text x="34.9273%" y="511.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.13%)</title><rect x="34.6411%" y="517" width="0.1266%" height="15" fill="rgb(243,134,7)" fg:x="1916" fg:w="7"/><text x="34.8911%" y="527.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (2 samples, 0.04%)</title><rect x="34.7315%" y="501" width="0.0362%" height="15" fill="rgb(216,177,54)" fg:x="1921" fg:w="2"/><text x="34.9815%" y="511.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (21 samples, 0.38%)</title><rect x="34.4422%" y="645" width="0.3797%" height="15" fill="rgb(211,160,20)" fg:x="1905" fg:w="21"/><text x="34.6922%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (21 samples, 0.38%)</title><rect x="34.4422%" y="629" width="0.3797%" height="15" fill="rgb(239,85,39)" fg:x="1905" fg:w="21"/><text x="34.6922%" y="639.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (21 samples, 0.38%)</title><rect x="34.4422%" y="613" width="0.3797%" height="15" fill="rgb(232,125,22)" fg:x="1905" fg:w="21"/><text x="34.6922%" y="623.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for usize&gt;::hash (16 samples, 0.29%)</title><rect x="34.5326%" y="597" width="0.2893%" height="15" fill="rgb(244,57,34)" fg:x="1910" fg:w="16"/><text x="34.7826%" y="607.50"></text></g><g><title>core::hash::Hasher::write_usize (16 samples, 0.29%)</title><rect x="34.5326%" y="581" width="0.2893%" height="15" fill="rgb(214,203,32)" fg:x="1910" fg:w="16"/><text x="34.7826%" y="591.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (15 samples, 0.27%)</title><rect x="34.5507%" y="565" width="0.2712%" height="15" fill="rgb(207,58,43)" fg:x="1911" fg:w="15"/><text x="34.8007%" y="575.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (15 samples, 0.27%)</title><rect x="34.5507%" y="549" width="0.2712%" height="15" fill="rgb(215,193,15)" fg:x="1911" fg:w="15"/><text x="34.8007%" y="559.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (15 samples, 0.27%)</title><rect x="34.5507%" y="533" width="0.2712%" height="15" fill="rgb(232,15,44)" fg:x="1911" fg:w="15"/><text x="34.8007%" y="543.50"></text></g><g><title>core::hash::sip::u8to64_le (3 samples, 0.05%)</title><rect x="34.7677%" y="517" width="0.0542%" height="15" fill="rgb(212,3,48)" fg:x="1923" fg:w="3"/><text x="35.0177%" y="527.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (2 samples, 0.04%)</title><rect x="34.9123%" y="581" width="0.0362%" height="15" fill="rgb(218,128,7)" fg:x="1931" fg:w="2"/><text x="35.1623%" y="591.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.09%)</title><rect x="34.8762%" y="597" width="0.0904%" height="15" fill="rgb(226,216,39)" fg:x="1929" fg:w="5"/><text x="35.1262%" y="607.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (1 samples, 0.02%)</title><rect x="34.9485%" y="581" width="0.0181%" height="15" fill="rgb(243,47,51)" fg:x="1933" fg:w="1"/><text x="35.1985%" y="591.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (5 samples, 0.09%)</title><rect x="35.0208%" y="581" width="0.0904%" height="15" fill="rgb(241,183,40)" fg:x="1937" fg:w="5"/><text x="35.2708%" y="591.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (17 samples, 0.31%)</title><rect x="34.8219%" y="645" width="0.3074%" height="15" fill="rgb(231,217,32)" fg:x="1926" fg:w="17"/><text x="35.0719%" y="655.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (17 samples, 0.31%)</title><rect x="34.8219%" y="629" width="0.3074%" height="15" fill="rgb(229,61,38)" fg:x="1926" fg:w="17"/><text x="35.0719%" y="639.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (17 samples, 0.31%)</title><rect x="34.8219%" y="613" width="0.3074%" height="15" fill="rgb(225,210,5)" fg:x="1926" fg:w="17"/><text x="35.0719%" y="623.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (9 samples, 0.16%)</title><rect x="34.9666%" y="597" width="0.1627%" height="15" fill="rgb(231,79,45)" fg:x="1934" fg:w="9"/><text x="35.2166%" y="607.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (1 samples, 0.02%)</title><rect x="35.1112%" y="581" width="0.0181%" height="15" fill="rgb(224,100,7)" fg:x="1942" fg:w="1"/><text x="35.3612%" y="591.50"></text></g><g><title>hashbrown::map::make_hash (42 samples, 0.76%)</title><rect x="34.4242%" y="661" width="0.7594%" height="15" fill="rgb(241,198,18)" fg:x="1904" fg:w="42"/><text x="34.6742%" y="671.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (3 samples, 0.05%)</title><rect x="35.1293%" y="645" width="0.0542%" height="15" fill="rgb(252,97,53)" fg:x="1943" fg:w="3"/><text x="35.3793%" y="655.50"></text></g><g><title>core::hash::sip::SipHasher13::new_with_keys (1 samples, 0.02%)</title><rect x="35.1654%" y="629" width="0.0181%" height="15" fill="rgb(220,88,7)" fg:x="1945" fg:w="1"/><text x="35.4154%" y="639.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::new_with_keys (1 samples, 0.02%)</title><rect x="35.1654%" y="613" width="0.0181%" height="15" fill="rgb(213,176,14)" fg:x="1945" fg:w="1"/><text x="35.4154%" y="623.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::reset (1 samples, 0.02%)</title><rect x="35.1654%" y="597" width="0.0181%" height="15" fill="rgb(246,73,7)" fg:x="1945" fg:w="1"/><text x="35.4154%" y="607.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::probe_seq (1 samples, 0.02%)</title><rect x="35.2378%" y="613" width="0.0181%" height="15" fill="rgb(245,64,36)" fg:x="1949" fg:w="1"/><text x="35.4878%" y="623.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::iter_hash (2 samples, 0.04%)</title><rect x="35.2378%" y="645" width="0.0362%" height="15" fill="rgb(245,80,10)" fg:x="1949" fg:w="2"/><text x="35.4878%" y="655.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T&gt;::new (2 samples, 0.04%)</title><rect x="35.2378%" y="629" width="0.0362%" height="15" fill="rgb(232,107,50)" fg:x="1949" fg:w="2"/><text x="35.4878%" y="639.50"></text></g><g><title>hashbrown::raw::h2 (1 samples, 0.02%)</title><rect x="35.2558%" y="613" width="0.0181%" height="15" fill="rgb(253,3,0)" fg:x="1950" fg:w="1"/><text x="35.5058%" y="623.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::entry (55 samples, 0.99%)</title><rect x="34.3338%" y="693" width="0.9944%" height="15" fill="rgb(212,99,53)" fg:x="1899" fg:w="55"/><text x="34.5838%" y="703.50"></text></g><g><title>hashbrown::rustc_entry::&lt;impl hashbrown::map::HashMap&lt;K,V,S&gt;&gt;::rustc_entry (54 samples, 0.98%)</title><rect x="34.3518%" y="677" width="0.9763%" height="15" fill="rgb(249,111,54)" fg:x="1900" fg:w="54"/><text x="34.6018%" y="687.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::find (8 samples, 0.14%)</title><rect x="35.1835%" y="661" width="0.1446%" height="15" fill="rgb(249,55,30)" fg:x="1946" fg:w="8"/><text x="35.4335%" y="671.50"></text></g><g><title>hashbrown::rustc_entry::&lt;impl hashbrown::map::HashMap&lt;K,V,S&gt;&gt;::rustc_entry::{{closure}} (3 samples, 0.05%)</title><rect x="35.2739%" y="645" width="0.0542%" height="15" fill="rgb(237,47,42)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="655.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::cmp::PartialEq&gt;::eq (3 samples, 0.05%)</title><rect x="35.2739%" y="629" width="0.0542%" height="15" fill="rgb(211,20,18)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="639.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A&gt;&gt; for alloc::vec::Vec&lt;T,A&gt;&gt;::eq (3 samples, 0.05%)</title><rect x="35.2739%" y="613" width="0.0542%" height="15" fill="rgb(231,203,46)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="623.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (3 samples, 0.05%)</title><rect x="35.2739%" y="597" width="0.0542%" height="15" fill="rgb(237,142,3)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="607.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (3 samples, 0.05%)</title><rect x="35.2739%" y="581" width="0.0542%" height="15" fill="rgb(241,107,1)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="591.50"></text></g><g><title>__memcmp_avx2_movbe (3 samples, 0.05%)</title><rect x="35.2739%" y="565" width="0.0542%" height="15" fill="rgb(229,83,13)" fg:x="1951" fg:w="3"/><text x="35.5239%" y="575.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::default::Default&gt;::default (1 samples, 0.02%)</title><rect x="35.3282%" y="677" width="0.0181%" height="15" fill="rgb(241,91,40)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="687.50"></text></g><g><title>std::collections::hash::map::RandomState::new (1 samples, 0.02%)</title><rect x="35.3282%" y="661" width="0.0181%" height="15" fill="rgb(225,3,45)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="671.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::with (1 samples, 0.02%)</title><rect x="35.3282%" y="645" width="0.0181%" height="15" fill="rgb(244,223,14)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="655.50"></text></g><g><title>std::thread::local::LocalKey&lt;T&gt;::try_with (1 samples, 0.02%)</title><rect x="35.3282%" y="629" width="0.0181%" height="15" fill="rgb(224,124,37)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="639.50"></text></g><g><title>std::collections::hash::map::RandomState::new::KEYS::__getit (1 samples, 0.02%)</title><rect x="35.3282%" y="613" width="0.0181%" height="15" fill="rgb(251,171,30)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="623.50"></text></g><g><title>std::thread::local::fast::Key&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="35.3282%" y="597" width="0.0181%" height="15" fill="rgb(236,46,54)" fg:x="1954" fg:w="1"/><text x="35.5782%" y="607.50"></text></g><g><title>alloc::alloc::alloc (60 samples, 1.08%)</title><rect x="35.3643%" y="597" width="1.0848%" height="15" fill="rgb(245,213,5)" fg:x="1956" fg:w="60"/><text x="35.6143%" y="607.50"></text></g><g><title>__GI___libc_malloc (60 samples, 1.08%)</title><rect x="35.3643%" y="581" width="1.0848%" height="15" fill="rgb(230,144,27)" fg:x="1956" fg:w="60"/><text x="35.6143%" y="591.50"></text></g><g><title>_int_malloc (59 samples, 1.07%)</title><rect x="35.3824%" y="565" width="1.0667%" height="15" fill="rgb(220,86,6)" fg:x="1957" fg:w="59"/><text x="35.6324%" y="575.50"></text></g><g><title>malloc_consolidate (55 samples, 0.99%)</title><rect x="35.4547%" y="549" width="0.9944%" height="15" fill="rgb(240,20,13)" fg:x="1961" fg:w="55"/><text x="35.7047%" y="559.50"></text></g><g><title>unlink_chunk (10 samples, 0.18%)</title><rect x="36.2683%" y="533" width="0.1808%" height="15" fill="rgb(217,89,34)" fg:x="2006" fg:w="10"/><text x="36.5183%" y="543.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::new_uninitialized (61 samples, 1.10%)</title><rect x="35.3643%" y="613" width="1.1029%" height="15" fill="rgb(229,13,5)" fg:x="1956" fg:w="61"/><text x="35.6143%" y="623.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (1 samples, 0.02%)</title><rect x="36.4491%" y="597" width="0.0181%" height="15" fill="rgb(244,67,35)" fg:x="2016" fg:w="1"/><text x="36.6991%" y="607.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (1 samples, 0.02%)</title><rect x="36.4491%" y="581" width="0.0181%" height="15" fill="rgb(221,40,2)" fg:x="2016" fg:w="1"/><text x="36.6991%" y="591.50"></text></g><g><title>phone_encoder::load_dict (966 samples, 17.47%)</title><rect x="19.0201%" y="709" width="17.4652%" height="15" fill="rgb(237,157,21)" fg:x="1052" fg:w="966"/><text x="19.2701%" y="719.50">phone_encoder::load_dict</text></g><g><title>std::collections::hash::map::HashMap&lt;K,V&gt;::with_capacity (64 samples, 1.16%)</title><rect x="35.3282%" y="693" width="1.1571%" height="15" fill="rgb(222,94,11)" fg:x="1954" fg:w="64"/><text x="35.5782%" y="703.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (63 samples, 1.14%)</title><rect x="35.3462%" y="677" width="1.1390%" height="15" fill="rgb(249,113,6)" fg:x="1955" fg:w="63"/><text x="35.5962%" y="687.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::with_capacity_and_hasher (63 samples, 1.14%)</title><rect x="35.3462%" y="661" width="1.1390%" height="15" fill="rgb(238,137,36)" fg:x="1955" fg:w="63"/><text x="35.5962%" y="671.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::with_capacity (63 samples, 1.14%)</title><rect x="35.3462%" y="645" width="1.1390%" height="15" fill="rgb(210,102,26)" fg:x="1955" fg:w="63"/><text x="35.5962%" y="655.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::fallible_with_capacity (62 samples, 1.12%)</title><rect x="35.3643%" y="629" width="1.1210%" height="15" fill="rgb(218,30,30)" fg:x="1956" fg:w="62"/><text x="35.6143%" y="639.50"></text></g><g><title>hashbrown::raw::capacity_to_buckets (1 samples, 0.02%)</title><rect x="36.4672%" y="613" width="0.0181%" height="15" fill="rgb(214,67,26)" fg:x="2017" fg:w="1"/><text x="36.7172%" y="623.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="36.4672%" y="597" width="0.0181%" height="15" fill="rgb(251,9,53)" fg:x="2017" fg:w="1"/><text x="36.7172%" y="607.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="36.4672%" y="581" width="0.0181%" height="15" fill="rgb(228,204,25)" fg:x="2017" fg:w="1"/><text x="36.7172%" y="591.50"></text></g><g><title>&lt;&amp;T as core::fmt::Display&gt;::fmt (1 samples, 0.02%)</title><rect x="36.8469%" y="645" width="0.0181%" height="15" fill="rgb(207,153,8)" fg:x="2038" fg:w="1"/><text x="37.0969%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="36.8649%" y="645" width="0.0181%" height="15" fill="rgb(242,9,16)" fg:x="2039" fg:w="1"/><text x="37.1149%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.02%)</title><rect x="36.8649%" y="629" width="0.0181%" height="15" fill="rgb(217,211,10)" fg:x="2039" fg:w="1"/><text x="37.1149%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="36.8830%" y="533" width="0.0362%" height="15" fill="rgb(219,228,52)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="36.8830%" y="517" width="0.0362%" height="15" fill="rgb(231,92,29)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (2 samples, 0.04%)</title><rect x="36.8830%" y="501" width="0.0362%" height="15" fill="rgb(232,8,23)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.04%)</title><rect x="36.8830%" y="485" width="0.0362%" height="15" fill="rgb(216,211,34)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="495.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.04%)</title><rect x="36.8830%" y="469" width="0.0362%" height="15" fill="rgb(236,151,0)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="479.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="36.8830%" y="453" width="0.0362%" height="15" fill="rgb(209,168,3)" fg:x="2040" fg:w="2"/><text x="37.1330%" y="463.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (4 samples, 0.07%)</title><rect x="36.8830%" y="629" width="0.0723%" height="15" fill="rgb(208,129,28)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="639.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (4 samples, 0.07%)</title><rect x="36.8830%" y="613" width="0.0723%" height="15" fill="rgb(229,78,22)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="623.50"></text></g><g><title>alloc::string::String::push_str (4 samples, 0.07%)</title><rect x="36.8830%" y="597" width="0.0723%" height="15" fill="rgb(228,187,13)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (4 samples, 0.07%)</title><rect x="36.8830%" y="581" width="0.0723%" height="15" fill="rgb(240,119,24)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="591.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 (4 samples, 0.07%)</title><rect x="36.8830%" y="565" width="0.0723%" height="15" fill="rgb(209,194,42)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (4 samples, 0.07%)</title><rect x="36.8830%" y="549" width="0.0723%" height="15" fill="rgb(247,200,46)" fg:x="2040" fg:w="4"/><text x="37.1330%" y="559.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="36.9192%" y="533" width="0.0362%" height="15" fill="rgb(218,76,16)" fg:x="2042" fg:w="2"/><text x="37.1692%" y="543.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.04%)</title><rect x="36.9192%" y="517" width="0.0362%" height="15" fill="rgb(225,21,48)" fg:x="2042" fg:w="2"/><text x="37.1692%" y="527.50"></text></g><g><title>core::fmt::Formatter::pad_integral (1 samples, 0.02%)</title><rect x="36.9553%" y="629" width="0.0181%" height="15" fill="rgb(239,223,50)" fg:x="2044" fg:w="1"/><text x="37.2053%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (2 samples, 0.04%)</title><rect x="36.9734%" y="629" width="0.0362%" height="15" fill="rgb(244,45,21)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="36.9734%" y="613" width="0.0362%" height="15" fill="rgb(232,33,43)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="36.9734%" y="597" width="0.0362%" height="15" fill="rgb(209,8,3)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="607.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="36.9734%" y="581" width="0.0362%" height="15" fill="rgb(214,25,53)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="36.9734%" y="565" width="0.0362%" height="15" fill="rgb(254,186,54)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="575.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="36.9734%" y="549" width="0.0362%" height="15" fill="rgb(208,174,49)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="559.50"></text></g><g><title>_int_free (2 samples, 0.04%)</title><rect x="36.9734%" y="533" width="0.0362%" height="15" fill="rgb(233,191,51)" fg:x="2045" fg:w="2"/><text x="37.2234%" y="543.50"></text></g><g><title>__GI___libc_malloc (4 samples, 0.07%)</title><rect x="37.0096%" y="533" width="0.0723%" height="15" fill="rgb(222,134,10)" fg:x="2047" fg:w="4"/><text x="37.2596%" y="543.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="37.0638%" y="517" width="0.0181%" height="15" fill="rgb(230,226,20)" fg:x="2050" fg:w="1"/><text x="37.3138%" y="527.50"></text></g><g><title>alloc::alloc::exchange_malloc (5 samples, 0.09%)</title><rect x="37.0096%" y="597" width="0.0904%" height="15" fill="rgb(251,111,25)" fg:x="2047" fg:w="5"/><text x="37.2596%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (5 samples, 0.09%)</title><rect x="37.0096%" y="581" width="0.0904%" height="15" fill="rgb(224,40,46)" fg:x="2047" fg:w="5"/><text x="37.2596%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (5 samples, 0.09%)</title><rect x="37.0096%" y="565" width="0.0904%" height="15" fill="rgb(236,108,47)" fg:x="2047" fg:w="5"/><text x="37.2596%" y="575.50"></text></g><g><title>alloc::alloc::alloc (5 samples, 0.09%)</title><rect x="37.0096%" y="549" width="0.0904%" height="15" fill="rgb(234,93,0)" fg:x="2047" fg:w="5"/><text x="37.2596%" y="559.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="37.0819%" y="533" width="0.0181%" height="15" fill="rgb(224,213,32)" fg:x="2051" fg:w="1"/><text x="37.3319%" y="543.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="37.0819%" y="517" width="0.0181%" height="15" fill="rgb(251,11,48)" fg:x="2051" fg:w="1"/><text x="37.3319%" y="527.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="37.1181%" y="565" width="0.0362%" height="15" fill="rgb(236,173,5)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="37.1181%" y="549" width="0.0362%" height="15" fill="rgb(230,95,12)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="559.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="37.1181%" y="533" width="0.0362%" height="15" fill="rgb(232,209,1)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="543.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="37.1181%" y="517" width="0.0362%" height="15" fill="rgb(232,6,1)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="527.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="37.1181%" y="501" width="0.0362%" height="15" fill="rgb(210,224,50)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="37.1181%" y="485" width="0.0362%" height="15" fill="rgb(228,127,35)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="495.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="37.1181%" y="469" width="0.0362%" height="15" fill="rgb(245,102,45)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="479.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="37.1181%" y="453" width="0.0362%" height="15" fill="rgb(214,1,49)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="463.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="37.1181%" y="437" width="0.0362%" height="15" fill="rgb(226,163,40)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="447.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="37.1181%" y="421" width="0.0362%" height="15" fill="rgb(239,212,28)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="431.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="37.1181%" y="405" width="0.0362%" height="15" fill="rgb(220,20,13)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="415.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="37.1181%" y="389" width="0.0362%" height="15" fill="rgb(210,164,35)" fg:x="2053" fg:w="2"/><text x="37.3681%" y="399.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.04%)</title><rect x="37.1542%" y="565" width="0.0362%" height="15" fill="rgb(248,109,41)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="37.1542%" y="549" width="0.0362%" height="15" fill="rgb(238,23,50)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="37.1542%" y="533" width="0.0362%" height="15" fill="rgb(211,48,49)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="37.1542%" y="517" width="0.0362%" height="15" fill="rgb(223,36,21)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="527.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="37.1542%" y="501" width="0.0362%" height="15" fill="rgb(207,123,46)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="511.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="37.1542%" y="485" width="0.0362%" height="15" fill="rgb(240,218,32)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="495.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="37.1542%" y="469" width="0.0362%" height="15" fill="rgb(252,5,43)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="479.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="37.1542%" y="453" width="0.0362%" height="15" fill="rgb(252,84,19)" fg:x="2055" fg:w="2"/><text x="37.4042%" y="463.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="37.1723%" y="437" width="0.0181%" height="15" fill="rgb(243,152,39)" fg:x="2056" fg:w="1"/><text x="37.4223%" y="447.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (25 samples, 0.45%)</title><rect x="36.7565%" y="693" width="0.4520%" height="15" fill="rgb(234,160,15)" fg:x="2033" fg:w="25"/><text x="37.0065%" y="703.50"></text></g><g><title>core::fmt::Write::write_fmt (24 samples, 0.43%)</title><rect x="36.7745%" y="677" width="0.4339%" height="15" fill="rgb(237,34,20)" fg:x="2034" fg:w="24"/><text x="37.0245%" y="687.50"></text></g><g><title>core::fmt::write (21 samples, 0.38%)</title><rect x="36.8288%" y="661" width="0.3797%" height="15" fill="rgb(229,97,13)" fg:x="2037" fg:w="21"/><text x="37.0788%" y="671.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::fmt::Display&gt;::fmt (18 samples, 0.33%)</title><rect x="36.8830%" y="645" width="0.3254%" height="15" fill="rgb(234,71,50)" fg:x="2040" fg:w="18"/><text x="37.1330%" y="655.50"></text></g><g><title>num_bigint::biguint::BigUint::to_str_radix (11 samples, 0.20%)</title><rect x="37.0096%" y="629" width="0.1989%" height="15" fill="rgb(253,155,4)" fg:x="2047" fg:w="11"/><text x="37.2596%" y="639.50"></text></g><g><title>num_bigint::biguint::convert::to_str_radix_reversed (11 samples, 0.20%)</title><rect x="37.0096%" y="613" width="0.1989%" height="15" fill="rgb(222,185,37)" fg:x="2047" fg:w="11"/><text x="37.2596%" y="623.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_le (6 samples, 0.11%)</title><rect x="37.1000%" y="597" width="0.1085%" height="15" fill="rgb(251,177,13)" fg:x="2052" fg:w="6"/><text x="37.3500%" y="607.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_digits_le (5 samples, 0.09%)</title><rect x="37.1181%" y="581" width="0.0904%" height="15" fill="rgb(250,179,40)" fg:x="2053" fg:w="5"/><text x="37.3681%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (1 samples, 0.02%)</title><rect x="37.1904%" y="565" width="0.0181%" height="15" fill="rgb(242,44,2)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="37.1904%" y="549" width="0.0181%" height="15" fill="rgb(216,177,13)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="37.1904%" y="533" width="0.0181%" height="15" fill="rgb(216,106,43)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="543.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="37.1904%" y="517" width="0.0181%" height="15" fill="rgb(216,183,2)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="527.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="37.1904%" y="501" width="0.0181%" height="15" fill="rgb(249,75,3)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="511.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="37.1904%" y="485" width="0.0181%" height="15" fill="rgb(219,67,39)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="495.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="37.1904%" y="469" width="0.0181%" height="15" fill="rgb(253,228,2)" fg:x="2057" fg:w="1"/><text x="37.4404%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (3 samples, 0.05%)</title><rect x="37.2085%" y="629" width="0.0542%" height="15" fill="rgb(235,138,27)" fg:x="2058" fg:w="3"/><text x="37.4585%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="37.2446%" y="613" width="0.0181%" height="15" fill="rgb(236,97,51)" fg:x="2060" fg:w="1"/><text x="37.4946%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="37.2446%" y="597" width="0.0181%" height="15" fill="rgb(240,80,30)" fg:x="2060" fg:w="1"/><text x="37.4946%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="37.2446%" y="581" width="0.0181%" height="15" fill="rgb(230,178,19)" fg:x="2060" fg:w="1"/><text x="37.4946%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="37.2446%" y="565" width="0.0181%" height="15" fill="rgb(210,190,27)" fg:x="2060" fg:w="1"/><text x="37.4946%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (7 samples, 0.13%)</title><rect x="37.2085%" y="693" width="0.1266%" height="15" fill="rgb(222,107,31)" fg:x="2058" fg:w="7"/><text x="37.4585%" y="703.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (7 samples, 0.13%)</title><rect x="37.2085%" y="677" width="0.1266%" height="15" fill="rgb(216,127,34)" fg:x="2058" fg:w="7"/><text x="37.4585%" y="687.50"></text></g><g><title>alloc::slice::hack::to_vec (7 samples, 0.13%)</title><rect x="37.2085%" y="661" width="0.1266%" height="15" fill="rgb(234,116,52)" fg:x="2058" fg:w="7"/><text x="37.4585%" y="671.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (7 samples, 0.13%)</title><rect x="37.2085%" y="645" width="0.1266%" height="15" fill="rgb(222,124,15)" fg:x="2058" fg:w="7"/><text x="37.4585%" y="655.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (4 samples, 0.07%)</title><rect x="37.2627%" y="629" width="0.0723%" height="15" fill="rgb(231,179,28)" fg:x="2061" fg:w="4"/><text x="37.5127%" y="639.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (4 samples, 0.07%)</title><rect x="37.2627%" y="613" width="0.0723%" height="15" fill="rgb(226,93,45)" fg:x="2061" fg:w="4"/><text x="37.5127%" y="623.50"></text></g><g><title>__memmove_avx_unaligned_erms (4 samples, 0.07%)</title><rect x="37.2627%" y="597" width="0.0723%" height="15" fill="rgb(215,8,51)" fg:x="2061" fg:w="4"/><text x="37.5127%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="37.3350%" y="693" width="0.0181%" height="15" fill="rgb(223,106,5)" fg:x="2065" fg:w="1"/><text x="37.5850%" y="703.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="37.3350%" y="677" width="0.0181%" height="15" fill="rgb(250,191,5)" fg:x="2065" fg:w="1"/><text x="37.5850%" y="687.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="37.3531%" y="693" width="0.0181%" height="15" fill="rgb(242,132,44)" fg:x="2066" fg:w="1"/><text x="37.6031%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="37.4073%" y="661" width="0.0181%" height="15" fill="rgb(251,152,29)" fg:x="2069" fg:w="1"/><text x="37.6573%" y="671.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="37.4254%" y="517" width="0.0362%" height="15" fill="rgb(218,179,5)" fg:x="2070" fg:w="2"/><text x="37.6754%" y="527.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="37.4435%" y="501" width="0.0181%" height="15" fill="rgb(227,67,19)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="511.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="485" width="0.0181%" height="15" fill="rgb(233,119,31)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="469" width="0.0181%" height="15" fill="rgb(241,120,22)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="453" width="0.0181%" height="15" fill="rgb(224,102,30)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="437" width="0.0181%" height="15" fill="rgb(210,164,37)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="421" width="0.0181%" height="15" fill="rgb(226,191,16)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="405" width="0.0181%" height="15" fill="rgb(214,40,45)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="389" width="0.0181%" height="15" fill="rgb(244,29,26)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="373" width="0.0181%" height="15" fill="rgb(216,16,5)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="357" width="0.0181%" height="15" fill="rgb(249,76,35)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="341" width="0.0181%" height="15" fill="rgb(207,11,44)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="325" width="0.0181%" height="15" fill="rgb(228,190,49)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="309" width="0.0181%" height="15" fill="rgb(214,173,12)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="37.4435%" y="293" width="0.0181%" height="15" fill="rgb(218,26,35)" fg:x="2071" fg:w="1"/><text x="37.6935%" y="303.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="37.4616%" y="517" width="0.0181%" height="15" fill="rgb(220,200,19)" fg:x="2072" fg:w="1"/><text x="37.7116%" y="527.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="37.4616%" y="501" width="0.0181%" height="15" fill="rgb(239,95,49)" fg:x="2072" fg:w="1"/><text x="37.7116%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (4 samples, 0.07%)</title><rect x="37.4254%" y="613" width="0.0723%" height="15" fill="rgb(235,85,53)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (4 samples, 0.07%)</title><rect x="37.4254%" y="597" width="0.0723%" height="15" fill="rgb(233,133,31)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (4 samples, 0.07%)</title><rect x="37.4254%" y="581" width="0.0723%" height="15" fill="rgb(218,25,20)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (4 samples, 0.07%)</title><rect x="37.4254%" y="565" width="0.0723%" height="15" fill="rgb(252,210,38)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="575.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (4 samples, 0.07%)</title><rect x="37.4254%" y="549" width="0.0723%" height="15" fill="rgb(242,134,21)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="559.50"></text></g><g><title>alloc::alloc::alloc (4 samples, 0.07%)</title><rect x="37.4254%" y="533" width="0.0723%" height="15" fill="rgb(213,28,48)" fg:x="2070" fg:w="4"/><text x="37.6754%" y="543.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="37.4797%" y="517" width="0.0181%" height="15" fill="rgb(250,196,2)" fg:x="2073" fg:w="1"/><text x="37.7297%" y="527.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (11 samples, 0.20%)</title><rect x="37.3712%" y="693" width="0.1989%" height="15" fill="rgb(227,5,17)" fg:x="2067" fg:w="11"/><text x="37.6212%" y="703.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (10 samples, 0.18%)</title><rect x="37.3893%" y="677" width="0.1808%" height="15" fill="rgb(221,226,24)" fg:x="2068" fg:w="10"/><text x="37.6393%" y="687.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (8 samples, 0.14%)</title><rect x="37.4254%" y="661" width="0.1446%" height="15" fill="rgb(211,5,48)" fg:x="2070" fg:w="8"/><text x="37.6754%" y="671.50"></text></g><g><title>alloc::slice::hack::to_vec (8 samples, 0.14%)</title><rect x="37.4254%" y="645" width="0.1446%" height="15" fill="rgb(219,150,6)" fg:x="2070" fg:w="8"/><text x="37.6754%" y="655.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (8 samples, 0.14%)</title><rect x="37.4254%" y="629" width="0.1446%" height="15" fill="rgb(251,46,16)" fg:x="2070" fg:w="8"/><text x="37.6754%" y="639.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (4 samples, 0.07%)</title><rect x="37.4977%" y="613" width="0.0723%" height="15" fill="rgb(220,204,40)" fg:x="2074" fg:w="4"/><text x="37.7477%" y="623.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (4 samples, 0.07%)</title><rect x="37.4977%" y="597" width="0.0723%" height="15" fill="rgb(211,85,2)" fg:x="2074" fg:w="4"/><text x="37.7477%" y="607.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.04%)</title><rect x="37.5339%" y="581" width="0.0362%" height="15" fill="rgb(229,17,7)" fg:x="2076" fg:w="2"/><text x="37.7839%" y="591.50"></text></g><g><title>&lt;phone_encoder::ONE as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="37.5701%" y="693" width="0.0181%" height="15" fill="rgb(239,72,28)" fg:x="2078" fg:w="1"/><text x="37.8201%" y="703.50"></text></g><g><title>&lt;phone_encoder::ONE as core::ops::deref::Deref&gt;::deref::__stability (1 samples, 0.02%)</title><rect x="37.5701%" y="677" width="0.0181%" height="15" fill="rgb(230,47,54)" fg:x="2078" fg:w="1"/><text x="37.8201%" y="687.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="37.5701%" y="661" width="0.0181%" height="15" fill="rgb(214,50,8)" fg:x="2078" fg:w="1"/><text x="37.8201%" y="671.50"></text></g><g><title>_int_free (7 samples, 0.13%)</title><rect x="37.5881%" y="693" width="0.1266%" height="15" fill="rgb(216,198,43)" fg:x="2079" fg:w="7"/><text x="37.8381%" y="703.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::set_ptr (1 samples, 0.02%)</title><rect x="37.7689%" y="613" width="0.0181%" height="15" fill="rgb(234,20,35)" fg:x="2089" fg:w="1"/><text x="38.0189%" y="623.50"></text></g><g><title>__GI___libc_malloc (6 samples, 0.11%)</title><rect x="37.8413%" y="597" width="0.1085%" height="15" fill="rgb(254,45,19)" fg:x="2093" fg:w="6"/><text x="38.0913%" y="607.50"></text></g><g><title>checked_request2size (2 samples, 0.04%)</title><rect x="37.9136%" y="581" width="0.0362%" height="15" fill="rgb(219,14,44)" fg:x="2097" fg:w="2"/><text x="38.1636%" y="591.50"></text></g><g><title>alloc::raw_vec::finish_grow (10 samples, 0.18%)</title><rect x="37.7870%" y="613" width="0.1808%" height="15" fill="rgb(217,220,26)" fg:x="2090" fg:w="10"/><text x="38.0370%" y="623.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="37.9497%" y="597" width="0.0181%" height="15" fill="rgb(213,158,28)" fg:x="2099" fg:w="1"/><text x="38.1997%" y="607.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="37.9497%" y="581" width="0.0181%" height="15" fill="rgb(252,51,52)" fg:x="2099" fg:w="1"/><text x="38.1997%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (13 samples, 0.24%)</title><rect x="37.7509%" y="677" width="0.2350%" height="15" fill="rgb(246,89,16)" fg:x="2088" fg:w="13"/><text x="38.0009%" y="687.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (13 samples, 0.24%)</title><rect x="37.7509%" y="661" width="0.2350%" height="15" fill="rgb(216,158,49)" fg:x="2088" fg:w="13"/><text x="38.0009%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (13 samples, 0.24%)</title><rect x="37.7509%" y="645" width="0.2350%" height="15" fill="rgb(236,107,19)" fg:x="2088" fg:w="13"/><text x="38.0009%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (12 samples, 0.22%)</title><rect x="37.7689%" y="629" width="0.2170%" height="15" fill="rgb(228,185,30)" fg:x="2089" fg:w="12"/><text x="38.0189%" y="639.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="37.9678%" y="613" width="0.0181%" height="15" fill="rgb(246,134,8)" fg:x="2100" fg:w="1"/><text x="38.2178%" y="623.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="37.9678%" y="597" width="0.0181%" height="15" fill="rgb(214,143,50)" fg:x="2100" fg:w="1"/><text x="38.2178%" y="607.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="37.9678%" y="581" width="0.0181%" height="15" fill="rgb(228,75,8)" fg:x="2100" fg:w="1"/><text x="38.2178%" y="591.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="37.9678%" y="565" width="0.0181%" height="15" fill="rgb(207,175,4)" fg:x="2100" fg:w="1"/><text x="38.2178%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (16 samples, 0.29%)</title><rect x="37.7147%" y="693" width="0.2893%" height="15" fill="rgb(205,108,24)" fg:x="2086" fg:w="16"/><text x="37.9647%" y="703.50"></text></g><g><title>core::ptr::write (1 samples, 0.02%)</title><rect x="37.9859%" y="677" width="0.0181%" height="15" fill="rgb(244,120,49)" fg:x="2101" fg:w="1"/><text x="38.2359%" y="687.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 (13 samples, 0.24%)</title><rect x="38.0040%" y="693" width="0.2350%" height="15" fill="rgb(223,47,38)" fg:x="2102" fg:w="13"/><text x="38.2540%" y="703.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for usize&gt;::lt (8 samples, 0.14%)</title><rect x="38.0944%" y="677" width="0.1446%" height="15" fill="rgb(229,179,11)" fg:x="2107" fg:w="8"/><text x="38.3444%" y="687.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.02%)</title><rect x="38.2390%" y="693" width="0.0181%" height="15" fill="rgb(231,122,1)" fg:x="2115" fg:w="1"/><text x="38.4890%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.02%)</title><rect x="38.2571%" y="693" width="0.0181%" height="15" fill="rgb(245,119,9)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="38.2571%" y="677" width="0.0181%" height="15" fill="rgb(241,163,25)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="38.2571%" y="661" width="0.0181%" height="15" fill="rgb(217,214,3)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="671.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="38.2571%" y="645" width="0.0181%" height="15" fill="rgb(240,86,28)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="38.2571%" y="629" width="0.0181%" height="15" fill="rgb(215,47,9)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="639.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="38.2571%" y="613" width="0.0181%" height="15" fill="rgb(252,25,45)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="623.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="38.2571%" y="597" width="0.0181%" height="15" fill="rgb(251,164,9)" fg:x="2116" fg:w="1"/><text x="38.5071%" y="607.50"></text></g><g><title>__GI___libc_free (10 samples, 0.18%)</title><rect x="38.4198%" y="597" width="0.1808%" height="15" fill="rgb(233,194,0)" fg:x="2125" fg:w="10"/><text x="38.6698%" y="607.50"></text></g><g><title>__rdl_dealloc (2 samples, 0.04%)</title><rect x="38.6006%" y="597" width="0.0362%" height="15" fill="rgb(249,111,24)" fg:x="2135" fg:w="2"/><text x="38.8506%" y="607.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (2 samples, 0.04%)</title><rect x="38.6006%" y="581" width="0.0362%" height="15" fill="rgb(250,223,3)" fg:x="2135" fg:w="2"/><text x="38.8506%" y="591.50"></text></g><g><title>__rust_dealloc (2 samples, 0.04%)</title><rect x="38.6368%" y="597" width="0.0362%" height="15" fill="rgb(236,178,37)" fg:x="2137" fg:w="2"/><text x="38.8868%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (68 samples, 1.23%)</title><rect x="38.2752%" y="693" width="1.2294%" height="15" fill="rgb(241,158,50)" fg:x="2117" fg:w="68"/><text x="38.5252%" y="703.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (68 samples, 1.23%)</title><rect x="38.2752%" y="677" width="1.2294%" height="15" fill="rgb(213,121,41)" fg:x="2117" fg:w="68"/><text x="38.5252%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (68 samples, 1.23%)</title><rect x="38.2752%" y="661" width="1.2294%" height="15" fill="rgb(240,92,3)" fg:x="2117" fg:w="68"/><text x="38.5252%" y="671.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (68 samples, 1.23%)</title><rect x="38.2752%" y="645" width="1.2294%" height="15" fill="rgb(205,123,3)" fg:x="2117" fg:w="68"/><text x="38.5252%" y="655.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (61 samples, 1.10%)</title><rect x="38.4017%" y="629" width="1.1029%" height="15" fill="rgb(205,97,47)" fg:x="2124" fg:w="61"/><text x="38.6517%" y="639.50"></text></g><g><title>alloc::alloc::dealloc (60 samples, 1.08%)</title><rect x="38.4198%" y="613" width="1.0848%" height="15" fill="rgb(247,152,14)" fg:x="2125" fg:w="60"/><text x="38.6698%" y="623.50"></text></g><g><title>_int_free (46 samples, 0.83%)</title><rect x="38.6729%" y="597" width="0.8317%" height="15" fill="rgb(248,195,53)" fg:x="2139" fg:w="46"/><text x="38.9229%" y="607.50"></text></g><g><title>tcache_put (3 samples, 0.05%)</title><rect x="39.4504%" y="581" width="0.0542%" height="15" fill="rgb(226,201,16)" fg:x="2182" fg:w="3"/><text x="39.7004%" y="591.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.11%)</title><rect x="39.9204%" y="645" width="0.1085%" height="15" fill="rgb(205,98,0)" fg:x="2208" fg:w="6"/><text x="40.1704%" y="655.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (6 samples, 0.11%)</title><rect x="39.9204%" y="629" width="0.1085%" height="15" fill="rgb(214,191,48)" fg:x="2208" fg:w="6"/><text x="40.1704%" y="639.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (38 samples, 0.69%)</title><rect x="39.5046%" y="693" width="0.6870%" height="15" fill="rgb(237,112,39)" fg:x="2185" fg:w="38"/><text x="39.7546%" y="703.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::AddAssign&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add_assign (34 samples, 0.61%)</title><rect x="39.5769%" y="677" width="0.6147%" height="15" fill="rgb(247,203,27)" fg:x="2189" fg:w="34"/><text x="39.8269%" y="687.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (15 samples, 0.27%)</title><rect x="39.9204%" y="661" width="0.2712%" height="15" fill="rgb(235,124,28)" fg:x="2208" fg:w="15"/><text x="40.1704%" y="671.50"></text></g><g><title>num_bigint::biguint::addition::adc (9 samples, 0.16%)</title><rect x="40.0289%" y="645" width="0.1627%" height="15" fill="rgb(208,207,46)" fg:x="2214" fg:w="9"/><text x="40.2789%" y="655.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (9 samples, 0.16%)</title><rect x="40.0289%" y="629" width="0.1627%" height="15" fill="rgb(234,176,4)" fg:x="2214" fg:w="9"/><text x="40.2789%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.02%)</title><rect x="40.2097%" y="677" width="0.0181%" height="15" fill="rgb(230,133,28)" fg:x="2224" fg:w="1"/><text x="40.4597%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="40.2097%" y="661" width="0.0181%" height="15" fill="rgb(211,137,40)" fg:x="2224" fg:w="1"/><text x="40.4597%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="40.2097%" y="645" width="0.0181%" height="15" fill="rgb(254,35,13)" fg:x="2224" fg:w="1"/><text x="40.4597%" y="655.50"></text></g><g><title>alloc_perturb (1 samples, 0.02%)</title><rect x="41.7465%" y="517" width="0.0181%" height="15" fill="rgb(225,49,51)" fg:x="2309" fg:w="1"/><text x="41.9965%" y="527.50"></text></g><g><title>checked_request2size (4 samples, 0.07%)</title><rect x="41.7646%" y="517" width="0.0723%" height="15" fill="rgb(251,10,15)" fg:x="2310" fg:w="4"/><text x="42.0146%" y="527.50"></text></g><g><title>tcache_put (2 samples, 0.04%)</title><rect x="41.8369%" y="517" width="0.0362%" height="15" fill="rgb(228,207,15)" fg:x="2314" fg:w="2"/><text x="42.0869%" y="527.50"></text></g><g><title>__libc_calloc (89 samples, 1.61%)</title><rect x="40.3001%" y="549" width="1.6091%" height="15" fill="rgb(241,99,19)" fg:x="2229" fg:w="89"/><text x="40.5501%" y="559.50"></text></g><g><title>_int_malloc (61 samples, 1.10%)</title><rect x="40.8064%" y="533" width="1.1029%" height="15" fill="rgb(207,104,49)" fg:x="2257" fg:w="61"/><text x="41.0564%" y="543.50"></text></g><g><title>unlink_chunk (2 samples, 0.04%)</title><rect x="41.8731%" y="517" width="0.0362%" height="15" fill="rgb(234,99,18)" fg:x="2316" fg:w="2"/><text x="42.1231%" y="527.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (93 samples, 1.68%)</title><rect x="40.3001%" y="597" width="1.6814%" height="15" fill="rgb(213,191,49)" fg:x="2229" fg:w="93"/><text x="40.5501%" y="607.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (93 samples, 1.68%)</title><rect x="40.3001%" y="581" width="1.6814%" height="15" fill="rgb(210,226,19)" fg:x="2229" fg:w="93"/><text x="40.5501%" y="591.50"></text></g><g><title>alloc::alloc::alloc_zeroed (93 samples, 1.68%)</title><rect x="40.3001%" y="565" width="1.6814%" height="15" fill="rgb(229,97,18)" fg:x="2229" fg:w="93"/><text x="40.5501%" y="575.50"></text></g><g><title>__rdl_alloc_zeroed (4 samples, 0.07%)</title><rect x="41.9092%" y="549" width="0.0723%" height="15" fill="rgb(211,167,15)" fg:x="2318" fg:w="4"/><text x="42.1592%" y="559.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (4 samples, 0.07%)</title><rect x="41.9092%" y="533" width="0.0723%" height="15" fill="rgb(210,169,34)" fg:x="2318" fg:w="4"/><text x="42.1592%" y="543.50"></text></g><g><title>alloc::vec::from_elem (98 samples, 1.77%)</title><rect x="40.2459%" y="661" width="1.7718%" height="15" fill="rgb(241,121,31)" fg:x="2226" fg:w="98"/><text x="40.4959%" y="671.50">a..</text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (98 samples, 1.77%)</title><rect x="40.2459%" y="645" width="1.7718%" height="15" fill="rgb(232,40,11)" fg:x="2226" fg:w="98"/><text x="40.4959%" y="655.50">&lt;..</text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (97 samples, 1.75%)</title><rect x="40.2640%" y="629" width="1.7538%" height="15" fill="rgb(205,86,26)" fg:x="2227" fg:w="97"/><text x="40.5140%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (97 samples, 1.75%)</title><rect x="40.2640%" y="613" width="1.7538%" height="15" fill="rgb(231,126,28)" fg:x="2227" fg:w="97"/><text x="40.5140%" y="623.50"></text></g><g><title>core::alloc::layout::Layout::array (2 samples, 0.04%)</title><rect x="41.9816%" y="597" width="0.0362%" height="15" fill="rgb(219,221,18)" fg:x="2322" fg:w="2"/><text x="42.2316%" y="607.50"></text></g><g><title>core::alloc::layout::Layout::repeat (2 samples, 0.04%)</title><rect x="41.9816%" y="581" width="0.0362%" height="15" fill="rgb(211,40,0)" fg:x="2322" fg:w="2"/><text x="42.2316%" y="591.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="41.9996%" y="565" width="0.0181%" height="15" fill="rgb(239,85,43)" fg:x="2323" fg:w="1"/><text x="42.2496%" y="575.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="41.9996%" y="549" width="0.0181%" height="15" fill="rgb(231,55,21)" fg:x="2323" fg:w="1"/><text x="42.2496%" y="559.50"></text></g><g><title>num_bigint::biguint::BigUint::normalized (18 samples, 0.33%)</title><rect x="42.0177%" y="661" width="0.3254%" height="15" fill="rgb(225,184,43)" fg:x="2324" fg:w="18"/><text x="42.2677%" y="671.50"></text></g><g><title>num_bigint::biguint::BigUint::normalize (11 samples, 0.20%)</title><rect x="42.1443%" y="645" width="0.1989%" height="15" fill="rgb(251,158,41)" fg:x="2331" fg:w="11"/><text x="42.3943%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="42.3070%" y="629" width="0.0362%" height="15" fill="rgb(234,159,37)" fg:x="2340" fg:w="2"/><text x="42.5570%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="42.3070%" y="613" width="0.0362%" height="15" fill="rgb(216,204,22)" fg:x="2340" fg:w="2"/><text x="42.5570%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="42.5059%" y="645" width="0.0181%" height="15" fill="rgb(214,17,3)" fg:x="2351" fg:w="1"/><text x="42.7559%" y="655.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="42.5059%" y="629" width="0.0181%" height="15" fill="rgb(212,111,17)" fg:x="2351" fg:w="1"/><text x="42.7559%" y="639.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T]&gt;::index_mut (8 samples, 0.14%)</title><rect x="42.5240%" y="645" width="0.1446%" height="15" fill="rgb(221,157,24)" fg:x="2352" fg:w="8"/><text x="42.7740%" y="655.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (8 samples, 0.14%)</title><rect x="42.5240%" y="629" width="0.1446%" height="15" fill="rgb(252,16,13)" fg:x="2352" fg:w="8"/><text x="42.7740%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.05%)</title><rect x="42.7409%" y="629" width="0.0542%" height="15" fill="rgb(221,62,2)" fg:x="2364" fg:w="3"/><text x="42.9909%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (3 samples, 0.05%)</title><rect x="42.7409%" y="613" width="0.0542%" height="15" fill="rgb(247,87,22)" fg:x="2364" fg:w="3"/><text x="42.9909%" y="623.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::split_at_mut (1 samples, 0.02%)</title><rect x="42.7952%" y="613" width="0.0181%" height="15" fill="rgb(215,73,9)" fg:x="2367" fg:w="1"/><text x="43.0452%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (5 samples, 0.09%)</title><rect x="42.7952%" y="629" width="0.0904%" height="15" fill="rgb(207,175,33)" fg:x="2367" fg:w="5"/><text x="43.0452%" y="639.50"></text></g><g><title>num_bigint::biguint::addition::adc (4 samples, 0.07%)</title><rect x="42.8132%" y="613" width="0.0723%" height="15" fill="rgb(243,129,54)" fg:x="2368" fg:w="4"/><text x="43.0632%" y="623.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (4 samples, 0.07%)</title><rect x="42.8132%" y="597" width="0.0723%" height="15" fill="rgb(227,119,45)" fg:x="2368" fg:w="4"/><text x="43.0632%" y="607.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (157 samples, 2.84%)</title><rect x="40.1916%" y="693" width="2.8385%" height="15" fill="rgb(205,109,36)" fg:x="2223" fg:w="157"/><text x="40.4416%" y="703.50">nu..</text></g><g><title>num_bigint::biguint::multiplication::mul3 (155 samples, 2.80%)</title><rect x="40.2278%" y="677" width="2.8024%" height="15" fill="rgb(205,6,39)" fg:x="2225" fg:w="155"/><text x="40.4778%" y="687.50">nu..</text></g><g><title>num_bigint::biguint::multiplication::mac3 (38 samples, 0.69%)</title><rect x="42.3432%" y="661" width="0.6870%" height="15" fill="rgb(221,32,16)" fg:x="2342" fg:w="38"/><text x="42.5932%" y="671.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_digit (20 samples, 0.36%)</title><rect x="42.6686%" y="645" width="0.3616%" height="15" fill="rgb(228,144,50)" fg:x="2360" fg:w="20"/><text x="42.9186%" y="655.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_with_carry (8 samples, 0.14%)</title><rect x="42.8856%" y="629" width="0.1446%" height="15" fill="rgb(229,201,53)" fg:x="2372" fg:w="8"/><text x="43.1356%" y="639.50"></text></g><g><title>core::option::Option&lt;T&gt;::unwrap (6 samples, 0.11%)</title><rect x="43.1025%" y="677" width="0.1085%" height="15" fill="rgb(249,153,27)" fg:x="2384" fg:w="6"/><text x="43.3525%" y="687.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as num_traits::identities::Zero&gt;::zero (2 samples, 0.04%)</title><rect x="43.3195%" y="581" width="0.0362%" height="15" fill="rgb(227,106,25)" fg:x="2396" fg:w="2"/><text x="43.5695%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (1 samples, 0.02%)</title><rect x="43.3556%" y="565" width="0.0181%" height="15" fill="rgb(230,65,29)" fg:x="2398" fg:w="1"/><text x="43.6056%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::set_ptr (1 samples, 0.02%)</title><rect x="43.5003%" y="501" width="0.0181%" height="15" fill="rgb(221,57,46)" fg:x="2406" fg:w="1"/><text x="43.7503%" y="511.50"></text></g><g><title>checked_request2size (4 samples, 0.07%)</title><rect x="43.7172%" y="469" width="0.0723%" height="15" fill="rgb(229,161,17)" fg:x="2418" fg:w="4"/><text x="43.9672%" y="479.50"></text></g><g><title>__GI___libc_malloc (11 samples, 0.20%)</title><rect x="43.6449%" y="485" width="0.1989%" height="15" fill="rgb(222,213,11)" fg:x="2414" fg:w="11"/><text x="43.8949%" y="495.50"></text></g><g><title>tcache_get (3 samples, 0.05%)</title><rect x="43.7895%" y="469" width="0.0542%" height="15" fill="rgb(235,35,13)" fg:x="2422" fg:w="3"/><text x="44.0395%" y="479.50"></text></g><g><title>__rdl_alloc (2 samples, 0.04%)</title><rect x="43.8438%" y="485" width="0.0362%" height="15" fill="rgb(233,158,34)" fg:x="2425" fg:w="2"/><text x="44.0938%" y="495.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (2 samples, 0.04%)</title><rect x="43.8438%" y="469" width="0.0362%" height="15" fill="rgb(215,151,48)" fg:x="2425" fg:w="2"/><text x="44.0938%" y="479.50"></text></g><g><title>alloc::raw_vec::finish_grow (21 samples, 0.38%)</title><rect x="43.5184%" y="501" width="0.3797%" height="15" fill="rgb(229,84,14)" fg:x="2407" fg:w="21"/><text x="43.7684%" y="511.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="43.8799%" y="485" width="0.0181%" height="15" fill="rgb(229,68,14)" fg:x="2427" fg:w="1"/><text x="44.1299%" y="495.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="43.8980%" y="501" width="0.0181%" height="15" fill="rgb(243,106,26)" fg:x="2428" fg:w="1"/><text x="44.1480%" y="511.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="43.8980%" y="485" width="0.0181%" height="15" fill="rgb(206,45,38)" fg:x="2428" fg:w="1"/><text x="44.1480%" y="495.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="43.8980%" y="469" width="0.0181%" height="15" fill="rgb(226,6,15)" fg:x="2428" fg:w="1"/><text x="44.1480%" y="479.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="43.8980%" y="453" width="0.0181%" height="15" fill="rgb(232,22,54)" fg:x="2428" fg:w="1"/><text x="44.1480%" y="463.50"></text></g><g><title>core::cmp::max (3 samples, 0.05%)</title><rect x="43.9161%" y="501" width="0.0542%" height="15" fill="rgb(229,222,32)" fg:x="2429" fg:w="3"/><text x="44.1661%" y="511.50"></text></g><g><title>core::cmp::Ord::max (3 samples, 0.05%)</title><rect x="43.9161%" y="485" width="0.0542%" height="15" fill="rgb(228,62,29)" fg:x="2429" fg:w="3"/><text x="44.1661%" y="495.50"></text></g><g><title>core::cmp::max_by (3 samples, 0.05%)</title><rect x="43.9161%" y="469" width="0.0542%" height="15" fill="rgb(251,103,34)" fg:x="2429" fg:w="3"/><text x="44.1661%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (34 samples, 0.61%)</title><rect x="43.3737%" y="565" width="0.6147%" height="15" fill="rgb(233,12,30)" fg:x="2399" fg:w="34"/><text x="43.6237%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (32 samples, 0.58%)</title><rect x="43.4099%" y="549" width="0.5786%" height="15" fill="rgb(238,52,0)" fg:x="2401" fg:w="32"/><text x="43.6599%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (32 samples, 0.58%)</title><rect x="43.4099%" y="533" width="0.5786%" height="15" fill="rgb(223,98,5)" fg:x="2401" fg:w="32"/><text x="43.6599%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (31 samples, 0.56%)</title><rect x="43.4280%" y="517" width="0.5605%" height="15" fill="rgb(228,75,37)" fg:x="2402" fg:w="31"/><text x="43.6780%" y="527.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (1 samples, 0.02%)</title><rect x="43.9703%" y="501" width="0.0181%" height="15" fill="rgb(205,115,49)" fg:x="2432" fg:w="1"/><text x="44.2203%" y="511.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_add (1 samples, 0.02%)</title><rect x="43.9703%" y="485" width="0.0181%" height="15" fill="rgb(250,154,43)" fg:x="2432" fg:w="1"/><text x="44.2203%" y="495.50"></text></g><g><title>phone_encoder::nth_digit (55 samples, 0.99%)</title><rect x="43.0302%" y="693" width="0.9944%" height="15" fill="rgb(226,43,29)" fg:x="2380" fg:w="55"/><text x="43.2802%" y="703.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (45 samples, 0.81%)</title><rect x="43.2110%" y="677" width="0.8136%" height="15" fill="rgb(249,228,39)" fg:x="2390" fg:w="45"/><text x="43.4610%" y="687.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (45 samples, 0.81%)</title><rect x="43.2110%" y="661" width="0.8136%" height="15" fill="rgb(216,79,43)" fg:x="2390" fg:w="45"/><text x="43.4610%" y="671.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (45 samples, 0.81%)</title><rect x="43.2110%" y="645" width="0.8136%" height="15" fill="rgb(228,95,12)" fg:x="2390" fg:w="45"/><text x="43.4610%" y="655.50"></text></g><g><title>core::ops::function::FnOnce::call_once (45 samples, 0.81%)</title><rect x="43.2110%" y="629" width="0.8136%" height="15" fill="rgb(249,221,15)" fg:x="2390" fg:w="45"/><text x="43.4610%" y="639.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (45 samples, 0.81%)</title><rect x="43.2110%" y="613" width="0.8136%" height="15" fill="rgb(233,34,13)" fg:x="2390" fg:w="45"/><text x="43.4610%" y="623.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (40 samples, 0.72%)</title><rect x="43.3014%" y="597" width="0.7232%" height="15" fill="rgb(214,103,39)" fg:x="2395" fg:w="40"/><text x="43.5514%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (37 samples, 0.67%)</title><rect x="43.3556%" y="581" width="0.6690%" height="15" fill="rgb(251,126,39)" fg:x="2398" fg:w="37"/><text x="43.6056%" y="591.50"></text></g><g><title>core::ptr::write (2 samples, 0.04%)</title><rect x="43.9884%" y="565" width="0.0362%" height="15" fill="rgb(214,216,36)" fg:x="2433" fg:w="2"/><text x="44.2384%" y="575.50"></text></g><g><title>&lt;&amp;T as core::fmt::Display&gt;::fmt (2 samples, 0.04%)</title><rect x="44.3500%" y="629" width="0.0362%" height="15" fill="rgb(220,221,8)" fg:x="2453" fg:w="2"/><text x="44.6000%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (1 samples, 0.02%)</title><rect x="44.3862%" y="533" width="0.0181%" height="15" fill="rgb(240,216,3)" fg:x="2455" fg:w="1"/><text x="44.6362%" y="543.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="44.3862%" y="629" width="0.0362%" height="15" fill="rgb(232,218,17)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="639.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="44.3862%" y="613" width="0.0362%" height="15" fill="rgb(229,163,45)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="623.50"></text></g><g><title>alloc::string::String::push_str (2 samples, 0.04%)</title><rect x="44.3862%" y="597" width="0.0362%" height="15" fill="rgb(231,110,42)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (2 samples, 0.04%)</title><rect x="44.3862%" y="581" width="0.0362%" height="15" fill="rgb(208,170,48)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="591.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 (2 samples, 0.04%)</title><rect x="44.3862%" y="565" width="0.0362%" height="15" fill="rgb(239,116,25)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (2 samples, 0.04%)</title><rect x="44.3862%" y="549" width="0.0362%" height="15" fill="rgb(219,200,50)" fg:x="2455" fg:w="2"/><text x="44.6362%" y="559.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="44.4043%" y="533" width="0.0181%" height="15" fill="rgb(245,200,0)" fg:x="2456" fg:w="1"/><text x="44.6543%" y="543.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="44.4043%" y="517" width="0.0181%" height="15" fill="rgb(245,119,33)" fg:x="2456" fg:w="1"/><text x="44.6543%" y="527.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="44.4223%" y="629" width="0.0181%" height="15" fill="rgb(231,125,12)" fg:x="2457" fg:w="1"/><text x="44.6723%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.02%)</title><rect x="44.4223%" y="613" width="0.0181%" height="15" fill="rgb(216,96,41)" fg:x="2457" fg:w="1"/><text x="44.6723%" y="623.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="44.4404%" y="437" width="0.0181%" height="15" fill="rgb(248,43,45)" fg:x="2458" fg:w="1"/><text x="44.6904%" y="447.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="44.4404%" y="613" width="0.0362%" height="15" fill="rgb(217,222,7)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="623.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (2 samples, 0.04%)</title><rect x="44.4404%" y="597" width="0.0362%" height="15" fill="rgb(233,28,6)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="607.50"></text></g><g><title>alloc::string::String::push_str (2 samples, 0.04%)</title><rect x="44.4404%" y="581" width="0.0362%" height="15" fill="rgb(231,218,15)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (2 samples, 0.04%)</title><rect x="44.4404%" y="565" width="0.0362%" height="15" fill="rgb(226,171,48)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="575.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 (2 samples, 0.04%)</title><rect x="44.4404%" y="549" width="0.0362%" height="15" fill="rgb(235,201,9)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (2 samples, 0.04%)</title><rect x="44.4404%" y="533" width="0.0362%" height="15" fill="rgb(217,80,15)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="44.4404%" y="517" width="0.0362%" height="15" fill="rgb(219,152,8)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="44.4404%" y="501" width="0.0362%" height="15" fill="rgb(243,107,38)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (2 samples, 0.04%)</title><rect x="44.4404%" y="485" width="0.0362%" height="15" fill="rgb(231,17,5)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="495.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.04%)</title><rect x="44.4404%" y="469" width="0.0362%" height="15" fill="rgb(209,25,54)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="479.50"></text></g><g><title>alloc::raw_vec::finish_grow (2 samples, 0.04%)</title><rect x="44.4404%" y="453" width="0.0362%" height="15" fill="rgb(219,0,2)" fg:x="2458" fg:w="2"/><text x="44.6904%" y="463.50"></text></g><g><title>core::result::Result&lt;T,E&gt;::map_err (1 samples, 0.02%)</title><rect x="44.4585%" y="437" width="0.0181%" height="15" fill="rgb(246,9,5)" fg:x="2459" fg:w="1"/><text x="44.7085%" y="447.50"></text></g><g><title>core::fmt::Formatter::pad_integral (1 samples, 0.02%)</title><rect x="44.4766%" y="613" width="0.0181%" height="15" fill="rgb(226,159,4)" fg:x="2460" fg:w="1"/><text x="44.7266%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (1 samples, 0.02%)</title><rect x="44.4947%" y="613" width="0.0181%" height="15" fill="rgb(219,175,34)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="44.4947%" y="597" width="0.0181%" height="15" fill="rgb(236,10,46)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (1 samples, 0.02%)</title><rect x="44.4947%" y="581" width="0.0181%" height="15" fill="rgb(240,211,16)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="591.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="44.4947%" y="565" width="0.0181%" height="15" fill="rgb(205,3,43)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="44.4947%" y="549" width="0.0181%" height="15" fill="rgb(245,7,22)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="559.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="44.4947%" y="533" width="0.0181%" height="15" fill="rgb(239,132,32)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="543.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="44.4947%" y="517" width="0.0181%" height="15" fill="rgb(228,202,34)" fg:x="2461" fg:w="1"/><text x="44.7447%" y="527.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::reverse (1 samples, 0.02%)</title><rect x="44.5127%" y="597" width="0.0181%" height="15" fill="rgb(254,200,22)" fg:x="2462" fg:w="1"/><text x="44.7627%" y="607.50"></text></g><g><title>&lt;f64 as num_traits::cast::ToPrimitive&gt;::to_usize (1 samples, 0.02%)</title><rect x="44.5489%" y="549" width="0.0181%" height="15" fill="rgb(219,10,39)" fg:x="2464" fg:w="1"/><text x="44.7989%" y="559.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="44.5670%" y="549" width="0.0181%" height="15" fill="rgb(226,210,39)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="44.5670%" y="533" width="0.0181%" height="15" fill="rgb(208,219,16)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="543.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="44.5670%" y="517" width="0.0181%" height="15" fill="rgb(216,158,51)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="527.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="44.5670%" y="501" width="0.0181%" height="15" fill="rgb(233,14,44)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="511.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="44.5670%" y="485" width="0.0181%" height="15" fill="rgb(237,97,39)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="44.5670%" y="469" width="0.0181%" height="15" fill="rgb(218,198,43)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="479.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="44.5670%" y="453" width="0.0181%" height="15" fill="rgb(231,104,20)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="44.5670%" y="437" width="0.0181%" height="15" fill="rgb(254,36,13)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="447.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="44.5670%" y="421" width="0.0181%" height="15" fill="rgb(248,14,50)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="431.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="44.5670%" y="405" width="0.0181%" height="15" fill="rgb(217,107,29)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="415.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="44.5670%" y="389" width="0.0181%" height="15" fill="rgb(251,169,33)" fg:x="2465" fg:w="1"/><text x="44.8170%" y="399.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.02%)</title><rect x="44.5851%" y="549" width="0.0181%" height="15" fill="rgb(217,108,32)" fg:x="2466" fg:w="1"/><text x="44.8351%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="44.5851%" y="533" width="0.0181%" height="15" fill="rgb(219,66,42)" fg:x="2466" fg:w="1"/><text x="44.8351%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="44.5851%" y="517" width="0.0181%" height="15" fill="rgb(206,180,7)" fg:x="2466" fg:w="1"/><text x="44.8351%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="44.5851%" y="501" width="0.0181%" height="15" fill="rgb(208,226,31)" fg:x="2466" fg:w="1"/><text x="44.8351%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (1 samples, 0.02%)</title><rect x="44.6031%" y="549" width="0.0181%" height="15" fill="rgb(218,26,49)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="44.6031%" y="533" width="0.0181%" height="15" fill="rgb(233,197,48)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (1 samples, 0.02%)</title><rect x="44.6031%" y="517" width="0.0181%" height="15" fill="rgb(252,181,51)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="527.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="44.6031%" y="501" width="0.0181%" height="15" fill="rgb(253,90,19)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="44.6031%" y="485" width="0.0181%" height="15" fill="rgb(215,171,30)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="495.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="44.6031%" y="469" width="0.0181%" height="15" fill="rgb(214,222,9)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="479.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="44.6031%" y="453" width="0.0181%" height="15" fill="rgb(223,3,22)" fg:x="2467" fg:w="1"/><text x="44.8531%" y="463.50"></text></g><g><title>num_bigint::biguint::BigUint::bits (1 samples, 0.02%)</title><rect x="44.6212%" y="549" width="0.0181%" height="15" fill="rgb(225,196,46)" fg:x="2468" fg:w="1"/><text x="44.8712%" y="559.50"></text></g><g><title>core::num::&lt;impl u64&gt;::leading_zeros (1 samples, 0.02%)</title><rect x="44.6212%" y="533" width="0.0181%" height="15" fill="rgb(209,110,37)" fg:x="2468" fg:w="1"/><text x="44.8712%" y="543.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (20 samples, 0.36%)</title><rect x="44.2958%" y="677" width="0.3616%" height="15" fill="rgb(249,89,12)" fg:x="2450" fg:w="20"/><text x="44.5458%" y="687.50"></text></g><g><title>core::fmt::Write::write_fmt (20 samples, 0.36%)</title><rect x="44.2958%" y="661" width="0.3616%" height="15" fill="rgb(226,27,33)" fg:x="2450" fg:w="20"/><text x="44.5458%" y="671.50"></text></g><g><title>core::fmt::write (20 samples, 0.36%)</title><rect x="44.2958%" y="645" width="0.3616%" height="15" fill="rgb(213,82,22)" fg:x="2450" fg:w="20"/><text x="44.5458%" y="655.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::fmt::Display&gt;::fmt (12 samples, 0.22%)</title><rect x="44.4404%" y="629" width="0.2170%" height="15" fill="rgb(248,140,0)" fg:x="2458" fg:w="12"/><text x="44.6904%" y="639.50"></text></g><g><title>num_bigint::biguint::BigUint::to_str_radix (8 samples, 0.14%)</title><rect x="44.5127%" y="613" width="0.1446%" height="15" fill="rgb(228,106,3)" fg:x="2462" fg:w="8"/><text x="44.7627%" y="623.50"></text></g><g><title>num_bigint::biguint::convert::to_str_radix_reversed (7 samples, 0.13%)</title><rect x="44.5308%" y="597" width="0.1266%" height="15" fill="rgb(209,23,37)" fg:x="2463" fg:w="7"/><text x="44.7808%" y="607.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_le (7 samples, 0.13%)</title><rect x="44.5308%" y="581" width="0.1266%" height="15" fill="rgb(241,93,50)" fg:x="2463" fg:w="7"/><text x="44.7808%" y="591.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_digits_le (7 samples, 0.13%)</title><rect x="44.5308%" y="565" width="0.1266%" height="15" fill="rgb(253,46,43)" fg:x="2463" fg:w="7"/><text x="44.7808%" y="575.50"></text></g><g><title>std::f64::&lt;impl f64&gt;::ceil (1 samples, 0.02%)</title><rect x="44.6393%" y="549" width="0.0181%" height="15" fill="rgb(226,206,43)" fg:x="2469" fg:w="1"/><text x="44.8893%" y="559.50"></text></g><g><title>__GI___libc_malloc (4 samples, 0.07%)</title><rect x="44.7659%" y="517" width="0.0723%" height="15" fill="rgb(217,54,7)" fg:x="2476" fg:w="4"/><text x="45.0159%" y="527.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="44.8201%" y="501" width="0.0181%" height="15" fill="rgb(223,5,52)" fg:x="2479" fg:w="1"/><text x="45.0701%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.18%)</title><rect x="44.6755%" y="613" width="0.1808%" height="15" fill="rgb(206,52,46)" fg:x="2471" fg:w="10"/><text x="44.9255%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (7 samples, 0.13%)</title><rect x="44.7297%" y="597" width="0.1266%" height="15" fill="rgb(253,136,11)" fg:x="2474" fg:w="7"/><text x="44.9797%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (7 samples, 0.13%)</title><rect x="44.7297%" y="581" width="0.1266%" height="15" fill="rgb(208,106,33)" fg:x="2474" fg:w="7"/><text x="44.9797%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (7 samples, 0.13%)</title><rect x="44.7297%" y="565" width="0.1266%" height="15" fill="rgb(206,54,4)" fg:x="2474" fg:w="7"/><text x="44.9797%" y="575.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (7 samples, 0.13%)</title><rect x="44.7297%" y="549" width="0.1266%" height="15" fill="rgb(213,3,15)" fg:x="2474" fg:w="7"/><text x="44.9797%" y="559.50"></text></g><g><title>alloc::alloc::alloc (6 samples, 0.11%)</title><rect x="44.7478%" y="533" width="0.1085%" height="15" fill="rgb(252,211,39)" fg:x="2475" fg:w="6"/><text x="44.9978%" y="543.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="44.8382%" y="517" width="0.0181%" height="15" fill="rgb(223,6,36)" fg:x="2480" fg:w="1"/><text x="45.0882%" y="527.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="44.8382%" y="501" width="0.0181%" height="15" fill="rgb(252,169,45)" fg:x="2480" fg:w="1"/><text x="45.0882%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (13 samples, 0.24%)</title><rect x="44.6574%" y="677" width="0.2350%" height="15" fill="rgb(212,48,26)" fg:x="2470" fg:w="13"/><text x="44.9074%" y="687.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (13 samples, 0.24%)</title><rect x="44.6574%" y="661" width="0.2350%" height="15" fill="rgb(251,102,48)" fg:x="2470" fg:w="13"/><text x="44.9074%" y="671.50"></text></g><g><title>alloc::slice::hack::to_vec (13 samples, 0.24%)</title><rect x="44.6574%" y="645" width="0.2350%" height="15" fill="rgb(243,208,16)" fg:x="2470" fg:w="13"/><text x="44.9074%" y="655.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (13 samples, 0.24%)</title><rect x="44.6574%" y="629" width="0.2350%" height="15" fill="rgb(219,96,24)" fg:x="2470" fg:w="13"/><text x="44.9074%" y="639.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (2 samples, 0.04%)</title><rect x="44.8563%" y="613" width="0.0362%" height="15" fill="rgb(219,33,29)" fg:x="2481" fg:w="2"/><text x="45.1063%" y="623.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="44.8563%" y="597" width="0.0362%" height="15" fill="rgb(223,176,5)" fg:x="2481" fg:w="2"/><text x="45.1063%" y="607.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.04%)</title><rect x="44.8563%" y="581" width="0.0362%" height="15" fill="rgb(228,140,14)" fg:x="2481" fg:w="2"/><text x="45.1063%" y="591.50"></text></g><g><title>__GI___libc_malloc (4 samples, 0.07%)</title><rect x="44.9286%" y="501" width="0.0723%" height="15" fill="rgb(217,179,31)" fg:x="2485" fg:w="4"/><text x="45.1786%" y="511.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="44.9828%" y="485" width="0.0181%" height="15" fill="rgb(230,9,30)" fg:x="2488" fg:w="1"/><text x="45.2328%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (8 samples, 0.14%)</title><rect x="44.8924%" y="597" width="0.1446%" height="15" fill="rgb(230,136,20)" fg:x="2483" fg:w="8"/><text x="45.1424%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (8 samples, 0.14%)</title><rect x="44.8924%" y="581" width="0.1446%" height="15" fill="rgb(215,210,22)" fg:x="2483" fg:w="8"/><text x="45.1424%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (8 samples, 0.14%)</title><rect x="44.8924%" y="565" width="0.1446%" height="15" fill="rgb(218,43,5)" fg:x="2483" fg:w="8"/><text x="45.1424%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (8 samples, 0.14%)</title><rect x="44.8924%" y="549" width="0.1446%" height="15" fill="rgb(216,11,5)" fg:x="2483" fg:w="8"/><text x="45.1424%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (8 samples, 0.14%)</title><rect x="44.8924%" y="533" width="0.1446%" height="15" fill="rgb(209,82,29)" fg:x="2483" fg:w="8"/><text x="45.1424%" y="543.50"></text></g><g><title>alloc::alloc::alloc (7 samples, 0.13%)</title><rect x="44.9105%" y="517" width="0.1266%" height="15" fill="rgb(244,115,12)" fg:x="2484" fg:w="7"/><text x="45.1605%" y="527.50"></text></g><g><title>__rust_alloc (2 samples, 0.04%)</title><rect x="45.0009%" y="501" width="0.0362%" height="15" fill="rgb(222,82,18)" fg:x="2489" fg:w="2"/><text x="45.2509%" y="511.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (10 samples, 0.18%)</title><rect x="44.8924%" y="677" width="0.1808%" height="15" fill="rgb(249,227,8)" fg:x="2483" fg:w="10"/><text x="45.1424%" y="687.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (10 samples, 0.18%)</title><rect x="44.8924%" y="661" width="0.1808%" height="15" fill="rgb(253,141,45)" fg:x="2483" fg:w="10"/><text x="45.1424%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (10 samples, 0.18%)</title><rect x="44.8924%" y="645" width="0.1808%" height="15" fill="rgb(234,184,4)" fg:x="2483" fg:w="10"/><text x="45.1424%" y="655.50"></text></g><g><title>alloc::slice::hack::to_vec (10 samples, 0.18%)</title><rect x="44.8924%" y="629" width="0.1808%" height="15" fill="rgb(218,194,23)" fg:x="2483" fg:w="10"/><text x="45.1424%" y="639.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (10 samples, 0.18%)</title><rect x="44.8924%" y="613" width="0.1808%" height="15" fill="rgb(235,66,41)" fg:x="2483" fg:w="10"/><text x="45.1424%" y="623.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (2 samples, 0.04%)</title><rect x="45.0371%" y="597" width="0.0362%" height="15" fill="rgb(245,217,1)" fg:x="2491" fg:w="2"/><text x="45.2871%" y="607.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="45.0371%" y="581" width="0.0362%" height="15" fill="rgb(229,91,1)" fg:x="2491" fg:w="2"/><text x="45.2871%" y="591.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.04%)</title><rect x="45.0371%" y="565" width="0.0362%" height="15" fill="rgb(207,101,30)" fg:x="2491" fg:w="2"/><text x="45.2871%" y="575.50"></text></g><g><title>&lt;phone_encoder::ONE as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="45.0732%" y="677" width="0.0181%" height="15" fill="rgb(223,82,49)" fg:x="2493" fg:w="1"/><text x="45.3232%" y="687.50"></text></g><g><title>&lt;phone_encoder::ONE as core::ops::deref::Deref&gt;::deref::__stability (1 samples, 0.02%)</title><rect x="45.0732%" y="661" width="0.0181%" height="15" fill="rgb(218,167,17)" fg:x="2493" fg:w="1"/><text x="45.3232%" y="671.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="45.0732%" y="645" width="0.0181%" height="15" fill="rgb(208,103,14)" fg:x="2493" fg:w="1"/><text x="45.3232%" y="655.50"></text></g><g><title>&lt;phone_encoder::TEN as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="45.0913%" y="677" width="0.0181%" height="15" fill="rgb(238,20,8)" fg:x="2494" fg:w="1"/><text x="45.3413%" y="687.50"></text></g><g><title>&lt;phone_encoder::TEN as core::ops::deref::Deref&gt;::deref::__stability (1 samples, 0.02%)</title><rect x="45.0913%" y="661" width="0.0181%" height="15" fill="rgb(218,80,54)" fg:x="2494" fg:w="1"/><text x="45.3413%" y="671.50"></text></g><g><title>lazy_static::lazy::Lazy&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="45.0913%" y="645" width="0.0181%" height="15" fill="rgb(240,144,17)" fg:x="2494" fg:w="1"/><text x="45.3413%" y="655.50"></text></g><g><title>__GI___libc_free (3 samples, 0.05%)</title><rect x="45.1094%" y="677" width="0.0542%" height="15" fill="rgb(245,27,50)" fg:x="2495" fg:w="3"/><text x="45.3594%" y="687.50"></text></g><g><title>__rdl_dealloc (1 samples, 0.02%)</title><rect x="45.1636%" y="677" width="0.0181%" height="15" fill="rgb(251,51,7)" fg:x="2498" fg:w="1"/><text x="45.4136%" y="687.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (1 samples, 0.02%)</title><rect x="45.1636%" y="661" width="0.0181%" height="15" fill="rgb(245,217,29)" fg:x="2498" fg:w="1"/><text x="45.4136%" y="671.50"></text></g><g><title>_int_free (21 samples, 0.38%)</title><rect x="45.1817%" y="677" width="0.3797%" height="15" fill="rgb(221,176,29)" fg:x="2499" fg:w="21"/><text x="45.4317%" y="687.50"></text></g><g><title>tcache_put (1 samples, 0.02%)</title><rect x="45.5433%" y="661" width="0.0181%" height="15" fill="rgb(212,180,24)" fg:x="2519" fg:w="1"/><text x="45.7933%" y="671.50"></text></g><g><title>&lt;core::result::Result&lt;T,E&gt; as core::ops::try::Try&gt;::into_result (1 samples, 0.02%)</title><rect x="45.5795%" y="597" width="0.0181%" height="15" fill="rgb(254,24,2)" fg:x="2521" fg:w="1"/><text x="45.8295%" y="607.50"></text></g><g><title>[libc-2.31.so] (1 samples, 0.02%)</title><rect x="45.8145%" y="501" width="0.0181%" height="15" fill="rgb(230,100,2)" fg:x="2534" fg:w="1"/><text x="46.0645%" y="511.50"></text></g><g><title>__memmove_avx_unaligned_erms (3 samples, 0.05%)</title><rect x="45.8326%" y="501" width="0.0542%" height="15" fill="rgb(219,142,25)" fg:x="2535" fg:w="3"/><text x="46.0826%" y="511.50"></text></g><g><title>_int_free (8 samples, 0.14%)</title><rect x="45.8868%" y="501" width="0.1446%" height="15" fill="rgb(240,73,43)" fg:x="2538" fg:w="8"/><text x="46.1368%" y="511.50"></text></g><g><title>alloc_perturb (1 samples, 0.02%)</title><rect x="46.1399%" y="485" width="0.0181%" height="15" fill="rgb(214,114,15)" fg:x="2552" fg:w="1"/><text x="46.3899%" y="495.50"></text></g><g><title>alloc::raw_vec::finish_grow (33 samples, 0.60%)</title><rect x="45.5975%" y="597" width="0.5966%" height="15" fill="rgb(207,130,4)" fg:x="2522" fg:w="33"/><text x="45.8475%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (32 samples, 0.58%)</title><rect x="45.6156%" y="581" width="0.5786%" height="15" fill="rgb(221,25,40)" fg:x="2523" fg:w="32"/><text x="45.8656%" y="591.50"></text></g><g><title>alloc::alloc::Global::grow_impl (32 samples, 0.58%)</title><rect x="45.6156%" y="565" width="0.5786%" height="15" fill="rgb(241,184,7)" fg:x="2523" fg:w="32"/><text x="45.8656%" y="575.50"></text></g><g><title>alloc::alloc::realloc (31 samples, 0.56%)</title><rect x="45.6337%" y="549" width="0.5605%" height="15" fill="rgb(235,159,4)" fg:x="2524" fg:w="31"/><text x="45.8837%" y="559.50"></text></g><g><title>__GI___libc_realloc (31 samples, 0.56%)</title><rect x="45.6337%" y="533" width="0.5605%" height="15" fill="rgb(214,87,48)" fg:x="2524" fg:w="31"/><text x="45.8837%" y="543.50"></text></g><g><title>_int_realloc (26 samples, 0.47%)</title><rect x="45.7241%" y="517" width="0.4701%" height="15" fill="rgb(246,198,24)" fg:x="2529" fg:w="26"/><text x="45.9741%" y="527.50"></text></g><g><title>_int_malloc (9 samples, 0.16%)</title><rect x="46.0315%" y="501" width="0.1627%" height="15" fill="rgb(209,66,40)" fg:x="2546" fg:w="9"/><text x="46.2815%" y="511.50"></text></g><g><title>checked_request2size (2 samples, 0.04%)</title><rect x="46.1580%" y="485" width="0.0362%" height="15" fill="rgb(233,147,39)" fg:x="2553" fg:w="2"/><text x="46.4080%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (37 samples, 0.67%)</title><rect x="45.5614%" y="677" width="0.6690%" height="15" fill="rgb(231,145,52)" fg:x="2520" fg:w="37"/><text x="45.8114%" y="687.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (37 samples, 0.67%)</title><rect x="45.5614%" y="661" width="0.6690%" height="15" fill="rgb(206,20,26)" fg:x="2520" fg:w="37"/><text x="45.8114%" y="671.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (36 samples, 0.65%)</title><rect x="45.5795%" y="645" width="0.6509%" height="15" fill="rgb(238,220,4)" fg:x="2521" fg:w="36"/><text x="45.8295%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (36 samples, 0.65%)</title><rect x="45.5795%" y="629" width="0.6509%" height="15" fill="rgb(252,195,42)" fg:x="2521" fg:w="36"/><text x="45.8295%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (36 samples, 0.65%)</title><rect x="45.5795%" y="613" width="0.6509%" height="15" fill="rgb(209,10,6)" fg:x="2521" fg:w="36"/><text x="45.8295%" y="623.50"></text></g><g><title>core::cmp::max (2 samples, 0.04%)</title><rect x="46.1942%" y="597" width="0.0362%" height="15" fill="rgb(229,3,52)" fg:x="2555" fg:w="2"/><text x="46.4442%" y="607.50"></text></g><g><title>core::cmp::Ord::max (2 samples, 0.04%)</title><rect x="46.1942%" y="581" width="0.0362%" height="15" fill="rgb(253,49,37)" fg:x="2555" fg:w="2"/><text x="46.4442%" y="591.50"></text></g><g><title>core::cmp::max_by (2 samples, 0.04%)</title><rect x="46.1942%" y="565" width="0.0362%" height="15" fill="rgb(240,103,49)" fg:x="2555" fg:w="2"/><text x="46.4442%" y="575.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 (6 samples, 0.11%)</title><rect x="46.2303%" y="677" width="0.1085%" height="15" fill="rgb(250,182,30)" fg:x="2557" fg:w="6"/><text x="46.4803%" y="687.50"></text></g><g><title>core::cmp::impls::&lt;impl core::cmp::PartialOrd for usize&gt;::lt (2 samples, 0.04%)</title><rect x="46.3027%" y="661" width="0.0362%" height="15" fill="rgb(248,8,30)" fg:x="2561" fg:w="2"/><text x="46.5527%" y="671.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (2 samples, 0.04%)</title><rect x="46.3388%" y="677" width="0.0362%" height="15" fill="rgb(237,120,30)" fg:x="2563" fg:w="2"/><text x="46.5888%" y="687.50"></text></g><g><title>phone_encoder::print_translations::{{closure}} (2 samples, 0.04%)</title><rect x="46.3388%" y="661" width="0.0362%" height="15" fill="rgb(221,146,34)" fg:x="2563" fg:w="2"/><text x="46.5888%" y="671.50"></text></g><g><title>phone_encoder::is_digit (2 samples, 0.04%)</title><rect x="46.3388%" y="645" width="0.0362%" height="15" fill="rgb(242,55,13)" fg:x="2563" fg:w="2"/><text x="46.5888%" y="655.50"></text></g><g><title>&lt;core::str::iter::Chars as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="46.3569%" y="629" width="0.0181%" height="15" fill="rgb(242,112,31)" fg:x="2564" fg:w="1"/><text x="46.6069%" y="639.50"></text></g><g><title>core::str::validations::next_code_point (1 samples, 0.02%)</title><rect x="46.3569%" y="613" width="0.0181%" height="15" fill="rgb(249,192,27)" fg:x="2564" fg:w="1"/><text x="46.6069%" y="623.50"></text></g><g><title>__GI___libc_free (3 samples, 0.05%)</title><rect x="46.3750%" y="581" width="0.0542%" height="15" fill="rgb(208,204,44)" fg:x="2565" fg:w="3"/><text x="46.6250%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (5 samples, 0.09%)</title><rect x="46.3750%" y="677" width="0.0904%" height="15" fill="rgb(208,93,54)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (5 samples, 0.09%)</title><rect x="46.3750%" y="661" width="0.0904%" height="15" fill="rgb(242,1,31)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (5 samples, 0.09%)</title><rect x="46.3750%" y="645" width="0.0904%" height="15" fill="rgb(241,83,25)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="655.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.09%)</title><rect x="46.3750%" y="629" width="0.0904%" height="15" fill="rgb(205,169,50)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="639.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (5 samples, 0.09%)</title><rect x="46.3750%" y="613" width="0.0904%" height="15" fill="rgb(239,186,37)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="623.50"></text></g><g><title>alloc::alloc::dealloc (5 samples, 0.09%)</title><rect x="46.3750%" y="597" width="0.0904%" height="15" fill="rgb(205,221,10)" fg:x="2565" fg:w="5"/><text x="46.6250%" y="607.50"></text></g><g><title>_int_free (2 samples, 0.04%)</title><rect x="46.4292%" y="581" width="0.0362%" height="15" fill="rgb(218,196,15)" fg:x="2568" fg:w="2"/><text x="46.6792%" y="591.50"></text></g><g><title>tcache_put (1 samples, 0.02%)</title><rect x="46.4473%" y="565" width="0.0181%" height="15" fill="rgb(218,196,35)" fg:x="2569" fg:w="1"/><text x="46.6973%" y="575.50"></text></g><g><title>__GI___libc_free (12 samples, 0.22%)</title><rect x="46.5377%" y="581" width="0.2170%" height="15" fill="rgb(233,63,24)" fg:x="2574" fg:w="12"/><text x="46.7877%" y="591.50"></text></g><g><title>__rdl_dealloc (2 samples, 0.04%)</title><rect x="46.7547%" y="581" width="0.0362%" height="15" fill="rgb(225,8,4)" fg:x="2586" fg:w="2"/><text x="47.0047%" y="591.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::dealloc (2 samples, 0.04%)</title><rect x="46.7547%" y="565" width="0.0362%" height="15" fill="rgb(234,105,35)" fg:x="2586" fg:w="2"/><text x="47.0047%" y="575.50"></text></g><g><title>__rust_dealloc (5 samples, 0.09%)</title><rect x="46.7908%" y="581" width="0.0904%" height="15" fill="rgb(236,21,32)" fg:x="2588" fg:w="5"/><text x="47.0408%" y="591.50"></text></g><g><title>free_perturb (3 samples, 0.05%)</title><rect x="47.5321%" y="565" width="0.0542%" height="15" fill="rgb(228,109,6)" fg:x="2629" fg:w="3"/><text x="47.7821%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (60 samples, 1.08%)</title><rect x="46.5377%" y="613" width="1.0848%" height="15" fill="rgb(229,215,31)" fg:x="2574" fg:w="60"/><text x="46.7877%" y="623.50"></text></g><g><title>alloc::alloc::dealloc (60 samples, 1.08%)</title><rect x="46.5377%" y="597" width="1.0848%" height="15" fill="rgb(221,52,54)" fg:x="2574" fg:w="60"/><text x="46.7877%" y="607.50"></text></g><g><title>_int_free (41 samples, 0.74%)</title><rect x="46.8812%" y="581" width="0.7413%" height="15" fill="rgb(252,129,43)" fg:x="2593" fg:w="41"/><text x="47.1312%" y="591.50"></text></g><g><title>tcache_put (2 samples, 0.04%)</title><rect x="47.5863%" y="565" width="0.0362%" height="15" fill="rgb(248,183,27)" fg:x="2632" fg:w="2"/><text x="47.8363%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (67 samples, 1.21%)</title><rect x="46.4654%" y="677" width="1.2114%" height="15" fill="rgb(250,0,22)" fg:x="2570" fg:w="67"/><text x="46.7154%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (67 samples, 1.21%)</title><rect x="46.4654%" y="661" width="1.2114%" height="15" fill="rgb(213,166,10)" fg:x="2570" fg:w="67"/><text x="46.7154%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (67 samples, 1.21%)</title><rect x="46.4654%" y="645" width="1.2114%" height="15" fill="rgb(207,163,36)" fg:x="2570" fg:w="67"/><text x="46.7154%" y="655.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (67 samples, 1.21%)</title><rect x="46.4654%" y="629" width="1.2114%" height="15" fill="rgb(208,122,22)" fg:x="2570" fg:w="67"/><text x="46.7154%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::current_memory (3 samples, 0.05%)</title><rect x="47.6225%" y="613" width="0.0542%" height="15" fill="rgb(207,104,49)" fg:x="2634" fg:w="3"/><text x="47.8725%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (5 samples, 0.09%)</title><rect x="47.9298%" y="629" width="0.0904%" height="15" fill="rgb(248,211,50)" fg:x="2651" fg:w="5"/><text x="48.1798%" y="639.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (5 samples, 0.09%)</title><rect x="47.9298%" y="613" width="0.0904%" height="15" fill="rgb(217,13,45)" fg:x="2651" fg:w="5"/><text x="48.1798%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (27 samples, 0.49%)</title><rect x="47.6767%" y="677" width="0.4882%" height="15" fill="rgb(211,216,49)" fg:x="2637" fg:w="27"/><text x="47.9267%" y="687.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::AddAssign&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add_assign (24 samples, 0.43%)</title><rect x="47.7310%" y="661" width="0.4339%" height="15" fill="rgb(221,58,53)" fg:x="2640" fg:w="24"/><text x="47.9810%" y="671.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (15 samples, 0.27%)</title><rect x="47.8937%" y="645" width="0.2712%" height="15" fill="rgb(220,112,41)" fg:x="2649" fg:w="15"/><text x="48.1437%" y="655.50"></text></g><g><title>num_bigint::biguint::addition::adc (8 samples, 0.14%)</title><rect x="48.0202%" y="629" width="0.1446%" height="15" fill="rgb(236,38,28)" fg:x="2656" fg:w="8"/><text x="48.2702%" y="639.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (8 samples, 0.14%)</title><rect x="48.0202%" y="613" width="0.1446%" height="15" fill="rgb(227,195,22)" fg:x="2656" fg:w="8"/><text x="48.2702%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (2 samples, 0.04%)</title><rect x="48.1649%" y="661" width="0.0362%" height="15" fill="rgb(214,55,33)" fg:x="2664" fg:w="2"/><text x="48.4149%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="48.1649%" y="645" width="0.0362%" height="15" fill="rgb(248,80,13)" fg:x="2664" fg:w="2"/><text x="48.4149%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="48.1649%" y="629" width="0.0362%" height="15" fill="rgb(238,52,6)" fg:x="2664" fg:w="2"/><text x="48.4149%" y="639.50"></text></g><g><title>alloc_perturb (1 samples, 0.02%)</title><rect x="49.3762%" y="501" width="0.0181%" height="15" fill="rgb(224,198,47)" fg:x="2731" fg:w="1"/><text x="49.6262%" y="511.50"></text></g><g><title>checked_request2size (2 samples, 0.04%)</title><rect x="49.3943%" y="501" width="0.0362%" height="15" fill="rgb(233,171,20)" fg:x="2732" fg:w="2"/><text x="49.6443%" y="511.50"></text></g><g><title>__libc_calloc (63 samples, 1.14%)</title><rect x="48.3276%" y="533" width="1.1390%" height="15" fill="rgb(241,30,25)" fg:x="2673" fg:w="63"/><text x="48.5776%" y="543.50"></text></g><g><title>_int_malloc (33 samples, 0.60%)</title><rect x="48.8700%" y="517" width="0.5966%" height="15" fill="rgb(207,171,38)" fg:x="2703" fg:w="33"/><text x="49.1200%" y="527.50"></text></g><g><title>tcache_put (2 samples, 0.04%)</title><rect x="49.4305%" y="501" width="0.0362%" height="15" fill="rgb(234,70,1)" fg:x="2734" fg:w="2"/><text x="49.6805%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (64 samples, 1.16%)</title><rect x="48.3276%" y="581" width="1.1571%" height="15" fill="rgb(232,178,18)" fg:x="2673" fg:w="64"/><text x="48.5776%" y="591.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (64 samples, 1.16%)</title><rect x="48.3276%" y="565" width="1.1571%" height="15" fill="rgb(241,78,40)" fg:x="2673" fg:w="64"/><text x="48.5776%" y="575.50"></text></g><g><title>alloc::alloc::alloc_zeroed (64 samples, 1.16%)</title><rect x="48.3276%" y="549" width="1.1571%" height="15" fill="rgb(222,35,25)" fg:x="2673" fg:w="64"/><text x="48.5776%" y="559.50"></text></g><g><title>__rust_alloc_zeroed (1 samples, 0.02%)</title><rect x="49.4666%" y="533" width="0.0181%" height="15" fill="rgb(207,92,16)" fg:x="2736" fg:w="1"/><text x="49.7166%" y="543.50"></text></g><g><title>alloc::vec::from_elem (71 samples, 1.28%)</title><rect x="48.2553%" y="645" width="1.2837%" height="15" fill="rgb(216,59,51)" fg:x="2669" fg:w="71"/><text x="48.5053%" y="655.50"></text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (71 samples, 1.28%)</title><rect x="48.2553%" y="629" width="1.2837%" height="15" fill="rgb(213,80,28)" fg:x="2669" fg:w="71"/><text x="48.5053%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (69 samples, 1.25%)</title><rect x="48.2914%" y="613" width="1.2475%" height="15" fill="rgb(220,93,7)" fg:x="2671" fg:w="69"/><text x="48.5414%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (69 samples, 1.25%)</title><rect x="48.2914%" y="597" width="1.2475%" height="15" fill="rgb(225,24,44)" fg:x="2671" fg:w="69"/><text x="48.5414%" y="607.50"></text></g><g><title>core::alloc::layout::Layout::array (3 samples, 0.05%)</title><rect x="49.4847%" y="581" width="0.0542%" height="15" fill="rgb(243,74,40)" fg:x="2737" fg:w="3"/><text x="49.7347%" y="591.50"></text></g><g><title>core::alloc::layout::Layout::repeat (3 samples, 0.05%)</title><rect x="49.4847%" y="565" width="0.0542%" height="15" fill="rgb(228,39,7)" fg:x="2737" fg:w="3"/><text x="49.7347%" y="575.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (2 samples, 0.04%)</title><rect x="49.5028%" y="549" width="0.0362%" height="15" fill="rgb(227,79,8)" fg:x="2738" fg:w="2"/><text x="49.7528%" y="559.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (2 samples, 0.04%)</title><rect x="49.5028%" y="533" width="0.0362%" height="15" fill="rgb(236,58,11)" fg:x="2738" fg:w="2"/><text x="49.7528%" y="543.50"></text></g><g><title>num_bigint::biguint::BigUint::normalized (13 samples, 0.24%)</title><rect x="49.5390%" y="645" width="0.2350%" height="15" fill="rgb(249,63,35)" fg:x="2740" fg:w="13"/><text x="49.7890%" y="655.50"></text></g><g><title>num_bigint::biguint::BigUint::normalize (9 samples, 0.16%)</title><rect x="49.6113%" y="629" width="0.1627%" height="15" fill="rgb(252,114,16)" fg:x="2744" fg:w="9"/><text x="49.8613%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="49.7378%" y="613" width="0.0362%" height="15" fill="rgb(254,151,24)" fg:x="2751" fg:w="2"/><text x="49.9878%" y="623.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="49.7378%" y="597" width="0.0362%" height="15" fill="rgb(253,54,39)" fg:x="2751" fg:w="2"/><text x="49.9878%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::enumerate::Enumerate&lt;I&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="50.0271%" y="629" width="0.0181%" height="15" fill="rgb(243,25,45)" fg:x="2767" fg:w="1"/><text x="50.2771%" y="639.50"></text></g><g><title>&lt;core::slice::iter::Iter&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="50.0271%" y="613" width="0.0181%" height="15" fill="rgb(234,134,9)" fg:x="2767" fg:w="1"/><text x="50.2771%" y="623.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T]&gt;::index_mut (4 samples, 0.07%)</title><rect x="50.0452%" y="629" width="0.0723%" height="15" fill="rgb(227,166,31)" fg:x="2768" fg:w="4"/><text x="50.2952%" y="639.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (4 samples, 0.07%)</title><rect x="50.0452%" y="613" width="0.0723%" height="15" fill="rgb(245,143,41)" fg:x="2768" fg:w="4"/><text x="50.2952%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.11%)</title><rect x="50.1718%" y="613" width="0.1085%" height="15" fill="rgb(238,181,32)" fg:x="2775" fg:w="6"/><text x="50.4218%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (6 samples, 0.11%)</title><rect x="50.1718%" y="597" width="0.1085%" height="15" fill="rgb(224,113,18)" fg:x="2775" fg:w="6"/><text x="50.4218%" y="607.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::split_at_mut (1 samples, 0.02%)</title><rect x="50.2802%" y="613" width="0.0181%" height="15" fill="rgb(240,229,28)" fg:x="2781" fg:w="1"/><text x="50.5302%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (1 samples, 0.02%)</title><rect x="50.2983%" y="613" width="0.0181%" height="15" fill="rgb(250,185,3)" fg:x="2782" fg:w="1"/><text x="50.5483%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::adc (1 samples, 0.02%)</title><rect x="50.2983%" y="597" width="0.0181%" height="15" fill="rgb(212,59,25)" fg:x="2782" fg:w="1"/><text x="50.5483%" y="607.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (1 samples, 0.02%)</title><rect x="50.2983%" y="581" width="0.0181%" height="15" fill="rgb(221,87,20)" fg:x="2782" fg:w="1"/><text x="50.5483%" y="591.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (127 samples, 2.30%)</title><rect x="48.1649%" y="677" width="2.2961%" height="15" fill="rgb(213,74,28)" fg:x="2664" fg:w="127"/><text x="48.4149%" y="687.50">n..</text></g><g><title>num_bigint::biguint::multiplication::mul3 (125 samples, 2.26%)</title><rect x="48.2010%" y="661" width="2.2600%" height="15" fill="rgb(224,132,34)" fg:x="2666" fg:w="125"/><text x="48.4510%" y="671.50">n..</text></g><g><title>num_bigint::biguint::multiplication::mac3 (38 samples, 0.69%)</title><rect x="49.7740%" y="645" width="0.6870%" height="15" fill="rgb(222,101,24)" fg:x="2753" fg:w="38"/><text x="50.0240%" y="655.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_digit (19 samples, 0.34%)</title><rect x="50.1175%" y="629" width="0.3435%" height="15" fill="rgb(254,142,4)" fg:x="2772" fg:w="19"/><text x="50.3675%" y="639.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_with_carry (8 samples, 0.14%)</title><rect x="50.3164%" y="613" width="0.1446%" height="15" fill="rgb(230,229,49)" fg:x="2783" fg:w="8"/><text x="50.5664%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.4430%" y="597" width="0.0181%" height="15" fill="rgb(238,70,47)" fg:x="2790" fg:w="1"/><text x="50.6930%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.4430%" y="581" width="0.0181%" height="15" fill="rgb(231,160,17)" fg:x="2790" fg:w="1"/><text x="50.6930%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.4430%" y="565" width="0.0181%" height="15" fill="rgb(218,68,53)" fg:x="2790" fg:w="1"/><text x="50.6930%" y="575.50"></text></g><g><title>core::option::Option&lt;T&gt;::unwrap (2 samples, 0.04%)</title><rect x="50.4610%" y="661" width="0.0362%" height="15" fill="rgb(236,111,10)" fg:x="2791" fg:w="2"/><text x="50.7110%" y="671.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as num_traits::identities::Zero&gt;::zero (5 samples, 0.09%)</title><rect x="50.5514%" y="565" width="0.0904%" height="15" fill="rgb(224,34,41)" fg:x="2796" fg:w="5"/><text x="50.8014%" y="575.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="549" width="0.0181%" height="15" fill="rgb(241,118,19)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="559.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="533" width="0.0181%" height="15" fill="rgb(238,129,25)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="543.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="517" width="0.0181%" height="15" fill="rgb(238,22,31)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="527.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="501" width="0.0181%" height="15" fill="rgb(222,174,48)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="511.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="485" width="0.0181%" height="15" fill="rgb(206,152,40)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="469" width="0.0181%" height="15" fill="rgb(218,99,54)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="453" width="0.0181%" height="15" fill="rgb(220,174,26)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="437" width="0.0181%" height="15" fill="rgb(245,116,9)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="50.6418%" y="421" width="0.0181%" height="15" fill="rgb(209,72,35)" fg:x="2801" fg:w="1"/><text x="50.8918%" y="431.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::set_ptr (2 samples, 0.04%)</title><rect x="50.7503%" y="485" width="0.0362%" height="15" fill="rgb(226,126,21)" fg:x="2807" fg:w="2"/><text x="51.0003%" y="495.50"></text></g><g><title>checked_request2size (5 samples, 0.09%)</title><rect x="51.0577%" y="453" width="0.0904%" height="15" fill="rgb(227,192,1)" fg:x="2824" fg:w="5"/><text x="51.3077%" y="463.50"></text></g><g><title>__GI___libc_malloc (15 samples, 0.27%)</title><rect x="50.9311%" y="469" width="0.2712%" height="15" fill="rgb(237,180,29)" fg:x="2817" fg:w="15"/><text x="51.1811%" y="479.50"></text></g><g><title>tcache_get (3 samples, 0.05%)</title><rect x="51.1481%" y="453" width="0.0542%" height="15" fill="rgb(230,197,35)" fg:x="2829" fg:w="3"/><text x="51.3981%" y="463.50"></text></g><g><title>alloc::raw_vec::finish_grow (28 samples, 0.51%)</title><rect x="50.7865%" y="485" width="0.5062%" height="15" fill="rgb(246,193,31)" fg:x="2809" fg:w="28"/><text x="51.0365%" y="495.50"></text></g><g><title>__rdl_alloc (5 samples, 0.09%)</title><rect x="51.2023%" y="469" width="0.0904%" height="15" fill="rgb(241,36,4)" fg:x="2832" fg:w="5"/><text x="51.4523%" y="479.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (5 samples, 0.09%)</title><rect x="51.2023%" y="453" width="0.0904%" height="15" fill="rgb(241,130,17)" fg:x="2832" fg:w="5"/><text x="51.4523%" y="463.50"></text></g><g><title>core::cmp::max (9 samples, 0.16%)</title><rect x="51.2927%" y="485" width="0.1627%" height="15" fill="rgb(206,137,32)" fg:x="2837" fg:w="9"/><text x="51.5427%" y="495.50"></text></g><g><title>core::cmp::Ord::max (9 samples, 0.16%)</title><rect x="51.2927%" y="469" width="0.1627%" height="15" fill="rgb(237,228,51)" fg:x="2837" fg:w="9"/><text x="51.5427%" y="479.50"></text></g><g><title>core::cmp::max_by (9 samples, 0.16%)</title><rect x="51.2927%" y="453" width="0.1627%" height="15" fill="rgb(243,6,42)" fg:x="2837" fg:w="9"/><text x="51.5427%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (45 samples, 0.81%)</title><rect x="50.6599%" y="501" width="0.8136%" height="15" fill="rgb(251,74,28)" fg:x="2802" fg:w="45"/><text x="50.9099%" y="511.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_add (1 samples, 0.02%)</title><rect x="51.4554%" y="485" width="0.0181%" height="15" fill="rgb(218,20,49)" fg:x="2846" fg:w="1"/><text x="51.7054%" y="495.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_add (1 samples, 0.02%)</title><rect x="51.4554%" y="469" width="0.0181%" height="15" fill="rgb(238,28,14)" fg:x="2846" fg:w="1"/><text x="51.7054%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (46 samples, 0.83%)</title><rect x="50.6599%" y="549" width="0.8317%" height="15" fill="rgb(229,40,46)" fg:x="2802" fg:w="46"/><text x="50.9099%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (46 samples, 0.83%)</title><rect x="50.6599%" y="533" width="0.8317%" height="15" fill="rgb(244,195,20)" fg:x="2802" fg:w="46"/><text x="50.9099%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (46 samples, 0.83%)</title><rect x="50.6599%" y="517" width="0.8317%" height="15" fill="rgb(253,56,35)" fg:x="2802" fg:w="46"/><text x="50.9099%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="51.4735%" y="501" width="0.0181%" height="15" fill="rgb(210,149,44)" fg:x="2847" fg:w="1"/><text x="51.7235%" y="511.50"></text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (1 samples, 0.02%)</title><rect x="51.4735%" y="485" width="0.0181%" height="15" fill="rgb(240,135,12)" fg:x="2847" fg:w="1"/><text x="51.7235%" y="495.50"></text></g><g><title>phone_encoder::nth_digit (61 samples, 1.10%)</title><rect x="50.4610%" y="677" width="1.1029%" height="15" fill="rgb(251,24,50)" fg:x="2791" fg:w="61"/><text x="50.7110%" y="687.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (59 samples, 1.07%)</title><rect x="50.4972%" y="661" width="1.0667%" height="15" fill="rgb(243,200,47)" fg:x="2793" fg:w="59"/><text x="50.7472%" y="671.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (59 samples, 1.07%)</title><rect x="50.4972%" y="645" width="1.0667%" height="15" fill="rgb(224,166,26)" fg:x="2793" fg:w="59"/><text x="50.7472%" y="655.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (59 samples, 1.07%)</title><rect x="50.4972%" y="629" width="1.0667%" height="15" fill="rgb(233,0,47)" fg:x="2793" fg:w="59"/><text x="50.7472%" y="639.50"></text></g><g><title>core::ops::function::FnOnce::call_once (59 samples, 1.07%)</title><rect x="50.4972%" y="613" width="1.0667%" height="15" fill="rgb(253,80,5)" fg:x="2793" fg:w="59"/><text x="50.7472%" y="623.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (59 samples, 1.07%)</title><rect x="50.4972%" y="597" width="1.0667%" height="15" fill="rgb(214,133,25)" fg:x="2793" fg:w="59"/><text x="50.7472%" y="607.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (56 samples, 1.01%)</title><rect x="50.5514%" y="581" width="1.0125%" height="15" fill="rgb(209,27,14)" fg:x="2796" fg:w="56"/><text x="50.8014%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (51 samples, 0.92%)</title><rect x="50.6418%" y="565" width="0.9221%" height="15" fill="rgb(219,102,51)" fg:x="2801" fg:w="51"/><text x="50.8918%" y="575.50"></text></g><g><title>core::ptr::write (4 samples, 0.07%)</title><rect x="51.4916%" y="549" width="0.0723%" height="15" fill="rgb(237,18,16)" fg:x="2848" fg:w="4"/><text x="51.7416%" y="559.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="51.5639%" y="661" width="0.0181%" height="15" fill="rgb(241,85,17)" fg:x="2852" fg:w="1"/><text x="51.8139%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="51.5639%" y="645" width="0.0181%" height="15" fill="rgb(236,90,42)" fg:x="2852" fg:w="1"/><text x="51.8139%" y="655.50"></text></g><g><title>core::fmt::Arguments::new_v1 (1 samples, 0.02%)</title><rect x="51.5820%" y="661" width="0.0181%" height="15" fill="rgb(249,57,21)" fg:x="2853" fg:w="1"/><text x="51.8320%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (1 samples, 0.02%)</title><rect x="51.6362%" y="597" width="0.0181%" height="15" fill="rgb(243,12,36)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="51.6362%" y="581" width="0.0181%" height="15" fill="rgb(253,128,47)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="591.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="51.6362%" y="565" width="0.0181%" height="15" fill="rgb(207,33,20)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="575.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (1 samples, 0.02%)</title><rect x="51.6362%" y="549" width="0.0181%" height="15" fill="rgb(233,215,35)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="559.50"></text></g><g><title>__GI___pthread_mutex_unlock (1 samples, 0.02%)</title><rect x="51.6362%" y="533" width="0.0181%" height="15" fill="rgb(249,188,52)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="543.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (1 samples, 0.02%)</title><rect x="51.6362%" y="517" width="0.0181%" height="15" fill="rgb(225,12,32)" fg:x="2856" fg:w="1"/><text x="51.8862%" y="527.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (2 samples, 0.04%)</title><rect x="51.8713%" y="437" width="0.0362%" height="15" fill="rgb(247,98,14)" fg:x="2869" fg:w="2"/><text x="52.1213%" y="447.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="51.8894%" y="421" width="0.0181%" height="15" fill="rgb(247,219,48)" fg:x="2870" fg:w="1"/><text x="52.1394%" y="431.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (1 samples, 0.02%)</title><rect x="51.8894%" y="405" width="0.0181%" height="15" fill="rgb(253,60,48)" fg:x="2870" fg:w="1"/><text x="52.1394%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="51.8894%" y="389" width="0.0181%" height="15" fill="rgb(245,15,52)" fg:x="2870" fg:w="1"/><text x="52.1394%" y="399.50"></text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (1 samples, 0.02%)</title><rect x="51.8894%" y="373" width="0.0181%" height="15" fill="rgb(220,133,28)" fg:x="2870" fg:w="1"/><text x="52.1394%" y="383.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (7 samples, 0.13%)</title><rect x="51.8170%" y="501" width="0.1266%" height="15" fill="rgb(217,180,4)" fg:x="2866" fg:w="7"/><text x="52.0670%" y="511.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (5 samples, 0.09%)</title><rect x="51.8532%" y="485" width="0.0904%" height="15" fill="rgb(251,24,1)" fg:x="2868" fg:w="5"/><text x="52.1032%" y="495.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 (5 samples, 0.09%)</title><rect x="51.8532%" y="469" width="0.0904%" height="15" fill="rgb(212,185,49)" fg:x="2868" fg:w="5"/><text x="52.1032%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (5 samples, 0.09%)</title><rect x="51.8532%" y="453" width="0.0904%" height="15" fill="rgb(215,175,22)" fg:x="2868" fg:w="5"/><text x="52.1032%" y="463.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.04%)</title><rect x="51.9074%" y="437" width="0.0362%" height="15" fill="rgb(250,205,14)" fg:x="2871" fg:w="2"/><text x="52.1574%" y="447.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="51.9255%" y="421" width="0.0181%" height="15" fill="rgb(225,211,22)" fg:x="2872" fg:w="1"/><text x="52.1755%" y="431.50"></text></g><g><title>__libc_write (285 samples, 5.15%)</title><rect x="51.9978%" y="437" width="5.1528%" height="15" fill="rgb(251,179,42)" fg:x="2876" fg:w="285"/><text x="52.2478%" y="447.50">__libc..</text></g><g><title>[unknown] (285 samples, 5.15%)</title><rect x="51.9978%" y="421" width="5.1528%" height="15" fill="rgb(208,216,51)" fg:x="2876" fg:w="285"/><text x="52.2478%" y="431.50">[unkno..</text></g><g><title>[unknown] (258 samples, 4.66%)</title><rect x="52.4860%" y="405" width="4.6646%" height="15" fill="rgb(235,36,11)" fg:x="2903" fg:w="258"/><text x="52.7360%" y="415.50">[unkn..</text></g><g><title>[unknown] (219 samples, 3.96%)</title><rect x="53.1911%" y="389" width="3.9595%" height="15" fill="rgb(213,189,28)" fg:x="2942" fg:w="219"/><text x="53.4411%" y="399.50">[unk..</text></g><g><title>[unknown] (217 samples, 3.92%)</title><rect x="53.2273%" y="373" width="3.9233%" height="15" fill="rgb(227,203,42)" fg:x="2944" fg:w="217"/><text x="53.4773%" y="383.50">[unk..</text></g><g><title>[unknown] (211 samples, 3.81%)</title><rect x="53.3357%" y="357" width="3.8149%" height="15" fill="rgb(244,72,36)" fg:x="2950" fg:w="211"/><text x="53.5857%" y="367.50">[unk..</text></g><g><title>[unknown] (201 samples, 3.63%)</title><rect x="53.5165%" y="341" width="3.6341%" height="15" fill="rgb(213,53,17)" fg:x="2960" fg:w="201"/><text x="53.7665%" y="351.50">[unk..</text></g><g><title>[unknown] (196 samples, 3.54%)</title><rect x="53.6069%" y="325" width="3.5437%" height="15" fill="rgb(207,167,3)" fg:x="2965" fg:w="196"/><text x="53.8569%" y="335.50">[unk..</text></g><g><title>[unknown] (195 samples, 3.53%)</title><rect x="53.6250%" y="309" width="3.5256%" height="15" fill="rgb(216,98,30)" fg:x="2966" fg:w="195"/><text x="53.8750%" y="319.50">[un..</text></g><g><title>[unknown] (190 samples, 3.44%)</title><rect x="53.7154%" y="293" width="3.4352%" height="15" fill="rgb(236,123,15)" fg:x="2971" fg:w="190"/><text x="53.9654%" y="303.50">[un..</text></g><g><title>[unknown] (159 samples, 2.87%)</title><rect x="54.2759%" y="277" width="2.8747%" height="15" fill="rgb(248,81,50)" fg:x="3002" fg:w="159"/><text x="54.5259%" y="287.50">[u..</text></g><g><title>[unknown] (141 samples, 2.55%)</title><rect x="54.6013%" y="261" width="2.5493%" height="15" fill="rgb(214,120,4)" fg:x="3020" fg:w="141"/><text x="54.8513%" y="271.50">[u..</text></g><g><title>[unknown] (116 samples, 2.10%)</title><rect x="55.0533%" y="245" width="2.0973%" height="15" fill="rgb(208,179,34)" fg:x="3045" fg:w="116"/><text x="55.3033%" y="255.50">[..</text></g><g><title>[unknown] (97 samples, 1.75%)</title><rect x="55.3969%" y="229" width="1.7538%" height="15" fill="rgb(227,140,7)" fg:x="3064" fg:w="97"/><text x="55.6469%" y="239.50"></text></g><g><title>[unknown] (81 samples, 1.46%)</title><rect x="55.6861%" y="213" width="1.4645%" height="15" fill="rgb(214,22,6)" fg:x="3080" fg:w="81"/><text x="55.9361%" y="223.50"></text></g><g><title>[unknown] (80 samples, 1.45%)</title><rect x="55.7042%" y="197" width="1.4464%" height="15" fill="rgb(207,137,27)" fg:x="3081" fg:w="80"/><text x="55.9542%" y="207.50"></text></g><g><title>[unknown] (74 samples, 1.34%)</title><rect x="55.8127%" y="181" width="1.3379%" height="15" fill="rgb(210,8,46)" fg:x="3087" fg:w="74"/><text x="56.0627%" y="191.50"></text></g><g><title>[unknown] (72 samples, 1.30%)</title><rect x="55.8489%" y="165" width="1.3018%" height="15" fill="rgb(240,16,54)" fg:x="3089" fg:w="72"/><text x="56.0989%" y="175.50"></text></g><g><title>[unknown] (48 samples, 0.87%)</title><rect x="56.2828%" y="149" width="0.8678%" height="15" fill="rgb(211,209,29)" fg:x="3113" fg:w="48"/><text x="56.5328%" y="159.50"></text></g><g><title>[unknown] (31 samples, 0.56%)</title><rect x="56.5901%" y="133" width="0.5605%" height="15" fill="rgb(226,228,24)" fg:x="3130" fg:w="31"/><text x="56.8401%" y="143.50"></text></g><g><title>[unknown] (22 samples, 0.40%)</title><rect x="56.7528%" y="117" width="0.3978%" height="15" fill="rgb(222,84,9)" fg:x="3139" fg:w="22"/><text x="57.0028%" y="127.50"></text></g><g><title>[unknown] (7 samples, 0.13%)</title><rect x="57.0240%" y="101" width="0.1266%" height="15" fill="rgb(234,203,30)" fg:x="3154" fg:w="7"/><text x="57.2740%" y="111.50"></text></g><g><title>[unknown] (4 samples, 0.07%)</title><rect x="57.0783%" y="85" width="0.0723%" height="15" fill="rgb(238,109,14)" fg:x="3157" fg:w="4"/><text x="57.3283%" y="95.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="57.1325%" y="69" width="0.0181%" height="15" fill="rgb(233,206,34)" fg:x="3160" fg:w="1"/><text x="57.3825%" y="79.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="57.1325%" y="53" width="0.0181%" height="15" fill="rgb(220,167,47)" fg:x="3160" fg:w="1"/><text x="57.3825%" y="63.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (289 samples, 5.23%)</title><rect x="51.9436%" y="501" width="5.2251%" height="15" fill="rgb(238,105,10)" fg:x="2873" fg:w="289"/><text x="52.1936%" y="511.50">std::i..</text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (286 samples, 5.17%)</title><rect x="51.9978%" y="485" width="5.1709%" height="15" fill="rgb(213,227,17)" fg:x="2876" fg:w="286"/><text x="52.2478%" y="495.50">&lt;std::..</text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (286 samples, 5.17%)</title><rect x="51.9978%" y="469" width="5.1709%" height="15" fill="rgb(217,132,38)" fg:x="2876" fg:w="286"/><text x="52.2478%" y="479.50">&lt;std::..</text></g><g><title>std::sys::unix::fd::FileDesc::write (286 samples, 5.17%)</title><rect x="51.9978%" y="453" width="5.1709%" height="15" fill="rgb(242,146,4)" fg:x="2876" fg:w="286"/><text x="52.2478%" y="463.50">std::s..</text></g><g><title>std::sys::unix::cvt (1 samples, 0.02%)</title><rect x="57.1506%" y="437" width="0.0181%" height="15" fill="rgb(212,61,9)" fg:x="3161" fg:w="1"/><text x="57.4006%" y="447.50"></text></g><g><title>&lt;isize as std::sys::unix::IsMinusOne&gt;::is_minus_one (1 samples, 0.02%)</title><rect x="57.1506%" y="421" width="0.0181%" height="15" fill="rgb(247,126,22)" fg:x="3161" fg:w="1"/><text x="57.4006%" y="431.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (304 samples, 5.50%)</title><rect x="51.7266%" y="565" width="5.4963%" height="15" fill="rgb(220,196,2)" fg:x="2861" fg:w="304"/><text x="51.9766%" y="575.50">&lt;std::i..</text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (302 samples, 5.46%)</title><rect x="51.7628%" y="549" width="5.4601%" height="15" fill="rgb(208,46,4)" fg:x="2863" fg:w="302"/><text x="52.0128%" y="559.50">&lt;std::i..</text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (302 samples, 5.46%)</title><rect x="51.7628%" y="533" width="5.4601%" height="15" fill="rgb(252,104,46)" fg:x="2863" fg:w="302"/><text x="52.0128%" y="543.50">&lt;std::i..</text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (302 samples, 5.46%)</title><rect x="51.7628%" y="517" width="5.4601%" height="15" fill="rgb(237,152,48)" fg:x="2863" fg:w="302"/><text x="52.0128%" y="527.50">&lt;std::i..</text></g><g><title>std::memchr::memrchr (3 samples, 0.05%)</title><rect x="57.1687%" y="501" width="0.0542%" height="15" fill="rgb(221,59,37)" fg:x="3162" fg:w="3"/><text x="57.4187%" y="511.50"></text></g><g><title>std::sys::unix::memchr::memrchr (3 samples, 0.05%)</title><rect x="57.1687%" y="485" width="0.0542%" height="15" fill="rgb(209,202,51)" fg:x="3162" fg:w="3"/><text x="57.4187%" y="495.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (3 samples, 0.05%)</title><rect x="57.1687%" y="469" width="0.0542%" height="15" fill="rgb(228,81,30)" fg:x="3162" fg:w="3"/><text x="57.4187%" y="479.50"></text></g><g><title>__memrchr_avx2 (3 samples, 0.05%)</title><rect x="57.1687%" y="453" width="0.0542%" height="15" fill="rgb(227,42,39)" fg:x="3162" fg:w="3"/><text x="57.4187%" y="463.50"></text></g><g><title>std::io::Write::write_fmt (309 samples, 5.59%)</title><rect x="51.6543%" y="597" width="5.5867%" height="15" fill="rgb(221,26,2)" fg:x="2857" fg:w="309"/><text x="51.9043%" y="607.50">std::io..</text></g><g><title>core::fmt::write (307 samples, 5.55%)</title><rect x="51.6905%" y="581" width="5.5505%" height="15" fill="rgb(254,61,31)" fg:x="2859" fg:w="307"/><text x="51.9405%" y="591.50">core::f..</text></g><g><title>core::fmt::Formatter::pad (1 samples, 0.02%)</title><rect x="57.2229%" y="565" width="0.0181%" height="15" fill="rgb(222,173,38)" fg:x="3165" fg:w="1"/><text x="57.4729%" y="575.50"></text></g><g><title>phone_encoder::print_solution (319 samples, 5.77%)</title><rect x="51.5639%" y="677" width="5.7675%" height="15" fill="rgb(218,50,12)" fg:x="2852" fg:w="319"/><text x="51.8139%" y="687.50">phone_e..</text></g><g><title>std::io::stdio::_print (317 samples, 5.73%)</title><rect x="51.6001%" y="661" width="5.7313%" height="15" fill="rgb(223,88,40)" fg:x="2854" fg:w="317"/><text x="51.8501%" y="671.50">std::io..</text></g><g><title>std::io::stdio::print_to (317 samples, 5.73%)</title><rect x="51.6001%" y="645" width="5.7313%" height="15" fill="rgb(237,54,19)" fg:x="2854" fg:w="317"/><text x="51.8501%" y="655.50">std::io..</text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (316 samples, 5.71%)</title><rect x="51.6182%" y="629" width="5.7133%" height="15" fill="rgb(251,129,25)" fg:x="2855" fg:w="316"/><text x="51.8682%" y="639.50">&lt;std::i..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (316 samples, 5.71%)</title><rect x="51.6182%" y="613" width="5.7133%" height="15" fill="rgb(238,97,19)" fg:x="2855" fg:w="316"/><text x="51.8682%" y="623.50">&lt;&amp;std::..</text></g><g><title>std::io::stdio::Stdout::lock (5 samples, 0.09%)</title><rect x="57.2410%" y="597" width="0.0904%" height="15" fill="rgb(240,169,18)" fg:x="3166" fg:w="5"/><text x="57.4910%" y="607.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (5 samples, 0.09%)</title><rect x="57.2410%" y="581" width="0.0904%" height="15" fill="rgb(230,187,49)" fg:x="3166" fg:w="5"/><text x="57.4910%" y="591.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (5 samples, 0.09%)</title><rect x="57.2410%" y="565" width="0.0904%" height="15" fill="rgb(209,44,26)" fg:x="3166" fg:w="5"/><text x="57.4910%" y="575.50"></text></g><g><title>__GI___pthread_mutex_lock (4 samples, 0.07%)</title><rect x="57.2591%" y="549" width="0.0723%" height="15" fill="rgb(244,0,6)" fg:x="3167" fg:w="4"/><text x="57.5091%" y="559.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="57.6026%" y="613" width="0.0181%" height="15" fill="rgb(248,18,21)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="623.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (1 samples, 0.02%)</title><rect x="57.6026%" y="597" width="0.0181%" height="15" fill="rgb(245,180,19)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="607.50"></text></g><g><title>alloc::string::String::push_str (1 samples, 0.02%)</title><rect x="57.6026%" y="581" width="0.0181%" height="15" fill="rgb(252,118,36)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (1 samples, 0.02%)</title><rect x="57.6026%" y="565" width="0.0181%" height="15" fill="rgb(210,224,19)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="575.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 (1 samples, 0.02%)</title><rect x="57.6026%" y="549" width="0.0181%" height="15" fill="rgb(218,30,24)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (1 samples, 0.02%)</title><rect x="57.6026%" y="533" width="0.0181%" height="15" fill="rgb(219,75,50)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="57.6026%" y="517" width="0.0181%" height="15" fill="rgb(234,72,50)" fg:x="3186" fg:w="1"/><text x="57.8526%" y="527.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="57.6207%" y="613" width="0.0181%" height="15" fill="rgb(219,100,48)" fg:x="3187" fg:w="1"/><text x="57.8707%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.02%)</title><rect x="57.6207%" y="597" width="0.0181%" height="15" fill="rgb(253,5,41)" fg:x="3187" fg:w="1"/><text x="57.8707%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (1 samples, 0.02%)</title><rect x="57.6568%" y="501" width="0.0181%" height="15" fill="rgb(247,181,11)" fg:x="3189" fg:w="1"/><text x="57.9068%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (2 samples, 0.04%)</title><rect x="57.6749%" y="453" width="0.0362%" height="15" fill="rgb(222,223,25)" fg:x="3190" fg:w="2"/><text x="57.9249%" y="463.50"></text></g><g><title>alloc::raw_vec::finish_grow (1 samples, 0.02%)</title><rect x="57.6930%" y="437" width="0.0181%" height="15" fill="rgb(214,198,28)" fg:x="3191" fg:w="1"/><text x="57.9430%" y="447.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="57.6930%" y="421" width="0.0181%" height="15" fill="rgb(230,46,43)" fg:x="3191" fg:w="1"/><text x="57.9430%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (3 samples, 0.05%)</title><rect x="57.6749%" y="501" width="0.0542%" height="15" fill="rgb(233,65,53)" fg:x="3190" fg:w="3"/><text x="57.9249%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (3 samples, 0.05%)</title><rect x="57.6749%" y="485" width="0.0542%" height="15" fill="rgb(221,121,27)" fg:x="3190" fg:w="3"/><text x="57.9249%" y="495.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (3 samples, 0.05%)</title><rect x="57.6749%" y="469" width="0.0542%" height="15" fill="rgb(247,70,47)" fg:x="3190" fg:w="3"/><text x="57.9249%" y="479.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="57.7111%" y="453" width="0.0181%" height="15" fill="rgb(228,85,35)" fg:x="3192" fg:w="1"/><text x="57.9611%" y="463.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="57.7292%" y="501" width="0.0181%" height="15" fill="rgb(209,50,18)" fg:x="3193" fg:w="1"/><text x="57.9792%" y="511.50"></text></g><g><title>__memmove_avx_unaligned_erms (1 samples, 0.02%)</title><rect x="57.7292%" y="485" width="0.0181%" height="15" fill="rgb(250,19,35)" fg:x="3193" fg:w="1"/><text x="57.9792%" y="495.50"></text></g><g><title>&lt;&amp;mut W as core::fmt::Write&gt;::write_str (7 samples, 0.13%)</title><rect x="57.6568%" y="597" width="0.1266%" height="15" fill="rgb(253,107,29)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="607.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Write&gt;::write_str (7 samples, 0.13%)</title><rect x="57.6568%" y="581" width="0.1266%" height="15" fill="rgb(252,179,29)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="591.50"></text></g><g><title>alloc::string::String::push_str (7 samples, 0.13%)</title><rect x="57.6568%" y="565" width="0.1266%" height="15" fill="rgb(238,194,6)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (7 samples, 0.13%)</title><rect x="57.6568%" y="549" width="0.1266%" height="15" fill="rgb(238,164,29)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="559.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 (7 samples, 0.13%)</title><rect x="57.6568%" y="533" width="0.1266%" height="15" fill="rgb(224,25,9)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (7 samples, 0.13%)</title><rect x="57.6568%" y="517" width="0.1266%" height="15" fill="rgb(244,153,23)" fg:x="3189" fg:w="7"/><text x="57.9068%" y="527.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (2 samples, 0.04%)</title><rect x="57.7472%" y="501" width="0.0362%" height="15" fill="rgb(212,203,14)" fg:x="3194" fg:w="2"/><text x="57.9972%" y="511.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (2 samples, 0.04%)</title><rect x="57.7472%" y="485" width="0.0362%" height="15" fill="rgb(220,164,20)" fg:x="3194" fg:w="2"/><text x="57.9972%" y="495.50"></text></g><g><title>core::fmt::Formatter::pad_integral (3 samples, 0.05%)</title><rect x="57.7834%" y="597" width="0.0542%" height="15" fill="rgb(222,203,48)" fg:x="3196" fg:w="3"/><text x="58.0334%" y="607.50"></text></g><g><title>core::fmt::Formatter::pad_integral::write_prefix (1 samples, 0.02%)</title><rect x="57.8196%" y="581" width="0.0181%" height="15" fill="rgb(215,159,22)" fg:x="3198" fg:w="1"/><text x="58.0696%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (4 samples, 0.07%)</title><rect x="57.8376%" y="597" width="0.0723%" height="15" fill="rgb(216,183,47)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (4 samples, 0.07%)</title><rect x="57.8376%" y="581" width="0.0723%" height="15" fill="rgb(229,195,25)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (4 samples, 0.07%)</title><rect x="57.8376%" y="565" width="0.0723%" height="15" fill="rgb(224,132,51)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="575.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.07%)</title><rect x="57.8376%" y="549" width="0.0723%" height="15" fill="rgb(240,63,7)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="559.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (4 samples, 0.07%)</title><rect x="57.8376%" y="533" width="0.0723%" height="15" fill="rgb(249,182,41)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="543.50"></text></g><g><title>alloc::alloc::dealloc (4 samples, 0.07%)</title><rect x="57.8376%" y="517" width="0.0723%" height="15" fill="rgb(243,47,26)" fg:x="3199" fg:w="4"/><text x="58.0876%" y="527.50"></text></g><g><title>_int_free (3 samples, 0.05%)</title><rect x="57.8557%" y="501" width="0.0542%" height="15" fill="rgb(233,48,2)" fg:x="3200" fg:w="3"/><text x="58.1057%" y="511.50"></text></g><g><title>&lt;core::slice::iter::IterMut&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="57.9100%" y="565" width="0.0181%" height="15" fill="rgb(244,165,34)" fg:x="3203" fg:w="1"/><text x="58.1600%" y="575.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="57.9461%" y="533" width="0.0362%" height="15" fill="rgb(207,89,7)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (2 samples, 0.04%)</title><rect x="57.9461%" y="517" width="0.0362%" height="15" fill="rgb(244,117,36)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="527.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (2 samples, 0.04%)</title><rect x="57.9461%" y="501" width="0.0362%" height="15" fill="rgb(226,144,34)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="511.50"></text></g><g><title>alloc::slice::hack::to_vec (2 samples, 0.04%)</title><rect x="57.9461%" y="485" width="0.0362%" height="15" fill="rgb(213,23,19)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="495.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (2 samples, 0.04%)</title><rect x="57.9461%" y="469" width="0.0362%" height="15" fill="rgb(217,75,12)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="57.9461%" y="453" width="0.0362%" height="15" fill="rgb(224,159,17)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="57.9461%" y="437" width="0.0362%" height="15" fill="rgb(217,118,1)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="447.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="57.9461%" y="421" width="0.0362%" height="15" fill="rgb(232,180,48)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="431.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="57.9461%" y="405" width="0.0362%" height="15" fill="rgb(230,27,33)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="415.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="57.9461%" y="389" width="0.0362%" height="15" fill="rgb(205,31,21)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="399.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="57.9461%" y="373" width="0.0362%" height="15" fill="rgb(253,59,4)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="383.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="57.9461%" y="357" width="0.0362%" height="15" fill="rgb(224,201,9)" fg:x="3205" fg:w="2"/><text x="58.1961%" y="367.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (2 samples, 0.04%)</title><rect x="57.9823%" y="533" width="0.0362%" height="15" fill="rgb(229,206,30)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="57.9823%" y="517" width="0.0362%" height="15" fill="rgb(212,67,47)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (2 samples, 0.04%)</title><rect x="57.9823%" y="501" width="0.0362%" height="15" fill="rgb(211,96,50)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (2 samples, 0.04%)</title><rect x="57.9823%" y="485" width="0.0362%" height="15" fill="rgb(252,114,18)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="495.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (2 samples, 0.04%)</title><rect x="57.9823%" y="469" width="0.0362%" height="15" fill="rgb(223,58,37)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="479.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (2 samples, 0.04%)</title><rect x="57.9823%" y="453" width="0.0362%" height="15" fill="rgb(237,70,4)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="463.50"></text></g><g><title>alloc::alloc::alloc (2 samples, 0.04%)</title><rect x="57.9823%" y="437" width="0.0362%" height="15" fill="rgb(244,85,46)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="447.50"></text></g><g><title>__GI___libc_malloc (2 samples, 0.04%)</title><rect x="57.9823%" y="421" width="0.0362%" height="15" fill="rgb(223,39,52)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="431.50"></text></g><g><title>checked_request2size (2 samples, 0.04%)</title><rect x="57.9823%" y="405" width="0.0362%" height="15" fill="rgb(218,200,14)" fg:x="3207" fg:w="2"/><text x="58.2323%" y="415.50"></text></g><g><title>&lt;T as alloc::string::ToString&gt;::to_string (32 samples, 0.58%)</title><rect x="57.4941%" y="661" width="0.5786%" height="15" fill="rgb(208,171,16)" fg:x="3180" fg:w="32"/><text x="57.7441%" y="671.50"></text></g><g><title>core::fmt::Write::write_fmt (32 samples, 0.58%)</title><rect x="57.4941%" y="645" width="0.5786%" height="15" fill="rgb(234,200,18)" fg:x="3180" fg:w="32"/><text x="57.7441%" y="655.50"></text></g><g><title>core::fmt::write (31 samples, 0.56%)</title><rect x="57.5122%" y="629" width="0.5605%" height="15" fill="rgb(228,45,11)" fg:x="3181" fg:w="31"/><text x="57.7622%" y="639.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::fmt::Display&gt;::fmt (24 samples, 0.43%)</title><rect x="57.6388%" y="613" width="0.4339%" height="15" fill="rgb(237,182,11)" fg:x="3188" fg:w="24"/><text x="57.8888%" y="623.50"></text></g><g><title>num_bigint::biguint::BigUint::to_str_radix (9 samples, 0.16%)</title><rect x="57.9100%" y="597" width="0.1627%" height="15" fill="rgb(241,175,49)" fg:x="3203" fg:w="9"/><text x="58.1600%" y="607.50"></text></g><g><title>num_bigint::biguint::convert::to_str_radix_reversed (9 samples, 0.16%)</title><rect x="57.9100%" y="581" width="0.1627%" height="15" fill="rgb(247,38,35)" fg:x="3203" fg:w="9"/><text x="58.1600%" y="591.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_le (8 samples, 0.14%)</title><rect x="57.9280%" y="565" width="0.1446%" height="15" fill="rgb(228,39,49)" fg:x="3204" fg:w="8"/><text x="58.1780%" y="575.50"></text></g><g><title>num_bigint::biguint::convert::to_radix_digits_le (7 samples, 0.13%)</title><rect x="57.9461%" y="549" width="0.1266%" height="15" fill="rgb(226,101,26)" fg:x="3205" fg:w="7"/><text x="58.1961%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (3 samples, 0.05%)</title><rect x="58.0184%" y="533" width="0.0542%" height="15" fill="rgb(206,141,19)" fg:x="3209" fg:w="3"/><text x="58.2684%" y="543.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (3 samples, 0.05%)</title><rect x="58.0184%" y="517" width="0.0542%" height="15" fill="rgb(211,200,13)" fg:x="3209" fg:w="3"/><text x="58.2684%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (3 samples, 0.05%)</title><rect x="58.0184%" y="501" width="0.0542%" height="15" fill="rgb(241,121,6)" fg:x="3209" fg:w="3"/><text x="58.2684%" y="511.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (3 samples, 0.05%)</title><rect x="58.0184%" y="485" width="0.0542%" height="15" fill="rgb(234,221,29)" fg:x="3209" fg:w="3"/><text x="58.2684%" y="495.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="58.0365%" y="469" width="0.0362%" height="15" fill="rgb(229,136,5)" fg:x="3210" fg:w="2"/><text x="58.2865%" y="479.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="58.0365%" y="453" width="0.0362%" height="15" fill="rgb(238,36,11)" fg:x="3210" fg:w="2"/><text x="58.2865%" y="463.50"></text></g><g><title>__rust_dealloc (1 samples, 0.02%)</title><rect x="58.0546%" y="437" width="0.0181%" height="15" fill="rgb(251,55,41)" fg:x="3211" fg:w="1"/><text x="58.3046%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::set_len (1 samples, 0.02%)</title><rect x="58.0727%" y="597" width="0.0181%" height="15" fill="rgb(242,34,40)" fg:x="3212" fg:w="1"/><text x="58.3227%" y="607.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="58.1812%" y="485" width="0.0181%" height="15" fill="rgb(215,42,17)" fg:x="3218" fg:w="1"/><text x="58.4312%" y="495.50"></text></g><g><title>__GI___libc_malloc (5 samples, 0.09%)</title><rect x="58.1450%" y="501" width="0.0904%" height="15" fill="rgb(207,44,46)" fg:x="3216" fg:w="5"/><text x="58.3950%" y="511.50"></text></g><g><title>tcache_get (2 samples, 0.04%)</title><rect x="58.1992%" y="485" width="0.0362%" height="15" fill="rgb(211,206,28)" fg:x="3219" fg:w="2"/><text x="58.4492%" y="495.50"></text></g><g><title>__rdl_alloc (1 samples, 0.02%)</title><rect x="58.2354%" y="501" width="0.0181%" height="15" fill="rgb(237,167,16)" fg:x="3221" fg:w="1"/><text x="58.4854%" y="511.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc (1 samples, 0.02%)</title><rect x="58.2354%" y="485" width="0.0181%" height="15" fill="rgb(233,66,6)" fg:x="3221" fg:w="1"/><text x="58.4854%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (10 samples, 0.18%)</title><rect x="58.0908%" y="597" width="0.1808%" height="15" fill="rgb(246,123,29)" fg:x="3213" fg:w="10"/><text x="58.3408%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (10 samples, 0.18%)</title><rect x="58.0908%" y="581" width="0.1808%" height="15" fill="rgb(209,62,40)" fg:x="3213" fg:w="10"/><text x="58.3408%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (10 samples, 0.18%)</title><rect x="58.0908%" y="565" width="0.1808%" height="15" fill="rgb(218,4,25)" fg:x="3213" fg:w="10"/><text x="58.3408%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (10 samples, 0.18%)</title><rect x="58.0908%" y="549" width="0.1808%" height="15" fill="rgb(253,91,49)" fg:x="3213" fg:w="10"/><text x="58.3408%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (10 samples, 0.18%)</title><rect x="58.0908%" y="533" width="0.1808%" height="15" fill="rgb(228,155,29)" fg:x="3213" fg:w="10"/><text x="58.3408%" y="543.50"></text></g><g><title>alloc::alloc::alloc (8 samples, 0.14%)</title><rect x="58.1269%" y="517" width="0.1446%" height="15" fill="rgb(243,57,37)" fg:x="3215" fg:w="8"/><text x="58.3769%" y="527.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="58.2535%" y="501" width="0.0181%" height="15" fill="rgb(244,167,17)" fg:x="3222" fg:w="1"/><text x="58.5035%" y="511.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (12 samples, 0.22%)</title><rect x="58.0727%" y="661" width="0.2170%" height="15" fill="rgb(207,181,38)" fg:x="3212" fg:w="12"/><text x="58.3227%" y="671.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (12 samples, 0.22%)</title><rect x="58.0727%" y="645" width="0.2170%" height="15" fill="rgb(211,8,23)" fg:x="3212" fg:w="12"/><text x="58.3227%" y="655.50"></text></g><g><title>alloc::slice::hack::to_vec (12 samples, 0.22%)</title><rect x="58.0727%" y="629" width="0.2170%" height="15" fill="rgb(235,11,44)" fg:x="3212" fg:w="12"/><text x="58.3227%" y="639.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (12 samples, 0.22%)</title><rect x="58.0727%" y="613" width="0.2170%" height="15" fill="rgb(248,18,52)" fg:x="3212" fg:w="12"/><text x="58.3227%" y="623.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="58.2716%" y="597" width="0.0181%" height="15" fill="rgb(208,4,7)" fg:x="3223" fg:w="1"/><text x="58.5216%" y="607.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="58.2716%" y="581" width="0.0181%" height="15" fill="rgb(240,17,39)" fg:x="3223" fg:w="1"/><text x="58.5216%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="469" width="0.0181%" height="15" fill="rgb(207,170,3)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="453" width="0.0181%" height="15" fill="rgb(236,100,52)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="437" width="0.0181%" height="15" fill="rgb(246,78,51)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="421" width="0.0181%" height="15" fill="rgb(211,17,15)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="405" width="0.0181%" height="15" fill="rgb(209,59,46)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="389" width="0.0181%" height="15" fill="rgb(210,92,25)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="373" width="0.0181%" height="15" fill="rgb(238,174,52)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="357" width="0.0181%" height="15" fill="rgb(230,73,7)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="341" width="0.0181%" height="15" fill="rgb(243,124,40)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="325" width="0.0181%" height="15" fill="rgb(244,170,11)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="58.3258%" y="309" width="0.0181%" height="15" fill="rgb(207,114,54)" fg:x="3226" fg:w="1"/><text x="58.5758%" y="319.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="58.3439%" y="469" width="0.0181%" height="15" fill="rgb(205,42,20)" fg:x="3227" fg:w="1"/><text x="58.5939%" y="479.50"></text></g><g><title>__GI___libc_malloc (5 samples, 0.09%)</title><rect x="58.2896%" y="485" width="0.0904%" height="15" fill="rgb(230,30,28)" fg:x="3224" fg:w="5"/><text x="58.5396%" y="495.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="58.3620%" y="469" width="0.0181%" height="15" fill="rgb(205,73,54)" fg:x="3228" fg:w="1"/><text x="58.6120%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (6 samples, 0.11%)</title><rect x="58.2896%" y="581" width="0.1085%" height="15" fill="rgb(254,227,23)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (6 samples, 0.11%)</title><rect x="58.2896%" y="565" width="0.1085%" height="15" fill="rgb(228,202,34)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (6 samples, 0.11%)</title><rect x="58.2896%" y="549" width="0.1085%" height="15" fill="rgb(222,225,37)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="559.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (6 samples, 0.11%)</title><rect x="58.2896%" y="533" width="0.1085%" height="15" fill="rgb(221,14,54)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="543.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (6 samples, 0.11%)</title><rect x="58.2896%" y="517" width="0.1085%" height="15" fill="rgb(254,102,2)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="527.50"></text></g><g><title>alloc::alloc::alloc (6 samples, 0.11%)</title><rect x="58.2896%" y="501" width="0.1085%" height="15" fill="rgb(232,104,17)" fg:x="3224" fg:w="6"/><text x="58.5396%" y="511.50"></text></g><g><title>__rust_alloc (1 samples, 0.02%)</title><rect x="58.3800%" y="485" width="0.0181%" height="15" fill="rgb(250,220,14)" fg:x="3229" fg:w="1"/><text x="58.6300%" y="495.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (7 samples, 0.13%)</title><rect x="58.2896%" y="661" width="0.1266%" height="15" fill="rgb(241,158,9)" fg:x="3224" fg:w="7"/><text x="58.5396%" y="671.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (7 samples, 0.13%)</title><rect x="58.2896%" y="645" width="0.1266%" height="15" fill="rgb(246,9,43)" fg:x="3224" fg:w="7"/><text x="58.5396%" y="655.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (7 samples, 0.13%)</title><rect x="58.2896%" y="629" width="0.1266%" height="15" fill="rgb(206,73,33)" fg:x="3224" fg:w="7"/><text x="58.5396%" y="639.50"></text></g><g><title>alloc::slice::hack::to_vec (7 samples, 0.13%)</title><rect x="58.2896%" y="613" width="0.1266%" height="15" fill="rgb(222,79,8)" fg:x="3224" fg:w="7"/><text x="58.5396%" y="623.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (7 samples, 0.13%)</title><rect x="58.2896%" y="597" width="0.1266%" height="15" fill="rgb(234,8,54)" fg:x="3224" fg:w="7"/><text x="58.5396%" y="607.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="58.3981%" y="581" width="0.0181%" height="15" fill="rgb(209,134,38)" fg:x="3230" fg:w="1"/><text x="58.6481%" y="591.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="58.3981%" y="565" width="0.0181%" height="15" fill="rgb(230,127,29)" fg:x="3230" fg:w="1"/><text x="58.6481%" y="575.50"></text></g><g><title>__GI___libc_free (5 samples, 0.09%)</title><rect x="58.4162%" y="661" width="0.0904%" height="15" fill="rgb(242,44,41)" fg:x="3231" fg:w="5"/><text x="58.6662%" y="671.50"></text></g><g><title>__rust_dealloc (1 samples, 0.02%)</title><rect x="58.5066%" y="661" width="0.0181%" height="15" fill="rgb(222,56,43)" fg:x="3236" fg:w="1"/><text x="58.7566%" y="671.50"></text></g><g><title>_int_free (16 samples, 0.29%)</title><rect x="58.5247%" y="661" width="0.2893%" height="15" fill="rgb(238,39,47)" fg:x="3237" fg:w="16"/><text x="58.7747%" y="671.50"></text></g><g><title>free_perturb (3 samples, 0.05%)</title><rect x="58.7597%" y="645" width="0.0542%" height="15" fill="rgb(226,79,43)" fg:x="3250" fg:w="3"/><text x="59.0097%" y="655.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (1 samples, 0.02%)</title><rect x="58.8320%" y="645" width="0.0181%" height="15" fill="rgb(242,105,53)" fg:x="3254" fg:w="1"/><text x="59.0820%" y="655.50"></text></g><g><title>__memmove_avx_unaligned_erms (2 samples, 0.04%)</title><rect x="58.9044%" y="485" width="0.0362%" height="15" fill="rgb(251,132,46)" fg:x="3258" fg:w="2"/><text x="59.1544%" y="495.50"></text></g><g><title>_int_free (3 samples, 0.05%)</title><rect x="58.9405%" y="485" width="0.0542%" height="15" fill="rgb(231,77,14)" fg:x="3260" fg:w="3"/><text x="59.1905%" y="495.50"></text></g><g><title>alloc_perturb (1 samples, 0.02%)</title><rect x="59.0309%" y="469" width="0.0181%" height="15" fill="rgb(240,135,9)" fg:x="3265" fg:w="1"/><text x="59.2809%" y="479.50"></text></g><g><title>get_max_fast (1 samples, 0.02%)</title><rect x="59.0490%" y="469" width="0.0181%" height="15" fill="rgb(248,109,14)" fg:x="3266" fg:w="1"/><text x="59.2990%" y="479.50"></text></g><g><title>__GI___libc_realloc (13 samples, 0.24%)</title><rect x="58.8501%" y="517" width="0.2350%" height="15" fill="rgb(227,146,52)" fg:x="3255" fg:w="13"/><text x="59.1001%" y="527.50"></text></g><g><title>_int_realloc (12 samples, 0.22%)</title><rect x="58.8682%" y="501" width="0.2170%" height="15" fill="rgb(232,54,3)" fg:x="3256" fg:w="12"/><text x="59.1182%" y="511.50"></text></g><g><title>_int_malloc (5 samples, 0.09%)</title><rect x="58.9948%" y="485" width="0.0904%" height="15" fill="rgb(229,201,43)" fg:x="3263" fg:w="5"/><text x="59.2448%" y="495.50"></text></g><g><title>tcache_put (1 samples, 0.02%)</title><rect x="59.0671%" y="469" width="0.0181%" height="15" fill="rgb(252,161,33)" fg:x="3267" fg:w="1"/><text x="59.3171%" y="479.50"></text></g><g><title>__rdl_realloc (1 samples, 0.02%)</title><rect x="59.0852%" y="517" width="0.0181%" height="15" fill="rgb(226,146,40)" fg:x="3268" fg:w="1"/><text x="59.3352%" y="527.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::realloc (1 samples, 0.02%)</title><rect x="59.0852%" y="501" width="0.0181%" height="15" fill="rgb(219,47,25)" fg:x="3268" fg:w="1"/><text x="59.3352%" y="511.50"></text></g><g><title>alloc::raw_vec::finish_grow (15 samples, 0.27%)</title><rect x="58.8501%" y="581" width="0.2712%" height="15" fill="rgb(250,135,13)" fg:x="3255" fg:w="15"/><text x="59.1001%" y="591.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::grow (15 samples, 0.27%)</title><rect x="58.8501%" y="565" width="0.2712%" height="15" fill="rgb(219,229,18)" fg:x="3255" fg:w="15"/><text x="59.1001%" y="575.50"></text></g><g><title>alloc::alloc::Global::grow_impl (15 samples, 0.27%)</title><rect x="58.8501%" y="549" width="0.2712%" height="15" fill="rgb(217,152,27)" fg:x="3255" fg:w="15"/><text x="59.1001%" y="559.50"></text></g><g><title>alloc::alloc::realloc (15 samples, 0.27%)</title><rect x="58.8501%" y="533" width="0.2712%" height="15" fill="rgb(225,71,47)" fg:x="3255" fg:w="15"/><text x="59.1001%" y="543.50"></text></g><g><title>__rust_realloc (1 samples, 0.02%)</title><rect x="59.1032%" y="517" width="0.0181%" height="15" fill="rgb(220,139,14)" fg:x="3269" fg:w="1"/><text x="59.3532%" y="527.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="59.1213%" y="581" width="0.0181%" height="15" fill="rgb(247,54,32)" fg:x="3270" fg:w="1"/><text x="59.3713%" y="591.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="59.1213%" y="565" width="0.0181%" height="15" fill="rgb(252,131,39)" fg:x="3270" fg:w="1"/><text x="59.3713%" y="575.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="59.1213%" y="549" width="0.0181%" height="15" fill="rgb(210,108,39)" fg:x="3270" fg:w="1"/><text x="59.3713%" y="559.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="59.1213%" y="533" width="0.0181%" height="15" fill="rgb(205,23,29)" fg:x="3270" fg:w="1"/><text x="59.3713%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (19 samples, 0.34%)</title><rect x="58.8140%" y="661" width="0.3435%" height="15" fill="rgb(246,139,46)" fg:x="3253" fg:w="19"/><text x="59.0640%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (17 samples, 0.31%)</title><rect x="58.8501%" y="645" width="0.3074%" height="15" fill="rgb(250,81,26)" fg:x="3255" fg:w="17"/><text x="59.1001%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (17 samples, 0.31%)</title><rect x="58.8501%" y="629" width="0.3074%" height="15" fill="rgb(214,104,7)" fg:x="3255" fg:w="17"/><text x="59.1001%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (17 samples, 0.31%)</title><rect x="58.8501%" y="613" width="0.3074%" height="15" fill="rgb(233,189,8)" fg:x="3255" fg:w="17"/><text x="59.1001%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (17 samples, 0.31%)</title><rect x="58.8501%" y="597" width="0.3074%" height="15" fill="rgb(228,141,17)" fg:x="3255" fg:w="17"/><text x="59.1001%" y="607.50"></text></g><g><title>core::cmp::max (1 samples, 0.02%)</title><rect x="59.1394%" y="581" width="0.0181%" height="15" fill="rgb(247,157,1)" fg:x="3271" fg:w="1"/><text x="59.3894%" y="591.50"></text></g><g><title>core::cmp::Ord::max (1 samples, 0.02%)</title><rect x="59.1394%" y="565" width="0.0181%" height="15" fill="rgb(249,225,5)" fg:x="3271" fg:w="1"/><text x="59.3894%" y="575.50"></text></g><g><title>core::cmp::max_by (1 samples, 0.02%)</title><rect x="59.1394%" y="549" width="0.0181%" height="15" fill="rgb(242,55,13)" fg:x="3271" fg:w="1"/><text x="59.3894%" y="559.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 (1 samples, 0.02%)</title><rect x="59.1575%" y="661" width="0.0181%" height="15" fill="rgb(230,49,50)" fg:x="3272" fg:w="1"/><text x="59.4075%" y="671.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (3 samples, 0.05%)</title><rect x="59.1756%" y="661" width="0.0542%" height="15" fill="rgb(241,111,38)" fg:x="3273" fg:w="3"/><text x="59.4256%" y="671.50"></text></g><g><title>phone_encoder::print_translations::{{closure}} (3 samples, 0.05%)</title><rect x="59.1756%" y="645" width="0.0542%" height="15" fill="rgb(252,155,4)" fg:x="3273" fg:w="3"/><text x="59.4256%" y="655.50"></text></g><g><title>phone_encoder::is_digit (3 samples, 0.05%)</title><rect x="59.1756%" y="629" width="0.0542%" height="15" fill="rgb(212,69,32)" fg:x="3273" fg:w="3"/><text x="59.4256%" y="639.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="59.2298%" y="565" width="0.0181%" height="15" fill="rgb(243,107,47)" fg:x="3276" fg:w="1"/><text x="59.4798%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (2 samples, 0.04%)</title><rect x="59.2298%" y="661" width="0.0362%" height="15" fill="rgb(247,130,12)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="59.2298%" y="645" width="0.0362%" height="15" fill="rgb(233,74,16)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="59.2298%" y="629" width="0.0362%" height="15" fill="rgb(208,58,18)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="639.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="59.2298%" y="613" width="0.0362%" height="15" fill="rgb(242,225,1)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="59.2298%" y="597" width="0.0362%" height="15" fill="rgb(249,39,40)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="607.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="59.2298%" y="581" width="0.0362%" height="15" fill="rgb(207,72,44)" fg:x="3276" fg:w="2"/><text x="59.4798%" y="591.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="59.2479%" y="565" width="0.0181%" height="15" fill="rgb(215,193,12)" fg:x="3277" fg:w="1"/><text x="59.4979%" y="575.50"></text></g><g><title>__GI___libc_free (4 samples, 0.07%)</title><rect x="59.3564%" y="565" width="0.0723%" height="15" fill="rgb(248,41,39)" fg:x="3283" fg:w="4"/><text x="59.6064%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (27 samples, 0.49%)</title><rect x="59.2660%" y="661" width="0.4882%" height="15" fill="rgb(253,85,4)" fg:x="3278" fg:w="27"/><text x="59.5160%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (27 samples, 0.49%)</title><rect x="59.2660%" y="645" width="0.4882%" height="15" fill="rgb(243,70,31)" fg:x="3278" fg:w="27"/><text x="59.5160%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (27 samples, 0.49%)</title><rect x="59.2660%" y="629" width="0.4882%" height="15" fill="rgb(253,195,26)" fg:x="3278" fg:w="27"/><text x="59.5160%" y="639.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (27 samples, 0.49%)</title><rect x="59.2660%" y="613" width="0.4882%" height="15" fill="rgb(243,42,11)" fg:x="3278" fg:w="27"/><text x="59.5160%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (22 samples, 0.40%)</title><rect x="59.3564%" y="597" width="0.3978%" height="15" fill="rgb(239,66,17)" fg:x="3283" fg:w="22"/><text x="59.6064%" y="607.50"></text></g><g><title>alloc::alloc::dealloc (22 samples, 0.40%)</title><rect x="59.3564%" y="581" width="0.3978%" height="15" fill="rgb(217,132,21)" fg:x="3283" fg:w="22"/><text x="59.6064%" y="591.50"></text></g><g><title>_int_free (18 samples, 0.33%)</title><rect x="59.4287%" y="565" width="0.3254%" height="15" fill="rgb(252,202,21)" fg:x="3287" fg:w="18"/><text x="59.6787%" y="575.50"></text></g><g><title>tcache_put (3 samples, 0.05%)</title><rect x="59.6999%" y="549" width="0.0542%" height="15" fill="rgb(233,98,36)" fg:x="3302" fg:w="3"/><text x="59.9499%" y="559.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="59.8807%" y="613" width="0.0181%" height="15" fill="rgb(216,153,54)" fg:x="3312" fg:w="1"/><text x="60.1307%" y="623.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.02%)</title><rect x="59.8807%" y="597" width="0.0181%" height="15" fill="rgb(250,99,7)" fg:x="3312" fg:w="1"/><text x="60.1307%" y="607.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (10 samples, 0.18%)</title><rect x="59.7541%" y="661" width="0.1808%" height="15" fill="rgb(207,56,50)" fg:x="3305" fg:w="10"/><text x="60.0041%" y="671.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::AddAssign&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add_assign (8 samples, 0.14%)</title><rect x="59.7903%" y="645" width="0.1446%" height="15" fill="rgb(244,61,34)" fg:x="3307" fg:w="8"/><text x="60.0403%" y="655.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (3 samples, 0.05%)</title><rect x="59.8807%" y="629" width="0.0542%" height="15" fill="rgb(241,50,38)" fg:x="3312" fg:w="3"/><text x="60.1307%" y="639.50"></text></g><g><title>num_bigint::biguint::addition::adc (2 samples, 0.04%)</title><rect x="59.8988%" y="613" width="0.0362%" height="15" fill="rgb(212,166,30)" fg:x="3313" fg:w="2"/><text x="60.1488%" y="623.50"></text></g><g><title>core::core_arch::x86_64::adx::_addcarry_u64 (2 samples, 0.04%)</title><rect x="59.8988%" y="597" width="0.0362%" height="15" fill="rgb(249,127,32)" fg:x="3313" fg:w="2"/><text x="60.1488%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.02%)</title><rect x="59.9349%" y="645" width="0.0181%" height="15" fill="rgb(209,103,0)" fg:x="3315" fg:w="1"/><text x="60.1849%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="59.9349%" y="629" width="0.0181%" height="15" fill="rgb(238,209,51)" fg:x="3315" fg:w="1"/><text x="60.1849%" y="639.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="59.9349%" y="613" width="0.0181%" height="15" fill="rgb(237,56,23)" fg:x="3315" fg:w="1"/><text x="60.1849%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="60.4592%" y="485" width="0.0181%" height="15" fill="rgb(215,153,46)" fg:x="3344" fg:w="1"/><text x="60.7092%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="60.4592%" y="469" width="0.0181%" height="15" fill="rgb(224,49,31)" fg:x="3344" fg:w="1"/><text x="60.7092%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="60.4592%" y="453" width="0.0181%" height="15" fill="rgb(250,18,42)" fg:x="3344" fg:w="1"/><text x="60.7092%" y="463.50"></text></g><g><title>alloc_perturb (2 samples, 0.04%)</title><rect x="60.4773%" y="485" width="0.0362%" height="15" fill="rgb(215,176,39)" fg:x="3345" fg:w="2"/><text x="60.7273%" y="495.50"></text></g><g><title>__libc_calloc (32 samples, 0.58%)</title><rect x="59.9530%" y="517" width="0.5786%" height="15" fill="rgb(223,77,29)" fg:x="3316" fg:w="32"/><text x="60.2030%" y="527.50"></text></g><g><title>_int_malloc (20 samples, 0.36%)</title><rect x="60.1700%" y="501" width="0.3616%" height="15" fill="rgb(234,94,52)" fg:x="3328" fg:w="20"/><text x="60.4200%" y="511.50"></text></g><g><title>checked_request2size (1 samples, 0.02%)</title><rect x="60.5135%" y="485" width="0.0181%" height="15" fill="rgb(220,154,50)" fg:x="3347" fg:w="1"/><text x="60.7635%" y="495.50"></text></g><g><title>__rdl_alloc_zeroed (1 samples, 0.02%)</title><rect x="60.5315%" y="517" width="0.0181%" height="15" fill="rgb(212,11,10)" fg:x="3348" fg:w="1"/><text x="60.7815%" y="527.50"></text></g><g><title>std::sys::unix::alloc::&lt;impl core::alloc::global::GlobalAlloc for std::alloc::System&gt;::alloc_zeroed (1 samples, 0.02%)</title><rect x="60.5315%" y="501" width="0.0181%" height="15" fill="rgb(205,166,19)" fg:x="3348" fg:w="1"/><text x="60.7815%" y="511.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (34 samples, 0.61%)</title><rect x="59.9530%" y="565" width="0.6147%" height="15" fill="rgb(244,198,16)" fg:x="3316" fg:w="34"/><text x="60.2030%" y="575.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (34 samples, 0.61%)</title><rect x="59.9530%" y="549" width="0.6147%" height="15" fill="rgb(219,69,12)" fg:x="3316" fg:w="34"/><text x="60.2030%" y="559.50"></text></g><g><title>alloc::alloc::alloc_zeroed (34 samples, 0.61%)</title><rect x="59.9530%" y="533" width="0.6147%" height="15" fill="rgb(245,30,7)" fg:x="3316" fg:w="34"/><text x="60.2030%" y="543.50"></text></g><g><title>__rust_alloc_zeroed (1 samples, 0.02%)</title><rect x="60.5496%" y="517" width="0.0181%" height="15" fill="rgb(218,221,48)" fg:x="3349" fg:w="1"/><text x="60.7996%" y="527.50"></text></g><g><title>alloc::vec::from_elem (35 samples, 0.63%)</title><rect x="59.9530%" y="629" width="0.6328%" height="15" fill="rgb(216,66,15)" fg:x="3316" fg:w="35"/><text x="60.2030%" y="639.50"></text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (35 samples, 0.63%)</title><rect x="59.9530%" y="613" width="0.6328%" height="15" fill="rgb(226,122,50)" fg:x="3316" fg:w="35"/><text x="60.2030%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (35 samples, 0.63%)</title><rect x="59.9530%" y="597" width="0.6328%" height="15" fill="rgb(239,156,16)" fg:x="3316" fg:w="35"/><text x="60.2030%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (35 samples, 0.63%)</title><rect x="59.9530%" y="581" width="0.6328%" height="15" fill="rgb(224,27,38)" fg:x="3316" fg:w="35"/><text x="60.2030%" y="591.50"></text></g><g><title>core::alloc::layout::Layout::array (1 samples, 0.02%)</title><rect x="60.5677%" y="565" width="0.0181%" height="15" fill="rgb(224,39,27)" fg:x="3350" fg:w="1"/><text x="60.8177%" y="575.50"></text></g><g><title>core::alloc::layout::Layout::repeat (1 samples, 0.02%)</title><rect x="60.5677%" y="549" width="0.0181%" height="15" fill="rgb(215,92,29)" fg:x="3350" fg:w="1"/><text x="60.8177%" y="559.50"></text></g><g><title>core::num::&lt;impl usize&gt;::checked_mul (1 samples, 0.02%)</title><rect x="60.5677%" y="533" width="0.0181%" height="15" fill="rgb(207,159,16)" fg:x="3350" fg:w="1"/><text x="60.8177%" y="543.50"></text></g><g><title>core::num::&lt;impl usize&gt;::overflowing_mul (1 samples, 0.02%)</title><rect x="60.5677%" y="517" width="0.0181%" height="15" fill="rgb(238,163,47)" fg:x="3350" fg:w="1"/><text x="60.8177%" y="527.50"></text></g><g><title>num_bigint::biguint::BigUint::normalized (2 samples, 0.04%)</title><rect x="60.5858%" y="629" width="0.0362%" height="15" fill="rgb(219,91,49)" fg:x="3351" fg:w="2"/><text x="60.8358%" y="639.50"></text></g><g><title>num_bigint::biguint::BigUint::normalize (1 samples, 0.02%)</title><rect x="60.6039%" y="613" width="0.0181%" height="15" fill="rgb(227,167,31)" fg:x="3352" fg:w="1"/><text x="60.8539%" y="623.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::IndexMut&lt;I&gt; for [T]&gt;::index_mut (5 samples, 0.09%)</title><rect x="60.8027%" y="613" width="0.0904%" height="15" fill="rgb(234,80,54)" fg:x="3363" fg:w="5"/><text x="61.0527%" y="623.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index_mut (5 samples, 0.09%)</title><rect x="60.8027%" y="597" width="0.0904%" height="15" fill="rgb(212,114,2)" fg:x="3363" fg:w="5"/><text x="61.0527%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.07%)</title><rect x="60.9293%" y="597" width="0.0723%" height="15" fill="rgb(234,50,24)" fg:x="3370" fg:w="4"/><text x="61.1793%" y="607.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (4 samples, 0.07%)</title><rect x="60.9293%" y="581" width="0.0723%" height="15" fill="rgb(221,68,8)" fg:x="3370" fg:w="4"/><text x="61.1793%" y="591.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (60 samples, 1.08%)</title><rect x="59.9349%" y="661" width="1.0848%" height="15" fill="rgb(254,180,31)" fg:x="3315" fg:w="60"/><text x="60.1849%" y="671.50"></text></g><g><title>num_bigint::biguint::multiplication::mul3 (59 samples, 1.07%)</title><rect x="59.9530%" y="645" width="1.0667%" height="15" fill="rgb(247,130,50)" fg:x="3316" fg:w="59"/><text x="60.2030%" y="655.50"></text></g><g><title>num_bigint::biguint::multiplication::mac3 (22 samples, 0.40%)</title><rect x="60.6219%" y="629" width="0.3978%" height="15" fill="rgb(211,109,4)" fg:x="3353" fg:w="22"/><text x="60.8719%" y="639.50"></text></g><g><title>num_bigint::biguint::multiplication::mac_digit (7 samples, 0.13%)</title><rect x="60.8931%" y="613" width="0.1266%" height="15" fill="rgb(238,50,21)" fg:x="3368" fg:w="7"/><text x="61.1431%" y="623.50"></text></g><g><title>num_bigint::biguint::addition::__add2 (1 samples, 0.02%)</title><rect x="61.0016%" y="597" width="0.0181%" height="15" fill="rgb(225,57,45)" fg:x="3374" fg:w="1"/><text x="61.2516%" y="607.50"></text></g><g><title>core::slice::&lt;impl [T]&gt;::split_at_mut (1 samples, 0.02%)</title><rect x="61.0016%" y="581" width="0.0181%" height="15" fill="rgb(209,196,50)" fg:x="3374" fg:w="1"/><text x="61.2516%" y="591.50"></text></g><g><title>core::option::Option&lt;T&gt;::unwrap (2 samples, 0.04%)</title><rect x="61.0378%" y="645" width="0.0362%" height="15" fill="rgb(242,140,13)" fg:x="3376" fg:w="2"/><text x="61.2878%" y="655.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as num_traits::identities::Zero&gt;::zero (4 samples, 0.07%)</title><rect x="61.0739%" y="549" width="0.0723%" height="15" fill="rgb(217,111,7)" fg:x="3378" fg:w="4"/><text x="61.3239%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::set_ptr (1 samples, 0.02%)</title><rect x="61.2547%" y="469" width="0.0181%" height="15" fill="rgb(253,193,51)" fg:x="3388" fg:w="1"/><text x="61.5047%" y="479.50"></text></g><g><title>checked_request2size (4 samples, 0.07%)</title><rect x="61.4355%" y="437" width="0.0723%" height="15" fill="rgb(252,70,29)" fg:x="3398" fg:w="4"/><text x="61.6855%" y="447.50"></text></g><g><title>__GI___libc_malloc (9 samples, 0.16%)</title><rect x="61.4175%" y="453" width="0.1627%" height="15" fill="rgb(232,127,12)" fg:x="3397" fg:w="9"/><text x="61.6675%" y="463.50"></text></g><g><title>tcache_get (4 samples, 0.07%)</title><rect x="61.5079%" y="437" width="0.0723%" height="15" fill="rgb(211,180,21)" fg:x="3402" fg:w="4"/><text x="61.7579%" y="447.50"></text></g><g><title>alloc::raw_vec::finish_grow (19 samples, 0.34%)</title><rect x="61.2728%" y="469" width="0.3435%" height="15" fill="rgb(229,72,13)" fg:x="3389" fg:w="19"/><text x="61.5228%" y="479.50"></text></g><g><title>__rust_alloc (2 samples, 0.04%)</title><rect x="61.5802%" y="453" width="0.0362%" height="15" fill="rgb(240,211,49)" fg:x="3406" fg:w="2"/><text x="61.8302%" y="463.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (25 samples, 0.45%)</title><rect x="61.2367%" y="485" width="0.4520%" height="15" fill="rgb(219,149,40)" fg:x="3387" fg:w="25"/><text x="61.4867%" y="495.50"></text></g><g><title>core::cmp::max (4 samples, 0.07%)</title><rect x="61.6163%" y="469" width="0.0723%" height="15" fill="rgb(210,127,46)" fg:x="3408" fg:w="4"/><text x="61.8663%" y="479.50"></text></g><g><title>core::cmp::Ord::max (4 samples, 0.07%)</title><rect x="61.6163%" y="453" width="0.0723%" height="15" fill="rgb(220,106,7)" fg:x="3408" fg:w="4"/><text x="61.8663%" y="463.50"></text></g><g><title>core::cmp::max_by (4 samples, 0.07%)</title><rect x="61.6163%" y="437" width="0.0723%" height="15" fill="rgb(249,31,22)" fg:x="3408" fg:w="4"/><text x="61.8663%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (29 samples, 0.52%)</title><rect x="61.1824%" y="533" width="0.5243%" height="15" fill="rgb(253,1,49)" fg:x="3384" fg:w="29"/><text x="61.4324%" y="543.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (29 samples, 0.52%)</title><rect x="61.1824%" y="517" width="0.5243%" height="15" fill="rgb(227,144,33)" fg:x="3384" fg:w="29"/><text x="61.4324%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (29 samples, 0.52%)</title><rect x="61.1824%" y="501" width="0.5243%" height="15" fill="rgb(249,163,44)" fg:x="3384" fg:w="29"/><text x="61.4324%" y="511.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="61.6887%" y="485" width="0.0181%" height="15" fill="rgb(234,15,39)" fg:x="3412" fg:w="1"/><text x="61.9387%" y="495.50"></text></g><g><title>phone_encoder::nth_digit (39 samples, 0.71%)</title><rect x="61.0197%" y="661" width="0.7051%" height="15" fill="rgb(207,66,16)" fg:x="3375" fg:w="39"/><text x="61.2697%" y="671.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (36 samples, 0.65%)</title><rect x="61.0739%" y="645" width="0.6509%" height="15" fill="rgb(233,112,24)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="655.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (36 samples, 0.65%)</title><rect x="61.0739%" y="629" width="0.6509%" height="15" fill="rgb(230,90,22)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="639.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (36 samples, 0.65%)</title><rect x="61.0739%" y="613" width="0.6509%" height="15" fill="rgb(229,61,13)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="623.50"></text></g><g><title>core::ops::function::FnOnce::call_once (36 samples, 0.65%)</title><rect x="61.0739%" y="597" width="0.6509%" height="15" fill="rgb(225,57,24)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="607.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (36 samples, 0.65%)</title><rect x="61.0739%" y="581" width="0.6509%" height="15" fill="rgb(208,169,48)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="591.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (36 samples, 0.65%)</title><rect x="61.0739%" y="565" width="0.6509%" height="15" fill="rgb(244,218,51)" fg:x="3378" fg:w="36"/><text x="61.3239%" y="575.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (32 samples, 0.58%)</title><rect x="61.1463%" y="549" width="0.5786%" height="15" fill="rgb(214,148,10)" fg:x="3382" fg:w="32"/><text x="61.3963%" y="559.50"></text></g><g><title>core::ptr::write (1 samples, 0.02%)</title><rect x="61.7067%" y="533" width="0.0181%" height="15" fill="rgb(225,174,27)" fg:x="3413" fg:w="1"/><text x="61.9567%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::is_empty (1 samples, 0.02%)</title><rect x="61.7248%" y="645" width="0.0181%" height="15" fill="rgb(230,96,26)" fg:x="3414" fg:w="1"/><text x="61.9748%" y="655.50"></text></g><g><title>core::fmt::Arguments::new_v1 (1 samples, 0.02%)</title><rect x="61.7429%" y="645" width="0.0181%" height="15" fill="rgb(232,10,30)" fg:x="3415" fg:w="1"/><text x="61.9929%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (14 samples, 0.25%)</title><rect x="61.9418%" y="581" width="0.2531%" height="15" fill="rgb(222,8,50)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (14 samples, 0.25%)</title><rect x="61.9418%" y="565" width="0.2531%" height="15" fill="rgb(213,81,27)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="575.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (14 samples, 0.25%)</title><rect x="61.9418%" y="549" width="0.2531%" height="15" fill="rgb(245,50,10)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="559.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (14 samples, 0.25%)</title><rect x="61.9418%" y="533" width="0.2531%" height="15" fill="rgb(216,100,18)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="543.50"></text></g><g><title>__GI___pthread_mutex_unlock (14 samples, 0.25%)</title><rect x="61.9418%" y="517" width="0.2531%" height="15" fill="rgb(236,147,54)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="527.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (14 samples, 0.25%)</title><rect x="61.9418%" y="501" width="0.2531%" height="15" fill="rgb(205,143,26)" fg:x="3426" fg:w="14"/><text x="62.1918%" y="511.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="62.4842%" y="549" width="0.0181%" height="15" fill="rgb(236,26,9)" fg:x="3456" fg:w="1"/><text x="62.7342%" y="559.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (1 samples, 0.02%)</title><rect x="62.4842%" y="533" width="0.0181%" height="15" fill="rgb(221,165,53)" fg:x="3456" fg:w="1"/><text x="62.7342%" y="543.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (2 samples, 0.04%)</title><rect x="62.7735%" y="421" width="0.0362%" height="15" fill="rgb(214,110,17)" fg:x="3472" fg:w="2"/><text x="63.0235%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (3 samples, 0.05%)</title><rect x="62.8096%" y="421" width="0.0542%" height="15" fill="rgb(237,197,12)" fg:x="3474" fg:w="3"/><text x="63.0596%" y="431.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="62.8458%" y="405" width="0.0181%" height="15" fill="rgb(205,84,17)" fg:x="3476" fg:w="1"/><text x="63.0958%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (1 samples, 0.02%)</title><rect x="62.8458%" y="389" width="0.0181%" height="15" fill="rgb(237,18,45)" fg:x="3476" fg:w="1"/><text x="63.0958%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (1 samples, 0.02%)</title><rect x="62.8458%" y="373" width="0.0181%" height="15" fill="rgb(221,87,14)" fg:x="3476" fg:w="1"/><text x="63.0958%" y="383.50"></text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (1 samples, 0.02%)</title><rect x="62.8458%" y="357" width="0.0181%" height="15" fill="rgb(238,186,15)" fg:x="3476" fg:w="1"/><text x="63.0958%" y="367.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (21 samples, 0.38%)</title><rect x="62.6469%" y="485" width="0.3797%" height="15" fill="rgb(208,115,11)" fg:x="3465" fg:w="21"/><text x="62.8969%" y="495.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (15 samples, 0.27%)</title><rect x="62.7554%" y="469" width="0.2712%" height="15" fill="rgb(254,175,0)" fg:x="3471" fg:w="15"/><text x="63.0054%" y="479.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 (15 samples, 0.27%)</title><rect x="62.7554%" y="453" width="0.2712%" height="15" fill="rgb(227,24,42)" fg:x="3471" fg:w="15"/><text x="63.0054%" y="463.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (15 samples, 0.27%)</title><rect x="62.7554%" y="437" width="0.2712%" height="15" fill="rgb(223,211,37)" fg:x="3471" fg:w="15"/><text x="63.0054%" y="447.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (9 samples, 0.16%)</title><rect x="62.8639%" y="421" width="0.1627%" height="15" fill="rgb(235,49,27)" fg:x="3477" fg:w="9"/><text x="63.1139%" y="431.50"></text></g><g><title>__memmove_avx_unaligned_erms (9 samples, 0.16%)</title><rect x="62.8639%" y="405" width="0.1627%" height="15" fill="rgb(254,97,51)" fg:x="3477" fg:w="9"/><text x="63.1139%" y="415.50"></text></g><g><title>__libc_write (690 samples, 12.48%)</title><rect x="63.0808%" y="421" width="12.4751%" height="15" fill="rgb(249,51,40)" fg:x="3489" fg:w="690"/><text x="63.3308%" y="431.50">__libc_write</text></g><g><title>[unknown] (687 samples, 12.42%)</title><rect x="63.1351%" y="405" width="12.4209%" height="15" fill="rgb(210,128,45)" fg:x="3492" fg:w="687"/><text x="63.3851%" y="415.50">[unknown]</text></g><g><title>[unknown] (648 samples, 11.72%)</title><rect x="63.8402%" y="389" width="11.7158%" height="15" fill="rgb(224,137,50)" fg:x="3531" fg:w="648"/><text x="64.0902%" y="399.50">[unknown]</text></g><g><title>[unknown] (562 samples, 10.16%)</title><rect x="65.3950%" y="373" width="10.1609%" height="15" fill="rgb(242,15,9)" fg:x="3617" fg:w="562"/><text x="65.6450%" y="383.50">[unknown]</text></g><g><title>[unknown] (557 samples, 10.07%)</title><rect x="65.4854%" y="357" width="10.0705%" height="15" fill="rgb(233,187,41)" fg:x="3622" fg:w="557"/><text x="65.7354%" y="367.50">[unknown]</text></g><g><title>[unknown] (547 samples, 9.89%)</title><rect x="65.6662%" y="341" width="9.8897%" height="15" fill="rgb(227,2,29)" fg:x="3632" fg:w="547"/><text x="65.9162%" y="351.50">[unknown]</text></g><g><title>[unknown] (532 samples, 9.62%)</title><rect x="65.9374%" y="325" width="9.6185%" height="15" fill="rgb(222,70,3)" fg:x="3647" fg:w="532"/><text x="66.1874%" y="335.50">[unknown]</text></g><g><title>[unknown] (510 samples, 9.22%)</title><rect x="66.3352%" y="309" width="9.2208%" height="15" fill="rgb(213,11,42)" fg:x="3669" fg:w="510"/><text x="66.5852%" y="319.50">[unknown]</text></g><g><title>[unknown] (508 samples, 9.18%)</title><rect x="66.3714%" y="293" width="9.1846%" height="15" fill="rgb(225,150,9)" fg:x="3671" fg:w="508"/><text x="66.6214%" y="303.50">[unknown]</text></g><g><title>[unknown] (487 samples, 8.80%)</title><rect x="66.7510%" y="277" width="8.8049%" height="15" fill="rgb(230,162,45)" fg:x="3692" fg:w="487"/><text x="67.0010%" y="287.50">[unknown]</text></g><g><title>[unknown] (392 samples, 7.09%)</title><rect x="68.4686%" y="261" width="7.0873%" height="15" fill="rgb(222,14,52)" fg:x="3787" fg:w="392"/><text x="68.7186%" y="271.50">[unknown]</text></g><g><title>[unknown] (347 samples, 6.27%)</title><rect x="69.2822%" y="245" width="6.2737%" height="15" fill="rgb(254,198,14)" fg:x="3832" fg:w="347"/><text x="69.5322%" y="255.50">[unknown]</text></g><g><title>[unknown] (306 samples, 5.53%)</title><rect x="70.0235%" y="229" width="5.5325%" height="15" fill="rgb(220,217,30)" fg:x="3873" fg:w="306"/><text x="70.2735%" y="239.50">[unknow..</text></g><g><title>[unknown] (276 samples, 4.99%)</title><rect x="70.5659%" y="213" width="4.9901%" height="15" fill="rgb(215,146,41)" fg:x="3903" fg:w="276"/><text x="70.8159%" y="223.50">[unkno..</text></g><g><title>[unknown] (225 samples, 4.07%)</title><rect x="71.4880%" y="197" width="4.0680%" height="15" fill="rgb(217,27,36)" fg:x="3954" fg:w="225"/><text x="71.7380%" y="207.50">[unk..</text></g><g><title>[unknown] (222 samples, 4.01%)</title><rect x="71.5422%" y="181" width="4.0137%" height="15" fill="rgb(219,218,39)" fg:x="3957" fg:w="222"/><text x="71.7922%" y="191.50">[unk..</text></g><g><title>[unknown] (220 samples, 3.98%)</title><rect x="71.5784%" y="165" width="3.9776%" height="15" fill="rgb(219,4,42)" fg:x="3959" fg:w="220"/><text x="71.8284%" y="175.50">[unk..</text></g><g><title>[unknown] (194 samples, 3.51%)</title><rect x="72.0485%" y="149" width="3.5075%" height="15" fill="rgb(249,119,36)" fg:x="3985" fg:w="194"/><text x="72.2985%" y="159.50">[un..</text></g><g><title>[unknown] (142 samples, 2.57%)</title><rect x="72.9886%" y="133" width="2.5673%" height="15" fill="rgb(209,23,33)" fg:x="4037" fg:w="142"/><text x="73.2386%" y="143.50">[u..</text></g><g><title>[unknown] (82 samples, 1.48%)</title><rect x="74.0734%" y="117" width="1.4826%" height="15" fill="rgb(211,10,0)" fg:x="4097" fg:w="82"/><text x="74.3234%" y="127.50"></text></g><g><title>[unknown] (41 samples, 0.74%)</title><rect x="74.8147%" y="101" width="0.7413%" height="15" fill="rgb(208,99,37)" fg:x="4138" fg:w="41"/><text x="75.0647%" y="111.50"></text></g><g><title>[unknown] (13 samples, 0.24%)</title><rect x="75.3209%" y="85" width="0.2350%" height="15" fill="rgb(213,132,31)" fg:x="4166" fg:w="13"/><text x="75.5709%" y="95.50"></text></g><g><title>[unknown] (8 samples, 0.14%)</title><rect x="75.4113%" y="69" width="0.1446%" height="15" fill="rgb(243,129,40)" fg:x="4171" fg:w="8"/><text x="75.6613%" y="79.50"></text></g><g><title>[unknown] (3 samples, 0.05%)</title><rect x="75.5017%" y="53" width="0.0542%" height="15" fill="rgb(210,66,33)" fg:x="4176" fg:w="3"/><text x="75.7517%" y="63.50"></text></g><g><title>[unknown] (1 samples, 0.02%)</title><rect x="75.5379%" y="37" width="0.0181%" height="15" fill="rgb(209,189,4)" fg:x="4178" fg:w="1"/><text x="75.7879%" y="47.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (693 samples, 12.53%)</title><rect x="63.0447%" y="453" width="12.5294%" height="15" fill="rgb(214,107,37)" fg:x="3487" fg:w="693"/><text x="63.2947%" y="463.50">&lt;std::sys::unix::st..</text></g><g><title>std::sys::unix::fd::FileDesc::write (693 samples, 12.53%)</title><rect x="63.0447%" y="437" width="12.5294%" height="15" fill="rgb(245,88,54)" fg:x="3487" fg:w="693"/><text x="63.2947%" y="447.50">std::sys::unix::fd:..</text></g><g><title>std::sys::unix::cvt (1 samples, 0.02%)</title><rect x="75.5560%" y="421" width="0.0181%" height="15" fill="rgb(205,146,20)" fg:x="4179" fg:w="1"/><text x="75.8060%" y="431.50"></text></g><g><title>&lt;isize as std::sys::unix::IsMinusOne&gt;::is_minus_one (1 samples, 0.02%)</title><rect x="75.5560%" y="405" width="0.0181%" height="15" fill="rgb(220,161,25)" fg:x="4179" fg:w="1"/><text x="75.8060%" y="415.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (695 samples, 12.57%)</title><rect x="63.0447%" y="469" width="12.5655%" height="15" fill="rgb(215,152,15)" fg:x="3487" fg:w="695"/><text x="63.2947%" y="479.50">&lt;std::io::stdio::St..</text></g><g><title>std::io::stdio::handle_ebadf (2 samples, 0.04%)</title><rect x="75.5740%" y="453" width="0.0362%" height="15" fill="rgb(233,192,44)" fg:x="4180" fg:w="2"/><text x="75.8240%" y="463.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf::BufGuard&gt; (1 samples, 0.02%)</title><rect x="75.6102%" y="469" width="0.0181%" height="15" fill="rgb(240,170,46)" fg:x="4182" fg:w="1"/><text x="75.8602%" y="479.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf::BufGuard as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="75.6102%" y="453" width="0.0181%" height="15" fill="rgb(207,104,33)" fg:x="4182" fg:w="1"/><text x="75.8602%" y="463.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::drain (1 samples, 0.02%)</title><rect x="75.6102%" y="437" width="0.0181%" height="15" fill="rgb(219,21,39)" fg:x="4182" fg:w="1"/><text x="75.8602%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::set_len (1 samples, 0.02%)</title><rect x="75.6102%" y="421" width="0.0181%" height="15" fill="rgb(214,133,29)" fg:x="4182" fg:w="1"/><text x="75.8602%" y="431.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (698 samples, 12.62%)</title><rect x="63.0266%" y="485" width="12.6198%" height="15" fill="rgb(226,93,6)" fg:x="3486" fg:w="698"/><text x="63.2766%" y="495.50">std::io::buffered::..</text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf::BufGuard::remaining (1 samples, 0.02%)</title><rect x="75.6283%" y="469" width="0.0181%" height="15" fill="rgb(252,222,34)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="479.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.02%)</title><rect x="75.6283%" y="453" width="0.0181%" height="15" fill="rgb(252,92,48)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="463.50"></text></g><g><title>core::slice::index::&lt;impl core::ops::index::Index&lt;I&gt; for [T]&gt;::index (1 samples, 0.02%)</title><rect x="75.6283%" y="437" width="0.0181%" height="15" fill="rgb(245,223,24)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="447.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::index (1 samples, 0.02%)</title><rect x="75.6283%" y="421" width="0.0181%" height="15" fill="rgb(205,176,3)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="431.50"></text></g><g><title>&lt;core::ops::range::RangeFrom&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (1 samples, 0.02%)</title><rect x="75.6283%" y="405" width="0.0181%" height="15" fill="rgb(235,151,15)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="415.50"></text></g><g><title>&lt;core::ops::range::Range&lt;usize&gt; as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get_unchecked (1 samples, 0.02%)</title><rect x="75.6283%" y="389" width="0.0181%" height="15" fill="rgb(237,209,11)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="399.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::add (1 samples, 0.02%)</title><rect x="75.6283%" y="373" width="0.0181%" height="15" fill="rgb(243,227,24)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="383.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::offset (1 samples, 0.02%)</title><rect x="75.6283%" y="357" width="0.0181%" height="15" fill="rgb(239,193,16)" fg:x="4183" fg:w="1"/><text x="75.8783%" y="367.50"></text></g><g><title>core::option::Option&lt;&amp;T&gt;::copied (1 samples, 0.02%)</title><rect x="75.6464%" y="469" width="0.0181%" height="15" fill="rgb(231,27,9)" fg:x="4184" fg:w="1"/><text x="75.8964%" y="479.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.02%)</title><rect x="75.6464%" y="453" width="0.0181%" height="15" fill="rgb(219,169,10)" fg:x="4184" fg:w="1"/><text x="75.8964%" y="463.50"></text></g><g><title>std::io::buffered::linewritershim::LineWriterShim&lt;W&gt;::flush_if_completed_line (3 samples, 0.05%)</title><rect x="75.6464%" y="485" width="0.0542%" height="15" fill="rgb(244,229,43)" fg:x="4184" fg:w="3"/><text x="75.8964%" y="495.50"></text></g><g><title>std::io::buffered::linewritershim::LineWriterShim&lt;W&gt;::buffered (2 samples, 0.04%)</title><rect x="75.6644%" y="469" width="0.0362%" height="15" fill="rgb(254,38,20)" fg:x="4185" fg:w="2"/><text x="75.9144%" y="479.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::buffer (2 samples, 0.04%)</title><rect x="75.6644%" y="453" width="0.0362%" height="15" fill="rgb(250,47,30)" fg:x="4185" fg:w="2"/><text x="75.9144%" y="463.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="75.6644%" y="437" width="0.0362%" height="15" fill="rgb(224,124,36)" fg:x="4185" fg:w="2"/><text x="75.9144%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="75.6644%" y="421" width="0.0362%" height="15" fill="rgb(246,68,51)" fg:x="4185" fg:w="2"/><text x="75.9144%" y="431.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (736 samples, 13.31%)</title><rect x="62.5203%" y="517" width="13.3068%" height="15" fill="rgb(253,43,49)" fg:x="3458" fg:w="736"/><text x="62.7703%" y="527.50">&lt;std::io::buffered::..</text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (736 samples, 13.31%)</title><rect x="62.5203%" y="501" width="13.3068%" height="15" fill="rgb(219,54,36)" fg:x="3458" fg:w="736"/><text x="62.7703%" y="511.50">&lt;std::io::buffered::..</text></g><g><title>std::memchr::memrchr (7 samples, 0.13%)</title><rect x="75.7006%" y="485" width="0.1266%" height="15" fill="rgb(227,133,34)" fg:x="4187" fg:w="7"/><text x="75.9506%" y="495.50"></text></g><g><title>std::sys::unix::memchr::memrchr (7 samples, 0.13%)</title><rect x="75.7006%" y="469" width="0.1266%" height="15" fill="rgb(247,227,15)" fg:x="4187" fg:w="7"/><text x="75.9506%" y="479.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (7 samples, 0.13%)</title><rect x="75.7006%" y="453" width="0.1266%" height="15" fill="rgb(229,96,14)" fg:x="4187" fg:w="7"/><text x="75.9506%" y="463.50"></text></g><g><title>__memrchr_avx2 (5 samples, 0.09%)</title><rect x="75.7368%" y="437" width="0.0904%" height="15" fill="rgb(220,79,17)" fg:x="4189" fg:w="5"/><text x="75.9868%" y="447.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::borrow_mut (3 samples, 0.05%)</title><rect x="75.8272%" y="517" width="0.0542%" height="15" fill="rgb(205,131,53)" fg:x="4194" fg:w="3"/><text x="76.0772%" y="527.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::try_borrow_mut (3 samples, 0.05%)</title><rect x="75.8272%" y="501" width="0.0542%" height="15" fill="rgb(209,50,29)" fg:x="4194" fg:w="3"/><text x="76.0772%" y="511.50"></text></g><g><title>core::cell::BorrowRefMut::new (2 samples, 0.04%)</title><rect x="75.8452%" y="485" width="0.0362%" height="15" fill="rgb(245,86,46)" fg:x="4195" fg:w="2"/><text x="76.0952%" y="495.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (741 samples, 13.40%)</title><rect x="62.5023%" y="549" width="13.3972%" height="15" fill="rgb(235,66,46)" fg:x="3457" fg:w="741"/><text x="62.7523%" y="559.50">&lt;std::io::Write::wri..</text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (741 samples, 13.40%)</title><rect x="62.5023%" y="533" width="13.3972%" height="15" fill="rgb(232,148,31)" fg:x="3457" fg:w="741"/><text x="62.7523%" y="543.50">&lt;std::io::stdio::Std..</text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefMut&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="75.8814%" y="517" width="0.0181%" height="15" fill="rgb(217,149,8)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="527.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::BorrowRefMut&gt; (1 samples, 0.02%)</title><rect x="75.8814%" y="501" width="0.0181%" height="15" fill="rgb(209,183,11)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="511.50"></text></g><g><title>&lt;core::cell::BorrowRefMut as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="75.8814%" y="485" width="0.0181%" height="15" fill="rgb(208,55,20)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="495.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::set (1 samples, 0.02%)</title><rect x="75.8814%" y="469" width="0.0181%" height="15" fill="rgb(218,39,14)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="479.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::replace (1 samples, 0.02%)</title><rect x="75.8814%" y="453" width="0.0181%" height="15" fill="rgb(216,169,33)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="463.50"></text></g><g><title>core::mem::replace (1 samples, 0.02%)</title><rect x="75.8814%" y="437" width="0.0181%" height="15" fill="rgb(233,80,24)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="447.50"></text></g><g><title>core::mem::swap (1 samples, 0.02%)</title><rect x="75.8814%" y="421" width="0.0181%" height="15" fill="rgb(213,179,31)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="431.50"></text></g><g><title>core::ptr::swap_nonoverlapping_one (1 samples, 0.02%)</title><rect x="75.8814%" y="405" width="0.0181%" height="15" fill="rgb(209,19,5)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="415.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="75.8814%" y="389" width="0.0181%" height="15" fill="rgb(219,18,35)" fg:x="4197" fg:w="1"/><text x="76.1314%" y="399.50"></text></g><g><title>&lt;str as core::fmt::Display&gt;::fmt (1 samples, 0.02%)</title><rect x="75.8995%" y="549" width="0.0181%" height="15" fill="rgb(209,169,16)" fg:x="4198" fg:w="1"/><text x="76.1495%" y="559.50"></text></g><g><title>core::fmt::Formatter::pad (2 samples, 0.04%)</title><rect x="75.9176%" y="549" width="0.0362%" height="15" fill="rgb(245,90,51)" fg:x="4199" fg:w="2"/><text x="76.1676%" y="559.50"></text></g><g><title>core::fmt::write (754 samples, 13.63%)</title><rect x="62.3395%" y="565" width="13.6323%" height="15" fill="rgb(220,99,45)" fg:x="3448" fg:w="754"/><text x="62.5895%" y="575.50">core::fmt::write</text></g><g><title>core::iter::traits::iterator::Iterator::zip (1 samples, 0.02%)</title><rect x="75.9537%" y="549" width="0.0181%" height="15" fill="rgb(249,89,25)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="559.50"></text></g><g><title>core::iter::adapters::zip::Zip&lt;A,B&gt;::new (1 samples, 0.02%)</title><rect x="75.9537%" y="533" width="0.0181%" height="15" fill="rgb(239,193,0)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::new (1 samples, 0.02%)</title><rect x="75.9537%" y="517" width="0.0181%" height="15" fill="rgb(231,126,1)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="527.50"></text></g><g><title>core::cmp::min (1 samples, 0.02%)</title><rect x="75.9537%" y="501" width="0.0181%" height="15" fill="rgb(243,166,3)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="511.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.02%)</title><rect x="75.9537%" y="485" width="0.0181%" height="15" fill="rgb(223,22,34)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="495.50"></text></g><g><title>core::cmp::min_by (1 samples, 0.02%)</title><rect x="75.9537%" y="469" width="0.0181%" height="15" fill="rgb(251,52,51)" fg:x="4201" fg:w="1"/><text x="76.2037%" y="479.50"></text></g><g><title>std::io::Write::write_fmt (764 samples, 13.81%)</title><rect x="62.1949%" y="581" width="13.8131%" height="15" fill="rgb(221,165,28)" fg:x="3440" fg:w="764"/><text x="62.4449%" y="591.50">std::io::Write::write..</text></g><g><title>core::ptr::drop_in_place&lt;core::result::Result&lt;(),std::io::error::Error&gt;&gt; (2 samples, 0.04%)</title><rect x="75.9718%" y="565" width="0.0362%" height="15" fill="rgb(218,121,47)" fg:x="4202" fg:w="2"/><text x="76.2218%" y="575.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (795 samples, 14.37%)</title><rect x="61.8695%" y="613" width="14.3735%" height="15" fill="rgb(209,120,9)" fg:x="3422" fg:w="795"/><text x="62.1195%" y="623.50">&lt;std::io::stdio::Stdou..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (791 samples, 14.30%)</title><rect x="61.9418%" y="597" width="14.3012%" height="15" fill="rgb(236,68,12)" fg:x="3426" fg:w="791"/><text x="62.1918%" y="607.50">&lt;&amp;std::io::stdio::Stdo..</text></g><g><title>std::io::stdio::Stdout::lock (13 samples, 0.24%)</title><rect x="76.0080%" y="581" width="0.2350%" height="15" fill="rgb(225,194,26)" fg:x="4204" fg:w="13"/><text x="76.2580%" y="591.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (13 samples, 0.24%)</title><rect x="76.0080%" y="565" width="0.2350%" height="15" fill="rgb(231,84,39)" fg:x="4204" fg:w="13"/><text x="76.2580%" y="575.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (13 samples, 0.24%)</title><rect x="76.0080%" y="549" width="0.2350%" height="15" fill="rgb(210,11,45)" fg:x="4204" fg:w="13"/><text x="76.2580%" y="559.50"></text></g><g><title>__GI___pthread_mutex_lock (12 samples, 0.22%)</title><rect x="76.0260%" y="533" width="0.2170%" height="15" fill="rgb(224,54,52)" fg:x="4205" fg:w="12"/><text x="76.2760%" y="543.50"></text></g><g><title>phone_encoder::print_solution (804 samples, 14.54%)</title><rect x="61.7248%" y="661" width="14.5363%" height="15" fill="rgb(238,102,14)" fg:x="3414" fg:w="804"/><text x="61.9748%" y="671.50">phone_encoder::print_s..</text></g><g><title>std::io::stdio::_print (802 samples, 14.50%)</title><rect x="61.7610%" y="645" width="14.5001%" height="15" fill="rgb(243,160,52)" fg:x="3416" fg:w="802"/><text x="62.0110%" y="655.50">std::io::stdio::_print</text></g><g><title>std::io::stdio::print_to (799 samples, 14.45%)</title><rect x="61.8152%" y="629" width="14.4459%" height="15" fill="rgb(216,114,19)" fg:x="3419" fg:w="799"/><text x="62.0652%" y="639.50">std::io::stdio::print_..</text></g><g><title>std::io::stdio::stdout (1 samples, 0.02%)</title><rect x="76.2430%" y="613" width="0.0181%" height="15" fill="rgb(244,166,37)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="623.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get_or_init_pin (1 samples, 0.02%)</title><rect x="76.2430%" y="597" width="0.0181%" height="15" fill="rgb(246,29,44)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="607.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get (1 samples, 0.02%)</title><rect x="76.2430%" y="581" width="0.0181%" height="15" fill="rgb(215,56,53)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="591.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::is_initialized (1 samples, 0.02%)</title><rect x="76.2430%" y="565" width="0.0181%" height="15" fill="rgb(217,60,2)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="575.50"></text></g><g><title>std::sync::once::Once::is_completed (1 samples, 0.02%)</title><rect x="76.2430%" y="549" width="0.0181%" height="15" fill="rgb(207,26,24)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="559.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (1 samples, 0.02%)</title><rect x="76.2430%" y="533" width="0.0181%" height="15" fill="rgb(252,210,15)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="543.50"></text></g><g><title>core::sync::atomic::atomic_load (1 samples, 0.02%)</title><rect x="76.2430%" y="517" width="0.0181%" height="15" fill="rgb(253,209,26)" fg:x="4217" fg:w="1"/><text x="76.4930%" y="527.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="76.3515%" y="645" width="0.0181%" height="15" fill="rgb(238,170,14)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="655.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="76.3515%" y="629" width="0.0181%" height="15" fill="rgb(216,178,15)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="639.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="76.3515%" y="613" width="0.0181%" height="15" fill="rgb(250,197,2)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="623.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="76.3515%" y="597" width="0.0181%" height="15" fill="rgb(212,70,42)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="607.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="76.3515%" y="581" width="0.0181%" height="15" fill="rgb(227,213,9)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="76.3515%" y="565" width="0.0181%" height="15" fill="rgb(245,99,25)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="76.3515%" y="549" width="0.0181%" height="15" fill="rgb(250,82,29)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="76.3515%" y="533" width="0.0181%" height="15" fill="rgb(241,226,54)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="543.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="76.3515%" y="517" width="0.0181%" height="15" fill="rgb(221,99,41)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="527.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="76.3515%" y="501" width="0.0181%" height="15" fill="rgb(213,90,21)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="511.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="76.3515%" y="485" width="0.0181%" height="15" fill="rgb(205,208,24)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="495.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="76.3515%" y="469" width="0.0181%" height="15" fill="rgb(246,31,12)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="479.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="76.3515%" y="453" width="0.0181%" height="15" fill="rgb(213,154,6)" fg:x="4223" fg:w="1"/><text x="76.6015%" y="463.50"></text></g><g><title>__GI___libc_free (7 samples, 0.13%)</title><rect x="76.3696%" y="645" width="0.1266%" height="15" fill="rgb(222,163,29)" fg:x="4224" fg:w="7"/><text x="76.6196%" y="655.50"></text></g><g><title>_int_free (6 samples, 0.11%)</title><rect x="76.4961%" y="645" width="0.1085%" height="15" fill="rgb(227,201,8)" fg:x="4231" fg:w="6"/><text x="76.7461%" y="655.50"></text></g><g><title>core::option::Option&lt;T&gt;::map (1 samples, 0.02%)</title><rect x="76.6046%" y="645" width="0.0181%" height="15" fill="rgb(233,9,32)" fg:x="4237" fg:w="1"/><text x="76.8546%" y="655.50"></text></g><g><title>__GI___libc_free (2 samples, 0.04%)</title><rect x="76.6227%" y="549" width="0.0362%" height="15" fill="rgb(217,54,24)" fg:x="4238" fg:w="2"/><text x="76.8727%" y="559.50"></text></g><g><title>core::ptr::drop_in_place&lt;num_bigint::biguint::BigUint&gt; (4 samples, 0.07%)</title><rect x="76.6227%" y="645" width="0.0723%" height="15" fill="rgb(235,192,0)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u64&gt;&gt; (4 samples, 0.07%)</title><rect x="76.6227%" y="629" width="0.0723%" height="15" fill="rgb(235,45,9)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u64&gt;&gt; (4 samples, 0.07%)</title><rect x="76.6227%" y="613" width="0.0723%" height="15" fill="rgb(246,42,40)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="623.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (4 samples, 0.07%)</title><rect x="76.6227%" y="597" width="0.0723%" height="15" fill="rgb(248,111,24)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (4 samples, 0.07%)</title><rect x="76.6227%" y="581" width="0.0723%" height="15" fill="rgb(249,65,22)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="591.50"></text></g><g><title>alloc::alloc::dealloc (4 samples, 0.07%)</title><rect x="76.6227%" y="565" width="0.0723%" height="15" fill="rgb(238,111,51)" fg:x="4238" fg:w="4"/><text x="76.8727%" y="575.50"></text></g><g><title>_int_free (2 samples, 0.04%)</title><rect x="76.6588%" y="549" width="0.0362%" height="15" fill="rgb(250,118,22)" fg:x="4240" fg:w="2"/><text x="76.9088%" y="559.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::Add&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add (2 samples, 0.04%)</title><rect x="76.6950%" y="645" width="0.0362%" height="15" fill="rgb(234,84,26)" fg:x="4242" fg:w="2"/><text x="76.9450%" y="655.50"></text></g><g><title>num_bigint::biguint::addition::&lt;impl core::ops::arith::AddAssign&lt;&amp;num_bigint::biguint::BigUint&gt; for num_bigint::biguint::BigUint&gt;::add_assign (2 samples, 0.04%)</title><rect x="76.6950%" y="629" width="0.0362%" height="15" fill="rgb(243,172,12)" fg:x="4242" fg:w="2"/><text x="76.9450%" y="639.50"></text></g><g><title>alloc::vec::from_elem (8 samples, 0.14%)</title><rect x="76.7673%" y="613" width="0.1446%" height="15" fill="rgb(236,150,49)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="623.50"></text></g><g><title>&lt;T as alloc::vec::spec_from_elem::SpecFromElem&gt;::from_elem (8 samples, 0.14%)</title><rect x="76.7673%" y="597" width="0.1446%" height="15" fill="rgb(225,197,26)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="607.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_zeroed_in (8 samples, 0.14%)</title><rect x="76.7673%" y="581" width="0.1446%" height="15" fill="rgb(214,17,42)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="591.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (8 samples, 0.14%)</title><rect x="76.7673%" y="565" width="0.1446%" height="15" fill="rgb(224,165,40)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="575.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate_zeroed (8 samples, 0.14%)</title><rect x="76.7673%" y="549" width="0.1446%" height="15" fill="rgb(246,100,4)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="559.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (8 samples, 0.14%)</title><rect x="76.7673%" y="533" width="0.1446%" height="15" fill="rgb(222,103,0)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="543.50"></text></g><g><title>alloc::alloc::alloc_zeroed (8 samples, 0.14%)</title><rect x="76.7673%" y="517" width="0.1446%" height="15" fill="rgb(227,189,26)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="527.50"></text></g><g><title>__libc_calloc (8 samples, 0.14%)</title><rect x="76.7673%" y="501" width="0.1446%" height="15" fill="rgb(214,202,17)" fg:x="4246" fg:w="8"/><text x="77.0173%" y="511.50"></text></g><g><title>_int_malloc (7 samples, 0.13%)</title><rect x="76.7854%" y="485" width="0.1266%" height="15" fill="rgb(229,111,3)" fg:x="4247" fg:w="7"/><text x="77.0354%" y="495.50"></text></g><g><title>num_bigint::biguint::BigUint::normalized (1 samples, 0.02%)</title><rect x="76.9120%" y="613" width="0.0181%" height="15" fill="rgb(229,172,15)" fg:x="4254" fg:w="1"/><text x="77.1620%" y="623.50"></text></g><g><title>num_bigint::biguint::multiplication::&lt;impl core::ops::arith::Mul&lt;&amp;num_bigint::biguint::BigUint&gt; for &amp;num_bigint::biguint::BigUint&gt;::mul (13 samples, 0.24%)</title><rect x="76.7312%" y="645" width="0.2350%" height="15" fill="rgb(230,224,35)" fg:x="4244" fg:w="13"/><text x="76.9812%" y="655.50"></text></g><g><title>num_bigint::biguint::multiplication::mul3 (13 samples, 0.24%)</title><rect x="76.7312%" y="629" width="0.2350%" height="15" fill="rgb(251,141,6)" fg:x="4244" fg:w="13"/><text x="76.9812%" y="639.50"></text></g><g><title>num_bigint::biguint::multiplication::mac3 (2 samples, 0.04%)</title><rect x="76.9300%" y="613" width="0.0362%" height="15" fill="rgb(225,208,6)" fg:x="4255" fg:w="2"/><text x="77.1800%" y="623.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as num_traits::identities::Zero&gt;::zero (1 samples, 0.02%)</title><rect x="76.9662%" y="533" width="0.0181%" height="15" fill="rgb(246,181,16)" fg:x="4257" fg:w="1"/><text x="77.2162%" y="543.50"></text></g><g><title>phone_encoder::nth_digit (2 samples, 0.04%)</title><rect x="76.9662%" y="645" width="0.0362%" height="15" fill="rgb(227,129,36)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="655.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_bigint::biguint::ToBigUint for usize&gt;::to_biguint (2 samples, 0.04%)</title><rect x="76.9662%" y="629" width="0.0362%" height="15" fill="rgb(248,117,24)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="639.50"></text></g><g><title>num_traits::cast::FromPrimitive::from_usize (2 samples, 0.04%)</title><rect x="76.9662%" y="613" width="0.0362%" height="15" fill="rgb(214,185,35)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="623.50"></text></g><g><title>core::option::Option&lt;T&gt;::and_then (2 samples, 0.04%)</title><rect x="76.9662%" y="597" width="0.0362%" height="15" fill="rgb(236,150,34)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="607.50"></text></g><g><title>core::ops::function::FnOnce::call_once (2 samples, 0.04%)</title><rect x="76.9662%" y="581" width="0.0362%" height="15" fill="rgb(243,228,27)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="591.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl num_traits::cast::FromPrimitive for num_bigint::biguint::BigUint&gt;::from_u64 (2 samples, 0.04%)</title><rect x="76.9662%" y="565" width="0.0362%" height="15" fill="rgb(245,77,44)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="575.50"></text></g><g><title>num_bigint::biguint::convert::&lt;impl core::convert::From&lt;u64&gt; for num_bigint::biguint::BigUint&gt;::from (2 samples, 0.04%)</title><rect x="76.9662%" y="549" width="0.0362%" height="15" fill="rgb(235,214,42)" fg:x="4257" fg:w="2"/><text x="77.2162%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::push (1 samples, 0.02%)</title><rect x="76.9843%" y="533" width="0.0181%" height="15" fill="rgb(221,74,3)" fg:x="4258" fg:w="1"/><text x="77.2343%" y="543.50"></text></g><g><title>core::ptr::write (1 samples, 0.02%)</title><rect x="76.9843%" y="517" width="0.0181%" height="15" fill="rgb(206,121,29)" fg:x="4258" fg:w="1"/><text x="77.2343%" y="527.50"></text></g><g><title>core::fmt::Arguments::new_v1 (1 samples, 0.02%)</title><rect x="77.1108%" y="629" width="0.0181%" height="15" fill="rgb(249,131,53)" fg:x="4265" fg:w="1"/><text x="77.3608%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (14 samples, 0.25%)</title><rect x="77.3820%" y="565" width="0.2531%" height="15" fill="rgb(236,170,29)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="575.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (14 samples, 0.25%)</title><rect x="77.3820%" y="549" width="0.2531%" height="15" fill="rgb(247,96,15)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="559.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (14 samples, 0.25%)</title><rect x="77.3820%" y="533" width="0.2531%" height="15" fill="rgb(211,210,7)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="543.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (14 samples, 0.25%)</title><rect x="77.3820%" y="517" width="0.2531%" height="15" fill="rgb(240,88,50)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="527.50"></text></g><g><title>__GI___pthread_mutex_unlock (14 samples, 0.25%)</title><rect x="77.3820%" y="501" width="0.2531%" height="15" fill="rgb(209,229,26)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="511.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (14 samples, 0.25%)</title><rect x="77.3820%" y="485" width="0.2531%" height="15" fill="rgb(210,68,23)" fg:x="4280" fg:w="14"/><text x="77.6320%" y="495.50"></text></g><g><title>&lt;&amp;T as core::fmt::Display&gt;::fmt (1 samples, 0.02%)</title><rect x="77.8521%" y="533" width="0.0181%" height="15" fill="rgb(229,180,13)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="543.50"></text></g><g><title>&lt;&amp;T as core::fmt::Display&gt;::fmt (1 samples, 0.02%)</title><rect x="77.8521%" y="517" width="0.0181%" height="15" fill="rgb(236,53,44)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="527.50"></text></g><g><title>&lt;alloc::string::String as core::fmt::Display&gt;::fmt (1 samples, 0.02%)</title><rect x="77.8521%" y="501" width="0.0181%" height="15" fill="rgb(244,214,29)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="511.50"></text></g><g><title>&lt;alloc::string::String as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="77.8521%" y="485" width="0.0181%" height="15" fill="rgb(220,75,29)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="495.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="77.8521%" y="469" width="0.0181%" height="15" fill="rgb(214,183,37)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (1 samples, 0.02%)</title><rect x="77.8521%" y="453" width="0.0181%" height="15" fill="rgb(239,117,29)" fg:x="4306" fg:w="1"/><text x="78.1021%" y="463.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.04%)</title><rect x="77.8702%" y="533" width="0.0362%" height="15" fill="rgb(237,171,35)" fg:x="4307" fg:w="2"/><text x="78.1202%" y="543.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::next (2 samples, 0.04%)</title><rect x="77.8702%" y="517" width="0.0362%" height="15" fill="rgb(229,178,53)" fg:x="4307" fg:w="2"/><text x="78.1202%" y="527.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::capacity (1 samples, 0.02%)</title><rect x="78.1595%" y="453" width="0.0181%" height="15" fill="rgb(210,102,19)" fg:x="4323" fg:w="1"/><text x="78.4095%" y="463.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_mut_ptr (2 samples, 0.04%)</title><rect x="78.2137%" y="405" width="0.0362%" height="15" fill="rgb(235,127,22)" fg:x="4326" fg:w="2"/><text x="78.4637%" y="415.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::reserve (8 samples, 0.14%)</title><rect x="78.2499%" y="405" width="0.1446%" height="15" fill="rgb(244,31,31)" fg:x="4328" fg:w="8"/><text x="78.4999%" y="415.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (5 samples, 0.09%)</title><rect x="78.3041%" y="389" width="0.0904%" height="15" fill="rgb(231,43,21)" fg:x="4331" fg:w="5"/><text x="78.5541%" y="399.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (5 samples, 0.09%)</title><rect x="78.3041%" y="373" width="0.0904%" height="15" fill="rgb(217,131,35)" fg:x="4331" fg:w="5"/><text x="78.5541%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::needs_to_grow (3 samples, 0.05%)</title><rect x="78.3403%" y="357" width="0.0542%" height="15" fill="rgb(221,149,4)" fg:x="4333" fg:w="3"/><text x="78.5903%" y="367.50"></text></g><g><title>core::num::&lt;impl usize&gt;::wrapping_sub (3 samples, 0.05%)</title><rect x="78.3403%" y="341" width="0.0542%" height="15" fill="rgb(232,170,28)" fg:x="4333" fg:w="3"/><text x="78.5903%" y="351.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (8 samples, 0.14%)</title><rect x="78.3945%" y="405" width="0.1446%" height="15" fill="rgb(238,56,10)" fg:x="4336" fg:w="8"/><text x="78.6445%" y="415.50"></text></g><g><title>__memmove_avx_unaligned_erms (6 samples, 0.11%)</title><rect x="78.4307%" y="389" width="0.1085%" height="15" fill="rgb(235,196,14)" fg:x="4338" fg:w="6"/><text x="78.6807%" y="399.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (26 samples, 0.47%)</title><rect x="78.0871%" y="469" width="0.4701%" height="15" fill="rgb(216,45,48)" fg:x="4319" fg:w="26"/><text x="78.3371%" y="479.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::extend_from_slice (21 samples, 0.38%)</title><rect x="78.1775%" y="453" width="0.3797%" height="15" fill="rgb(238,213,17)" fg:x="4324" fg:w="21"/><text x="78.4275%" y="463.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 (21 samples, 0.38%)</title><rect x="78.1775%" y="437" width="0.3797%" height="15" fill="rgb(212,13,2)" fg:x="4324" fg:w="21"/><text x="78.4275%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::append_elements (21 samples, 0.38%)</title><rect x="78.1775%" y="421" width="0.3797%" height="15" fill="rgb(240,114,20)" fg:x="4324" fg:w="21"/><text x="78.4275%" y="431.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::add (1 samples, 0.02%)</title><rect x="78.5391%" y="405" width="0.0181%" height="15" fill="rgb(228,41,40)" fg:x="4344" fg:w="1"/><text x="78.7891%" y="415.50"></text></g><g><title>core::ptr::mut_ptr::&lt;impl *mut T&gt;::offset (1 samples, 0.02%)</title><rect x="78.5391%" y="389" width="0.0181%" height="15" fill="rgb(244,132,35)" fg:x="4344" fg:w="1"/><text x="78.7891%" y="399.50"></text></g><g><title>__libc_write (718 samples, 12.98%)</title><rect x="78.6115%" y="405" width="12.9814%" height="15" fill="rgb(253,189,4)" fg:x="4348" fg:w="718"/><text x="78.8615%" y="415.50">__libc_write</text></g><g><title>[unknown] (713 samples, 12.89%)</title><rect x="78.7019%" y="389" width="12.8910%" height="15" fill="rgb(224,37,19)" fg:x="4353" fg:w="713"/><text x="78.9519%" y="399.50">[unknown]</text></g><g><title>[unknown] (653 samples, 11.81%)</title><rect x="79.7867%" y="373" width="11.8062%" height="15" fill="rgb(235,223,18)" fg:x="4413" fg:w="653"/><text x="80.0367%" y="383.50">[unknown]</text></g><g><title>[unknown] (566 samples, 10.23%)</title><rect x="81.3596%" y="357" width="10.2332%" height="15" fill="rgb(235,163,25)" fg:x="4500" fg:w="566"/><text x="81.6096%" y="367.50">[unknown]</text></g><g><title>[unknown] (562 samples, 10.16%)</title><rect x="81.4319%" y="341" width="10.1609%" height="15" fill="rgb(217,145,28)" fg:x="4504" fg:w="562"/><text x="81.6819%" y="351.50">[unknown]</text></g><g><title>[unknown] (551 samples, 9.96%)</title><rect x="81.6308%" y="325" width="9.9620%" height="15" fill="rgb(223,223,32)" fg:x="4515" fg:w="551"/><text x="81.8808%" y="335.50">[unknown]</text></g><g><title>[unknown] (517 samples, 9.35%)</title><rect x="82.2455%" y="309" width="9.3473%" height="15" fill="rgb(227,189,39)" fg:x="4549" fg:w="517"/><text x="82.4955%" y="319.50">[unknown]</text></g><g><title>[unknown] (496 samples, 8.97%)</title><rect x="82.6252%" y="293" width="8.9676%" height="15" fill="rgb(248,10,22)" fg:x="4570" fg:w="496"/><text x="82.8752%" y="303.50">[unknown]</text></g><g><title>[unknown] (493 samples, 8.91%)</title><rect x="82.6794%" y="277" width="8.9134%" height="15" fill="rgb(248,46,39)" fg:x="4573" fg:w="493"/><text x="82.9294%" y="287.50">[unknown]</text></g><g><title>[unknown] (479 samples, 8.66%)</title><rect x="82.9326%" y="261" width="8.6603%" height="15" fill="rgb(248,113,48)" fg:x="4587" fg:w="479"/><text x="83.1826%" y="271.50">[unknown]</text></g><g><title>[unknown] (403 samples, 7.29%)</title><rect x="84.3066%" y="245" width="7.2862%" height="15" fill="rgb(245,16,25)" fg:x="4663" fg:w="403"/><text x="84.5566%" y="255.50">[unknown]</text></g><g><title>[unknown] (349 samples, 6.31%)</title><rect x="85.2830%" y="229" width="6.3099%" height="15" fill="rgb(249,152,16)" fg:x="4717" fg:w="349"/><text x="85.5330%" y="239.50">[unknown]</text></g><g><title>[unknown] (304 samples, 5.50%)</title><rect x="86.0965%" y="213" width="5.4963%" height="15" fill="rgb(250,16,1)" fg:x="4762" fg:w="304"/><text x="86.3465%" y="223.50">[unknow..</text></g><g><title>[unknown] (272 samples, 4.92%)</title><rect x="86.6751%" y="197" width="4.9177%" height="15" fill="rgb(249,138,3)" fg:x="4794" fg:w="272"/><text x="86.9251%" y="207.50">[unkno..</text></g><g><title>[unknown] (230 samples, 4.16%)</title><rect x="87.4345%" y="181" width="4.1584%" height="15" fill="rgb(227,71,41)" fg:x="4836" fg:w="230"/><text x="87.6845%" y="191.50">[unkn..</text></g><g><title>[unknown] (228 samples, 4.12%)</title><rect x="87.4706%" y="165" width="4.1222%" height="15" fill="rgb(209,184,23)" fg:x="4838" fg:w="228"/><text x="87.7206%" y="175.50">[unk..</text></g><g><title>[unknown] (226 samples, 4.09%)</title><rect x="87.5068%" y="149" width="4.0861%" height="15" fill="rgb(223,215,31)" fg:x="4840" fg:w="226"/><text x="87.7568%" y="159.50">[unk..</text></g><g><title>[unknown] (196 samples, 3.54%)</title><rect x="88.0492%" y="133" width="3.5437%" height="15" fill="rgb(210,146,28)" fg:x="4870" fg:w="196"/><text x="88.2992%" y="143.50">[unk..</text></g><g><title>[unknown] (146 samples, 2.64%)</title><rect x="88.9532%" y="117" width="2.6397%" height="15" fill="rgb(209,183,41)" fg:x="4920" fg:w="146"/><text x="89.2032%" y="127.50">[u..</text></g><g><title>[unknown] (83 samples, 1.50%)</title><rect x="90.0922%" y="101" width="1.5006%" height="15" fill="rgb(209,224,45)" fg:x="4983" fg:w="83"/><text x="90.3422%" y="111.50"></text></g><g><title>[unknown] (44 samples, 0.80%)</title><rect x="90.7973%" y="85" width="0.7955%" height="15" fill="rgb(224,209,51)" fg:x="5022" fg:w="44"/><text x="91.0473%" y="95.50"></text></g><g><title>[unknown] (16 samples, 0.29%)</title><rect x="91.3036%" y="69" width="0.2893%" height="15" fill="rgb(223,17,39)" fg:x="5050" fg:w="16"/><text x="91.5536%" y="79.50"></text></g><g><title>[unknown] (8 samples, 0.14%)</title><rect x="91.4482%" y="53" width="0.1446%" height="15" fill="rgb(234,204,37)" fg:x="5058" fg:w="8"/><text x="91.6982%" y="63.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (719 samples, 13.00%)</title><rect x="78.6115%" y="437" width="12.9995%" height="15" fill="rgb(236,120,5)" fg:x="4348" fg:w="719"/><text x="78.8615%" y="447.50">&lt;std::sys::unix::std..</text></g><g><title>std::sys::unix::fd::FileDesc::write (719 samples, 13.00%)</title><rect x="78.6115%" y="421" width="12.9995%" height="15" fill="rgb(248,97,27)" fg:x="4348" fg:w="719"/><text x="78.8615%" y="431.50">std::sys::unix::fd::..</text></g><g><title>std::sys::unix::cvt (1 samples, 0.02%)</title><rect x="91.5928%" y="405" width="0.0181%" height="15" fill="rgb(240,66,17)" fg:x="5066" fg:w="1"/><text x="91.8428%" y="415.50"></text></g><g><title>&lt;isize as std::sys::unix::IsMinusOne&gt;::is_minus_one (1 samples, 0.02%)</title><rect x="91.5928%" y="389" width="0.0181%" height="15" fill="rgb(210,79,3)" fg:x="5066" fg:w="1"/><text x="91.8428%" y="399.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (721 samples, 13.04%)</title><rect x="78.6115%" y="453" width="13.0356%" height="15" fill="rgb(214,176,27)" fg:x="4348" fg:w="721"/><text x="78.8615%" y="463.50">&lt;std::io::stdio::Std..</text></g><g><title>std::io::stdio::handle_ebadf (2 samples, 0.04%)</title><rect x="91.6109%" y="437" width="0.0362%" height="15" fill="rgb(235,185,3)" fg:x="5067" fg:w="2"/><text x="91.8609%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::set_len (1 samples, 0.02%)</title><rect x="91.6471%" y="405" width="0.0181%" height="15" fill="rgb(227,24,12)" fg:x="5069" fg:w="1"/><text x="91.8971%" y="415.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (726 samples, 13.13%)</title><rect x="78.5572%" y="469" width="13.1260%" height="15" fill="rgb(252,169,48)" fg:x="4345" fg:w="726"/><text x="78.8072%" y="479.50">std::io::buffered::b..</text></g><g><title>core::ptr::drop_in_place&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf::BufGuard&gt; (2 samples, 0.04%)</title><rect x="91.6471%" y="453" width="0.0362%" height="15" fill="rgb(212,65,1)" fg:x="5069" fg:w="2"/><text x="91.8971%" y="463.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf::BufGuard as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="91.6471%" y="437" width="0.0362%" height="15" fill="rgb(242,39,24)" fg:x="5069" fg:w="2"/><text x="91.8971%" y="447.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::drain (2 samples, 0.04%)</title><rect x="91.6471%" y="421" width="0.0362%" height="15" fill="rgb(249,32,23)" fg:x="5069" fg:w="2"/><text x="91.8971%" y="431.50"></text></g><g><title>core::ops::range::RangeBounds::assert_len (1 samples, 0.02%)</title><rect x="91.6652%" y="405" width="0.0181%" height="15" fill="rgb(251,195,23)" fg:x="5070" fg:w="1"/><text x="91.9152%" y="415.50"></text></g><g><title>std::io::buffered::linewritershim::LineWriterShim&lt;W&gt;::flush_if_completed_line (2 samples, 0.04%)</title><rect x="91.6832%" y="469" width="0.0362%" height="15" fill="rgb(236,174,8)" fg:x="5071" fg:w="2"/><text x="91.9332%" y="479.50"></text></g><g><title>std::io::buffered::linewritershim::LineWriterShim&lt;W&gt;::buffered (2 samples, 0.04%)</title><rect x="91.6832%" y="453" width="0.0362%" height="15" fill="rgb(220,197,8)" fg:x="5071" fg:w="2"/><text x="91.9332%" y="463.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::buffer (2 samples, 0.04%)</title><rect x="91.6832%" y="437" width="0.0362%" height="15" fill="rgb(240,108,37)" fg:x="5071" fg:w="2"/><text x="91.9332%" y="447.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="91.6832%" y="421" width="0.0362%" height="15" fill="rgb(232,176,24)" fg:x="5071" fg:w="2"/><text x="91.9332%" y="431.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="91.6832%" y="405" width="0.0362%" height="15" fill="rgb(243,35,29)" fg:x="5071" fg:w="2"/><text x="91.9332%" y="415.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (766 samples, 13.85%)</title><rect x="78.0148%" y="501" width="13.8492%" height="15" fill="rgb(210,37,18)" fg:x="4315" fg:w="766"/><text x="78.2648%" y="511.50">&lt;std::io::buffered::l..</text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (766 samples, 13.85%)</title><rect x="78.0148%" y="485" width="13.8492%" height="15" fill="rgb(224,184,40)" fg:x="4315" fg:w="766"/><text x="78.2648%" y="495.50">&lt;std::io::buffered::l..</text></g><g><title>std::memchr::memrchr (8 samples, 0.14%)</title><rect x="91.7194%" y="469" width="0.1446%" height="15" fill="rgb(236,39,29)" fg:x="5073" fg:w="8"/><text x="91.9694%" y="479.50"></text></g><g><title>std::sys::unix::memchr::memrchr (8 samples, 0.14%)</title><rect x="91.7194%" y="453" width="0.1446%" height="15" fill="rgb(232,48,39)" fg:x="5073" fg:w="8"/><text x="91.9694%" y="463.50"></text></g><g><title>std::sys::unix::memchr::memrchr::memrchr_specific (8 samples, 0.14%)</title><rect x="91.7194%" y="437" width="0.1446%" height="15" fill="rgb(236,34,42)" fg:x="5073" fg:w="8"/><text x="91.9694%" y="447.50"></text></g><g><title>__memrchr_avx2 (6 samples, 0.11%)</title><rect x="91.7556%" y="421" width="0.1085%" height="15" fill="rgb(243,106,37)" fg:x="5075" fg:w="6"/><text x="92.0056%" y="431.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::borrow_mut (6 samples, 0.11%)</title><rect x="91.8640%" y="501" width="0.1085%" height="15" fill="rgb(218,96,6)" fg:x="5081" fg:w="6"/><text x="92.1140%" y="511.50"></text></g><g><title>core::cell::RefCell&lt;T&gt;::try_borrow_mut (6 samples, 0.11%)</title><rect x="91.8640%" y="485" width="0.1085%" height="15" fill="rgb(235,130,12)" fg:x="5081" fg:w="6"/><text x="92.1140%" y="495.50"></text></g><g><title>core::cell::BorrowRefMut::new (4 samples, 0.07%)</title><rect x="91.9002%" y="469" width="0.0723%" height="15" fill="rgb(231,95,0)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="479.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::set (4 samples, 0.07%)</title><rect x="91.9002%" y="453" width="0.0723%" height="15" fill="rgb(228,12,23)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="463.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::replace (4 samples, 0.07%)</title><rect x="91.9002%" y="437" width="0.0723%" height="15" fill="rgb(216,12,1)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="447.50"></text></g><g><title>core::mem::replace (4 samples, 0.07%)</title><rect x="91.9002%" y="421" width="0.0723%" height="15" fill="rgb(219,59,3)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="431.50"></text></g><g><title>core::mem::swap (4 samples, 0.07%)</title><rect x="91.9002%" y="405" width="0.0723%" height="15" fill="rgb(215,208,46)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="415.50"></text></g><g><title>core::ptr::swap_nonoverlapping_one (4 samples, 0.07%)</title><rect x="91.9002%" y="389" width="0.0723%" height="15" fill="rgb(254,224,29)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="399.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (4 samples, 0.07%)</title><rect x="91.9002%" y="373" width="0.0723%" height="15" fill="rgb(232,14,29)" fg:x="5083" fg:w="4"/><text x="92.1502%" y="383.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (779 samples, 14.08%)</title><rect x="77.9063%" y="533" width="14.0843%" height="15" fill="rgb(208,45,52)" fg:x="4309" fg:w="779"/><text x="78.1563%" y="543.50">&lt;std::io::Write::writ..</text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (774 samples, 13.99%)</title><rect x="77.9967%" y="517" width="13.9939%" height="15" fill="rgb(234,191,28)" fg:x="4314" fg:w="774"/><text x="78.2467%" y="527.50">&lt;std::io::stdio::Stdo..</text></g><g><title>core::ptr::drop_in_place&lt;core::cell::RefMut&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt; (1 samples, 0.02%)</title><rect x="91.9725%" y="501" width="0.0181%" height="15" fill="rgb(244,67,43)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="511.50"></text></g><g><title>core::ptr::drop_in_place&lt;core::cell::BorrowRefMut&gt; (1 samples, 0.02%)</title><rect x="91.9725%" y="485" width="0.0181%" height="15" fill="rgb(236,189,24)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="495.50"></text></g><g><title>&lt;core::cell::BorrowRefMut as core::ops::drop::Drop&gt;::drop (1 samples, 0.02%)</title><rect x="91.9725%" y="469" width="0.0181%" height="15" fill="rgb(239,214,33)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="479.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::set (1 samples, 0.02%)</title><rect x="91.9725%" y="453" width="0.0181%" height="15" fill="rgb(226,176,41)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="463.50"></text></g><g><title>core::cell::Cell&lt;T&gt;::replace (1 samples, 0.02%)</title><rect x="91.9725%" y="437" width="0.0181%" height="15" fill="rgb(248,47,8)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="447.50"></text></g><g><title>core::mem::replace (1 samples, 0.02%)</title><rect x="91.9725%" y="421" width="0.0181%" height="15" fill="rgb(218,81,44)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="431.50"></text></g><g><title>core::mem::swap (1 samples, 0.02%)</title><rect x="91.9725%" y="405" width="0.0181%" height="15" fill="rgb(213,98,6)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="415.50"></text></g><g><title>core::ptr::swap_nonoverlapping_one (1 samples, 0.02%)</title><rect x="91.9725%" y="389" width="0.0181%" height="15" fill="rgb(222,85,22)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="399.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="91.9725%" y="373" width="0.0181%" height="15" fill="rgb(239,46,39)" fg:x="5087" fg:w="1"/><text x="92.2225%" y="383.50"></text></g><g><title>core::fmt::Formatter::pad (4 samples, 0.07%)</title><rect x="91.9906%" y="533" width="0.0723%" height="15" fill="rgb(237,12,29)" fg:x="5088" fg:w="4"/><text x="92.2406%" y="543.50"></text></g><g><title>core::iter::traits::iterator::Iterator::zip (1 samples, 0.02%)</title><rect x="92.0629%" y="533" width="0.0181%" height="15" fill="rgb(214,77,8)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="543.50"></text></g><g><title>core::iter::adapters::zip::Zip&lt;A,B&gt;::new (1 samples, 0.02%)</title><rect x="92.0629%" y="517" width="0.0181%" height="15" fill="rgb(217,168,37)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="527.50"></text></g><g><title>&lt;core::iter::adapters::zip::Zip&lt;A,B&gt; as core::iter::adapters::zip::ZipImpl&lt;A,B&gt;&gt;::new (1 samples, 0.02%)</title><rect x="92.0629%" y="501" width="0.0181%" height="15" fill="rgb(221,217,23)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="511.50"></text></g><g><title>core::cmp::min (1 samples, 0.02%)</title><rect x="92.0629%" y="485" width="0.0181%" height="15" fill="rgb(243,229,36)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="495.50"></text></g><g><title>core::cmp::Ord::min (1 samples, 0.02%)</title><rect x="92.0629%" y="469" width="0.0181%" height="15" fill="rgb(251,163,40)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="479.50"></text></g><g><title>core::cmp::min_by (1 samples, 0.02%)</title><rect x="92.0629%" y="453" width="0.0181%" height="15" fill="rgb(237,222,12)" fg:x="5092" fg:w="1"/><text x="92.3129%" y="463.50"></text></g><g><title>core::fmt::write (796 samples, 14.39%)</title><rect x="77.7075%" y="549" width="14.3916%" height="15" fill="rgb(248,132,6)" fg:x="4298" fg:w="796"/><text x="77.9575%" y="559.50">core::fmt::write</text></g><g><title>core::slice::&lt;impl [T]&gt;::get (1 samples, 0.02%)</title><rect x="92.0810%" y="533" width="0.0181%" height="15" fill="rgb(227,167,50)" fg:x="5093" fg:w="1"/><text x="92.3310%" y="543.50"></text></g><g><title>&lt;usize as core::slice::index::SliceIndex&lt;[T]&gt;&gt;::get (1 samples, 0.02%)</title><rect x="92.0810%" y="517" width="0.0181%" height="15" fill="rgb(242,84,37)" fg:x="5093" fg:w="1"/><text x="92.3310%" y="527.50"></text></g><g><title>std::io::Write::write_fmt (801 samples, 14.48%)</title><rect x="77.6351%" y="565" width="14.4820%" height="15" fill="rgb(212,4,50)" fg:x="4294" fg:w="801"/><text x="77.8851%" y="575.50">std::io::Write::write_..</text></g><g><title>core::ptr::drop_in_place&lt;core::result::Result&lt;(),std::io::error::Error&gt;&gt; (1 samples, 0.02%)</title><rect x="92.0991%" y="549" width="0.0181%" height="15" fill="rgb(230,228,32)" fg:x="5094" fg:w="1"/><text x="92.3491%" y="559.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (837 samples, 15.13%)</title><rect x="77.2555%" y="597" width="15.1329%" height="15" fill="rgb(248,217,23)" fg:x="4273" fg:w="837"/><text x="77.5055%" y="607.50">&lt;std::io::stdio::Stdout..</text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (832 samples, 15.04%)</title><rect x="77.3459%" y="581" width="15.0425%" height="15" fill="rgb(238,197,32)" fg:x="4278" fg:w="832"/><text x="77.5959%" y="591.50">&lt;&amp;std::io::stdio::Stdou..</text></g><g><title>std::io::stdio::Stdout::lock (15 samples, 0.27%)</title><rect x="92.1172%" y="565" width="0.2712%" height="15" fill="rgb(236,106,1)" fg:x="5095" fg:w="15"/><text x="92.3672%" y="575.50"></text></g><g><title>std::sys_common::remutex::ReentrantMutex&lt;T&gt;::lock (15 samples, 0.27%)</title><rect x="92.1172%" y="549" width="0.2712%" height="15" fill="rgb(219,228,13)" fg:x="5095" fg:w="15"/><text x="92.3672%" y="559.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::lock (15 samples, 0.27%)</title><rect x="92.1172%" y="533" width="0.2712%" height="15" fill="rgb(238,30,35)" fg:x="5095" fg:w="15"/><text x="92.3672%" y="543.50"></text></g><g><title>__GI___pthread_mutex_lock (15 samples, 0.27%)</title><rect x="92.1172%" y="517" width="0.2712%" height="15" fill="rgb(236,70,23)" fg:x="5095" fg:w="15"/><text x="92.3672%" y="527.50"></text></g><g><title>phone_encoder::print_solution (854 samples, 15.44%)</title><rect x="77.0024%" y="645" width="15.4402%" height="15" fill="rgb(249,104,48)" fg:x="4259" fg:w="854"/><text x="77.2524%" y="655.50">phone_encoder::print_sol..</text></g><g><title>std::io::stdio::_print (847 samples, 15.31%)</title><rect x="77.1289%" y="629" width="15.3137%" height="15" fill="rgb(254,117,50)" fg:x="4266" fg:w="847"/><text x="77.3789%" y="639.50">std::io::stdio::_print</text></g><g><title>std::io::stdio::print_to (844 samples, 15.26%)</title><rect x="77.1831%" y="613" width="15.2594%" height="15" fill="rgb(223,152,4)" fg:x="4269" fg:w="844"/><text x="77.4331%" y="623.50">std::io::stdio::print_to</text></g><g><title>std::io::stdio::stdout (3 samples, 0.05%)</title><rect x="92.3884%" y="597" width="0.0542%" height="15" fill="rgb(245,6,2)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="607.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get_or_init_pin (3 samples, 0.05%)</title><rect x="92.3884%" y="581" width="0.0542%" height="15" fill="rgb(249,150,24)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="591.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::get (3 samples, 0.05%)</title><rect x="92.3884%" y="565" width="0.0542%" height="15" fill="rgb(228,185,42)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="575.50"></text></g><g><title>std::lazy::SyncOnceCell&lt;T&gt;::is_initialized (3 samples, 0.05%)</title><rect x="92.3884%" y="549" width="0.0542%" height="15" fill="rgb(226,39,33)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="559.50"></text></g><g><title>std::sync::once::Once::is_completed (3 samples, 0.05%)</title><rect x="92.3884%" y="533" width="0.0542%" height="15" fill="rgb(221,166,19)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="543.50"></text></g><g><title>core::sync::atomic::AtomicUsize::load (3 samples, 0.05%)</title><rect x="92.3884%" y="517" width="0.0542%" height="15" fill="rgb(209,109,2)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="527.50"></text></g><g><title>core::sync::atomic::atomic_load (3 samples, 0.05%)</title><rect x="92.3884%" y="501" width="0.0542%" height="15" fill="rgb(252,216,26)" fg:x="5110" fg:w="3"/><text x="92.6384%" y="511.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (1 samples, 0.02%)</title><rect x="92.4426%" y="581" width="0.0181%" height="15" fill="rgb(227,173,36)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (1 samples, 0.02%)</title><rect x="92.4426%" y="565" width="0.0181%" height="15" fill="rgb(209,90,7)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="575.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (1 samples, 0.02%)</title><rect x="92.4426%" y="549" width="0.0181%" height="15" fill="rgb(250,194,11)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="559.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (1 samples, 0.02%)</title><rect x="92.4426%" y="533" width="0.0181%" height="15" fill="rgb(220,72,50)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="543.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (1 samples, 0.02%)</title><rect x="92.4426%" y="517" width="0.0181%" height="15" fill="rgb(222,106,48)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="527.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (1 samples, 0.02%)</title><rect x="92.4426%" y="501" width="0.0181%" height="15" fill="rgb(216,220,45)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="511.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (1 samples, 0.02%)</title><rect x="92.4426%" y="485" width="0.0181%" height="15" fill="rgb(234,112,18)" fg:x="5113" fg:w="1"/><text x="92.6926%" y="495.50"></text></g><g><title>phone_encoder::print_translations (897 samples, 16.22%)</title><rect x="76.2611%" y="661" width="16.2177%" height="15" fill="rgb(206,179,9)" fg:x="4218" fg:w="897"/><text x="76.5111%" y="671.50">phone_encoder::print_tran..</text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (2 samples, 0.04%)</title><rect x="92.4426%" y="645" width="0.0362%" height="15" fill="rgb(215,115,40)" fg:x="5113" fg:w="2"/><text x="92.6926%" y="655.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (2 samples, 0.04%)</title><rect x="92.4426%" y="629" width="0.0362%" height="15" fill="rgb(222,69,34)" fg:x="5113" fg:w="2"/><text x="92.6926%" y="639.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (2 samples, 0.04%)</title><rect x="92.4426%" y="613" width="0.0362%" height="15" fill="rgb(209,161,10)" fg:x="5113" fg:w="2"/><text x="92.6926%" y="623.50"></text></g><g><title>hashbrown::map::make_hash (2 samples, 0.04%)</title><rect x="92.4426%" y="597" width="0.0362%" height="15" fill="rgb(217,6,38)" fg:x="5113" fg:w="2"/><text x="92.6926%" y="607.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (1 samples, 0.02%)</title><rect x="92.4607%" y="581" width="0.0181%" height="15" fill="rgb(229,229,48)" fg:x="5114" fg:w="1"/><text x="92.7107%" y="591.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (1 samples, 0.02%)</title><rect x="92.4607%" y="565" width="0.0181%" height="15" fill="rgb(225,21,28)" fg:x="5114" fg:w="1"/><text x="92.7107%" y="575.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (1 samples, 0.02%)</title><rect x="92.4607%" y="549" width="0.0181%" height="15" fill="rgb(206,33,13)" fg:x="5114" fg:w="1"/><text x="92.7107%" y="559.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (1 samples, 0.02%)</title><rect x="92.4607%" y="533" width="0.0181%" height="15" fill="rgb(242,178,17)" fg:x="5114" fg:w="1"/><text x="92.7107%" y="543.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (4 samples, 0.07%)</title><rect x="92.6053%" y="485" width="0.0723%" height="15" fill="rgb(220,162,5)" fg:x="5122" fg:w="4"/><text x="92.8553%" y="495.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (2 samples, 0.04%)</title><rect x="92.6415%" y="469" width="0.0362%" height="15" fill="rgb(210,33,43)" fg:x="5124" fg:w="2"/><text x="92.8915%" y="479.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (13 samples, 0.24%)</title><rect x="92.4788%" y="549" width="0.2350%" height="15" fill="rgb(216,116,54)" fg:x="5115" fg:w="13"/><text x="92.7288%" y="559.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (13 samples, 0.24%)</title><rect x="92.4788%" y="533" width="0.2350%" height="15" fill="rgb(249,92,24)" fg:x="5115" fg:w="13"/><text x="92.7288%" y="543.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (13 samples, 0.24%)</title><rect x="92.4788%" y="517" width="0.2350%" height="15" fill="rgb(231,189,14)" fg:x="5115" fg:w="13"/><text x="92.7288%" y="527.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (13 samples, 0.24%)</title><rect x="92.4788%" y="501" width="0.2350%" height="15" fill="rgb(230,8,41)" fg:x="5115" fg:w="13"/><text x="92.7288%" y="511.50"></text></g><g><title>core::hash::sip::u8to64_le (2 samples, 0.04%)</title><rect x="92.6776%" y="485" width="0.0362%" height="15" fill="rgb(249,7,27)" fg:x="5126" fg:w="2"/><text x="92.9276%" y="495.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (21 samples, 0.38%)</title><rect x="92.4788%" y="597" width="0.3797%" height="15" fill="rgb(232,86,5)" fg:x="5115" fg:w="21"/><text x="92.7288%" y="607.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (21 samples, 0.38%)</title><rect x="92.4788%" y="581" width="0.3797%" height="15" fill="rgb(224,175,18)" fg:x="5115" fg:w="21"/><text x="92.7288%" y="591.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (21 samples, 0.38%)</title><rect x="92.4788%" y="565" width="0.3797%" height="15" fill="rgb(220,129,12)" fg:x="5115" fg:w="21"/><text x="92.7288%" y="575.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for usize&gt;::hash (8 samples, 0.14%)</title><rect x="92.7138%" y="549" width="0.1446%" height="15" fill="rgb(210,19,36)" fg:x="5128" fg:w="8"/><text x="92.9638%" y="559.50"></text></g><g><title>core::hash::Hasher::write_usize (8 samples, 0.14%)</title><rect x="92.7138%" y="533" width="0.1446%" height="15" fill="rgb(219,96,14)" fg:x="5128" fg:w="8"/><text x="92.9638%" y="543.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (8 samples, 0.14%)</title><rect x="92.7138%" y="517" width="0.1446%" height="15" fill="rgb(249,106,1)" fg:x="5128" fg:w="8"/><text x="92.9638%" y="527.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (8 samples, 0.14%)</title><rect x="92.7138%" y="501" width="0.1446%" height="15" fill="rgb(249,155,20)" fg:x="5128" fg:w="8"/><text x="92.9638%" y="511.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (8 samples, 0.14%)</title><rect x="92.7138%" y="485" width="0.1446%" height="15" fill="rgb(244,168,9)" fg:x="5128" fg:w="8"/><text x="92.9638%" y="495.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (5 samples, 0.09%)</title><rect x="92.7680%" y="469" width="0.0904%" height="15" fill="rgb(216,23,50)" fg:x="5131" fg:w="5"/><text x="93.0180%" y="479.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (1 samples, 0.02%)</title><rect x="92.8404%" y="453" width="0.0181%" height="15" fill="rgb(224,219,20)" fg:x="5135" fg:w="1"/><text x="93.0904%" y="463.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (1 samples, 0.02%)</title><rect x="92.9127%" y="549" width="0.0181%" height="15" fill="rgb(222,156,15)" fg:x="5139" fg:w="1"/><text x="93.1627%" y="559.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (1 samples, 0.02%)</title><rect x="92.9127%" y="533" width="0.0181%" height="15" fill="rgb(231,97,17)" fg:x="5139" fg:w="1"/><text x="93.1627%" y="543.50"></text></g><g><title>hashbrown::map::make_hash (30 samples, 0.54%)</title><rect x="92.4788%" y="613" width="0.5424%" height="15" fill="rgb(218,70,48)" fg:x="5115" fg:w="30"/><text x="92.7288%" y="623.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (9 samples, 0.16%)</title><rect x="92.8584%" y="597" width="0.1627%" height="15" fill="rgb(212,196,52)" fg:x="5136" fg:w="9"/><text x="93.1084%" y="607.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (9 samples, 0.16%)</title><rect x="92.8584%" y="581" width="0.1627%" height="15" fill="rgb(243,203,18)" fg:x="5136" fg:w="9"/><text x="93.1084%" y="591.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (9 samples, 0.16%)</title><rect x="92.8584%" y="565" width="0.1627%" height="15" fill="rgb(252,125,41)" fg:x="5136" fg:w="9"/><text x="93.1084%" y="575.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (5 samples, 0.09%)</title><rect x="92.9308%" y="549" width="0.0904%" height="15" fill="rgb(223,180,33)" fg:x="5140" fg:w="5"/><text x="93.1808%" y="559.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (5 samples, 0.09%)</title><rect x="92.9308%" y="533" width="0.0904%" height="15" fill="rgb(254,159,46)" fg:x="5140" fg:w="5"/><text x="93.1808%" y="543.50"></text></g><g><title>__memcmp_avx2_movbe (3 samples, 0.05%)</title><rect x="93.0392%" y="517" width="0.0542%" height="15" fill="rgb(254,38,10)" fg:x="5146" fg:w="3"/><text x="93.2892%" y="527.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value::{{closure}} (4 samples, 0.07%)</title><rect x="93.0392%" y="597" width="0.0723%" height="15" fill="rgb(208,217,32)" fg:x="5146" fg:w="4"/><text x="93.2892%" y="607.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::cmp::PartialEq&gt;::eq (4 samples, 0.07%)</title><rect x="93.0392%" y="581" width="0.0723%" height="15" fill="rgb(221,120,13)" fg:x="5146" fg:w="4"/><text x="93.2892%" y="591.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A&gt;&gt; for alloc::vec::Vec&lt;T,A&gt;&gt;::eq (4 samples, 0.07%)</title><rect x="93.0392%" y="565" width="0.0723%" height="15" fill="rgb(246,54,52)" fg:x="5146" fg:w="4"/><text x="93.2892%" y="575.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (4 samples, 0.07%)</title><rect x="93.0392%" y="549" width="0.0723%" height="15" fill="rgb(242,34,25)" fg:x="5146" fg:w="4"/><text x="93.2892%" y="559.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (4 samples, 0.07%)</title><rect x="93.0392%" y="533" width="0.0723%" height="15" fill="rgb(247,209,9)" fg:x="5146" fg:w="4"/><text x="93.2892%" y="543.50"></text></g><g><title>core::mem::size_of_val (1 samples, 0.02%)</title><rect x="93.0935%" y="517" width="0.0181%" height="15" fill="rgb(228,71,26)" fg:x="5149" fg:w="1"/><text x="93.3435%" y="527.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::probe_seq (1 samples, 0.02%)</title><rect x="93.1116%" y="565" width="0.0181%" height="15" fill="rgb(222,145,49)" fg:x="5150" fg:w="1"/><text x="93.3616%" y="575.50"></text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (37 samples, 0.67%)</title><rect x="92.4788%" y="661" width="0.6690%" height="15" fill="rgb(218,121,17)" fg:x="5115" fg:w="37"/><text x="92.7288%" y="671.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (37 samples, 0.67%)</title><rect x="92.4788%" y="645" width="0.6690%" height="15" fill="rgb(244,50,7)" fg:x="5115" fg:w="37"/><text x="92.7288%" y="655.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (37 samples, 0.67%)</title><rect x="92.4788%" y="629" width="0.6690%" height="15" fill="rgb(246,229,37)" fg:x="5115" fg:w="37"/><text x="92.7288%" y="639.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::find (7 samples, 0.13%)</title><rect x="93.0212%" y="613" width="0.1266%" height="15" fill="rgb(225,18,5)" fg:x="5145" fg:w="7"/><text x="93.2712%" y="623.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::iter_hash (2 samples, 0.04%)</title><rect x="93.1116%" y="597" width="0.0362%" height="15" fill="rgb(213,204,8)" fg:x="5150" fg:w="2"/><text x="93.3616%" y="607.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T&gt;::new (2 samples, 0.04%)</title><rect x="93.1116%" y="581" width="0.0362%" height="15" fill="rgb(238,103,6)" fg:x="5150" fg:w="2"/><text x="93.3616%" y="591.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_byte (1 samples, 0.02%)</title><rect x="93.1296%" y="565" width="0.0181%" height="15" fill="rgb(222,25,35)" fg:x="5151" fg:w="1"/><text x="93.3796%" y="575.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_set1_epi8 (1 samples, 0.02%)</title><rect x="93.1296%" y="549" width="0.0181%" height="15" fill="rgb(213,203,35)" fg:x="5151" fg:w="1"/><text x="93.3796%" y="559.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_set_epi8 (1 samples, 0.02%)</title><rect x="93.1296%" y="533" width="0.0181%" height="15" fill="rgb(221,79,53)" fg:x="5151" fg:w="1"/><text x="93.3796%" y="543.50"></text></g><g><title>core::core_arch::simd::i8x16::new (1 samples, 0.02%)</title><rect x="93.1296%" y="517" width="0.0181%" height="15" fill="rgb(243,200,35)" fg:x="5151" fg:w="1"/><text x="93.3796%" y="527.50"></text></g><g><title>phone_encoder::print_translations (1,986 samples, 35.91%)</title><rect x="57.3314%" y="677" width="35.9067%" height="15" fill="rgb(248,60,25)" fg:x="3171" fg:w="1986"/><text x="57.5814%" y="687.50">phone_encoder::print_translations</text></g><g><title>std::io::stdio::_print (5 samples, 0.09%)</title><rect x="93.1477%" y="661" width="0.0904%" height="15" fill="rgb(227,53,46)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="671.50"></text></g><g><title>std::io::stdio::print_to (5 samples, 0.09%)</title><rect x="93.1477%" y="645" width="0.0904%" height="15" fill="rgb(216,120,32)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="655.50"></text></g><g><title>&lt;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (5 samples, 0.09%)</title><rect x="93.1477%" y="629" width="0.0904%" height="15" fill="rgb(220,134,1)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="639.50"></text></g><g><title>&lt;&amp;std::io::stdio::Stdout as std::io::Write&gt;::write_fmt (5 samples, 0.09%)</title><rect x="93.1477%" y="613" width="0.0904%" height="15" fill="rgb(237,168,5)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="623.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::io::stdio::StdoutLock&gt; (5 samples, 0.09%)</title><rect x="93.1477%" y="597" width="0.0904%" height="15" fill="rgb(231,100,33)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="607.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;core::cell::RefCell&lt;std::io::buffered::linewriter::LineWriter&lt;std::io::stdio::StdoutRaw&gt;&gt;&gt;&gt; (5 samples, 0.09%)</title><rect x="93.1477%" y="581" width="0.0904%" height="15" fill="rgb(236,177,47)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="591.50"></text></g><g><title>&lt;std::sys_common::remutex::ReentrantMutexGuard&lt;T&gt; as core::ops::drop::Drop&gt;::drop (5 samples, 0.09%)</title><rect x="93.1477%" y="565" width="0.0904%" height="15" fill="rgb(235,7,49)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="575.50"></text></g><g><title>std::sys::unix::mutex::ReentrantMutex::unlock (5 samples, 0.09%)</title><rect x="93.1477%" y="549" width="0.0904%" height="15" fill="rgb(232,119,22)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="559.50"></text></g><g><title>core::fmt::write (5 samples, 0.09%)</title><rect x="93.1477%" y="533" width="0.0904%" height="15" fill="rgb(254,73,53)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="543.50"></text></g><g><title>&lt;std::io::Write::write_fmt::Adaptor&lt;T&gt; as core::fmt::Write&gt;::write_str (5 samples, 0.09%)</title><rect x="93.1477%" y="517" width="0.0904%" height="15" fill="rgb(251,35,20)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="527.50"></text></g><g><title>&lt;std::io::stdio::StdoutLock as std::io::Write&gt;::write_all (5 samples, 0.09%)</title><rect x="93.1477%" y="501" width="0.0904%" height="15" fill="rgb(241,119,20)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="511.50"></text></g><g><title>&lt;std::io::buffered::linewriter::LineWriter&lt;W&gt; as std::io::Write&gt;::write_all (5 samples, 0.09%)</title><rect x="93.1477%" y="485" width="0.0904%" height="15" fill="rgb(207,102,14)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="495.50"></text></g><g><title>&lt;std::io::buffered::linewritershim::LineWriterShim&lt;W&gt; as std::io::Write&gt;::write_all (5 samples, 0.09%)</title><rect x="93.1477%" y="469" width="0.0904%" height="15" fill="rgb(248,201,50)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="479.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (5 samples, 0.09%)</title><rect x="93.1477%" y="453" width="0.0904%" height="15" fill="rgb(222,185,44)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="463.50"></text></g><g><title>&lt;std::io::stdio::StdoutRaw as std::io::Write&gt;::write (5 samples, 0.09%)</title><rect x="93.1477%" y="437" width="0.0904%" height="15" fill="rgb(218,107,18)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="447.50"></text></g><g><title>&lt;std::sys::unix::stdio::Stdout as std::io::Write&gt;::write (5 samples, 0.09%)</title><rect x="93.1477%" y="421" width="0.0904%" height="15" fill="rgb(237,177,39)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="431.50"></text></g><g><title>std::sys::unix::fd::FileDesc::write (5 samples, 0.09%)</title><rect x="93.1477%" y="405" width="0.0904%" height="15" fill="rgb(246,69,6)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="415.50"></text></g><g><title>__libc_write (5 samples, 0.09%)</title><rect x="93.1477%" y="389" width="0.0904%" height="15" fill="rgb(234,208,37)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="399.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="93.1477%" y="373" width="0.0904%" height="15" fill="rgb(225,4,6)" fg:x="5152" fg:w="5"/><text x="93.3977%" y="383.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="93.2381%" y="629" width="0.0181%" height="15" fill="rgb(233,45,0)" fg:x="5157" fg:w="1"/><text x="93.4881%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::try_reserve (1 samples, 0.02%)</title><rect x="93.2381%" y="613" width="0.0181%" height="15" fill="rgb(226,136,5)" fg:x="5157" fg:w="1"/><text x="93.4881%" y="623.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::grow_amortized (1 samples, 0.02%)</title><rect x="93.2381%" y="597" width="0.0181%" height="15" fill="rgb(211,91,47)" fg:x="5157" fg:w="1"/><text x="93.4881%" y="607.50"></text></g><g><title>hashbrown::map::make_hash (1 samples, 0.02%)</title><rect x="93.2381%" y="581" width="0.0181%" height="15" fill="rgb(242,88,51)" fg:x="5157" fg:w="1"/><text x="93.4881%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="93.2562%" y="581" width="0.0362%" height="15" fill="rgb(230,91,28)" fg:x="5158" fg:w="2"/><text x="93.5062%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="93.2562%" y="565" width="0.0362%" height="15" fill="rgb(254,186,29)" fg:x="5158" fg:w="2"/><text x="93.5062%" y="575.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (4 samples, 0.07%)</title><rect x="93.5455%" y="485" width="0.0723%" height="15" fill="rgb(238,6,4)" fg:x="5174" fg:w="4"/><text x="93.7955%" y="495.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (6 samples, 0.11%)</title><rect x="93.5274%" y="501" width="0.1085%" height="15" fill="rgb(221,151,16)" fg:x="5173" fg:w="6"/><text x="93.7774%" y="511.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (1 samples, 0.02%)</title><rect x="93.6178%" y="485" width="0.0181%" height="15" fill="rgb(251,143,52)" fg:x="5178" fg:w="1"/><text x="93.8678%" y="495.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (22 samples, 0.40%)</title><rect x="93.2924%" y="565" width="0.3978%" height="15" fill="rgb(206,90,15)" fg:x="5160" fg:w="22"/><text x="93.5424%" y="575.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (18 samples, 0.33%)</title><rect x="93.3647%" y="549" width="0.3254%" height="15" fill="rgb(218,35,8)" fg:x="5164" fg:w="18"/><text x="93.6147%" y="559.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (18 samples, 0.33%)</title><rect x="93.3647%" y="533" width="0.3254%" height="15" fill="rgb(239,215,6)" fg:x="5164" fg:w="18"/><text x="93.6147%" y="543.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (18 samples, 0.33%)</title><rect x="93.3647%" y="517" width="0.3254%" height="15" fill="rgb(245,116,39)" fg:x="5164" fg:w="18"/><text x="93.6147%" y="527.50"></text></g><g><title>core::hash::sip::u8to64_le (3 samples, 0.05%)</title><rect x="93.6359%" y="501" width="0.0542%" height="15" fill="rgb(242,65,28)" fg:x="5179" fg:w="3"/><text x="93.8859%" y="511.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (3 samples, 0.05%)</title><rect x="93.9794%" y="469" width="0.0542%" height="15" fill="rgb(252,132,53)" fg:x="5198" fg:w="3"/><text x="94.2294%" y="479.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (12 samples, 0.22%)</title><rect x="93.8709%" y="485" width="0.2170%" height="15" fill="rgb(224,159,50)" fg:x="5192" fg:w="12"/><text x="94.1209%" y="495.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (3 samples, 0.05%)</title><rect x="94.0336%" y="469" width="0.0542%" height="15" fill="rgb(224,93,4)" fg:x="5201" fg:w="3"/><text x="94.2836%" y="479.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (55 samples, 0.99%)</title><rect x="93.2562%" y="613" width="0.9944%" height="15" fill="rgb(208,81,34)" fg:x="5158" fg:w="55"/><text x="93.5062%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (55 samples, 0.99%)</title><rect x="93.2562%" y="597" width="0.9944%" height="15" fill="rgb(233,92,54)" fg:x="5158" fg:w="55"/><text x="93.5062%" y="607.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (53 samples, 0.96%)</title><rect x="93.2924%" y="581" width="0.9582%" height="15" fill="rgb(237,21,14)" fg:x="5160" fg:w="53"/><text x="93.5424%" y="591.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for usize&gt;::hash (31 samples, 0.56%)</title><rect x="93.6901%" y="565" width="0.5605%" height="15" fill="rgb(249,128,51)" fg:x="5182" fg:w="31"/><text x="93.9401%" y="575.50"></text></g><g><title>core::hash::Hasher::write_usize (31 samples, 0.56%)</title><rect x="93.6901%" y="549" width="0.5605%" height="15" fill="rgb(223,129,24)" fg:x="5182" fg:w="31"/><text x="93.9401%" y="559.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (30 samples, 0.54%)</title><rect x="93.7082%" y="533" width="0.5424%" height="15" fill="rgb(231,168,25)" fg:x="5183" fg:w="30"/><text x="93.9582%" y="543.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (30 samples, 0.54%)</title><rect x="93.7082%" y="517" width="0.5424%" height="15" fill="rgb(224,39,20)" fg:x="5183" fg:w="30"/><text x="93.9582%" y="527.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (30 samples, 0.54%)</title><rect x="93.7082%" y="501" width="0.5424%" height="15" fill="rgb(225,152,53)" fg:x="5183" fg:w="30"/><text x="93.9582%" y="511.50"></text></g><g><title>core::hash::sip::u8to64_le (9 samples, 0.16%)</title><rect x="94.0879%" y="485" width="0.1627%" height="15" fill="rgb(252,17,24)" fg:x="5204" fg:w="9"/><text x="94.3379%" y="495.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (4 samples, 0.07%)</title><rect x="94.3952%" y="549" width="0.0723%" height="15" fill="rgb(250,114,30)" fg:x="5221" fg:w="4"/><text x="94.6452%" y="559.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (10 samples, 0.18%)</title><rect x="94.3229%" y="565" width="0.1808%" height="15" fill="rgb(229,5,4)" fg:x="5217" fg:w="10"/><text x="94.5729%" y="575.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (2 samples, 0.04%)</title><rect x="94.4675%" y="549" width="0.0362%" height="15" fill="rgb(225,176,49)" fg:x="5225" fg:w="2"/><text x="94.7175%" y="559.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.13%)</title><rect x="94.5399%" y="549" width="0.1266%" height="15" fill="rgb(224,221,49)" fg:x="5229" fg:w="7"/><text x="94.7899%" y="559.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (26 samples, 0.47%)</title><rect x="94.2506%" y="613" width="0.4701%" height="15" fill="rgb(253,169,27)" fg:x="5213" fg:w="26"/><text x="94.5006%" y="623.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (26 samples, 0.47%)</title><rect x="94.2506%" y="597" width="0.4701%" height="15" fill="rgb(211,206,16)" fg:x="5213" fg:w="26"/><text x="94.5006%" y="607.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (26 samples, 0.47%)</title><rect x="94.2506%" y="581" width="0.4701%" height="15" fill="rgb(244,87,35)" fg:x="5213" fg:w="26"/><text x="94.5006%" y="591.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (12 samples, 0.22%)</title><rect x="94.5037%" y="565" width="0.2170%" height="15" fill="rgb(246,28,10)" fg:x="5227" fg:w="12"/><text x="94.7537%" y="575.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (3 samples, 0.05%)</title><rect x="94.6664%" y="549" width="0.0542%" height="15" fill="rgb(229,12,44)" fg:x="5236" fg:w="3"/><text x="94.9164%" y="559.50"></text></g><g><title>hashbrown::map::make_hash (83 samples, 1.50%)</title><rect x="93.2562%" y="629" width="1.5006%" height="15" fill="rgb(210,145,37)" fg:x="5158" fg:w="83"/><text x="93.5062%" y="639.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (2 samples, 0.04%)</title><rect x="94.7207%" y="613" width="0.0362%" height="15" fill="rgb(227,112,52)" fg:x="5239" fg:w="2"/><text x="94.9707%" y="623.50"></text></g><g><title>core::hash::sip::SipHasher13::new_with_keys (1 samples, 0.02%)</title><rect x="94.7387%" y="597" width="0.0181%" height="15" fill="rgb(238,155,34)" fg:x="5240" fg:w="1"/><text x="94.9887%" y="607.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::new_with_keys (1 samples, 0.02%)</title><rect x="94.7387%" y="581" width="0.0181%" height="15" fill="rgb(239,226,36)" fg:x="5240" fg:w="1"/><text x="94.9887%" y="591.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::reset (1 samples, 0.02%)</title><rect x="94.7387%" y="565" width="0.0181%" height="15" fill="rgb(230,16,23)" fg:x="5240" fg:w="1"/><text x="94.9887%" y="575.50"></text></g><g><title>&lt;hashbrown::raw::RawIterHash&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (3 samples, 0.05%)</title><rect x="94.8834%" y="613" width="0.0542%" height="15" fill="rgb(236,171,36)" fg:x="5248" fg:w="3"/><text x="95.1334%" y="623.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_empty (1 samples, 0.02%)</title><rect x="94.9195%" y="597" width="0.0181%" height="15" fill="rgb(221,22,14)" fg:x="5250" fg:w="1"/><text x="95.1695%" y="607.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_byte (1 samples, 0.02%)</title><rect x="94.9195%" y="581" width="0.0181%" height="15" fill="rgb(242,43,11)" fg:x="5250" fg:w="1"/><text x="95.1695%" y="591.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (1 samples, 0.02%)</title><rect x="94.9195%" y="565" width="0.0181%" height="15" fill="rgb(232,69,23)" fg:x="5250" fg:w="1"/><text x="95.1695%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (5 samples, 0.09%)</title><rect x="94.9376%" y="565" width="0.0904%" height="15" fill="rgb(216,180,54)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="575.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (5 samples, 0.09%)</title><rect x="94.9376%" y="549" width="0.0904%" height="15" fill="rgb(216,5,24)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="559.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (5 samples, 0.09%)</title><rect x="94.9376%" y="533" width="0.0904%" height="15" fill="rgb(225,89,9)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="543.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="517" width="0.0904%" height="15" fill="rgb(243,75,33)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="527.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="501" width="0.0904%" height="15" fill="rgb(247,141,45)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="511.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="485" width="0.0904%" height="15" fill="rgb(232,177,36)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="495.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="469" width="0.0904%" height="15" fill="rgb(219,125,36)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="479.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="453" width="0.0904%" height="15" fill="rgb(227,94,9)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="463.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="437" width="0.0904%" height="15" fill="rgb(240,34,52)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="447.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="421" width="0.0904%" height="15" fill="rgb(216,45,12)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="431.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="405" width="0.0904%" height="15" fill="rgb(246,21,19)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="415.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="389" width="0.0904%" height="15" fill="rgb(213,98,42)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="399.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="373" width="0.0904%" height="15" fill="rgb(250,136,47)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="383.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="357" width="0.0904%" height="15" fill="rgb(251,124,27)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="367.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="341" width="0.0904%" height="15" fill="rgb(229,180,14)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="351.50"></text></g><g><title>[unknown] (5 samples, 0.09%)</title><rect x="94.9376%" y="325" width="0.0904%" height="15" fill="rgb(245,216,25)" fg:x="5251" fg:w="5"/><text x="95.1876%" y="335.50"></text></g><g><title>__memcmp_avx2_movbe (6 samples, 0.11%)</title><rect x="95.0280%" y="533" width="0.1085%" height="15" fill="rgb(251,43,5)" fg:x="5256" fg:w="6"/><text x="95.2780%" y="543.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value::{{closure}} (12 samples, 0.22%)</title><rect x="94.9376%" y="613" width="0.2170%" height="15" fill="rgb(250,128,24)" fg:x="5251" fg:w="12"/><text x="95.1876%" y="623.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::cmp::PartialEq&gt;::eq (12 samples, 0.22%)</title><rect x="94.9376%" y="597" width="0.2170%" height="15" fill="rgb(217,117,27)" fg:x="5251" fg:w="12"/><text x="95.1876%" y="607.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A&gt;&gt; for alloc::vec::Vec&lt;T,A&gt;&gt;::eq (12 samples, 0.22%)</title><rect x="94.9376%" y="581" width="0.2170%" height="15" fill="rgb(245,147,4)" fg:x="5251" fg:w="12"/><text x="95.1876%" y="591.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (7 samples, 0.13%)</title><rect x="95.0280%" y="565" width="0.1266%" height="15" fill="rgb(242,201,35)" fg:x="5256" fg:w="7"/><text x="95.2780%" y="575.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (7 samples, 0.13%)</title><rect x="95.0280%" y="549" width="0.1266%" height="15" fill="rgb(218,181,1)" fg:x="5256" fg:w="7"/><text x="95.2780%" y="559.50"></text></g><g><title>core::mem::size_of_val (1 samples, 0.02%)</title><rect x="95.1365%" y="533" width="0.0181%" height="15" fill="rgb(222,6,29)" fg:x="5262" fg:w="1"/><text x="95.3865%" y="543.50"></text></g><g><title>&lt;hashbrown::raw::ProbeSeq as core::iter::traits::iterator::Iterator&gt;::next (6 samples, 0.11%)</title><rect x="95.1546%" y="581" width="0.1085%" height="15" fill="rgb(208,186,3)" fg:x="5263" fg:w="6"/><text x="95.4046%" y="591.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::probe_seq (1 samples, 0.02%)</title><rect x="95.2631%" y="581" width="0.0181%" height="15" fill="rgb(216,36,26)" fg:x="5269" fg:w="1"/><text x="95.5131%" y="591.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (3 samples, 0.05%)</title><rect x="95.2811%" y="581" width="0.0542%" height="15" fill="rgb(248,201,23)" fg:x="5270" fg:w="3"/><text x="95.5311%" y="591.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (3 samples, 0.05%)</title><rect x="95.2811%" y="565" width="0.0542%" height="15" fill="rgb(251,170,31)" fg:x="5270" fg:w="3"/><text x="95.5311%" y="575.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.05%)</title><rect x="95.2811%" y="549" width="0.0542%" height="15" fill="rgb(207,110,25)" fg:x="5270" fg:w="3"/><text x="95.5311%" y="559.50"></text></g><g><title>phone_encoder::print_translations (2,840 samples, 51.35%)</title><rect x="44.0246%" y="693" width="51.3470%" height="15" fill="rgb(250,54,15)" fg:x="2435" fg:w="2840"/><text x="44.2746%" y="703.50">phone_encoder::print_translations</text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (118 samples, 2.13%)</title><rect x="93.2381%" y="677" width="2.1334%" height="15" fill="rgb(227,68,33)" fg:x="5157" fg:w="118"/><text x="93.4881%" y="687.50">s..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (118 samples, 2.13%)</title><rect x="93.2381%" y="661" width="2.1334%" height="15" fill="rgb(238,34,41)" fg:x="5157" fg:w="118"/><text x="93.4881%" y="671.50">h..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (118 samples, 2.13%)</title><rect x="93.2381%" y="645" width="2.1334%" height="15" fill="rgb(220,11,15)" fg:x="5157" fg:w="118"/><text x="93.4881%" y="655.50">h..</text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::find (34 samples, 0.61%)</title><rect x="94.7568%" y="629" width="0.6147%" height="15" fill="rgb(246,111,35)" fg:x="5241" fg:w="34"/><text x="95.0068%" y="639.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::iter_hash (12 samples, 0.22%)</title><rect x="95.1546%" y="613" width="0.2170%" height="15" fill="rgb(209,88,53)" fg:x="5263" fg:w="12"/><text x="95.4046%" y="623.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T&gt;::new (12 samples, 0.22%)</title><rect x="95.1546%" y="597" width="0.2170%" height="15" fill="rgb(231,185,47)" fg:x="5263" fg:w="12"/><text x="95.4046%" y="607.50"></text></g><g><title>hashbrown::raw::sse2::Group::match_byte (2 samples, 0.04%)</title><rect x="95.3354%" y="581" width="0.0362%" height="15" fill="rgb(233,154,1)" fg:x="5273" fg:w="2"/><text x="95.5854%" y="591.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_set1_epi8 (2 samples, 0.04%)</title><rect x="95.3354%" y="565" width="0.0362%" height="15" fill="rgb(225,15,46)" fg:x="5273" fg:w="2"/><text x="95.5854%" y="575.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_set_epi8 (2 samples, 0.04%)</title><rect x="95.3354%" y="549" width="0.0362%" height="15" fill="rgb(211,135,41)" fg:x="5273" fg:w="2"/><text x="95.5854%" y="559.50"></text></g><g><title>core::core_arch::simd::i8x16::new (2 samples, 0.04%)</title><rect x="95.3354%" y="533" width="0.0362%" height="15" fill="rgb(208,54,0)" fg:x="5273" fg:w="2"/><text x="95.5854%" y="543.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (2 samples, 0.04%)</title><rect x="95.4077%" y="597" width="0.0362%" height="15" fill="rgb(244,136,14)" fg:x="5277" fg:w="2"/><text x="95.6577%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::as_ptr (2 samples, 0.04%)</title><rect x="95.4077%" y="581" width="0.0362%" height="15" fill="rgb(241,56,14)" fg:x="5277" fg:w="2"/><text x="95.6577%" y="591.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (4 samples, 0.07%)</title><rect x="95.5885%" y="517" width="0.0723%" height="15" fill="rgb(205,80,24)" fg:x="5287" fg:w="4"/><text x="95.8385%" y="527.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (1 samples, 0.02%)</title><rect x="95.6427%" y="501" width="0.0181%" height="15" fill="rgb(220,57,4)" fg:x="5290" fg:w="1"/><text x="95.8927%" y="511.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for u64&gt;::hash_slice (15 samples, 0.27%)</title><rect x="95.4439%" y="581" width="0.2712%" height="15" fill="rgb(226,193,50)" fg:x="5279" fg:w="15"/><text x="95.6939%" y="591.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (14 samples, 0.25%)</title><rect x="95.4619%" y="565" width="0.2531%" height="15" fill="rgb(231,168,22)" fg:x="5280" fg:w="14"/><text x="95.7119%" y="575.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (14 samples, 0.25%)</title><rect x="95.4619%" y="549" width="0.2531%" height="15" fill="rgb(254,215,14)" fg:x="5280" fg:w="14"/><text x="95.7119%" y="559.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (14 samples, 0.25%)</title><rect x="95.4619%" y="533" width="0.2531%" height="15" fill="rgb(211,115,16)" fg:x="5280" fg:w="14"/><text x="95.7119%" y="543.50"></text></g><g><title>core::hash::sip::u8to64_le (3 samples, 0.05%)</title><rect x="95.6608%" y="517" width="0.0542%" height="15" fill="rgb(236,210,16)" fg:x="5291" fg:w="3"/><text x="95.9108%" y="527.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (1 samples, 0.02%)</title><rect x="95.9863%" y="485" width="0.0181%" height="15" fill="rgb(221,94,12)" fg:x="5309" fg:w="1"/><text x="96.2363%" y="495.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (7 samples, 0.13%)</title><rect x="95.9139%" y="501" width="0.1266%" height="15" fill="rgb(235,218,49)" fg:x="5305" fg:w="7"/><text x="96.1639%" y="511.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (2 samples, 0.04%)</title><rect x="96.0043%" y="485" width="0.0362%" height="15" fill="rgb(217,114,14)" fg:x="5310" fg:w="2"/><text x="96.2543%" y="495.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::hash::Hash&gt;::hash (41 samples, 0.74%)</title><rect x="95.4077%" y="629" width="0.7413%" height="15" fill="rgb(216,145,22)" fg:x="5277" fg:w="41"/><text x="95.6577%" y="639.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::hash::Hash&gt;::hash (41 samples, 0.74%)</title><rect x="95.4077%" y="613" width="0.7413%" height="15" fill="rgb(217,112,39)" fg:x="5277" fg:w="41"/><text x="95.6577%" y="623.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for [T]&gt;::hash (39 samples, 0.71%)</title><rect x="95.4439%" y="597" width="0.7051%" height="15" fill="rgb(225,85,32)" fg:x="5279" fg:w="39"/><text x="95.6939%" y="607.50"></text></g><g><title>core::hash::impls::&lt;impl core::hash::Hash for usize&gt;::hash (24 samples, 0.43%)</title><rect x="95.7151%" y="581" width="0.4339%" height="15" fill="rgb(245,209,47)" fg:x="5294" fg:w="24"/><text x="95.9651%" y="591.50"></text></g><g><title>core::hash::Hasher::write_usize (24 samples, 0.43%)</title><rect x="95.7151%" y="565" width="0.4339%" height="15" fill="rgb(218,220,15)" fg:x="5294" fg:w="24"/><text x="95.9651%" y="575.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::write (23 samples, 0.42%)</title><rect x="95.7331%" y="549" width="0.4158%" height="15" fill="rgb(222,202,31)" fg:x="5295" fg:w="23"/><text x="95.9831%" y="559.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::write (23 samples, 0.42%)</title><rect x="95.7331%" y="533" width="0.4158%" height="15" fill="rgb(243,203,4)" fg:x="5295" fg:w="23"/><text x="95.9831%" y="543.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::write (23 samples, 0.42%)</title><rect x="95.7331%" y="517" width="0.4158%" height="15" fill="rgb(237,92,17)" fg:x="5295" fg:w="23"/><text x="95.9831%" y="527.50"></text></g><g><title>core::hash::sip::u8to64_le (6 samples, 0.11%)</title><rect x="96.0405%" y="501" width="0.1085%" height="15" fill="rgb(231,119,7)" fg:x="5312" fg:w="6"/><text x="96.2905%" y="511.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (2 samples, 0.04%)</title><rect x="96.4202%" y="565" width="0.0362%" height="15" fill="rgb(237,82,41)" fg:x="5333" fg:w="2"/><text x="96.6702%" y="575.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::c_rounds (8 samples, 0.14%)</title><rect x="96.3840%" y="581" width="0.1446%" height="15" fill="rgb(226,81,48)" fg:x="5331" fg:w="8"/><text x="96.6340%" y="591.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (4 samples, 0.07%)</title><rect x="96.4563%" y="565" width="0.0723%" height="15" fill="rgb(234,70,51)" fg:x="5335" fg:w="4"/><text x="96.7063%" y="575.50"></text></g><g><title>core::num::&lt;impl u64&gt;::rotate_left (7 samples, 0.13%)</title><rect x="96.7095%" y="565" width="0.1266%" height="15" fill="rgb(251,86,4)" fg:x="5349" fg:w="7"/><text x="96.9595%" y="575.50"></text></g><g><title>&lt;std::collections::hash::map::DefaultHasher as core::hash::Hasher&gt;::finish (47 samples, 0.85%)</title><rect x="96.1490%" y="629" width="0.8498%" height="15" fill="rgb(244,144,28)" fg:x="5318" fg:w="47"/><text x="96.3990%" y="639.50"></text></g><g><title>&lt;core::hash::sip::SipHasher13 as core::hash::Hasher&gt;::finish (47 samples, 0.85%)</title><rect x="96.1490%" y="613" width="0.8498%" height="15" fill="rgb(232,161,39)" fg:x="5318" fg:w="47"/><text x="96.3990%" y="623.50"></text></g><g><title>&lt;core::hash::sip::Hasher&lt;S&gt; as core::hash::Hasher&gt;::finish (47 samples, 0.85%)</title><rect x="96.1490%" y="597" width="0.8498%" height="15" fill="rgb(247,34,51)" fg:x="5318" fg:w="47"/><text x="96.3990%" y="607.50"></text></g><g><title>&lt;core::hash::sip::Sip13Rounds as core::hash::sip::Sip&gt;::d_rounds (26 samples, 0.47%)</title><rect x="96.5287%" y="581" width="0.4701%" height="15" fill="rgb(225,132,2)" fg:x="5339" fg:w="26"/><text x="96.7787%" y="591.50"></text></g><g><title>core::num::&lt;impl u64&gt;::wrapping_add (9 samples, 0.16%)</title><rect x="96.8360%" y="565" width="0.1627%" height="15" fill="rgb(209,159,44)" fg:x="5356" fg:w="9"/><text x="97.0860%" y="575.50"></text></g><g><title>hashbrown::map::make_hash (92 samples, 1.66%)</title><rect x="95.3715%" y="645" width="1.6634%" height="15" fill="rgb(251,214,1)" fg:x="5275" fg:w="92"/><text x="95.6215%" y="655.50"></text></g><g><title>&lt;std::collections::hash::map::RandomState as core::hash::BuildHasher&gt;::build_hasher (2 samples, 0.04%)</title><rect x="96.9987%" y="629" width="0.0362%" height="15" fill="rgb(247,84,47)" fg:x="5365" fg:w="2"/><text x="97.2487%" y="639.50"></text></g><g><title>core::hash::sip::SipHasher13::new_with_keys (2 samples, 0.04%)</title><rect x="96.9987%" y="613" width="0.0362%" height="15" fill="rgb(240,111,43)" fg:x="5365" fg:w="2"/><text x="97.2487%" y="623.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::new_with_keys (2 samples, 0.04%)</title><rect x="96.9987%" y="597" width="0.0362%" height="15" fill="rgb(215,214,35)" fg:x="5365" fg:w="2"/><text x="97.2487%" y="607.50"></text></g><g><title>core::hash::sip::Hasher&lt;S&gt;::reset (2 samples, 0.04%)</title><rect x="96.9987%" y="581" width="0.0362%" height="15" fill="rgb(248,207,23)" fg:x="5365" fg:w="2"/><text x="97.2487%" y="591.50"></text></g><g><title>&lt;hashbrown::raw::RawIterHash&lt;T&gt; as core::iter::traits::iterator::Iterator&gt;::next (2 samples, 0.04%)</title><rect x="97.0530%" y="629" width="0.0362%" height="15" fill="rgb(214,186,4)" fg:x="5368" fg:w="2"/><text x="97.3030%" y="639.50"></text></g><g><title>&lt;hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator&gt;::next (1 samples, 0.02%)</title><rect x="97.0711%" y="613" width="0.0181%" height="15" fill="rgb(220,133,22)" fg:x="5369" fg:w="1"/><text x="97.3211%" y="623.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::index::Index&lt;I&gt;&gt;::index (1 samples, 0.02%)</title><rect x="97.0891%" y="581" width="0.0181%" height="15" fill="rgb(239,134,19)" fg:x="5370" fg:w="1"/><text x="97.3391%" y="591.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::ops::deref::Deref&gt;::deref (1 samples, 0.02%)</title><rect x="97.0891%" y="565" width="0.0181%" height="15" fill="rgb(250,140,9)" fg:x="5370" fg:w="1"/><text x="97.3391%" y="575.50"></text></g><g><title>__memcmp_avx2_movbe (10 samples, 0.18%)</title><rect x="97.1072%" y="549" width="0.1808%" height="15" fill="rgb(225,59,14)" fg:x="5371" fg:w="10"/><text x="97.3572%" y="559.50"></text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value::{{closure}} (12 samples, 0.22%)</title><rect x="97.0891%" y="629" width="0.2170%" height="15" fill="rgb(214,152,51)" fg:x="5370" fg:w="12"/><text x="97.3391%" y="639.50"></text></g><g><title>&lt;num_bigint::biguint::BigUint as core::cmp::PartialEq&gt;::eq (12 samples, 0.22%)</title><rect x="97.0891%" y="613" width="0.2170%" height="15" fill="rgb(251,227,43)" fg:x="5370" fg:w="12"/><text x="97.3391%" y="623.50"></text></g><g><title>alloc::vec::partial_eq::&lt;impl core::cmp::PartialEq&lt;alloc::vec::Vec&lt;U,A&gt;&gt; for alloc::vec::Vec&lt;T,A&gt;&gt;::eq (12 samples, 0.22%)</title><rect x="97.0891%" y="597" width="0.2170%" height="15" fill="rgb(241,96,17)" fg:x="5370" fg:w="12"/><text x="97.3391%" y="607.50"></text></g><g><title>core::slice::cmp::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (11 samples, 0.20%)</title><rect x="97.1072%" y="581" width="0.1989%" height="15" fill="rgb(234,198,43)" fg:x="5371" fg:w="11"/><text x="97.3572%" y="591.50"></text></g><g><title>&lt;[A] as core::slice::cmp::SlicePartialEq&lt;B&gt;&gt;::equal (11 samples, 0.20%)</title><rect x="97.1072%" y="565" width="0.1989%" height="15" fill="rgb(220,108,29)" fg:x="5371" fg:w="11"/><text x="97.3572%" y="575.50"></text></g><g><title>core::mem::size_of_val (1 samples, 0.02%)</title><rect x="97.2880%" y="549" width="0.0181%" height="15" fill="rgb(226,163,33)" fg:x="5381" fg:w="1"/><text x="97.5380%" y="559.50"></text></g><g><title>&lt;hashbrown::raw::ProbeSeq as core::iter::traits::iterator::Iterator&gt;::next (4 samples, 0.07%)</title><rect x="97.3061%" y="597" width="0.0723%" height="15" fill="rgb(205,194,45)" fg:x="5382" fg:w="4"/><text x="97.5561%" y="607.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::probe_seq (1 samples, 0.02%)</title><rect x="97.3784%" y="597" width="0.0181%" height="15" fill="rgb(206,143,44)" fg:x="5386" fg:w="1"/><text x="97.6284%" y="607.50"></text></g><g><title>phone_encoder::print_translations (3,372 samples, 60.97%)</title><rect x="36.4853%" y="709" width="60.9655%" height="15" fill="rgb(236,136,36)" fg:x="2018" fg:w="3372"/><text x="36.7353%" y="719.50">phone_encoder::print_translations</text></g><g><title>std::collections::hash::map::HashMap&lt;K,V,S&gt;::get (115 samples, 2.08%)</title><rect x="95.3715%" y="693" width="2.0792%" height="15" fill="rgb(249,172,42)" fg:x="5275" fg:w="115"/><text x="95.6215%" y="703.50">s..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get (115 samples, 2.08%)</title><rect x="95.3715%" y="677" width="2.0792%" height="15" fill="rgb(216,139,23)" fg:x="5275" fg:w="115"/><text x="95.6215%" y="687.50">h..</text></g><g><title>hashbrown::map::HashMap&lt;K,V,S&gt;::get_key_value (115 samples, 2.08%)</title><rect x="95.3715%" y="661" width="2.0792%" height="15" fill="rgb(207,166,20)" fg:x="5275" fg:w="115"/><text x="95.6215%" y="671.50">h..</text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::find (23 samples, 0.42%)</title><rect x="97.0349%" y="645" width="0.4158%" height="15" fill="rgb(210,209,22)" fg:x="5367" fg:w="23"/><text x="97.2849%" y="655.50"></text></g><g><title>hashbrown::raw::RawTable&lt;T&gt;::iter_hash (8 samples, 0.14%)</title><rect x="97.3061%" y="629" width="0.1446%" height="15" fill="rgb(232,118,20)" fg:x="5382" fg:w="8"/><text x="97.5561%" y="639.50"></text></g><g><title>hashbrown::raw::RawIterHash&lt;T&gt;::new (8 samples, 0.14%)</title><rect x="97.3061%" y="613" width="0.1446%" height="15" fill="rgb(238,113,42)" fg:x="5382" fg:w="8"/><text x="97.5561%" y="623.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (3 samples, 0.05%)</title><rect x="97.3965%" y="597" width="0.0542%" height="15" fill="rgb(231,42,5)" fg:x="5387" fg:w="3"/><text x="97.6465%" y="607.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (3 samples, 0.05%)</title><rect x="97.3965%" y="581" width="0.0542%" height="15" fill="rgb(243,166,24)" fg:x="5387" fg:w="3"/><text x="97.6465%" y="591.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (3 samples, 0.05%)</title><rect x="97.3965%" y="565" width="0.0542%" height="15" fill="rgb(237,226,12)" fg:x="5387" fg:w="3"/><text x="97.6465%" y="575.50"></text></g><g><title>__GI___libc_free (1 samples, 0.02%)</title><rect x="97.4688%" y="581" width="0.0181%" height="15" fill="rgb(229,133,24)" fg:x="5391" fg:w="1"/><text x="97.7188%" y="591.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::string::String&gt; (2 samples, 0.04%)</title><rect x="97.4688%" y="677" width="0.0362%" height="15" fill="rgb(238,33,43)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="687.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::vec::Vec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="97.4688%" y="661" width="0.0362%" height="15" fill="rgb(227,59,38)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="671.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::raw_vec::RawVec&lt;u8&gt;&gt; (2 samples, 0.04%)</title><rect x="97.4688%" y="645" width="0.0362%" height="15" fill="rgb(230,97,0)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="655.50"></text></g><g><title>&lt;alloc::raw_vec::RawVec&lt;T,A&gt; as core::ops::drop::Drop&gt;::drop (2 samples, 0.04%)</title><rect x="97.4688%" y="629" width="0.0362%" height="15" fill="rgb(250,173,50)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="639.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (2 samples, 0.04%)</title><rect x="97.4688%" y="613" width="0.0362%" height="15" fill="rgb(240,15,50)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="623.50"></text></g><g><title>alloc::alloc::dealloc (2 samples, 0.04%)</title><rect x="97.4688%" y="597" width="0.0362%" height="15" fill="rgb(221,93,22)" fg:x="5391" fg:w="2"/><text x="97.7188%" y="607.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="97.4869%" y="581" width="0.0181%" height="15" fill="rgb(245,180,53)" fg:x="5392" fg:w="1"/><text x="97.7369%" y="591.50"></text></g><g><title>__close (2 samples, 0.04%)</title><rect x="97.5050%" y="661" width="0.0362%" height="15" fill="rgb(231,88,51)" fg:x="5393" fg:w="2"/><text x="97.7550%" y="671.50"></text></g><g><title>[unknown] (2 samples, 0.04%)</title><rect x="97.5050%" y="645" width="0.0362%" height="15" fill="rgb(240,58,21)" fg:x="5393" fg:w="2"/><text x="97.7550%" y="655.50"></text></g><g><title>core::ptr::drop_in_place&lt;std::ffi::c_str::CString&gt; (1 samples, 0.02%)</title><rect x="97.5411%" y="629" width="0.0181%" height="15" fill="rgb(237,21,10)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="639.50"></text></g><g><title>core::ptr::drop_in_place&lt;alloc::boxed::Box&lt;[u8]&gt;&gt; (1 samples, 0.02%)</title><rect x="97.5411%" y="613" width="0.0181%" height="15" fill="rgb(218,43,11)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="623.50"></text></g><g><title>alloc::alloc::box_free (1 samples, 0.02%)</title><rect x="97.5411%" y="597" width="0.0181%" height="15" fill="rgb(218,221,29)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="607.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::deallocate (1 samples, 0.02%)</title><rect x="97.5411%" y="581" width="0.0181%" height="15" fill="rgb(214,118,42)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="591.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.02%)</title><rect x="97.5411%" y="565" width="0.0181%" height="15" fill="rgb(251,200,26)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="575.50"></text></g><g><title>_int_free (1 samples, 0.02%)</title><rect x="97.5411%" y="549" width="0.0181%" height="15" fill="rgb(237,101,39)" fg:x="5395" fg:w="1"/><text x="97.7911%" y="559.50"></text></g><g><title>std::sys::unix::cvt (1 samples, 0.02%)</title><rect x="97.5954%" y="597" width="0.0181%" height="15" fill="rgb(251,117,11)" fg:x="5398" fg:w="1"/><text x="97.8454%" y="607.50"></text></g><g><title>std::sys::unix::cvt_r (92 samples, 1.66%)</title><rect x="97.5954%" y="613" width="1.6634%" height="15" fill="rgb(216,223,23)" fg:x="5398" fg:w="92"/><text x="97.8454%" y="623.50"></text></g><g><title>std::sys::unix::fs::File::open_c::{{closure}} (91 samples, 1.65%)</title><rect x="97.6135%" y="597" width="1.6453%" height="15" fill="rgb(251,54,12)" fg:x="5399" fg:w="91"/><text x="97.8635%" y="607.50"></text></g><g><title>__libc_open64 (91 samples, 1.65%)</title><rect x="97.6135%" y="581" width="1.6453%" height="15" fill="rgb(254,176,54)" fg:x="5399" fg:w="91"/><text x="97.8635%" y="591.50"></text></g><g><title>[unknown] (91 samples, 1.65%)</title><rect x="97.6135%" y="565" width="1.6453%" height="15" fill="rgb(210,32,8)" fg:x="5399" fg:w="91"/><text x="97.8635%" y="575.50"></text></g><g><title>[unknown] (83 samples, 1.50%)</title><rect x="97.7581%" y="549" width="1.5006%" height="15" fill="rgb(235,52,38)" fg:x="5407" fg:w="83"/><text x="98.0081%" y="559.50"></text></g><g><title>[unknown] (69 samples, 1.25%)</title><rect x="98.0112%" y="533" width="1.2475%" height="15" fill="rgb(231,4,44)" fg:x="5421" fg:w="69"/><text x="98.2612%" y="543.50"></text></g><g><title>[unknown] (69 samples, 1.25%)</title><rect x="98.0112%" y="517" width="1.2475%" height="15" fill="rgb(249,2,32)" fg:x="5421" fg:w="69"/><text x="98.2612%" y="527.50"></text></g><g><title>[unknown] (69 samples, 1.25%)</title><rect x="98.0112%" y="501" width="1.2475%" height="15" fill="rgb(224,65,26)" fg:x="5421" fg:w="69"/><text x="98.2612%" y="511.50"></text></g><g><title>[unknown] (65 samples, 1.18%)</title><rect x="98.0835%" y="485" width="1.1752%" height="15" fill="rgb(250,73,40)" fg:x="5425" fg:w="65"/><text x="98.3335%" y="495.50"></text></g><g><title>[unknown] (65 samples, 1.18%)</title><rect x="98.0835%" y="469" width="1.1752%" height="15" fill="rgb(253,177,16)" fg:x="5425" fg:w="65"/><text x="98.3335%" y="479.50"></text></g><g><title>[unknown] (60 samples, 1.08%)</title><rect x="98.1739%" y="453" width="1.0848%" height="15" fill="rgb(217,32,34)" fg:x="5430" fg:w="60"/><text x="98.4239%" y="463.50"></text></g><g><title>[unknown] (39 samples, 0.71%)</title><rect x="98.5536%" y="437" width="0.7051%" height="15" fill="rgb(212,7,10)" fg:x="5451" fg:w="39"/><text x="98.8036%" y="447.50"></text></g><g><title>[unknown] (29 samples, 0.52%)</title><rect x="98.7344%" y="421" width="0.5243%" height="15" fill="rgb(245,89,8)" fg:x="5461" fg:w="29"/><text x="98.9844%" y="431.50"></text></g><g><title>[unknown] (16 samples, 0.29%)</title><rect x="98.9694%" y="405" width="0.2893%" height="15" fill="rgb(237,16,53)" fg:x="5474" fg:w="16"/><text x="99.2194%" y="415.50"></text></g><g><title>[unknown] (7 samples, 0.13%)</title><rect x="99.1322%" y="389" width="0.1266%" height="15" fill="rgb(250,204,30)" fg:x="5483" fg:w="7"/><text x="99.3822%" y="399.50"></text></g><g><title>std::sys::unix::fs::File::open_c (95 samples, 1.72%)</title><rect x="97.5592%" y="629" width="1.7176%" height="15" fill="rgb(208,77,27)" fg:x="5396" fg:w="95"/><text x="97.8092%" y="639.50"></text></g><g><title>std::sys::unix::fs::OpenOptions::get_creation_mode (1 samples, 0.02%)</title><rect x="99.2587%" y="613" width="0.0181%" height="15" fill="rgb(250,204,28)" fg:x="5490" fg:w="1"/><text x="99.5087%" y="623.50"></text></g><g><title>&lt;&amp;[u8] as std::ffi::c_str::CString::new::SpecIntoVec&gt;::into_vec (1 samples, 0.02%)</title><rect x="99.2768%" y="597" width="0.0181%" height="15" fill="rgb(244,63,21)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="607.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (1 samples, 0.02%)</title><rect x="99.2768%" y="581" width="0.0181%" height="15" fill="rgb(236,85,44)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="591.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.2768%" y="565" width="0.0181%" height="15" fill="rgb(215,98,4)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="575.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (1 samples, 0.02%)</title><rect x="99.2768%" y="549" width="0.0181%" height="15" fill="rgb(235,38,11)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="559.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (1 samples, 0.02%)</title><rect x="99.2768%" y="533" width="0.0181%" height="15" fill="rgb(254,186,25)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="543.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (1 samples, 0.02%)</title><rect x="99.2768%" y="517" width="0.0181%" height="15" fill="rgb(225,55,31)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="527.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (1 samples, 0.02%)</title><rect x="99.2768%" y="501" width="0.0181%" height="15" fill="rgb(211,15,21)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="511.50"></text></g><g><title>alloc::alloc::alloc (1 samples, 0.02%)</title><rect x="99.2768%" y="485" width="0.0181%" height="15" fill="rgb(215,187,41)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="495.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.02%)</title><rect x="99.2768%" y="469" width="0.0181%" height="15" fill="rgb(248,69,32)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="479.50"></text></g><g><title>tcache_get (1 samples, 0.02%)</title><rect x="99.2768%" y="453" width="0.0181%" height="15" fill="rgb(252,102,52)" fg:x="5491" fg:w="1"/><text x="99.5268%" y="463.50"></text></g><g><title>std::fs::File::open (102 samples, 1.84%)</title><rect x="97.4688%" y="693" width="1.8442%" height="15" fill="rgb(253,140,32)" fg:x="5391" fg:w="102"/><text x="97.7188%" y="703.50">s..</text></g><g><title>std::fs::OpenOptions::open (100 samples, 1.81%)</title><rect x="97.5050%" y="677" width="1.8080%" height="15" fill="rgb(216,56,42)" fg:x="5393" fg:w="100"/><text x="97.7550%" y="687.50">s..</text></g><g><title>std::fs::OpenOptions::_open (98 samples, 1.77%)</title><rect x="97.5411%" y="661" width="1.7718%" height="15" fill="rgb(216,184,14)" fg:x="5395" fg:w="98"/><text x="97.7911%" y="671.50">s..</text></g><g><title>std::sys::unix::fs::File::open (98 samples, 1.77%)</title><rect x="97.5411%" y="645" width="1.7718%" height="15" fill="rgb(237,187,27)" fg:x="5395" fg:w="98"/><text x="97.7911%" y="655.50">s..</text></g><g><title>std::sys::unix::fs::cstr (2 samples, 0.04%)</title><rect x="99.2768%" y="629" width="0.0362%" height="15" fill="rgb(219,65,3)" fg:x="5491" fg:w="2"/><text x="99.5268%" y="639.50"></text></g><g><title>std::ffi::c_str::CString::new (2 samples, 0.04%)</title><rect x="99.2768%" y="613" width="0.0362%" height="15" fill="rgb(245,83,25)" fg:x="5491" fg:w="2"/><text x="99.5268%" y="623.50"></text></g><g><title>std::ffi::c_str::CString::_new (1 samples, 0.02%)</title><rect x="99.2949%" y="597" width="0.0181%" height="15" fill="rgb(214,205,45)" fg:x="5492" fg:w="1"/><text x="99.5449%" y="607.50"></text></g><g><title>std::memchr::memchr (1 samples, 0.02%)</title><rect x="99.2949%" y="581" width="0.0181%" height="15" fill="rgb(241,20,18)" fg:x="5492" fg:w="1"/><text x="99.5449%" y="591.50"></text></g><g><title>std::sys::unix::memchr::memchr (1 samples, 0.02%)</title><rect x="99.2949%" y="565" width="0.0181%" height="15" fill="rgb(232,163,23)" fg:x="5492" fg:w="1"/><text x="99.5449%" y="575.50"></text></g><g><title>_start (4,806 samples, 86.89%)</title><rect x="12.6198%" y="901" width="86.8921%" height="15" fill="rgb(214,5,46)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="911.50">_start</text></g><g><title>__libc_start_main (4,806 samples, 86.89%)</title><rect x="12.6198%" y="885" width="86.8921%" height="15" fill="rgb(229,78,17)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="895.50">__libc_start_main</text></g><g><title>main (4,806 samples, 86.89%)</title><rect x="12.6198%" y="869" width="86.8921%" height="15" fill="rgb(248,89,10)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="879.50">main</text></g><g><title>std::rt::lang_start_internal (4,806 samples, 86.89%)</title><rect x="12.6198%" y="853" width="86.8921%" height="15" fill="rgb(248,54,15)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="863.50">std::rt::lang_start_internal</text></g><g><title>std::panic::catch_unwind (4,806 samples, 86.89%)</title><rect x="12.6198%" y="837" width="86.8921%" height="15" fill="rgb(223,116,6)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="847.50">std::panic::catch_unwind</text></g><g><title>std::panicking::try (4,806 samples, 86.89%)</title><rect x="12.6198%" y="821" width="86.8921%" height="15" fill="rgb(205,125,38)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="831.50">std::panicking::try</text></g><g><title>std::panicking::try::do_call (4,806 samples, 86.89%)</title><rect x="12.6198%" y="805" width="86.8921%" height="15" fill="rgb(251,78,38)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="815.50">std::panicking::try::do_call</text></g><g><title>core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once (4,806 samples, 86.89%)</title><rect x="12.6198%" y="789" width="86.8921%" height="15" fill="rgb(253,78,28)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="799.50">core::ops::function::impls::&lt;impl core::ops::function::FnOnce&lt;A&gt; for &amp;F&gt;::call_once</text></g><g><title>std::rt::lang_start::{{closure}} (4,806 samples, 86.89%)</title><rect x="12.6198%" y="773" width="86.8921%" height="15" fill="rgb(209,120,3)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="783.50">std::rt::lang_start::{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (4,806 samples, 86.89%)</title><rect x="12.6198%" y="757" width="86.8921%" height="15" fill="rgb(238,229,9)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="767.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (4,806 samples, 86.89%)</title><rect x="12.6198%" y="741" width="86.8921%" height="15" fill="rgb(253,159,18)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="751.50">core::ops::function::FnOnce::call_once</text></g><g><title>phone_encoder::main (4,806 samples, 86.89%)</title><rect x="12.6198%" y="725" width="86.8921%" height="15" fill="rgb(244,42,34)" fg:x="698" fg:w="4806"/><text x="12.8698%" y="735.50">phone_encoder::main</text></g><g><title>phone_encoder::read_lines (114 samples, 2.06%)</title><rect x="97.4507%" y="709" width="2.0611%" height="15" fill="rgb(224,8,7)" fg:x="5390" fg:w="114"/><text x="97.7007%" y="719.50">p..</text></g><g><title>std::io::buffered::bufreader::BufReader&lt;R&gt;::new (11 samples, 0.20%)</title><rect x="99.3130%" y="693" width="0.1989%" height="15" fill="rgb(210,201,45)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="703.50"></text></g><g><title>std::io::buffered::bufreader::BufReader&lt;R&gt;::with_capacity (11 samples, 0.20%)</title><rect x="99.3130%" y="677" width="0.1989%" height="15" fill="rgb(252,185,21)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="687.50"></text></g><g><title>alloc::vec::Vec&lt;T&gt;::with_capacity (11 samples, 0.20%)</title><rect x="99.3130%" y="661" width="0.1989%" height="15" fill="rgb(223,131,1)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="671.50"></text></g><g><title>alloc::vec::Vec&lt;T,A&gt;::with_capacity_in (11 samples, 0.20%)</title><rect x="99.3130%" y="645" width="0.1989%" height="15" fill="rgb(245,141,16)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="655.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::with_capacity_in (11 samples, 0.20%)</title><rect x="99.3130%" y="629" width="0.1989%" height="15" fill="rgb(229,55,45)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="639.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::allocate_in (11 samples, 0.20%)</title><rect x="99.3130%" y="613" width="0.1989%" height="15" fill="rgb(208,92,15)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="623.50"></text></g><g><title>&lt;alloc::alloc::Global as core::alloc::Allocator&gt;::allocate (11 samples, 0.20%)</title><rect x="99.3130%" y="597" width="0.1989%" height="15" fill="rgb(234,185,47)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="607.50"></text></g><g><title>alloc::alloc::Global::alloc_impl (11 samples, 0.20%)</title><rect x="99.3130%" y="581" width="0.1989%" height="15" fill="rgb(253,104,50)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="591.50"></text></g><g><title>alloc::alloc::alloc (11 samples, 0.20%)</title><rect x="99.3130%" y="565" width="0.1989%" height="15" fill="rgb(205,70,7)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="575.50"></text></g><g><title>__GI___libc_malloc (11 samples, 0.20%)</title><rect x="99.3130%" y="549" width="0.1989%" height="15" fill="rgb(240,178,43)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="559.50"></text></g><g><title>_int_malloc (11 samples, 0.20%)</title><rect x="99.3130%" y="533" width="0.1989%" height="15" fill="rgb(214,112,2)" fg:x="5493" fg:w="11"/><text x="99.5630%" y="543.50"></text></g><g><title>malloc_consolidate (9 samples, 0.16%)</title><rect x="99.3491%" y="517" width="0.1627%" height="15" fill="rgb(206,46,17)" fg:x="5495" fg:w="9"/><text x="99.5991%" y="527.50"></text></g><g><title>alloc::raw_vec::RawVec&lt;T,A&gt;::reserve (1 samples, 0.02%)</title><rect x="99.5118%" y="901" width="0.0181%" height="15" fill="rgb(225,220,16)" fg:x="5504" fg:w="1"/><text x="99.7618%" y="911.50"></text></g><g><title>anon.74d66e5fcc5978a806822ea22239744e.0.llvm.8566036959855388659 (1 samples, 0.02%)</title><rect x="99.5299%" y="901" width="0.0181%" height="15" fill="rgb(238,65,40)" fg:x="5505" fg:w="1"/><text x="99.7799%" y="911.50"></text></g><g><title>&lt;std::io::buffered::bufwriter::BufWriter&lt;W&gt; as std::io::Write&gt;::write_all (1 samples, 0.02%)</title><rect x="99.5299%" y="885" width="0.0181%" height="15" fill="rgb(230,151,21)" fg:x="5505" fg:w="1"/><text x="99.7799%" y="895.50"></text></g><g><title>hashbrown::map::make_hash (1 samples, 0.02%)</title><rect x="99.5480%" y="901" width="0.0181%" height="15" fill="rgb(218,58,49)" fg:x="5506" fg:w="1"/><text x="99.7980%" y="911.50"></text></g><g><title>num_bigint::biguint::multiplication::mac3 (2 samples, 0.04%)</title><rect x="99.5661%" y="901" width="0.0362%" height="15" fill="rgb(219,179,14)" fg:x="5507" fg:w="2"/><text x="99.8161%" y="911.50"></text></g><g><title>phone_encoder::print_translations (1 samples, 0.02%)</title><rect x="99.6022%" y="901" width="0.0181%" height="15" fill="rgb(223,72,1)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="911.50"></text></g><g><title>&lt;alloc::vec::Vec&lt;T,A&gt; as core::clone::Clone&gt;::clone (1 samples, 0.02%)</title><rect x="99.6022%" y="885" width="0.0181%" height="15" fill="rgb(238,126,10)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="895.50"></text></g><g><title>alloc::slice::&lt;impl [T]&gt;::to_vec_in (1 samples, 0.02%)</title><rect x="99.6022%" y="869" width="0.0181%" height="15" fill="rgb(224,206,38)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="879.50"></text></g><g><title>alloc::slice::hack::to_vec (1 samples, 0.02%)</title><rect x="99.6022%" y="853" width="0.0181%" height="15" fill="rgb(212,201,54)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="863.50"></text></g><g><title>&lt;T as alloc::slice::hack::ConvertVec&gt;::to_vec (1 samples, 0.02%)</title><rect x="99.6022%" y="837" width="0.0181%" height="15" fill="rgb(218,154,48)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="847.50"></text></g><g><title>core::ptr::const_ptr::&lt;impl *const T&gt;::copy_to_nonoverlapping (1 samples, 0.02%)</title><rect x="99.6022%" y="821" width="0.0181%" height="15" fill="rgb(232,93,24)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="831.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.02%)</title><rect x="99.6022%" y="805" width="0.0181%" height="15" fill="rgb(245,30,21)" fg:x="5509" fg:w="1"/><text x="99.8522%" y="815.50"></text></g><g><title>std::io::stdio::_print (2 samples, 0.04%)</title><rect x="99.6203%" y="901" width="0.0362%" height="15" fill="rgb(242,148,29)" fg:x="5510" fg:w="2"/><text x="99.8703%" y="911.50"></text></g><g><title>__GI___pthread_mutex_lock (3 samples, 0.05%)</title><rect x="99.6565%" y="885" width="0.0542%" height="15" fill="rgb(244,153,54)" fg:x="5512" fg:w="3"/><text x="99.9065%" y="895.50"></text></g><g><title>core::fmt::write (15 samples, 0.27%)</title><rect x="99.7107%" y="885" width="0.2712%" height="15" fill="rgb(252,87,22)" fg:x="5515" fg:w="15"/><text x="99.9607%" y="895.50"></text></g><g><title>all (5,531 samples, 100%)</title><rect x="0.0000%" y="933" width="100.0000%" height="15" fill="rgb(210,51,29)" fg:x="0" fg:w="5531"/><text x="0.2500%" y="943.50"></text></g><g><title>phone_encoder (5,526 samples, 99.91%)</title><rect x="0.0904%" y="917" width="99.9096%" height="15" fill="rgb(242,136,47)" fg:x="5" fg:w="5526"/><text x="0.3404%" y="927.50">phone_encoder</text></g><g><title>std::io::stdio::stdout::INSTANCE (19 samples, 0.34%)</title><rect x="99.6565%" y="901" width="0.3435%" height="15" fill="rgb(238,68,4)" fg:x="5512" fg:w="19"/><text x="99.9065%" y="911.50"></text></g><g><title>std::io::buffered::bufwriter::BufWriter&lt;W&gt;::flush_buf (1 samples, 0.02%)</title><rect x="99.9819%" y="885" width="0.0181%" height="15" fill="rgb(242,161,30)" fg:x="5530" fg:w="1"/><text x="100.2319%" y="895.50"></text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment