Skip to content

Instantly share code, notes, and snippets.

@Ygg01
Created December 18, 2017 14:20
Show Gist options
  • Save Ygg01/91bdbadfa8fb286e92345ecf4f284936 to your computer and use it in GitHub Desktop.
Save Ygg01/91bdbadfa8fb286e92345ecf4f284936 to your computer and use it in GitHub Desktop.
html5ever flamegraph
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="2130" onload="init(evt)" viewBox="0 0 1200 2130" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples. -->
<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">
.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
</style>
<script type="text/ecmascript">
<![CDATA[
var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = "Function: " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_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) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*12*0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - 10) * ratio + 10;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = 10;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (10*2);
}
}
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 = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].value);
// Is it an ancestor
if (0 == 0) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["x"].value);
orig_save(rect, "fill");
rect.attributes["fill"].value =
"rgb(230,0,230)";
// 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;
searchbtn.style["opacity"] = "1.0";
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;
if (a < b || a > b)
return a - b;
return matches[b] - matches[a];
});
// 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 = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2130.0" fill="url(#background)" />
<text text-anchor="middle" x="600.00" y="24" font-size="17" font-family="Verdana" fill="rgb(0,0,0)" >Flame Graph</text>
<text text-anchor="" x="10.00" y="2113" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="details" > </text>
<text text-anchor="" x="10.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" >Reset Zoom</text>
<text text-anchor="" x="1090.00" y="24" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" >Search</text>
<text text-anchor="" x="1090.00" y="2113" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" id="matched" > </text>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1025" width="46.0" height="15.0" fill="rgb(218,216,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1035.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1249" width="46.0" height="15.0" fill="rgb(235,163,35)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1259.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (9 samples, 0.75%)</title><rect x="355.4" y="1873" width="8.8" height="15.0" fill="rgb(230,146,26)" rx="2" ry="2" />
<text text-anchor="" x="358.39" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (2 samples, 0.17%)</title><rect x="490.4" y="1921" width="2.0" height="15.0" fill="rgb(215,93,50)" rx="2" ry="2" />
<text text-anchor="" x="493.41" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="593" width="46.0" height="15.0" fill="rgb(218,130,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="603.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::util::buffer_queue::BufferQueue::pop_except_from (92 samples, 7.63%)</title><rect x="492.4" y="1921" width="90.0" height="15.0" fill="rgb(207,178,38)" rx="2" ry="2" />
<text text-anchor="" x="495.37" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >markup5eve..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;tendril::fmt::UTF8, A&gt;&gt;::push_char (218 samples, 18.08%)</title><rect x="779.1" y="1937" width="213.3" height="15.0" fill="rgb(234,13,23)" rx="2" ry="2" />
<text text-anchor="" x="782.05" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;tendril::tendril::Tendril&lt;t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1857" width="46.0" height="15.0" fill="rgb(216,23,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (2 samples, 0.17%)</title><rect x="361.3" y="1809" width="1.9" height="15.0" fill="rgb(211,82,21)" rx="2" ry="2" />
<text text-anchor="" x="364.26" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1329" width="46.0" height="15.0" fill="rgb(228,192,33)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1339.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="353.4" y="1841" width="1.0" height="15.0" fill="rgb(208,210,17)" rx="2" ry="2" />
<text text-anchor="" x="356.43" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1121" width="46.0" height="15.0" fill="rgb(240,81,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1131.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1265" width="46.0" height="15.0" fill="rgb(231,162,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1275.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dirty_remove.isra.22 (1 samples, 0.08%)</title><rect x="1159.7" y="2049" width="0.9" height="15.0" fill="rgb(212,31,25)" rx="2" ry="2" />
<text text-anchor="" x="1162.67" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.08%)</title><rect x="248.7" y="1873" width="1.0" height="15.0" fill="rgb(240,70,52)" rx="2" ry="2" />
<text text-anchor="" x="251.74" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (2 samples, 0.17%)</title><rect x="989.4" y="1905" width="2.0" height="15.0" fill="rgb(209,132,28)" rx="2" ry="2" />
<text text-anchor="" x="992.42" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::emit_current_tag (288 samples, 23.88%)</title><rect x="153.8" y="1937" width="281.8" height="15.0" fill="rgb(253,102,30)" rx="2" ry="2" />
<text text-anchor="" x="156.83" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tokenizer::Tokenizer&lt;Sink..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="609" width="46.0" height="15.0" fill="rgb(239,1,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="619.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::rules::any_not_whitespace (5 samples, 0.41%)</title><rect x="721.3" y="1889" width="4.9" height="15.0" fill="rgb(221,92,3)" rx="2" ry="2" />
<text text-anchor="" x="724.33" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (8 samples, 0.66%)</title><rect x="945.4" y="1905" width="7.8" height="15.0" fill="rgb(226,200,3)" rx="2" ry="2" />
<text text-anchor="" x="948.39" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="225" width="46.0" height="15.0" fill="rgb(243,91,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="235.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="241" width="46.0" height="15.0" fill="rgb(234,58,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="251.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="881" width="46.0" height="15.0" fill="rgb(226,214,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="891.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="289" width="46.0" height="15.0" fill="rgb(215,26,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="299.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (5 samples, 0.41%)</title><rect x="715.5" y="1857" width="4.8" height="15.0" fill="rgb(224,35,7)" rx="2" ry="2" />
<text text-anchor="" x="718.46" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (1 samples, 0.08%)</title><rect x="370.1" y="1889" width="0.9" height="15.0" fill="rgb(246,5,44)" rx="2" ry="2" />
<text text-anchor="" x="373.07" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="321" width="46.0" height="15.0" fill="rgb(205,69,16)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="331.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1041" width="46.0" height="15.0" fill="rgb(234,224,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1051.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::Write::write_fmt::Adaptor&lt;a, T&gt; as core::fmt::Write&gt;::write_str (24 samples, 1.99%)</title><rect x="956.2" y="1889" width="23.4" height="15.0" fill="rgb(252,208,28)" rx="2" ry="2" />
<text text-anchor="" x="959.15" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_dalloc_bin_locked_impl.isra.39 (11 samples, 0.91%)</title><rect x="1130.3" y="2033" width="10.8" height="15.0" fill="rgb(232,216,32)" rx="2" ry="2" />
<text text-anchor="" x="1133.32" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.08%)</title><rect x="177.3" y="1857" width="1.0" height="15.0" fill="rgb(216,221,42)" rx="2" ry="2" />
<text text-anchor="" x="180.31" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1729" width="46.0" height="15.0" fill="rgb(226,219,28)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1739.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (3 samples, 0.25%)</title><rect x="297.7" y="1857" width="2.9" height="15.0" fill="rgb(217,84,28)" rx="2" ry="2" />
<text text-anchor="" x="300.66" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tokenizer::char_ref::CharRefTokenizer::get_result (1 samples, 0.08%)</title><rect x="999.2" y="1937" width="1.0" height="15.0" fill="rgb(246,142,13)" rx="2" ry="2" />
<text text-anchor="" x="1002.20" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (1 samples, 0.08%)</title><rect x="325.1" y="1857" width="0.9" height="15.0" fill="rgb(225,99,54)" rx="2" ry="2" />
<text text-anchor="" x="328.06" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::dealloc (1 samples, 0.08%)</title><rect x="288.9" y="1841" width="0.9" height="15.0" fill="rgb(252,205,5)" rx="2" ry="2" />
<text text-anchor="" x="291.86" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1313" width="46.0" height="15.0" fill="rgb(226,145,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1323.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1089" width="46.0" height="15.0" fill="rgb(211,120,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1099.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>utf8::decode (5 samples, 0.41%)</title><rect x="1124.4" y="1969" width="4.9" height="15.0" fill="rgb(242,101,16)" rx="2" ry="2" />
<text text-anchor="" x="1127.44" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="113" width="46.0" height="15.0" fill="rgb(251,82,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="123.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::get_preprocessed_char (5 samples, 0.41%)</title><rect x="484.5" y="1921" width="4.9" height="15.0" fill="rgb(234,172,47)" rx="2" ry="2" />
<text text-anchor="" x="487.54" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_tcache_fill_small (5 samples, 0.41%)</title><rect x="1141.1" y="2033" width="4.9" height="15.0" fill="rgb(206,101,45)" rx="2" ry="2" />
<text text-anchor="" x="1144.08" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::process_token (176 samples, 14.59%)</title><rect x="593.2" y="1937" width="172.2" height="15.0" fill="rgb(217,191,33)" rx="2" ry="2" />
<text text-anchor="" x="596.15" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tokenizer:..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_huge_dalloc (1 samples, 0.08%)</title><rect x="1146.0" y="2033" width="0.9" height="15.0" fill="rgb(209,4,2)" rx="2" ry="2" />
<text text-anchor="" x="1148.97" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::eat (2 samples, 0.17%)</title><rect x="151.9" y="1937" width="1.9" height="15.0" fill="rgb(213,118,25)" rx="2" ry="2" />
<text text-anchor="" x="154.87" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (6 samples, 0.50%)</title><rect x="1117.6" y="1921" width="5.9" height="15.0" fill="rgb(216,229,11)" rx="2" ry="2" />
<text text-anchor="" x="1120.60" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::process_token (200 samples, 16.58%)</title><rect x="194.9" y="1921" width="195.7" height="15.0" fill="rgb(253,157,40)" rx="2" ry="2" />
<text text-anchor="" x="197.93" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tokenizer::To..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="833" width="46.0" height="15.0" fill="rgb(214,96,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="843.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::finish_attribute (9 samples, 0.75%)</title><rect x="435.6" y="1937" width="8.8" height="15.0" fill="rgb(214,65,8)" rx="2" ry="2" />
<text text-anchor="" x="438.62" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Alloc::alloc_array (5 samples, 0.41%)</title><rect x="173.4" y="1889" width="4.9" height="15.0" fill="rgb(215,133,26)" rx="2" ry="2" />
<text text-anchor="" x="176.40" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_tree_insert (1 samples, 0.08%)</title><rect x="1160.6" y="2049" width="1.0" height="15.0" fill="rgb(249,29,38)" rx="2" ry="2" />
<text text-anchor="" x="1163.65" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.08%)</title><rect x="360.3" y="1825" width="1.0" height="15.0" fill="rgb(209,221,37)" rx="2" ry="2" />
<text text-anchor="" x="363.28" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (1 samples, 0.08%)</title><rect x="439.5" y="1905" width="1.0" height="15.0" fill="rgb(235,180,3)" rx="2" ry="2" />
<text text-anchor="" x="442.54" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="720.3" y="1889" width="1.0" height="15.0" fill="rgb(234,177,7)" rx="2" ry="2" />
<text text-anchor="" x="723.35" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1905" width="46.0" height="15.0" fill="rgb(239,34,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1601" width="46.0" height="15.0" fill="rgb(244,153,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1611.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1713" width="46.0" height="15.0" fill="rgb(211,23,22)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1723.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (4 samples, 0.33%)</title><rect x="348.5" y="1841" width="4.0" height="15.0" fill="rgb(208,83,26)" rx="2" ry="2" />
<text text-anchor="" x="351.54" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string_cache::atom::Atom&lt;Static&gt; as core::convert::From&lt;&amp;a str&gt;&gt;::from (15 samples, 1.24%)</title><rect x="180.2" y="1905" width="14.7" height="15.0" fill="rgb(210,199,30)" rx="2" ry="2" />
<text text-anchor="" x="183.25" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1681" width="46.0" height="15.0" fill="rgb(239,22,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1691.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1665" width="46.0" height="15.0" fill="rgb(237,124,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1675.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="529" width="46.0" height="15.0" fill="rgb(251,137,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="539.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>string_cache::atom::StringCache::add (2 samples, 0.17%)</title><rect x="193.0" y="1889" width="1.9" height="15.0" fill="rgb(224,158,35)" rx="2" ry="2" />
<text text-anchor="" x="195.97" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1505" width="46.0" height="15.0" fill="rgb(206,134,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1515.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="129" width="46.0" height="15.0" fill="rgb(217,25,21)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="139.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="481" width="46.0" height="15.0" fill="rgb(233,49,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="491.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena (1,206 samples, 100.00%)</title><rect x="10.0" y="2065" width="1180.0" height="15.0" fill="rgb(216,106,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2075.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >arena</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::get_preprocessed_char (27 samples, 2.24%)</title><rect x="444.4" y="1937" width="26.4" height="15.0" fill="rgb(243,76,44)" rx="2" ry="2" />
<text text-anchor="" x="447.43" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (2 samples, 0.17%)</title><rect x="726.2" y="1905" width="2.0" height="15.0" fill="rgb(224,5,27)" rx="2" ry="2" />
<text text-anchor="" x="729.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::adoption_agency (25 samples, 2.07%)</title><rect x="268.3" y="1873" width="24.5" height="15.0" fill="rgb(232,21,52)" rx="2" ry="2" />
<text text-anchor="" x="271.31" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::expect_to_close (4 samples, 0.33%)</title><rect x="327.0" y="1873" width="3.9" height="15.0" fill="rgb(208,165,49)" rx="2" ry="2" />
<text text-anchor="" x="330.01" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (8 samples, 0.66%)</title><rect x="728.2" y="1905" width="7.8" height="15.0" fill="rgb(252,104,12)" rx="2" ry="2" />
<text text-anchor="" x="731.18" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="273" width="46.0" height="15.0" fill="rgb(211,183,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="283.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tokenizer::interface::TokenSink&gt;::process_token (169 samples, 14.01%)</title><rect x="600.0" y="1921" width="165.4" height="15.0" fill="rgb(220,30,21)" rx="2" ry="2" />
<text text-anchor="" x="603.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tree_buil..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="293.7" y="1841" width="1.0" height="15.0" fill="rgb(251,42,39)" rx="2" ry="2" />
<text text-anchor="" x="296.75" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="353" width="46.0" height="15.0" fill="rgb(246,158,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="363.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (1 samples, 0.08%)</title><rect x="359.3" y="1841" width="1.0" height="15.0" fill="rgb(247,110,24)" rx="2" ry="2" />
<text text-anchor="" x="362.30" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Write::write_char (3 samples, 0.25%)</title><rect x="895.5" y="1921" width="2.9" height="15.0" fill="rgb(218,59,1)" rx="2" ry="2" />
<text text-anchor="" x="898.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tokenizer::interface::Tag::equiv_modulo_attr_order (1 samples, 0.08%)</title><rect x="326.0" y="1857" width="1.0" height="15.0" fill="rgb(231,23,37)" rx="2" ry="2" />
<text text-anchor="" x="329.04" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="2001" width="46.0" height="15.0" fill="rgb(225,203,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::util::buffer_queue::BufferQueue::next (1 samples, 0.08%)</title><rect x="1085.3" y="1953" width="1.0" height="15.0" fill="rgb(248,218,50)" rx="2" ry="2" />
<text text-anchor="" x="1088.31" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::util::buffer_queue::BufferQueue::next (74 samples, 6.14%)</title><rect x="1002.1" y="1937" width="72.4" height="15.0" fill="rgb(226,148,20)" rx="2" ry="2" />
<text text-anchor="" x="1005.14" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >markup5e..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::reconstruct_formatting (1 samples, 0.08%)</title><rect x="354.4" y="1873" width="1.0" height="15.0" fill="rgb(251,5,44)" rx="2" ry="2" />
<text text-anchor="" x="357.41" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="401" width="46.0" height="15.0" fill="rgb(239,65,7)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="411.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (2 samples, 0.17%)</title><rect x="586.3" y="1889" width="2.0" height="15.0" fill="rgb(232,45,33)" rx="2" ry="2" />
<text text-anchor="" x="589.30" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::insert_element (25 samples, 2.07%)</title><rect x="300.6" y="1857" width="24.5" height="15.0" fill="rgb(209,25,39)" rx="2" ry="2" />
<text text-anchor="" x="303.60" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::pop_front_char (44 samples, 3.65%)</title><rect x="1031.5" y="1921" width="43.0" height="15.0" fill="rgb(226,48,43)" rx="2" ry="2" />
<text text-anchor="" x="1034.49" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;ten..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1937" width="46.0" height="15.0" fill="rgb(207,98,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::step (1,030 samples, 85.41%)</title><rect x="71.6" y="1953" width="1007.8" height="15.0" fill="rgb(231,109,29)" rx="2" ry="2" />
<text text-anchor="" x="74.64" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::step</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::in_scope_named (3 samples, 0.25%)</title><rect x="292.8" y="1857" width="2.9" height="15.0" fill="rgb(231,215,12)" rx="2" ry="2" />
<text text-anchor="" x="295.77" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::push_bytes_without_validating (1 samples, 0.08%)</title><rect x="588.3" y="1905" width="0.9" height="15.0" fill="rgb(226,5,0)" rx="2" ry="2" />
<text text-anchor="" x="591.26" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;arena::Sink&lt;arena&gt; as markup5ever::interface::tree_builder::TreeSink&gt;::append (3 samples, 0.25%)</title><rect x="338.8" y="1841" width="2.9" height="15.0" fill="rgb(216,201,45)" rx="2" ry="2" />
<text text-anchor="" x="341.76" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::tag_sets::button_scope (1 samples, 0.08%)</title><rect x="294.7" y="1841" width="1.0" height="15.0" fill="rgb(237,163,51)" rx="2" ry="2" />
<text text-anchor="" x="297.73" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="145" width="46.0" height="15.0" fill="rgb(209,223,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="155.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1777" width="46.0" height="15.0" fill="rgb(209,157,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1787.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::insert_element (3 samples, 0.25%)</title><rect x="360.3" y="1841" width="2.9" height="15.0" fill="rgb(234,63,29)" rx="2" ry="2" />
<text text-anchor="" x="363.28" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (9 samples, 0.75%)</title><rect x="56.0" y="1985" width="8.8" height="15.0" fill="rgb(220,19,13)" rx="2" ry="2" />
<text text-anchor="" x="58.99" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="673" width="46.0" height="15.0" fill="rgb(233,108,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="683.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1361" width="46.0" height="15.0" fill="rgb(215,214,47)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1371.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Write::write_char (37 samples, 3.07%)</title><rect x="953.2" y="1905" width="36.2" height="15.0" fill="rgb(236,178,37)" rx="2" ry="2" />
<text text-anchor="" x="956.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >cor..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="177" width="46.0" height="15.0" fill="rgb(214,88,51)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="187.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="625" width="46.0" height="15.0" fill="rgb(221,176,29)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="635.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (8 samples, 0.66%)</title><rect x="310.4" y="1841" width="7.8" height="15.0" fill="rgb(206,57,29)" rx="2" ry="2" />
<text text-anchor="" x="313.38" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="577" width="46.0" height="15.0" fill="rgb(226,192,10)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="587.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1409" width="46.0" height="15.0" fill="rgb(253,139,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1419.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__libc_start_main (1,097 samples, 90.96%)</title><rect x="56.0" y="2033" width="1073.3" height="15.0" fill="rgb(214,76,46)" rx="2" ry="2" />
<text text-anchor="" x="58.99" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__libc_start_main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="2017" width="46.0" height="15.0" fill="rgb(243,172,14)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1201" width="46.0" height="15.0" fill="rgb(205,75,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1211.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (14 samples, 1.16%)</title><rect x="1176.3" y="2049" width="13.7" height="15.0" fill="rgb(250,111,47)" rx="2" ry="2" />
<text text-anchor="" x="1179.30" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (7 samples, 0.58%)</title><rect x="284.9" y="1857" width="6.9" height="15.0" fill="rgb(208,54,51)" rx="2" ry="2" />
<text text-anchor="" x="287.94" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="769" width="46.0" height="15.0" fill="rgb(229,173,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="779.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (1 samples, 0.08%)</title><rect x="341.7" y="1857" width="1.0" height="15.0" fill="rgb(210,36,33)" rx="2" ry="2" />
<text text-anchor="" x="344.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>string_cache_shared::pack_static (1 samples, 0.08%)</title><rect x="434.6" y="1921" width="1.0" height="15.0" fill="rgb(219,189,38)" rx="2" ry="2" />
<text text-anchor="" x="437.64" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="433" width="46.0" height="15.0" fill="rgb(227,86,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="443.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (2 samples, 0.17%)</title><rect x="308.4" y="1841" width="2.0" height="15.0" fill="rgb(222,225,3)" rx="2" ry="2" />
<text text-anchor="" x="311.42" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;arena::Sink&lt;arena&gt; as markup5ever::interface::tree_builder::TreeSink&gt;::append (6 samples, 0.50%)</title><rect x="672.4" y="1857" width="5.9" height="15.0" fill="rgb(231,63,29)" rx="2" ry="2" />
<text text-anchor="" x="675.40" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="1123.5" y="1921" width="0.9" height="15.0" fill="rgb(252,78,13)" rx="2" ry="2" />
<text text-anchor="" x="1126.47" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;char as core::fmt::Display&gt;::fmt (13 samples, 1.08%)</title><rect x="813.3" y="1921" width="12.7" height="15.0" fill="rgb(207,19,42)" rx="2" ry="2" />
<text text-anchor="" x="816.30" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::adoption_agency (2 samples, 0.17%)</title><rect x="357.3" y="1857" width="2.0" height="15.0" fill="rgb(207,109,27)" rx="2" ry="2" />
<text text-anchor="" x="360.35" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (15 samples, 1.24%)</title><rect x="663.6" y="1889" width="14.7" height="15.0" fill="rgb(236,170,35)" rx="2" ry="2" />
<text text-anchor="" x="666.60" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="545" width="46.0" height="15.0" fill="rgb(242,205,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="555.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1889" width="46.0" height="15.0" fill="rgb(227,92,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_ralloc_no_move (1 samples, 0.08%)</title><rect x="1164.6" y="2049" width="0.9" height="15.0" fill="rgb(222,8,45)" rx="2" ry="2" />
<text text-anchor="" x="1167.56" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::alloc (6 samples, 0.50%)</title><rect x="627.4" y="1905" width="5.9" height="15.0" fill="rgb(238,133,3)" rx="2" ry="2" />
<text text-anchor="" x="630.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>phf_shared::hash (2 samples, 0.17%)</title><rect x="191.0" y="1889" width="2.0" height="15.0" fill="rgb(248,141,24)" rx="2" ry="2" />
<text text-anchor="" x="194.01" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1441" width="46.0" height="15.0" fill="rgb(213,175,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1451.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="561" width="46.0" height="15.0" fill="rgb(236,98,9)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="571.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="913" width="46.0" height="15.0" fill="rgb(225,31,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="923.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (1 samples, 0.08%)</title><rect x="1079.4" y="1953" width="1.0" height="15.0" fill="rgb(243,39,22)" rx="2" ry="2" />
<text text-anchor="" x="1082.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1105" width="46.0" height="15.0" fill="rgb(227,134,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1115.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string_cache::atom::Atom&lt;Static&gt; as core::convert::From&lt;&amp;a str&gt;&gt;::from (39 samples, 3.23%)</title><rect x="392.6" y="1921" width="38.1" height="15.0" fill="rgb(233,85,42)" rx="2" ry="2" />
<text text-anchor="" x="395.57" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;st..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (4 samples, 0.33%)</title><rect x="674.4" y="1841" width="3.9" height="15.0" fill="rgb(222,7,19)" rx="2" ry="2" />
<text text-anchor="" x="677.36" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="497" width="46.0" height="15.0" fill="rgb(216,167,12)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="507.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::push_bytes_without_validating (9 samples, 0.75%)</title><rect x="770.2" y="1937" width="8.9" height="15.0" fill="rgb(245,201,47)" rx="2" ry="2" />
<text text-anchor="" x="773.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1569" width="46.0" height="15.0" fill="rgb(240,44,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1579.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (93 samples, 7.71%)</title><rect x="635.2" y="1905" width="91.0" height="15.0" fill="rgb(249,219,18)" rx="2" ry="2" />
<text text-anchor="" x="638.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::process_end_tag_in_body (2 samples, 0.17%)</title><rect x="352.5" y="1873" width="1.9" height="15.0" fill="rgb(215,214,12)" rx="2" ry="2" />
<text text-anchor="" x="355.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_allocate (1 samples, 0.08%)</title><rect x="632.3" y="1889" width="1.0" height="15.0" fill="rgb(223,146,49)" rx="2" ry="2" />
<text text-anchor="" x="635.29" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="2033" width="46.0" height="15.0" fill="rgb(214,139,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="49" width="46.0" height="15.0" fill="rgb(239,195,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="59.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::util::buffer_queue::BufferQueue::peek (2 samples, 0.17%)</title><rect x="1074.5" y="1937" width="2.0" height="15.0" fill="rgb(233,40,51)" rx="2" ry="2" />
<text text-anchor="" x="1077.54" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1809" width="46.0" height="15.0" fill="rgb(223,12,23)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1819.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (2 samples, 0.17%)</title><rect x="342.7" y="1857" width="1.9" height="15.0" fill="rgb(250,140,10)" rx="2" ry="2" />
<text text-anchor="" x="345.67" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="801" width="46.0" height="15.0" fill="rgb(230,95,24)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="811.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (3 samples, 0.25%)</title><rect x="332.9" y="1857" width="2.9" height="15.0" fill="rgb(247,92,50)" rx="2" ry="2" />
<text text-anchor="" x="335.89" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (11 samples, 0.91%)</title><rect x="704.7" y="1857" width="10.8" height="15.0" fill="rgb(217,118,38)" rx="2" ry="2" />
<text text-anchor="" x="707.69" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1457" width="46.0" height="15.0" fill="rgb(220,187,3)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1467.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::str::from_utf8 (5 samples, 0.41%)</title><rect x="1124.4" y="1953" width="4.9" height="15.0" fill="rgb(244,13,1)" rx="2" ry="2" />
<text text-anchor="" x="1127.44" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1 samples, 0.08%)</title><rect x="992.4" y="1937" width="0.9" height="15.0" fill="rgb(248,1,12)" rx="2" ry="2" />
<text text-anchor="" x="995.35" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::reconstruct_formatting (5 samples, 0.41%)</title><rect x="658.7" y="1889" width="4.9" height="15.0" fill="rgb(222,174,2)" rx="2" ry="2" />
<text text-anchor="" x="661.71" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::generate_implied_end_except (2 samples, 0.17%)</title><rect x="352.5" y="1857" width="1.9" height="15.0" fill="rgb(249,26,34)" rx="2" ry="2" />
<text text-anchor="" x="355.45" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (2 samples, 0.17%)</title><rect x="763.4" y="1905" width="2.0" height="15.0" fill="rgb(209,149,0)" rx="2" ry="2" />
<text text-anchor="" x="766.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::appropriate_place_for_insertion (1 samples, 0.08%)</title><rect x="307.4" y="1841" width="1.0" height="15.0" fill="rgb(207,205,31)" rx="2" ry="2" />
<text text-anchor="" x="310.45" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>all (1,206 samples, 100%)</title><rect x="10.0" y="2081" width="1180.0" height="15.0" fill="rgb(252,203,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2091.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (6 samples, 0.50%)</title><rect x="276.1" y="1857" width="5.9" height="15.0" fill="rgb(207,210,30)" rx="2" ry="2" />
<text text-anchor="" x="279.14" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::rt::lang_start (1,097 samples, 90.96%)</title><rect x="56.0" y="2017" width="1073.3" height="15.0" fill="rgb(212,200,50)" rx="2" ry="2" />
<text text-anchor="" x="58.99" y="2027.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >std::rt::lang_start</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="961" width="46.0" height="15.0" fill="rgb(212,212,43)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="971.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="358.3" y="1825" width="1.0" height="15.0" fill="rgb(245,54,24)" rx="2" ry="2" />
<text text-anchor="" x="361.33" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;tendril::fmt::UTF8, A&gt;&gt;::push_char (5 samples, 0.41%)</title><rect x="588.3" y="1921" width="4.9" height="15.0" fill="rgb(246,90,6)" rx="2" ry="2" />
<text text-anchor="" x="591.26" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (2 samples, 0.17%)</title><rect x="365.2" y="1841" width="1.9" height="15.0" fill="rgb(219,209,32)" rx="2" ry="2" />
<text text-anchor="" x="368.17" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>phf_shared::hash (3 samples, 0.25%)</title><rect x="1076.5" y="1937" width="2.9" height="15.0" fill="rgb(223,20,46)" rx="2" ry="2" />
<text text-anchor="" x="1079.50" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="337" width="46.0" height="15.0" fill="rgb(243,219,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="347.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="343.6" y="1841" width="1.0" height="15.0" fill="rgb(225,209,19)" rx="2" ry="2" />
<text text-anchor="" x="346.65" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1473" width="46.0" height="15.0" fill="rgb(249,128,39)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1483.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1345" width="46.0" height="15.0" fill="rgb(221,72,48)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1355.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string_cache::atom::Atom&lt;Static&gt; as core::convert::From&lt;&amp;a str&gt;&gt;::from (3 samples, 0.25%)</title><rect x="440.5" y="1921" width="2.9" height="15.0" fill="rgb(222,229,5)" rx="2" ry="2" />
<text text-anchor="" x="443.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="369" width="46.0" height="15.0" fill="rgb(251,133,15)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="379.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::rules::any_not_whitespace (1 samples, 0.08%)</title><rect x="587.3" y="1873" width="1.0" height="15.0" fill="rgb(221,191,6)" rx="2" ry="2" />
<text text-anchor="" x="590.28" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1969" width="46.0" height="15.0" fill="rgb(210,66,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1745" width="46.0" height="15.0" fill="rgb(234,5,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1755.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1921" width="46.0" height="15.0" fill="rgb(241,75,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::vec::Vec&lt;T&gt; as core::clone::Clone&gt;::clone (6 samples, 0.50%)</title><rect x="301.6" y="1841" width="5.8" height="15.0" fill="rgb(238,135,3)" rx="2" ry="2" />
<text text-anchor="" x="304.58" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::util::str::lower_ascii_letter (2 samples, 0.17%)</title><rect x="1000.2" y="1937" width="1.9" height="15.0" fill="rgb(243,57,20)" rx="2" ry="2" />
<text text-anchor="" x="1003.18" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (21 samples, 1.74%)</title><rect x="10.0" y="33" width="20.5" height="15.0" fill="rgb(212,193,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::Write::write_fmt::Adaptor&lt;a, T&gt; as core::fmt::Write&gt;::write_str (5 samples, 0.41%)</title><rect x="826.0" y="1921" width="4.9" height="15.0" fill="rgb(251,158,36)" rx="2" ry="2" />
<text text-anchor="" x="829.02" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="330.0" y="1841" width="0.9" height="15.0" fill="rgb(240,95,14)" rx="2" ry="2" />
<text text-anchor="" x="332.95" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (15 samples, 1.24%)</title><rect x="1109.8" y="1937" width="14.6" height="15.0" fill="rgb(213,47,13)" rx="2" ry="2" />
<text text-anchor="" x="1112.77" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1185" width="46.0" height="15.0" fill="rgb(217,146,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1195.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::pop_front_char (5 samples, 0.41%)</title><rect x="577.5" y="1905" width="4.9" height="15.0" fill="rgb(233,25,49)" rx="2" ry="2" />
<text text-anchor="" x="580.50" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (4 samples, 0.33%)</title><rect x="985.5" y="1889" width="3.9" height="15.0" fill="rgb(243,135,51)" rx="2" ry="2" />
<text text-anchor="" x="988.51" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::finish_attribute (35 samples, 2.90%)</title><rect x="160.7" y="1921" width="34.2" height="15.0" fill="rgb(220,174,41)" rx="2" ry="2" />
<text text-anchor="" x="163.68" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="867.1" y="1905" width="1.0" height="15.0" fill="rgb(243,220,29)" rx="2" ry="2" />
<text text-anchor="" x="870.11" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::tag_sets::special_tag (1 samples, 0.08%)</title><rect x="291.8" y="1857" width="1.0" height="15.0" fill="rgb(219,168,31)" rx="2" ry="2" />
<text text-anchor="" x="294.79" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tokenizer::interface::TokenSink&gt;::process_token (5 samples, 0.41%)</title><rect x="583.4" y="1905" width="4.9" height="15.0" fill="rgb(254,14,12)" rx="2" ry="2" />
<text text-anchor="" x="586.37" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::appropriate_place_for_insertion (1 samples, 0.08%)</title><rect x="335.8" y="1857" width="1.0" height="15.0" fill="rgb(226,25,15)" rx="2" ry="2" />
<text text-anchor="" x="338.82" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (8 samples, 0.66%)</title><rect x="670.4" y="1873" width="7.9" height="15.0" fill="rgb(236,30,52)" rx="2" ry="2" />
<text text-anchor="" x="673.45" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (6 samples, 0.50%)</title><rect x="1146.9" y="2049" width="5.9" height="15.0" fill="rgb(217,151,27)" rx="2" ry="2" />
<text text-anchor="" x="1149.95" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="993" width="46.0" height="15.0" fill="rgb(239,151,17)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1003.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::interface::tree_builder::create_element (2 samples, 0.17%)</title><rect x="361.3" y="1825" width="1.9" height="15.0" fill="rgb(248,177,3)" rx="2" ry="2" />
<text text-anchor="" x="364.26" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (6 samples, 0.50%)</title><rect x="979.6" y="1889" width="5.9" height="15.0" fill="rgb(253,103,27)" rx="2" ry="2" />
<text text-anchor="" x="982.64" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="689" width="46.0" height="15.0" fill="rgb(213,83,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="699.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="849" width="46.0" height="15.0" fill="rgb(253,79,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="859.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::process_char_ref (11 samples, 0.91%)</title><rect x="582.4" y="1937" width="10.8" height="15.0" fill="rgb(246,51,8)" rx="2" ry="2" />
<text text-anchor="" x="585.39" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="433.7" y="1921" width="0.9" height="15.0" fill="rgb(233,20,35)" rx="2" ry="2" />
<text text-anchor="" x="436.67" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1953" width="46.0" height="15.0" fill="rgb(212,137,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1377" width="46.0" height="15.0" fill="rgb(235,47,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1387.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (26 samples, 2.16%)</title><rect x="30.5" y="33" width="25.5" height="15.0" fill="rgb(217,218,15)" rx="2" ry="2" />
<text text-anchor="" x="33.55" y="43.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >s..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="465" width="46.0" height="15.0" fill="rgb(212,51,0)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="475.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::stdio::Stdin as std::io::Read&gt;::read_to_end (3 samples, 0.25%)</title><rect x="1091.2" y="1969" width="2.9" height="15.0" fill="rgb(224,93,14)" rx="2" ry="2" />
<text text-anchor="" x="1094.18" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="295.7" y="1857" width="1.0" height="15.0" fill="rgb(247,55,21)" rx="2" ry="2" />
<text text-anchor="" x="298.70" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (2 samples, 0.17%)</title><rect x="995.3" y="1937" width="1.9" height="15.0" fill="rgb(211,225,29)" rx="2" ry="2" />
<text text-anchor="" x="998.29" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1169" width="46.0" height="15.0" fill="rgb(217,78,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1179.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (123 samples, 10.20%)</title><rect x="249.7" y="1889" width="120.4" height="15.0" fill="rgb(247,33,47)" rx="2" ry="2" />
<text text-anchor="" x="252.72" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tr..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena::main (1,088 samples, 90.22%)</title><rect x="64.8" y="1985" width="1064.5" height="15.0" fill="rgb(238,228,50)" rx="2" ry="2" />
<text text-anchor="" x="67.79" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >arena::main</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="897" width="46.0" height="15.0" fill="rgb(229,7,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="907.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1521" width="46.0" height="15.0" fill="rgb(221,81,6)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1531.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (1 samples, 0.08%)</title><rect x="387.7" y="1889" width="1.0" height="15.0" fill="rgb(247,41,29)" rx="2" ry="2" />
<text text-anchor="" x="390.68" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="193" width="46.0" height="15.0" fill="rgb(220,228,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="203.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (1 samples, 0.08%)</title><rect x="759.5" y="1889" width="1.0" height="15.0" fill="rgb(221,100,31)" rx="2" ry="2" />
<text text-anchor="" x="762.49" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::process_token (6 samples, 0.50%)</title><rect x="582.4" y="1921" width="5.9" height="15.0" fill="rgb(253,10,27)" rx="2" ry="2" />
<text text-anchor="" x="585.39" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1761" width="46.0" height="15.0" fill="rgb(207,213,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1771.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="209" width="46.0" height="15.0" fill="rgb(240,84,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="219.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1873" width="46.0" height="15.0" fill="rgb(210,162,30)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_deallocate (1 samples, 0.08%)</title><rect x="289.8" y="1841" width="1.0" height="15.0" fill="rgb(249,151,42)" rx="2" ry="2" />
<text text-anchor="" x="292.83" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="977" width="46.0" height="15.0" fill="rgb(243,186,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="987.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="657" width="46.0" height="15.0" fill="rgb(208,58,2)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="667.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="641" width="46.0" height="15.0" fill="rgb(245,229,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="651.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (11 samples, 0.91%)</title><rect x="1165.5" y="2049" width="10.8" height="15.0" fill="rgb(244,155,42)" rx="2" ry="2" />
<text text-anchor="" x="1168.54" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (27 samples, 2.24%)</title><rect x="868.1" y="1921" width="26.4" height="15.0" fill="rgb(205,45,17)" rx="2" ry="2" />
<text text-anchor="" x="871.09" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >_..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::interface::tree_builder::create_element (7 samples, 0.58%)</title><rect x="318.2" y="1841" width="6.9" height="15.0" fill="rgb(244,226,26)" rx="2" ry="2" />
<text text-anchor="" x="321.21" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::get_preprocessed_char (3 samples, 0.25%)</title><rect x="68.7" y="1953" width="2.9" height="15.0" fill="rgb(207,180,22)" rx="2" ry="2" />
<text text-anchor="" x="71.71" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1697" width="46.0" height="15.0" fill="rgb(249,153,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1707.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1793" width="46.0" height="15.0" fill="rgb(238,65,27)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1803.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="785" width="46.0" height="15.0" fill="rgb(215,49,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="795.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_run_dalloc (1 samples, 0.08%)</title><rect x="1158.7" y="2049" width="1.0" height="15.0" fill="rgb(253,213,53)" rx="2" ry="2" />
<text text-anchor="" x="1161.69" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::panicking::panicking (1 samples, 0.08%)</title><rect x="441.5" y="1905" width="1.0" height="15.0" fill="rgb(233,199,7)" rx="2" ry="2" />
<text text-anchor="" x="444.49" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1617" width="46.0" height="15.0" fill="rgb(217,73,43)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1627.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1649" width="46.0" height="15.0" fill="rgb(215,71,40)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1659.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (3 samples, 0.25%)</title><rect x="1091.2" y="1937" width="2.9" height="15.0" fill="rgb(237,47,51)" rx="2" ry="2" />
<text text-anchor="" x="1094.18" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="513" width="46.0" height="15.0" fill="rgb(220,224,27)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="523.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::util::str::lower_ascii_letter (5 samples, 0.41%)</title><rect x="1080.4" y="1953" width="4.9" height="15.0" fill="rgb(229,57,22)" rx="2" ry="2" />
<text text-anchor="" x="1083.41" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>_start (5 samples, 0.41%)</title><rect x="1153.8" y="2049" width="4.9" height="15.0" fill="rgb(238,197,0)" rx="2" ry="2" />
<text text-anchor="" x="1156.80" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="290.8" y="1841" width="1.0" height="15.0" fill="rgb(206,105,8)" rx="2" ry="2" />
<text text-anchor="" x="293.81" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::interface::tree_builder::create_element (8 samples, 0.66%)</title><rect x="344.6" y="1857" width="7.9" height="15.0" fill="rgb(224,116,52)" rx="2" ry="2" />
<text text-anchor="" x="347.63" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::rules::any_not_whitespace (1 samples, 0.08%)</title><rect x="368.1" y="1873" width="1.0" height="15.0" fill="rgb(244,125,30)" rx="2" ry="2" />
<text text-anchor="" x="371.11" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1985" width="46.0" height="15.0" fill="rgb(225,2,34)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1995.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::double (1 samples, 0.08%)</title><rect x="657.7" y="1889" width="1.0" height="15.0" fill="rgb(215,197,35)" rx="2" ry="2" />
<text text-anchor="" x="660.73" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::appropriate_place_for_insertion (5 samples, 0.41%)</title><rect x="678.3" y="1889" width="4.9" height="15.0" fill="rgb(219,127,7)" rx="2" ry="2" />
<text text-anchor="" x="681.28" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>string_cache::atom::StringCache::add (1 samples, 0.08%)</title><rect x="442.5" y="1905" width="0.9" height="15.0" fill="rgb(238,3,16)" rx="2" ry="2" />
<text text-anchor="" x="445.47" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;arena::Sink&lt;arena&gt; as markup5ever::interface::tree_builder::TreeSink&gt;::append (2 samples, 0.17%)</title><rect x="308.4" y="1825" width="2.0" height="15.0" fill="rgb(208,3,11)" rx="2" ry="2" />
<text text-anchor="" x="311.42" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__rust_maybe_catch_panic (1,097 samples, 90.96%)</title><rect x="56.0" y="2001" width="1073.3" height="15.0" fill="rgb(229,192,54)" rx="2" ry="2" />
<text text-anchor="" x="58.99" y="2011.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >__rust_maybe_catch_panic</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (2 samples, 0.17%)</title><rect x="371.0" y="1889" width="2.0" height="15.0" fill="rgb(220,174,21)" rx="2" ry="2" />
<text text-anchor="" x="374.04" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::reconstruct_formatting (2 samples, 0.17%)</title><rect x="633.3" y="1905" width="1.9" height="15.0" fill="rgb(225,189,11)" rx="2" ry="2" />
<text text-anchor="" x="636.27" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__get_nprocs (1 samples, 0.08%)</title><rect x="1152.8" y="2033" width="1.0" height="15.0" fill="rgb(252,59,26)" rx="2" ry="2" />
<text text-anchor="" x="1155.82" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1585" width="46.0" height="15.0" fill="rgb(240,13,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1595.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1153" width="46.0" height="15.0" fill="rgb(250,141,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1163.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::double (1 samples, 0.08%)</title><rect x="439.5" y="1921" width="1.0" height="15.0" fill="rgb(217,89,18)" rx="2" ry="2" />
<text text-anchor="" x="442.54" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;string_cache::atom::Atom&lt;Static&gt; as core::convert::From&lt;&amp;a str&gt;&gt;::from (1 samples, 0.08%)</title><rect x="765.4" y="1937" width="0.9" height="15.0" fill="rgb(246,18,30)" rx="2" ry="2" />
<text text-anchor="" x="768.36" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::alloc (2 samples, 0.17%)</title><rect x="247.8" y="1889" width="1.9" height="15.0" fill="rgb(250,158,43)" rx="2" ry="2" />
<text text-anchor="" x="250.76" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="817" width="46.0" height="15.0" fill="rgb(228,108,44)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="827.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;arena::Sink&lt;arena&gt; as markup5ever::interface::tree_builder::TreeSink&gt;::append (3 samples, 0.25%)</title><rect x="364.2" y="1857" width="2.9" height="15.0" fill="rgb(226,128,51)" rx="2" ry="2" />
<text text-anchor="" x="367.20" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1841" width="46.0" height="15.0" fill="rgb(218,80,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="81" width="46.0" height="15.0" fill="rgb(206,153,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="91.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::write (95 samples, 7.88%)</title><rect x="898.4" y="1921" width="93.0" height="15.0" fill="rgb(232,109,2)" rx="2" ry="2" />
<text text-anchor="" x="901.42" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >core::fmt::..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>phf_shared::hash (1 samples, 0.08%)</title><rect x="443.4" y="1921" width="1.0" height="15.0" fill="rgb(253,83,54)" rx="2" ry="2" />
<text text-anchor="" x="446.45" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;std::io::Write::write_fmt::Adaptor&lt;a, T&gt; as core::fmt::Write&gt;::write_str (13 samples, 1.08%)</title><rect x="932.7" y="1905" width="12.7" height="15.0" fill="rgb(230,117,12)" rx="2" ry="2" />
<text text-anchor="" x="935.67" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1297" width="46.0" height="15.0" fill="rgb(226,202,53)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1307.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>markup5ever::util::buffer_queue::BufferQueue::push_front (1 samples, 0.08%)</title><rect x="998.2" y="1921" width="1.0" height="15.0" fill="rgb(238,154,20)" rx="2" ry="2" />
<text text-anchor="" x="1001.23" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::pop_front_char (1 samples, 0.08%)</title><rect x="489.4" y="1921" width="1.0" height="15.0" fill="rgb(223,193,50)" rx="2" ry="2" />
<text text-anchor="" x="492.44" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1073" width="46.0" height="15.0" fill="rgb(227,139,47)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1083.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (1 samples, 0.08%)</title><rect x="1116.6" y="1921" width="1.0" height="15.0" fill="rgb(233,18,14)" rx="2" ry="2" />
<text text-anchor="" x="1119.62" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>phf_shared::hash (5 samples, 0.41%)</title><rect x="425.8" y="1905" width="4.9" height="15.0" fill="rgb(209,207,31)" rx="2" ry="2" />
<text text-anchor="" x="428.84" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1057" width="46.0" height="15.0" fill="rgb(252,209,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1067.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (1 samples, 0.08%)</title><rect x="894.5" y="1921" width="1.0" height="15.0" fill="rgb(231,223,53)" rx="2" ry="2" />
<text text-anchor="" x="897.51" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (1 samples, 0.08%)</title><rect x="993.3" y="1937" width="1.0" height="15.0" fill="rgb(237,126,6)" rx="2" ry="2" />
<text text-anchor="" x="996.33" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="161" width="46.0" height="15.0" fill="rgb(218,224,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="171.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="865" width="46.0" height="15.0" fill="rgb(246,201,13)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="875.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (1 samples, 0.08%)</title><rect x="1108.8" y="1937" width="1.0" height="15.0" fill="rgb(254,168,8)" rx="2" ry="2" />
<text text-anchor="" x="1111.79" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::dealloc (1 samples, 0.08%)</title><rect x="342.7" y="1841" width="0.9" height="15.0" fill="rgb(254,169,32)" rx="2" ry="2" />
<text text-anchor="" x="345.67" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;typed_arena::Arena&lt;T&gt;&gt;::alloc (5 samples, 0.41%)</title><rect x="320.2" y="1825" width="4.9" height="15.0" fill="rgb(244,146,20)" rx="2" ry="2" />
<text text-anchor="" x="323.17" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::create_formatting_element_for (4 samples, 0.33%)</title><rect x="359.3" y="1857" width="3.9" height="15.0" fill="rgb(235,67,48)" rx="2" ry="2" />
<text text-anchor="" x="362.30" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1553" width="46.0" height="15.0" fill="rgb(213,36,31)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1563.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::appropriate_place_for_insertion (3 samples, 0.25%)</title><rect x="667.5" y="1873" width="2.9" height="15.0" fill="rgb(244,74,19)" rx="2" ry="2" />
<text text-anchor="" x="670.51" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1425" width="46.0" height="15.0" fill="rgb(236,45,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1435.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (2 samples, 0.17%)</title><rect x="178.3" y="1889" width="1.9" height="15.0" fill="rgb(243,165,19)" rx="2" ry="2" />
<text text-anchor="" x="181.29" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (2 samples, 0.17%)</title><rect x="316.3" y="1825" width="1.9" height="15.0" fill="rgb(245,213,44)" rx="2" ry="2" />
<text text-anchor="" x="319.25" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1537" width="46.0" height="15.0" fill="rgb(220,171,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1547.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tokenizer::char_ref::CharRefTokenizer::finish_named (2 samples, 0.17%)</title><rect x="997.2" y="1937" width="2.0" height="15.0" fill="rgb(228,203,17)" rx="2" ry="2" />
<text text-anchor="" x="1000.25" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="721" width="46.0" height="15.0" fill="rgb(214,118,28)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="731.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1281" width="46.0" height="15.0" fill="rgb(251,126,41)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1291.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="753" width="46.0" height="15.0" fill="rgb(246,110,46)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="763.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>mallocx (3 samples, 0.25%)</title><rect x="760.5" y="1905" width="2.9" height="15.0" fill="rgb(249,134,48)" rx="2" ry="2" />
<text text-anchor="" x="763.46" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::Write::write_char (1 samples, 0.08%)</title><rect x="590.2" y="1905" width="1.0" height="15.0" fill="rgb(227,164,35)" rx="2" ry="2" />
<text text-anchor="" x="593.22" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>rallocx (1 samples, 0.08%)</title><rect x="703.7" y="1841" width="1.0" height="15.0" fill="rgb(237,1,54)" rx="2" ry="2" />
<text text-anchor="" x="706.71" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::alloc (1 samples, 0.08%)</title><rect x="177.3" y="1873" width="1.0" height="15.0" fill="rgb(235,199,32)" rx="2" ry="2" />
<text text-anchor="" x="180.31" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="97" width="46.0" height="15.0" fill="rgb(224,15,37)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="107.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (38 samples, 3.15%)</title><rect x="683.2" y="1889" width="37.1" height="15.0" fill="rgb(207,172,1)" rx="2" ry="2" />
<text text-anchor="" x="686.17" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;ht..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="65" width="46.0" height="15.0" fill="rgb(218,63,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="75.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::rules::TreeBuilderStep&lt;Handle&gt;&gt;::step (1 samples, 0.08%)</title><rect x="389.6" y="1905" width="1.0" height="15.0" fill="rgb(245,190,13)" rx="2" ry="2" />
<text text-anchor="" x="392.64" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::raw_vec::RawVec&lt;T, A&gt;&gt;::double (7 samples, 0.58%)</title><rect x="173.4" y="1905" width="6.8" height="15.0" fill="rgb(217,211,15)" rx="2" ry="2" />
<text text-anchor="" x="176.40" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>arena_bin_malloc_hard (1 samples, 0.08%)</title><rect x="1129.3" y="2033" width="1.0" height="15.0" fill="rgb(240,81,42)" rx="2" ry="2" />
<text text-anchor="" x="1132.34" y="2043.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::insert_element (22 samples, 1.82%)</title><rect x="330.9" y="1873" width="21.6" height="15.0" fill="rgb(229,123,24)" rx="2" ry="2" />
<text text-anchor="" x="333.93" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::insert_element::form_associatable (1 samples, 0.08%)</title><rect x="363.2" y="1857" width="1.0" height="15.0" fill="rgb(219,126,4)" rx="2" ry="2" />
<text text-anchor="" x="366.22" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::close_p_element_in_button_scope (4 samples, 0.33%)</title><rect x="292.8" y="1873" width="3.9" height="15.0" fill="rgb(227,72,44)" rx="2" ry="2" />
<text text-anchor="" x="295.77" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1009" width="46.0" height="15.0" fill="rgb(219,132,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1019.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::step (5 samples, 0.41%)</title><rect x="1086.3" y="1969" width="4.9" height="15.0" fill="rgb(239,54,22)" rx="2" ry="2" />
<text text-anchor="" x="1089.29" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::push_bytes_without_validating (38 samples, 3.15%)</title><rect x="830.9" y="1921" width="37.2" height="15.0" fill="rgb(244,12,27)" rx="2" ry="2" />
<text text-anchor="" x="833.91" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;te..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>html5ever::tree_builder::tag_sets::cursory_implied_end (1 samples, 0.08%)</title><rect x="369.1" y="1873" width="1.0" height="15.0" fill="rgb(208,227,16)" rx="2" ry="2" />
<text text-anchor="" x="372.09" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>std::io::read_to_end (3 samples, 0.25%)</title><rect x="1091.2" y="1953" width="2.9" height="15.0" fill="rgb(236,79,5)" rx="2" ry="2" />
<text text-anchor="" x="1094.18" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1137" width="46.0" height="15.0" fill="rgb(219,172,4)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1147.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (2 samples, 0.17%)</title><rect x="668.5" y="1857" width="1.9" height="15.0" fill="rgb(229,193,49)" rx="2" ry="2" />
<text text-anchor="" x="671.49" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="737" width="46.0" height="15.0" fill="rgb(237,221,25)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="747.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>sdallocx (1 samples, 0.08%)</title><rect x="388.7" y="1889" width="0.9" height="15.0" fill="rgb(250,26,10)" rx="2" ry="2" />
<text text-anchor="" x="391.66" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (25 samples, 2.07%)</title><rect x="736.0" y="1905" width="24.5" height="15.0" fill="rgb(232,43,5)" rx="2" ry="2" />
<text text-anchor="" x="739.00" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >c..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1217" width="46.0" height="15.0" fill="rgb(223,191,36)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1227.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::create_formatting_element_for (31 samples, 2.57%)</title><rect x="296.7" y="1873" width="30.3" height="15.0" fill="rgb(235,210,50)" rx="2" ry="2" />
<text text-anchor="" x="299.68" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;h..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__sysconf (1 samples, 0.08%)</title><rect x="1152.8" y="2049" width="1.0" height="15.0" fill="rgb(232,16,3)" rx="2" ry="2" />
<text text-anchor="" x="1155.82" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::cmp::impls::&lt;impl core::cmp::PartialEq for u8&gt;::eq (1 samples, 0.08%)</title><rect x="994.3" y="1937" width="1.0" height="15.0" fill="rgb(241,82,25)" rx="2" ry="2" />
<text text-anchor="" x="997.31" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::push_bytes_without_validating (9 samples, 0.75%)</title><rect x="695.9" y="1857" width="8.8" height="15.0" fill="rgb(209,186,22)" rx="2" ry="2" />
<text text-anchor="" x="698.89" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1633" width="46.0" height="15.0" fill="rgb(232,137,11)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1643.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memcmp_sse4_1 (3 samples, 0.25%)</title><rect x="430.7" y="1921" width="3.0" height="15.0" fill="rgb(252,228,8)" rx="2" ry="2" />
<text text-anchor="" x="433.73" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (31 samples, 2.57%)</title><rect x="1094.1" y="1969" width="30.3" height="15.0" fill="rgb(215,30,38)" rx="2" ry="2" />
<text text-anchor="" x="1097.11" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="305" width="46.0" height="15.0" fill="rgb(215,98,19)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="315.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::emit_current_tag (1 samples, 0.08%)</title><rect x="67.7" y="1953" width="1.0" height="15.0" fill="rgb(249,75,40)" rx="2" ry="2" />
<text text-anchor="" x="70.73" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::pop_except_from (114 samples, 9.45%)</title><rect x="470.8" y="1937" width="111.6" height="15.0" fill="rgb(230,156,48)" rx="2" ry="2" />
<text text-anchor="" x="473.85" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::t..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (1 samples, 0.08%)</title><rect x="1094.1" y="1953" width="1.0" height="15.0" fill="rgb(248,174,46)" rx="2" ry="2" />
<text text-anchor="" x="1097.11" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::pop_front (1 samples, 0.08%)</title><rect x="152.9" y="1921" width="0.9" height="15.0" fill="rgb(210,171,10)" rx="2" ry="2" />
<text text-anchor="" x="155.85" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::from_size_align (1 samples, 0.08%)</title><rect x="281.0" y="1841" width="1.0" height="15.0" fill="rgb(224,56,8)" rx="2" ry="2" />
<text text-anchor="" x="284.03" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tokenizer::interface::TokenSink&gt;::process_token (184 samples, 15.26%)</title><rect x="209.6" y="1905" width="180.0" height="15.0" fill="rgb(212,84,1)" rx="2" ry="2" />
<text text-anchor="" x="212.60" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tree_builde..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt; as html5ever::tree_builder::actions::TreeBuilderActions&lt;Handle&gt;&gt;::pop_until_named (4 samples, 0.33%)</title><rect x="327.0" y="1857" width="3.9" height="15.0" fill="rgb(232,142,45)" rx="2" ry="2" />
<text text-anchor="" x="330.01" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>alloc::allocator::Layout::repeat (3 samples, 0.25%)</title><rect x="282.0" y="1857" width="2.9" height="15.0" fill="rgb(222,98,10)" rx="2" ry="2" />
<text text-anchor="" x="285.01" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="367.1" y="1873" width="1.0" height="15.0" fill="rgb(246,104,9)" rx="2" ry="2" />
<text text-anchor="" x="370.13" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="257" width="46.0" height="15.0" fill="rgb(207,39,5)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="267.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="417" width="46.0" height="15.0" fill="rgb(221,85,32)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="427.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="929" width="46.0" height="15.0" fill="rgb(238,140,38)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="939.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (15 samples, 1.24%)</title><rect x="373.0" y="1889" width="14.7" height="15.0" fill="rgb(243,169,19)" rx="2" ry="2" />
<text text-anchor="" x="376.00" y="1899.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>memcpy@plt (1 samples, 0.08%)</title><rect x="991.4" y="1921" width="1.0" height="15.0" fill="rgb(210,224,52)" rx="2" ry="2" />
<text text-anchor="" x="994.38" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;alloc::heap::HeapAlloc as alloc::allocator::Alloc&gt;::alloc (1 samples, 0.08%)</title><rect x="657.7" y="1873" width="1.0" height="15.0" fill="rgb(215,216,36)" rx="2" ry="2" />
<text text-anchor="" x="660.73" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (5 samples, 0.41%)</title><rect x="336.8" y="1857" width="4.9" height="15.0" fill="rgb(246,46,45)" rx="2" ry="2" />
<text text-anchor="" x="339.80" y="1867.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="449" width="46.0" height="15.0" fill="rgb(218,6,50)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="459.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::fmt::write (2 samples, 0.17%)</title><rect x="591.2" y="1905" width="2.0" height="15.0" fill="rgb(254,3,46)" rx="2" ry="2" />
<text text-anchor="" x="594.19" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (1 samples, 0.08%)</title><rect x="358.3" y="1841" width="1.0" height="15.0" fill="rgb(235,169,4)" rx="2" ry="2" />
<text text-anchor="" x="361.33" y="1851.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;arena::Sink&lt;arena&gt; as markup5ever::interface::tree_builder::TreeSink&gt;::append (36 samples, 2.99%)</title><rect x="685.1" y="1873" width="35.2" height="15.0" fill="rgb(244,68,26)" rx="2" ry="2" />
<text text-anchor="" x="688.12" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;a..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>je_arena_ralloc (2 samples, 0.17%)</title><rect x="1162.6" y="2049" width="2.0" height="15.0" fill="rgb(250,111,39)" rx="2" ry="2" />
<text text-anchor="" x="1165.60" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1825" width="46.0" height="15.0" fill="rgb(240,69,8)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1835.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1233" width="46.0" height="15.0" fill="rgb(242,19,54)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1243.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tree_builder::TreeBuilder&lt;Handle, Sink&gt;&gt;::insert_at (3 samples, 0.25%)</title><rect x="364.2" y="1873" width="2.9" height="15.0" fill="rgb(247,212,2)" rx="2" ry="2" />
<text text-anchor="" x="367.20" y="1883.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>core::ptr::drop_in_place (30 samples, 2.49%)</title><rect x="1095.1" y="1953" width="29.3" height="15.0" fill="rgb(253,8,11)" rx="2" ry="2" />
<text text-anchor="" x="1098.09" y="1963.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >co..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1489" width="46.0" height="15.0" fill="rgb(229,212,49)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1499.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;markup5ever::LocalNameStaticSet as string_cache::atom::StaticAtomSet&gt;::get (2 samples, 0.17%)</title><rect x="390.6" y="1921" width="2.0" height="15.0" fill="rgb(213,217,35)" rx="2" ry="2" />
<text text-anchor="" x="393.61" y="1931.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::run (1,044 samples, 86.57%)</title><rect x="64.8" y="1969" width="1021.5" height="15.0" fill="rgb(249,212,15)" rx="2" ry="2" />
<text text-anchor="" x="67.79" y="1979.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >&lt;html5ever::tokenizer::Tokenizer&lt;Sink&gt;&gt;::run</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="1393" width="46.0" height="15.0" fill="rgb(209,137,33)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="1403.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>&lt;tendril::tendril::Tendril&lt;F, A&gt;&gt;::pop_front_char (4 samples, 0.33%)</title><rect x="766.3" y="1937" width="3.9" height="15.0" fill="rgb(210,196,37)" rx="2" ry="2" />
<text text-anchor="" x="769.33" y="1947.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>__memmove_avx_unaligned_erms (1 samples, 0.08%)</title><rect x="589.2" y="1905" width="1.0" height="15.0" fill="rgb(231,86,37)" rx="2" ry="2" />
<text text-anchor="" x="592.24" y="1915.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="385" width="46.0" height="15.0" fill="rgb(205,120,20)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="395.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>do_lookup_x (1 samples, 0.08%)</title><rect x="1161.6" y="2049" width="1.0" height="15.0" fill="rgb(236,105,3)" rx="2" ry="2" />
<text text-anchor="" x="1164.63" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" ></text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="705" width="46.0" height="15.0" fill="rgb(223,60,45)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="715.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (47 samples, 3.90%)</title><rect x="10.0" y="945" width="46.0" height="15.0" fill="rgb(216,158,6)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="955.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unk..</text>
</g>
<g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)">
<title>[unknown] (1,162 samples, 96.35%)</title><rect x="10.0" y="2049" width="1136.9" height="15.0" fill="rgb(234,190,26)" rx="2" ry="2" />
<text text-anchor="" x="13.00" y="2059.5" font-size="12" font-family="Verdana" fill="rgb(0,0,0)" >[unknown]</text>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment