Skip to content

Instantly share code, notes, and snippets.

@bartlomieju
Last active August 9, 2019 17:14
Show Gist options
  • Save bartlomieju/a341a36e9ef4ba04bf0357641be736b2 to your computer and use it in GitHub Desktop.
Save bartlomieju/a341a36e9ef4ba04bf0357641be736b2 to your computer and use it in GitHub Desktop.
Deno profiles
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="1686" onload="init(evt)" viewBox="0 0 1200 1686" 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 nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';]]><![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 = nametype + " " + 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*fontsize*fontwidth) {
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 - xpad) * ratio + xpad;
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-xpad, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = xpad;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (xpad*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*xpad) / 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 (!inverted) {
var upstack = parseFloat(a["y"].value) > ymin;
} else {
var upstack = parseFloat(a["y"].value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+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 = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
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;
});
// 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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
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" y="0" width="1200" height="1686" fill="url(#background)"/><text text-anchor="middle" x="600.00" y="24.00" font-size="17" font-family="Verdana" fill="rgb(0, 0, 0)">Flame Graph</text><text id="details" text-anchor="left" x="10.00" y="1669.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><text id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" text-anchor="left" x="10.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Reset Zoom</text><text id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" text-anchor="left" x="1090.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Search</text><text id="matched" text-anchor="left" x="1090.00" y="1669.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`0x108b39008 (1 samples, 0.01%)</title><rect x="10" y="1557" width="0" height="15" fill="rgb(253,149,49)"/><text text-anchor="left" x="13.00" y="1567.50" 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>libdyld.dylib`dyld_stub_binder (1 samples, 0.01%)</title><rect x="10" y="1541" width="0" height="15" fill="rgb(210,206,27)"/><text text-anchor="left" x="13.00" y="1551.50" 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>dyld`dyld::fastBindLazySymbol (1 samples, 0.01%)</title><rect x="10" y="1525" width="0" height="15" fill="rgb(228,131,0)"/><text text-anchor="left" x="13.00" y="1535.50" 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>dyld`ImageLoaderMachOCompressed::doBindFastLazySymbol(unsigned int, ImageLoader::LinkContext const&amp;, void (*)(), void (*) (1 samples, 0.01%)</title><rect x="10" y="1509" width="0" height="15" fill="rgb(218,128,44)"/><text text-anchor="left" x="13.00" y="1519.50" 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>dyld`ImageLoaderMachOCompressed::resolve (1 samples, 0.01%)</title><rect x="10" y="1493" width="0" height="15" fill="rgb(236,78,0)"/><text text-anchor="left" x="13.00" y="1503.50" 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>dyld`ImageLoaderMachOCompressed::resolveTwolevel (1 samples, 0.01%)</title><rect x="10" y="1477" width="0" height="15" fill="rgb(231,47,27)"/><text text-anchor="left" x="13.00" y="1487.50" 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>dyld`ImageLoader::findExportedSymbolAddress (1 samples, 0.01%)</title><rect x="10" y="1461" width="0" height="15" fill="rgb(215,13,12)"/><text text-anchor="left" x="13.00" y="1471.50" 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>dyld`ImageLoaderMachO::findExportedSymbol (1 samples, 0.01%)</title><rect x="10" y="1445" width="0" height="15" fill="rgb(218,84,2)"/><text text-anchor="left" x="13.00" y="1455.50" 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>dyld`ImageLoaderMachO::libPath (1 samples, 0.01%)</title><rect x="10" y="1429" width="0" height="15" fill="rgb(212,17,34)"/><text text-anchor="left" x="13.00" y="1439.50" 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>deno_core_http_bench`tokio::runtime::current_thread::runtime::Runtime::new::h9f93dc373b62a05c (1 samples, 0.01%)</title><rect x="10" y="1461" width="0" height="15" fill="rgb(221,197,15)"/><text text-anchor="left" x="13.00" y="1471.50" 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>deno_core_http_bench`tokio_current_thread::CurrentThread$LT$P$GT$::new_with_park::h0832d5a3a246a591 (1 samples, 0.01%)</title><rect x="10" y="1445" width="0" height="15" fill="rgb(237,18,50)"/><text text-anchor="left" x="13.00" y="1455.50" 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>deno_core_http_bench`_$LT$tokio_timer..timer..Timer$LT$T$C$N$GT$$u20$as$u20$tokio_executor..park..Park$GT$::park::hbfcae3b01a50ec4e (2 samples, 0.02%)</title><rect x="10" y="1077" width="0" height="15" fill="rgb(242,118,25)"/><text text-anchor="left" x="13.00" y="1087.50" 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>deno_core_http_bench`tokio_current_thread::CurrentThread$LT$P$GT$::is_idle::ha1e98e6836e1af5c (1 samples, 0.01%)</title><rect x="10" y="1077" width="0" height="15" fill="rgb(247,157,26)"/><text text-anchor="left" x="13.00" y="1087.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hbf675792d01b1db3 (1 samples, 0.01%)</title><rect x="10" y="1061" width="0" height="15" fill="rgb(234,119,44)"/><text text-anchor="left" x="13.00" y="1071.50" 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>deno_core_http_bench`_$LT$tokio_reactor..Reactor$u20$as$u20$tokio_executor..park..Park$GT$::park::hb1e8b4ab60f309dd (1 samples, 0.01%)</title><rect x="10" y="1061" width="0" height="15" fill="rgb(229,68,17)"/><text text-anchor="left" x="13.00" y="1071.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h1bc9fa9d0ec761bd (1 samples, 0.01%)</title><rect x="11" y="1045" width="0" height="15" fill="rgb(210,82,14)"/><text text-anchor="left" x="14.00" y="1055.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h9fc0ef9b4c9cd960 (3 samples, 0.03%)</title><rect x="11" y="1029" width="0" height="15" fill="rgb(238,20,20)"/><text text-anchor="left" x="14.00" y="1039.50" 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>deno_core_http_bench`_$LT$I$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::hdb4c8f3245149fff (1 samples, 0.01%)</title><rect x="11" y="1013" width="0" height="15" fill="rgb(214,74,34)"/><text text-anchor="left" x="14.00" y="1023.50" 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>deno_core_http_bench`_$LT$log..Level$u20$as$u20$core..cmp..PartialOrd$LT$log..LevelFilter$GT$$GT$::le::h43d8257111805d71 (2 samples, 0.02%)</title><rect x="11" y="1013" width="1" height="15" fill="rgb(236,86,40)"/><text text-anchor="left" x="14.00" y="1023.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he235652f736c6543 (1 samples, 0.01%)</title><rect x="12" y="1013" width="0" height="15" fill="rgb(235,137,6)"/><text text-anchor="left" x="15.00" y="1023.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h22f7a78461cd1b7b (1 samples, 0.01%)</title><rect x="12" y="1013" width="0" height="15" fill="rgb(228,209,28)"/><text text-anchor="left" x="15.00" y="1023.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::ha61d4f06e05f8e70 (1 samples, 0.01%)</title><rect x="12" y="997" width="0" height="15" fill="rgb(221,17,12)"/><text text-anchor="left" x="15.00" y="1007.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hf51031a99f80584a (1 samples, 0.01%)</title><rect x="12" y="981" width="0" height="15" fill="rgb(209,79,44)"/><text text-anchor="left" x="15.00" y="991.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hcbef5e80717c6ced (1 samples, 0.01%)</title><rect x="12" y="965" width="0" height="15" fill="rgb(241,96,4)"/><text text-anchor="left" x="15.00" y="975.50" 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>deno_core_http_bench`_$LT$log..Level$u20$as$u20$core..cmp..PartialOrd$LT$log..LevelFilter$GT$$GT$::le::h43d8257111805d71 (2 samples, 0.02%)</title><rect x="12" y="997" width="1" height="15" fill="rgb(244,212,41)"/><text text-anchor="left" x="15.00" y="1007.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h20987ecc349b0cfe (1 samples, 0.01%)</title><rect x="13" y="981" width="0" height="15" fill="rgb(210,53,42)"/><text text-anchor="left" x="16.00" y="991.50" 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>deno_core_http_bench`core::option::Option$LT$$RF$T$GT$::cloned::h622c94aa2ebd2f8d (3 samples, 0.03%)</title><rect x="13" y="965" width="0" height="15" fill="rgb(244,202,20)"/><text text-anchor="left" x="16.00" y="975.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::hbbd515f449d16dbd (3 samples, 0.03%)</title><rect x="13" y="949" width="0" height="15" fill="rgb(254,115,11)"/><text text-anchor="left" x="16.00" y="959.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get::hba72780731239df7 (3 samples, 0.03%)</title><rect x="13" y="949" width="1" height="15" fill="rgb(222,50,23)"/><text text-anchor="left" x="16.00" y="959.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::hc3af755ffdf2225d (3 samples, 0.03%)</title><rect x="13" y="933" width="1" height="15" fill="rgb(211,18,54)"/><text text-anchor="left" x="16.00" y="943.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::he052921f53b846b1 (3 samples, 0.03%)</title><rect x="13" y="917" width="1" height="15" fill="rgb(208,118,32)"/><text text-anchor="left" x="16.00" y="927.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::h2c1d9b3469fef717 (2 samples, 0.02%)</title><rect x="14" y="901" width="0" height="15" fill="rgb(242,40,50)"/><text text-anchor="left" x="17.00" y="911.50" 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>deno_core_http_bench`_$LT$mio..poll..Iter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h66300e78e5e40248 (12 samples, 0.12%)</title><rect x="13" y="997" width="1" height="15" fill="rgb(243,181,9)"/><text text-anchor="left" x="16.00" y="1007.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::get::h08f98aba6e833af0 (10 samples, 0.10%)</title><rect x="13" y="981" width="1" height="15" fill="rgb(227,58,30)"/><text text-anchor="left" x="16.00" y="991.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get::h0d1c6d4c517cf2e0 (5 samples, 0.05%)</title><rect x="13" y="965" width="1" height="15" fill="rgb(214,86,0)"/><text text-anchor="left" x="16.00" y="975.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::hf7d9693495c72e9b (1 samples, 0.01%)</title><rect x="14" y="949" width="0" height="15" fill="rgb(254,174,44)"/><text text-anchor="left" x="17.00" y="959.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..cmp..PartialEq$GT$::eq::he3eeca2f130b8cfc (1 samples, 0.01%)</title><rect x="14" y="997" width="0" height="15" fill="rgb(221,127,48)"/><text text-anchor="left" x="17.00" y="1007.50" 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>deno_core_http_bench`_$LT$tokio_reactor..sharded_rwlock..RwLockReadGuard$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hfc1d07a050e4da7c (1 samples, 0.01%)</title><rect x="14" y="997" width="0" height="15" fill="rgb(224,218,0)"/><text text-anchor="left" x="17.00" y="1007.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (1 samples, 0.01%)</title><rect x="14" y="997" width="0" height="15" fill="rgb(208,208,38)"/><text text-anchor="left" x="17.00" y="1007.50" 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>deno_core_http_bench`core::time::Duration::from_millis::ha8f3823ac55f3ee4 (1 samples, 0.01%)</title><rect x="14" y="981" width="0" height="15" fill="rgb(215,126,19)"/><text text-anchor="left" x="17.00" y="991.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8639824a92b60d3e (1 samples, 0.01%)</title><rect x="15" y="965" width="0" height="15" fill="rgb(208,110,45)"/><text text-anchor="left" x="18.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_and_swap::h74082249eb5d8f38 (2 samples, 0.02%)</title><rect x="15" y="965" width="0" height="15" fill="rgb(248,81,1)"/><text text-anchor="left" x="18.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange::h1810b8a0a3d76107 (2 samples, 0.02%)</title><rect x="15" y="949" width="0" height="15" fill="rgb(237,216,53)"/><text text-anchor="left" x="18.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h8482d6f388e160db (2 samples, 0.02%)</title><rect x="15" y="933" width="0" height="15" fill="rgb(220,76,3)"/><text text-anchor="left" x="18.00" y="943.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h502a5e61f57c6662 (1 samples, 0.01%)</title><rect x="15" y="949" width="0" height="15" fill="rgb(232,215,17)"/><text text-anchor="left" x="18.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_and::hb624f710949402a5 (2 samples, 0.02%)</title><rect x="15" y="965" width="0" height="15" fill="rgb(232,46,2)"/><text text-anchor="left" x="18.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::atomic_and::h9904fc8bfae849db (1 samples, 0.01%)</title><rect x="15" y="949" width="0" height="15" fill="rgb(224,152,25)"/><text text-anchor="left" x="18.00" y="959.50" 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>deno_core_http_bench`core::time::Duration::from_millis::ha8f3823ac55f3ee4 (2 samples, 0.02%)</title><rect x="15" y="965" width="0" height="15" fill="rgb(238,146,51)"/><text text-anchor="left" x="18.00" y="975.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hd1d8af4b063a3434 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(250,211,5)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66fd89ab6c0a1fa9 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(237,107,1)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::set_len::h60bb7e6e010b10c2 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(230,30,2)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h7e8c795e7412f745 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(226,209,47)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h44bff0365750d394 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(230,119,17)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap_or::hf71f1e511c31f8ff (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(243,168,40)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5f3be926fc6d4f86 (1 samples, 0.01%)</title><rect x="16" y="949" width="0" height="15" fill="rgb(219,159,5)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`_$LT$mio..poll..ReadinessState$u20$as$u20$core..cmp..PartialEq$GT$::eq::he265990bb9e78a3e (1 samples, 0.01%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(218,3,50)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h7e8c795e7412f745 (2 samples, 0.02%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(226,46,40)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h76dd5a80461b83e3 (1 samples, 0.01%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(247,123,36)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::hd9a8e6be25195590 (1 samples, 0.01%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(241,0,21)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::h74ee9b45e975f422 (1 samples, 0.01%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(249,132,45)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`mio::poll::AtomicState::load::h08706692b029f6ab (1 samples, 0.01%)</title><rect x="17" y="933" width="0" height="15" fill="rgb(228,89,35)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::compare_and_swap::h958d46ad5abea0d1 (1 samples, 0.01%)</title><rect x="17" y="917" width="1" height="15" fill="rgb(209,199,49)"/><text text-anchor="left" x="20.00" y="927.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::hd9a8e6be25195590 (1 samples, 0.01%)</title><rect x="18" y="917" width="0" height="15" fill="rgb(251,125,5)"/><text text-anchor="left" x="21.00" y="927.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h0f3c1831d5b73a6b (3 samples, 0.03%)</title><rect x="18" y="917" width="0" height="15" fill="rgb(221,15,2)"/><text text-anchor="left" x="21.00" y="927.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h76dd5a80461b83e3 (1 samples, 0.01%)</title><rect x="18" y="901" width="0" height="15" fill="rgb(243,190,39)"/><text text-anchor="left" x="21.00" y="911.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::compare_and_swap::h958d46ad5abea0d1 (1 samples, 0.01%)</title><rect x="18" y="901" width="0" height="15" fill="rgb(212,195,12)"/><text text-anchor="left" x="21.00" y="911.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::compare_exchange::he950cb9f8c40b8c2 (1 samples, 0.01%)</title><rect x="18" y="885" width="0" height="15" fill="rgb(218,29,28)"/><text text-anchor="left" x="21.00" y="895.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h8482d6f388e160db (1 samples, 0.01%)</title><rect x="18" y="869" width="0" height="15" fill="rgb(236,83,49)"/><text text-anchor="left" x="21.00" y="879.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::hd9a8e6be25195590 (1 samples, 0.01%)</title><rect x="18" y="901" width="0" height="15" fill="rgb(236,33,43)"/><text text-anchor="left" x="21.00" y="911.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h7e8c795e7412f745 (1 samples, 0.01%)</title><rect x="18" y="885" width="0" height="15" fill="rgb(245,208,18)"/><text text-anchor="left" x="21.00" y="895.50" 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>deno_core_http_bench`mio::poll::ReadinessQueueInner::dequeue_node::h3be622356f803050 (11 samples, 0.11%)</title><rect x="17" y="933" width="2" height="15" fill="rgb(226,79,17)"/><text text-anchor="left" x="20.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessQueueInner::enqueue_node::h2ae7a5094edd1ea8 (5 samples, 0.05%)</title><rect x="18" y="917" width="1" height="15" fill="rgb(232,158,42)"/><text text-anchor="left" x="21.00" y="927.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::store::h5797e1d543eee485 (2 samples, 0.02%)</title><rect x="18" y="901" width="1" height="15" fill="rgb(233,181,22)"/><text text-anchor="left" x="21.00" y="911.50" 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>deno_core_http_bench`core::sync::atomic::atomic_store::h4f51102f1280f55e (2 samples, 0.02%)</title><rect x="18" y="885" width="1" height="15" fill="rgb(245,102,48)"/><text text-anchor="left" x="21.00" y="895.50" 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>deno_core_http_bench`mio::poll::ReadinessQueueInner::enqueue_node::h2ae7a5094edd1ea8 (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(254,220,5)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessQueueInner::sleep_marker::hba65519bfbb1e29a (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(247,85,0)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessState::effective_readiness::h9b809e29588da889 (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(223,199,18)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessState::interest::h75e8217744e932b8 (1 samples, 0.01%)</title><rect x="19" y="917" width="0" height="15" fill="rgb(250,65,39)"/><text text-anchor="left" x="22.00" y="927.50" 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>deno_core_http_bench`mio::poll::ReadinessState::update_token_read_pos::hc1351ca783277e2b (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(251,119,12)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessState::set::hc15d6e567f65ae3b (1 samples, 0.01%)</title><rect x="19" y="917" width="0" height="15" fill="rgb(251,61,12)"/><text text-anchor="left" x="22.00" y="927.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::capacity::h873062b01eb8f8d3 (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(238,20,30)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`core::mem::size_of::hb86d598574f161cc (1 samples, 0.01%)</title><rect x="19" y="917" width="0" height="15" fill="rgb(237,57,50)"/><text text-anchor="left" x="22.00" y="927.50" 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>deno_core_http_bench`mio::poll::ReadinessQueue::poll::h6785814fdb7f8ec8 (26 samples, 0.26%)</title><rect x="16" y="949" width="3" height="15" fill="rgb(216,193,15)"/><text text-anchor="left" x="19.00" y="959.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::len::hebba1b7ca08cae56 (1 samples, 0.01%)</title><rect x="19" y="933" width="0" height="15" fill="rgb(249,202,54)"/><text text-anchor="left" x="22.00" y="943.50" 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>deno_core_http_bench`mio::poll::ReadinessQueue::prepare_for_sleep::hdfc69d0a52938b5c (1 samples, 0.01%)</title><rect x="19" y="949" width="0" height="15" fill="rgb(234,135,2)"/><text text-anchor="left" x="22.00" y="959.50" 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>deno_core_http_bench`mio::poll::ReadinessState::is_queued::hc90888ba7279a6c1 (1 samples, 0.01%)</title><rect x="19" y="949" width="1" height="15" fill="rgb(239,122,34)"/><text text-anchor="left" x="22.00" y="959.50" 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>deno_core_http_bench`mio::poll::token::h586be593a3e7dfdb (2 samples, 0.02%)</title><rect x="20" y="949" width="0" height="15" fill="rgb(253,196,6)"/><text text-anchor="left" x="23.00" y="959.50" 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>deno_core_http_bench`mio::sys::unix::cvt::h06aa650751460601 (1 samples, 0.01%)</title><rect x="20" y="949" width="0" height="15" fill="rgb(250,128,18)"/><text text-anchor="left" x="23.00" y="959.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::clear::h965943691f96260f (2 samples, 0.02%)</title><rect x="20" y="949" width="0" height="15" fill="rgb(206,55,29)"/><text text-anchor="left" x="23.00" y="959.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66fd89ab6c0a1fa9 (1 samples, 0.01%)</title><rect x="20" y="933" width="0" height="15" fill="rgb(211,98,40)"/><text text-anchor="left" x="23.00" y="943.50" 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>deno_core_http_bench`_$LT$core..slice..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hb0e792149667122f (2 samples, 0.02%)</title><rect x="20" y="933" width="1" height="15" fill="rgb(218,117,37)"/><text text-anchor="left" x="23.00" y="943.50" 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>deno_core_http_bench`_$LT$i32$u20$as$u20$mio..sys..unix..IsMinusOne$GT$::is_minus_one::hf37e42938e8676ed (1 samples, 0.01%)</title><rect x="21" y="933" width="0" height="15" fill="rgb(207,1,30)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..cmp..PartialEq$GT$::eq::h38f8f1932e6c9de1 (2 samples, 0.02%)</title><rect x="21" y="933" width="0" height="15" fill="rgb(222,92,6)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::capacity::h8057f248ee3d298a (1 samples, 0.01%)</title><rect x="21" y="933" width="0" height="15" fill="rgb(217,77,33)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`core::mem::size_of::h9098bfb0aa25e3b8 (1 samples, 0.01%)</title><rect x="21" y="917" width="0" height="15" fill="rgb(218,26,7)"/><text text-anchor="left" x="24.00" y="927.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::clear::h195501fd7d71e112 (1 samples, 0.01%)</title><rect x="21" y="933" width="0" height="15" fill="rgb(230,87,13)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::set_len::h60bb7e6e010b10c2 (1 samples, 0.01%)</title><rect x="21" y="933" width="0" height="15" fill="rgb(231,148,39)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::truncate::h8db6e5cf7c7cddde (1 samples, 0.01%)</title><rect x="21" y="933" width="1" height="15" fill="rgb(231,80,25)"/><text text-anchor="left" x="24.00" y="943.50" 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>deno_core_http_bench`core::mem::size_of::h9098bfb0aa25e3b8 (2 samples, 0.02%)</title><rect x="22" y="933" width="0" height="15" fill="rgb(226,158,32)"/><text text-anchor="left" x="25.00" y="943.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h44bff0365750d394 (1 samples, 0.01%)</title><rect x="22" y="933" width="0" height="15" fill="rgb(246,83,30)"/><text text-anchor="left" x="25.00" y="943.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::h491cb6a226ca03ed (4 samples, 0.04%)</title><rect x="22" y="933" width="0" height="15" fill="rgb(211,212,46)"/><text text-anchor="left" x="25.00" y="943.50" 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>deno_core_http_bench`core::cmp::min::h79e1ccfe368979b3 (1 samples, 0.01%)</title><rect x="22" y="917" width="0" height="15" fill="rgb(247,69,6)"/><text text-anchor="left" x="25.00" y="927.50" 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>deno_core_http_bench`core::cmp::Ord::min::h3bfe814506055f1b (1 samples, 0.01%)</title><rect x="23" y="901" width="0" height="15" fill="rgb(221,22,21)"/><text text-anchor="left" x="26.00" y="911.50" 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>deno_core_http_bench`core::cmp::min::h79e1ccfe368979b3 (2 samples, 0.02%)</title><rect x="23" y="901" width="0" height="15" fill="rgb(254,217,0)"/><text text-anchor="left" x="26.00" y="911.50" 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>deno_core_http_bench`core::cmp::Ord::min::h3bfe814506055f1b (2 samples, 0.02%)</title><rect x="23" y="885" width="0" height="15" fill="rgb(223,51,24)"/><text text-anchor="left" x="26.00" y="895.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::hdc33eb7f682c68fc (6 samples, 0.06%)</title><rect x="22" y="933" width="1" height="15" fill="rgb(252,159,7)"/><text text-anchor="left" x="25.00" y="943.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Selector::select::_$u7b$$u7b$closure$u7d$$u7d$::h35f6e7dc072ebf8e (5 samples, 0.05%)</title><rect x="22" y="917" width="1" height="15" fill="rgb(209,25,22)"/><text text-anchor="left" x="25.00" y="927.50" 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>deno_core_http_bench`core::time::Duration::as_secs::h431bde6a5a407078 (1 samples, 0.01%)</title><rect x="23" y="901" width="0" height="15" fill="rgb(212,108,34)"/><text text-anchor="left" x="26.00" y="911.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap_or::hf71f1e511c31f8ff (1 samples, 0.01%)</title><rect x="23" y="933" width="0" height="15" fill="rgb(207,200,46)"/><text text-anchor="left" x="26.00" y="943.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::as_mut_ptr::hadaa38fc368d52bb (1 samples, 0.01%)</title><rect x="23" y="933" width="0" height="15" fill="rgb(216,211,6)"/><text text-anchor="left" x="26.00" y="943.50" 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>deno_core_http_bench`mio::event_imp::Ready::insert::h2acd8e29eef1a985 (1 samples, 0.01%)</title><rect x="23" y="933" width="0" height="15" fill="rgb(220,123,10)"/><text text-anchor="left" x="26.00" y="943.50" 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>deno_core_http_bench`_$LT$alloc..vec..SetLenOnDrop$u20$as$u20$core..ops..drop..Drop$GT$::drop::h71bac877b2a08558 (1 samples, 0.01%)</title><rect x="24" y="901" width="0" height="15" fill="rgb(234,118,46)"/><text text-anchor="left" x="27.00" y="911.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h2f59af25d506be7f (1 samples, 0.01%)</title><rect x="24" y="885" width="0" height="15" fill="rgb(249,175,1)"/><text text-anchor="left" x="27.00" y="895.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h65b0c36a38bff056 (1 samples, 0.01%)</title><rect x="24" y="885" width="0" height="15" fill="rgb(232,19,4)"/><text text-anchor="left" x="27.00" y="895.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::hf840bd07d60a6907 (3 samples, 0.03%)</title><rect x="24" y="901" width="0" height="15" fill="rgb(232,158,41)"/><text text-anchor="left" x="27.00" y="911.50" 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>deno_core_http_bench`core::ptr::null_mut::h1ba8c229b2be8919 (1 samples, 0.01%)</title><rect x="24" y="885" width="0" height="15" fill="rgb(235,187,47)"/><text text-anchor="left" x="27.00" y="895.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h2f59af25d506be7f (1 samples, 0.01%)</title><rect x="24" y="901" width="1" height="15" fill="rgb(221,104,2)"/><text text-anchor="left" x="27.00" y="911.50" 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>deno_core_http_bench`alloc::vec::SetLenOnDrop::decrement_len::h751827ef67ea3f0a (1 samples, 0.01%)</title><rect x="25" y="901" width="0" height="15" fill="rgb(247,73,10)"/><text text-anchor="left" x="28.00" y="911.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..TryFrom$LT$U$GT$$GT$::try_from::h4cf881a1e9c4d1ea (1 samples, 0.01%)</title><rect x="25" y="869" width="0" height="15" fill="rgb(245,142,21)"/><text text-anchor="left" x="28.00" y="879.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_usize::h8309321a3e8ff8de (7 samples, 0.07%)</title><rect x="25" y="885" width="1" height="15" fill="rgb(230,46,4)"/><text text-anchor="left" x="28.00" y="895.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::hcdc6185dc62af09a (5 samples, 0.05%)</title><rect x="25" y="869" width="1" height="15" fill="rgb(249,121,53)"/><text text-anchor="left" x="28.00" y="879.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h3f1747e27b3710c9 (3 samples, 0.03%)</title><rect x="25" y="853" width="1" height="15" fill="rgb(234,83,30)"/><text text-anchor="left" x="28.00" y="863.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb2f4599fa7bc15b3 (2 samples, 0.02%)</title><rect x="26" y="853" width="0" height="15" fill="rgb(209,169,28)"/><text text-anchor="left" x="29.00" y="863.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="26" y="837" width="0" height="15" fill="rgb(210,90,1)"/><text text-anchor="left" x="29.00" y="847.50" 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>deno_core_http_bench`core::ptr::read::h64b168721259f6aa (1 samples, 0.01%)</title><rect x="26" y="853" width="1" height="15" fill="rgb(216,216,0)"/><text text-anchor="left" x="29.00" y="863.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="26" y="837" width="1" height="15" fill="rgb(242,111,54)"/><text text-anchor="left" x="29.00" y="847.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (7 samples, 0.07%)</title><rect x="26" y="885" width="1" height="15" fill="rgb(218,20,20)"/><text text-anchor="left" x="29.00" y="895.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc1acbf053fb3fbae (5 samples, 0.05%)</title><rect x="26" y="869" width="1" height="15" fill="rgb(215,55,46)"/><text text-anchor="left" x="29.00" y="879.50" 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>deno_core_http_bench`core::ptr::write::h705e1b7b97e1b91c (1 samples, 0.01%)</title><rect x="27" y="853" width="0" height="15" fill="rgb(227,57,26)"/><text text-anchor="left" x="30.00" y="863.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (18 samples, 0.18%)</title><rect x="25" y="901" width="2" height="15" fill="rgb(233,56,34)"/><text text-anchor="left" x="28.00" y="911.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc1acbf053fb3fbae (1 samples, 0.01%)</title><rect x="27" y="885" width="0" height="15" fill="rgb(233,158,34)"/><text text-anchor="left" x="30.00" y="895.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h424be8b3eb252c64 (1 samples, 0.01%)</title><rect x="27" y="901" width="0" height="15" fill="rgb(227,145,30)"/><text text-anchor="left" x="30.00" y="911.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::hd6da385db12e8842 (1 samples, 0.01%)</title><rect x="27" y="901" width="0" height="15" fill="rgb(246,11,34)"/><text text-anchor="left" x="30.00" y="911.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::truncate::h8db6e5cf7c7cddde (32 samples, 0.31%)</title><rect x="23" y="917" width="4" height="15" fill="rgb(246,121,6)"/><text text-anchor="left" x="26.00" y="927.50" 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>deno_core_http_bench`core::slice::from_raw_parts_mut::hd9ecf819f5fa8fa9 (1 samples, 0.01%)</title><rect x="27" y="901" width="0" height="15" fill="rgb(219,78,49)"/><text text-anchor="left" x="30.00" y="911.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::hec53083e8066ca09 (2 samples, 0.02%)</title><rect x="28" y="901" width="0" height="15" fill="rgb(225,60,3)"/><text text-anchor="left" x="31.00" y="911.50" 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>deno_core_http_bench`core::slice::from_raw_parts_mut::h8eec8b7eb368efca (1 samples, 0.01%)</title><rect x="28" y="885" width="0" height="15" fill="rgb(231,23,45)"/><text text-anchor="left" x="31.00" y="895.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_usize::h8309321a3e8ff8de (6 samples, 0.06%)</title><rect x="28" y="885" width="1" height="15" fill="rgb(240,211,11)"/><text text-anchor="left" x="31.00" y="895.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::hcdc6185dc62af09a (3 samples, 0.03%)</title><rect x="29" y="869" width="0" height="15" fill="rgb(248,5,9)"/><text text-anchor="left" x="32.00" y="879.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h3f1747e27b3710c9 (2 samples, 0.02%)</title><rect x="29" y="853" width="0" height="15" fill="rgb(205,130,37)"/><text text-anchor="left" x="32.00" y="863.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb2f4599fa7bc15b3 (1 samples, 0.01%)</title><rect x="29" y="853" width="0" height="15" fill="rgb(211,85,5)"/><text text-anchor="left" x="32.00" y="863.50" 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>deno_core_http_bench`core::ptr::read::h64b168721259f6aa (1 samples, 0.01%)</title><rect x="29" y="853" width="1" height="15" fill="rgb(210,224,43)"/><text text-anchor="left" x="32.00" y="863.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (13 samples, 0.13%)</title><rect x="28" y="901" width="2" height="15" fill="rgb(252,47,4)"/><text text-anchor="left" x="31.00" y="911.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (5 samples, 0.05%)</title><rect x="29" y="885" width="1" height="15" fill="rgb(212,118,8)"/><text text-anchor="left" x="32.00" y="895.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc1acbf053fb3fbae (5 samples, 0.05%)</title><rect x="29" y="869" width="1" height="15" fill="rgb(206,141,20)"/><text text-anchor="left" x="32.00" y="879.50" 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>deno_core_http_bench`core::ptr::write::h705e1b7b97e1b91c (1 samples, 0.01%)</title><rect x="30" y="853" width="0" height="15" fill="rgb(212,213,40)"/><text text-anchor="left" x="33.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::hc40e0fea6ac96c2a (1 samples, 0.01%)</title><rect x="30" y="901" width="0" height="15" fill="rgb(207,28,16)"/><text text-anchor="left" x="33.00" y="911.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::truncate::hb4275737525e1a6f (24 samples, 0.24%)</title><rect x="27" y="917" width="3" height="15" fill="rgb(219,2,47)"/><text text-anchor="left" x="30.00" y="927.50" 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>deno_core_http_bench`core::slice::from_raw_parts_mut::h8eec8b7eb368efca (1 samples, 0.01%)</title><rect x="30" y="901" width="0" height="15" fill="rgb(230,68,34)"/><text text-anchor="left" x="33.00" y="911.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (2 samples, 0.02%)</title><rect x="30" y="917" width="0" height="15" fill="rgb(212,58,35)"/><text text-anchor="left" x="33.00" y="927.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8742bc83fb6b3305 (1 samples, 0.01%)</title><rect x="30" y="917" width="0" height="15" fill="rgb(227,119,21)"/><text text-anchor="left" x="33.00" y="927.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::clear::hcdd29eadb32b43bd (1 samples, 0.01%)</title><rect x="30" y="917" width="0" height="15" fill="rgb(245,140,20)"/><text text-anchor="left" x="33.00" y="927.50" 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>deno_core_http_bench`core::mem::needs_drop::h855574dcbf677362 (1 samples, 0.01%)</title><rect x="30" y="885" width="1" height="15" fill="rgb(215,47,29)"/><text text-anchor="left" x="33.00" y="895.50" 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>deno_core_http_bench`_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h527da719cdc93284 (1 samples, 0.01%)</title><rect x="31" y="869" width="0" height="15" fill="rgb(232,200,44)"/><text text-anchor="left" x="34.00" y="879.50" 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>deno_core_http_bench`core::intrinsics::write_bytes::h57dcd0a8443ab44a (2 samples, 0.02%)</title><rect x="31" y="789" width="0" height="15" fill="rgb(239,165,42)"/><text text-anchor="left" x="34.00" y="799.50" 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>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="31" y="773" width="0" height="15" fill="rgb(251,120,47)"/><text text-anchor="left" x="34.00" y="783.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::write_bytes::h7d0f51d970940aca (3 samples, 0.03%)</title><rect x="31" y="805" width="0" height="15" fill="rgb(249,68,29)"/><text text-anchor="left" x="34.00" y="815.50" 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>libsystem_platform.dylib`_platform_memset$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="31" y="789" width="0" height="15" fill="rgb(247,128,23)"/><text text-anchor="left" x="34.00" y="799.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::ha074fadb64e9ac93 (1 samples, 0.01%)</title><rect x="31" y="805" width="0" height="15" fill="rgb(221,162,32)"/><text text-anchor="left" x="34.00" y="815.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h73c5d92e3a7bc49b (1 samples, 0.01%)</title><rect x="31" y="789" width="0" height="15" fill="rgb(210,163,49)"/><text text-anchor="left" x="34.00" y="799.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear_no_drop::h8ea091ade6a65eae (6 samples, 0.06%)</title><rect x="31" y="821" width="1" height="15" fill="rgb(215,93,0)"/><text text-anchor="left" x="34.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::is_empty_singleton::h29dcbcac738ee8fd (1 samples, 0.01%)</title><rect x="31" y="805" width="1" height="15" fill="rgb(230,187,53)"/><text text-anchor="left" x="34.00" y="815.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::is_empty_singleton::h29dcbcac738ee8fd (2 samples, 0.02%)</title><rect x="32" y="821" width="0" height="15" fill="rgb(235,218,54)"/><text text-anchor="left" x="35.00" y="831.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::clear::hcdd29eadb32b43bd (14 samples, 0.14%)</title><rect x="30" y="901" width="2" height="15" fill="rgb(250,49,45)"/><text text-anchor="left" x="33.00" y="911.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear::ha2d8ffab280d90b5 (12 samples, 0.12%)</title><rect x="31" y="885" width="1" height="15" fill="rgb(224,163,27)"/><text text-anchor="left" x="34.00" y="895.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h36e1ad0e147aaf77 (11 samples, 0.11%)</title><rect x="31" y="869" width="1" height="15" fill="rgb(225,110,22)"/><text text-anchor="left" x="34.00" y="879.50" 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>deno_core_http_bench`_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h527da719cdc93284 (11 samples, 0.11%)</title><rect x="31" y="853" width="1" height="15" fill="rgb(228,90,44)"/><text text-anchor="left" x="34.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear::_$u7b$$u7b$closure$u7d$$u7d$::h21d8c8eeb0d6bedf (10 samples, 0.10%)</title><rect x="31" y="837" width="1" height="15" fill="rgb(218,16,29)"/><text text-anchor="left" x="34.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::num_ctrl_bytes::h7c7139d60d46b105 (1 samples, 0.01%)</title><rect x="32" y="821" width="0" height="15" fill="rgb(250,151,49)"/><text text-anchor="left" x="35.00" y="831.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::clear::h965943691f96260f (76 samples, 0.75%)</title><rect x="23" y="933" width="9" height="15" fill="rgb(227,67,41)"/><text text-anchor="left" x="26.00" y="943.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::clear::hc56796d5e358ad87 (16 samples, 0.16%)</title><rect x="30" y="917" width="2" height="15" fill="rgb(221,226,26)"/><text text-anchor="left" x="33.00" y="927.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear::ha2d8ffab280d90b5 (2 samples, 0.02%)</title><rect x="32" y="901" width="0" height="15" fill="rgb(208,227,27)"/><text text-anchor="left" x="35.00" y="911.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="33" y="917" width="0" height="15" fill="rgb(229,84,15)"/><text text-anchor="left" x="36.00" y="927.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::hec53083e8066ca09 (2 samples, 0.02%)</title><rect x="33" y="901" width="1" height="15" fill="rgb(236,190,48)"/><text text-anchor="left" x="36.00" y="911.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::hb8fda80cf87f424c (1 samples, 0.01%)</title><rect x="33" y="885" width="1" height="15" fill="rgb(207,228,50)"/><text text-anchor="left" x="36.00" y="895.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h19705f950beee3a6 (1 samples, 0.01%)</title><rect x="33" y="869" width="1" height="15" fill="rgb(251,218,39)"/><text text-anchor="left" x="36.00" y="879.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index_mut::h43f37d1c26143af7 (1 samples, 0.01%)</title><rect x="34" y="901" width="0" height="15" fill="rgb(251,107,45)"/><text text-anchor="left" x="37.00" y="911.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..IndexMut$LT$I$GT$$GT$::index_mut::haca98044780141ce (5 samples, 0.05%)</title><rect x="33" y="917" width="1" height="15" fill="rgb(225,140,0)"/><text text-anchor="left" x="36.00" y="927.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::h8594baf05c9fa48c (1 samples, 0.01%)</title><rect x="34" y="901" width="0" height="15" fill="rgb(228,34,40)"/><text text-anchor="left" x="37.00" y="911.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index_mut::h43f37d1c26143af7 (1 samples, 0.01%)</title><rect x="34" y="885" width="0" height="15" fill="rgb(214,218,28)"/><text text-anchor="left" x="37.00" y="895.50" 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>deno_core_http_bench`_$LT$core..slice..Iter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hb0e792149667122f (7 samples, 0.07%)</title><rect x="34" y="917" width="1" height="15" fill="rgb(253,69,42)"/><text text-anchor="left" x="37.00" y="927.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::is_null::h81f5bfef51673689 (3 samples, 0.03%)</title><rect x="34" y="901" width="1" height="15" fill="rgb(212,200,40)"/><text text-anchor="left" x="37.00" y="911.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..cmp..PartialEq$GT$::eq::h38f8f1932e6c9de1 (2 samples, 0.02%)</title><rect x="35" y="917" width="0" height="15" fill="rgb(251,159,23)"/><text text-anchor="left" x="38.00" y="927.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::clear::h195501fd7d71e112 (1 samples, 0.01%)</title><rect x="35" y="917" width="0" height="15" fill="rgb(249,34,40)"/><text text-anchor="left" x="38.00" y="927.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::truncate::hb4275737525e1a6f (1 samples, 0.01%)</title><rect x="35" y="901" width="0" height="15" fill="rgb(235,74,23)"/><text text-anchor="left" x="38.00" y="911.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (1 samples, 0.01%)</title><rect x="35" y="885" width="0" height="15" fill="rgb(209,229,14)"/><text text-anchor="left" x="38.00" y="895.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h727ffc5b32d97060 (1 samples, 0.01%)</title><rect x="35" y="885" width="0" height="15" fill="rgb(231,56,11)"/><text text-anchor="left" x="38.00" y="895.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::hec53083e8066ca09 (3 samples, 0.03%)</title><rect x="35" y="901" width="0" height="15" fill="rgb(213,8,26)"/><text text-anchor="left" x="38.00" y="911.50" 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>deno_core_http_bench`core::slice::from_raw_parts_mut::h8eec8b7eb368efca (2 samples, 0.02%)</title><rect x="35" y="885" width="0" height="15" fill="rgb(206,192,27)"/><text text-anchor="left" x="38.00" y="895.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h516ded9cf5cf31a6 (1 samples, 0.01%)</title><rect x="35" y="901" width="1" height="15" fill="rgb(223,70,1)"/><text text-anchor="left" x="38.00" y="911.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::push::h681550a6982abc5d (8 samples, 0.08%)</title><rect x="35" y="917" width="1" height="15" fill="rgb(210,187,23)"/><text text-anchor="left" x="38.00" y="927.50" 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>deno_core_http_bench`core::ptr::write::h57e2c249a28aa10c (3 samples, 0.03%)</title><rect x="36" y="901" width="0" height="15" fill="rgb(212,7,21)"/><text text-anchor="left" x="39.00" y="911.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::truncate::hb4275737525e1a6f (1 samples, 0.01%)</title><rect x="36" y="917" width="0" height="15" fill="rgb(208,71,52)"/><text text-anchor="left" x="39.00" y="927.50" 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>deno_core_http_bench`core::mem::size_of::h9098bfb0aa25e3b8 (3 samples, 0.03%)</title><rect x="36" y="917" width="0" height="15" fill="rgb(250,8,14)"/><text text-anchor="left" x="39.00" y="927.50" 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>deno_core_http_bench`core::ptr::null::h74e36a137f9815ec (2 samples, 0.02%)</title><rect x="36" y="901" width="1" height="15" fill="rgb(209,103,19)"/><text text-anchor="left" x="39.00" y="911.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::iter::hc756e055f572a515 (4 samples, 0.04%)</title><rect x="36" y="917" width="1" height="15" fill="rgb(215,54,17)"/><text text-anchor="left" x="39.00" y="927.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::as_ptr::hebc448f4f6a5203a (1 samples, 0.01%)</title><rect x="37" y="901" width="0" height="15" fill="rgb(244,45,19)"/><text text-anchor="left" x="40.00" y="911.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::ha8b9d8eb42473fd6 (1 samples, 0.01%)</title><rect x="37" y="917" width="0" height="15" fill="rgb(217,88,2)"/><text text-anchor="left" x="40.00" y="927.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::h8594baf05c9fa48c (1 samples, 0.01%)</title><rect x="37" y="917" width="0" height="15" fill="rgb(225,182,14)"/><text text-anchor="left" x="40.00" y="927.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hb2526d353ee17ca2 (2 samples, 0.02%)</title><rect x="37" y="917" width="0" height="15" fill="rgb(241,193,30)"/><text text-anchor="left" x="40.00" y="927.50" 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>deno_core_http_bench`mio::event_imp::Ready::insert::h2acd8e29eef1a985 (1 samples, 0.01%)</title><rect x="37" y="917" width="0" height="15" fill="rgb(206,38,45)"/><text text-anchor="left" x="40.00" y="927.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="37" y="901" width="0" height="15" fill="rgb(250,74,54)"/><text text-anchor="left" x="40.00" y="911.50" 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>deno_core_http_bench`std::collections::hash::map::OccupiedEntry$LT$K$C$V$GT$::into_mut::hb65c7ad60519bb6f (3 samples, 0.03%)</title><rect x="38" y="901" width="0" height="15" fill="rgb(207,102,36)"/><text text-anchor="left" x="41.00" y="911.50" 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>deno_core_http_bench`hashbrown::rustc_entry::RustcOccupiedEntry$LT$K$C$V$GT$::into_mut::hf668933072c4d216 (3 samples, 0.03%)</title><rect x="38" y="885" width="0" height="15" fill="rgb(239,62,2)"/><text text-anchor="left" x="41.00" y="895.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_mut::h3480473ce30f22fb (3 samples, 0.03%)</title><rect x="38" y="869" width="0" height="15" fill="rgb(237,98,52)"/><text text-anchor="left" x="41.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ptr::hc21e0ee85dbcbb14 (2 samples, 0.02%)</title><rect x="38" y="853" width="0" height="15" fill="rgb(212,178,8)"/><text text-anchor="left" x="41.00" y="863.50" 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>deno_core_http_bench`core::mem::size_of::hc50c50b17a14ed12 (1 samples, 0.01%)</title><rect x="38" y="837" width="0" height="15" fill="rgb(254,189,14)"/><text text-anchor="left" x="41.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ptr::hc21e0ee85dbcbb14 (1 samples, 0.01%)</title><rect x="39" y="869" width="0" height="15" fill="rgb(231,60,51)"/><text text-anchor="left" x="42.00" y="879.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h2c83b94da2eb2087 (2 samples, 0.02%)</title><rect x="39" y="853" width="0" height="15" fill="rgb(236,97,15)"/><text text-anchor="left" x="42.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::from_base_index::h09c626581ef8b932 (1 samples, 0.01%)</title><rect x="39" y="853" width="0" height="15" fill="rgb(209,220,40)"/><text text-anchor="left" x="42.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::write::ha89b21d172d87d66 (3 samples, 0.03%)</title><rect x="39" y="837" width="0" height="15" fill="rgb(215,26,3)"/><text text-anchor="left" x="42.00" y="847.50" 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>deno_core_http_bench`core::ptr::write::hb369d172651e9868 (3 samples, 0.03%)</title><rect x="39" y="821" width="0" height="15" fill="rgb(235,221,53)"/><text text-anchor="left" x="42.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::write::hbebc58e584a84500 (4 samples, 0.04%)</title><rect x="39" y="853" width="1" height="15" fill="rgb(234,192,10)"/><text text-anchor="left" x="42.00" y="863.50" 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>deno_core_http_bench`core::ptr::write::hb369d172651e9868 (1 samples, 0.01%)</title><rect x="39" y="837" width="1" height="15" fill="rgb(213,62,44)"/><text text-anchor="left" x="42.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::bucket::h60af7fb612448213 (1 samples, 0.01%)</title><rect x="40" y="853" width="0" height="15" fill="rgb(226,45,19)"/><text text-anchor="left" x="43.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h11f212b818fc6dbd (1 samples, 0.01%)</title><rect x="40" y="837" width="0" height="15" fill="rgb(209,80,46)"/><text text-anchor="left" x="43.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::ha074fadb64e9ac93 (2 samples, 0.02%)</title><rect x="40" y="853" width="0" height="15" fill="rgb(218,149,29)"/><text text-anchor="left" x="43.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h73c5d92e3a7bc49b (2 samples, 0.02%)</title><rect x="40" y="837" width="0" height="15" fill="rgb(213,37,38)"/><text text-anchor="left" x="43.00" y="847.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h66b0526aae34ad29 (1 samples, 0.01%)</title><rect x="40" y="821" width="0" height="15" fill="rgb(219,180,41)"/><text text-anchor="left" x="43.00" y="831.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hbccce9f3bc104162 (2 samples, 0.02%)</title><rect x="41" y="837" width="0" height="15" fill="rgb(231,21,15)"/><text text-anchor="left" x="44.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::ha074fadb64e9ac93 (3 samples, 0.03%)</title><rect x="41" y="837" width="0" height="15" fill="rgb(221,172,17)"/><text text-anchor="left" x="44.00" y="847.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h73c5d92e3a7bc49b (1 samples, 0.01%)</title><rect x="41" y="821" width="0" height="15" fill="rgb(238,42,9)"/><text text-anchor="left" x="44.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::h462ed6f7359fec22 (1 samples, 0.01%)</title><rect x="41" y="837" width="0" height="15" fill="rgb(211,202,5)"/><text text-anchor="left" x="44.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::load::h6205f1255bdd012f (2 samples, 0.02%)</title><rect x="41" y="837" width="1" height="15" fill="rgb(231,212,43)"/><text text-anchor="left" x="44.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hf2dc2f766d9c0ecc (2 samples, 0.02%)</title><rect x="41" y="821" width="1" height="15" fill="rgb(228,34,22)"/><text text-anchor="left" x="44.00" y="831.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_undefined_si128::he170d67bf4fc7bd1 (1 samples, 0.01%)</title><rect x="42" y="805" width="0" height="15" fill="rgb(233,113,5)"/><text text-anchor="left" x="45.00" y="815.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find_insert_slot::hc92e656bab97bd5d (18 samples, 0.18%)</title><rect x="40" y="853" width="2" height="15" fill="rgb(221,20,28)"/><text text-anchor="left" x="43.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_empty_or_deleted::h61d3bbe1e4dd5f17 (3 samples, 0.03%)</title><rect x="42" y="837" width="0" height="15" fill="rgb(216,86,44)"/><text text-anchor="left" x="45.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_movemask_epi8::h80c17773287d0c53 (3 samples, 0.03%)</title><rect x="42" y="821" width="0" height="15" fill="rgb(247,32,17)"/><text text-anchor="left" x="45.00" y="831.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (1 samples, 0.01%)</title><rect x="42" y="805" width="0" height="15" fill="rgb(229,202,23)"/><text text-anchor="left" x="45.00" y="815.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::set_ctrl::heef476499b3c2681 (4 samples, 0.04%)</title><rect x="42" y="853" width="0" height="15" fill="rgb(206,221,1)"/><text text-anchor="left" x="45.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::ha074fadb64e9ac93 (3 samples, 0.03%)</title><rect x="42" y="837" width="0" height="15" fill="rgb(215,30,11)"/><text text-anchor="left" x="45.00" y="847.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h73c5d92e3a7bc49b (3 samples, 0.03%)</title><rect x="42" y="821" width="0" height="15" fill="rgb(241,84,22)"/><text text-anchor="left" x="45.00" y="831.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h66b0526aae34ad29 (2 samples, 0.02%)</title><rect x="42" y="805" width="0" height="15" fill="rgb(231,102,43)"/><text text-anchor="left" x="45.00" y="815.50" 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>deno_core_http_bench`std::collections::hash::map::Entry$LT$K$C$V$GT$::or_insert::hc195588fbe5bc0e7 (47 samples, 0.46%)</title><rect x="37" y="917" width="6" height="15" fill="rgb(211,122,29)"/><text text-anchor="left" x="40.00" y="927.50" 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>deno_core_http_bench`std::collections::hash::map::VacantEntry$LT$K$C$V$GT$::insert::h9bd1e9daaf2be2c0 (38 samples, 0.37%)</title><rect x="38" y="901" width="5" height="15" fill="rgb(234,93,45)"/><text text-anchor="left" x="41.00" y="911.50" 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>deno_core_http_bench`hashbrown::rustc_entry::RustcVacantEntry$LT$K$C$V$GT$::insert::he5d63887991e52e6 (37 samples, 0.36%)</title><rect x="39" y="885" width="4" height="15" fill="rgb(236,26,24)"/><text text-anchor="left" x="42.00" y="895.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::insert_no_grow::hf967e21a782b2b59 (35 samples, 0.34%)</title><rect x="39" y="869" width="4" height="15" fill="rgb(236,76,17)"/><text text-anchor="left" x="42.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::h2::hcc31f008ed5acdfd (3 samples, 0.03%)</title><rect x="42" y="853" width="1" height="15" fill="rgb(236,156,20)"/><text text-anchor="left" x="45.00" y="863.50" 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>deno_core_http_bench`core::mem::size_of::h1782a0d4eab16b70 (1 samples, 0.01%)</title><rect x="43" y="837" width="0" height="15" fill="rgb(241,184,2)"/><text text-anchor="left" x="46.00" y="847.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::clear::hc56796d5e358ad87 (2 samples, 0.02%)</title><rect x="43" y="917" width="0" height="15" fill="rgb(237,91,30)"/><text text-anchor="left" x="46.00" y="927.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::clear::hcdd29eadb32b43bd (2 samples, 0.02%)</title><rect x="43" y="901" width="0" height="15" fill="rgb(241,5,3)"/><text text-anchor="left" x="46.00" y="911.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear::ha2d8ffab280d90b5 (2 samples, 0.02%)</title><rect x="43" y="885" width="0" height="15" fill="rgb(215,5,26)"/><text text-anchor="left" x="46.00" y="895.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h36e1ad0e147aaf77 (2 samples, 0.02%)</title><rect x="43" y="869" width="0" height="15" fill="rgb(221,167,7)"/><text text-anchor="left" x="46.00" y="879.50" 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>deno_core_http_bench`_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h527da719cdc93284 (2 samples, 0.02%)</title><rect x="43" y="853" width="0" height="15" fill="rgb(228,216,27)"/><text text-anchor="left" x="46.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear::_$u7b$$u7b$closure$u7d$$u7d$::h21d8c8eeb0d6bedf (2 samples, 0.02%)</title><rect x="43" y="837" width="0" height="15" fill="rgb(253,221,27)"/><text text-anchor="left" x="46.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::clear_no_drop::h8ea091ade6a65eae (2 samples, 0.02%)</title><rect x="43" y="821" width="0" height="15" fill="rgb(251,17,10)"/><text text-anchor="left" x="46.00" y="831.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::write_bytes::h7d0f51d970940aca (2 samples, 0.02%)</title><rect x="43" y="805" width="0" height="15" fill="rgb(243,89,24)"/><text text-anchor="left" x="46.00" y="815.50" 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>deno_core_http_bench`core::intrinsics::write_bytes::h57dcd0a8443ab44a (1 samples, 0.01%)</title><rect x="43" y="789" width="0" height="15" fill="rgb(206,6,24)"/><text text-anchor="left" x="46.00" y="799.50" 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>libsystem_platform.dylib`_platform_bzero$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="43" y="773" width="0" height="15" fill="rgb(219,208,51)"/><text text-anchor="left" x="46.00" y="783.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::reserve::h050bb61552d02e26 (1 samples, 0.01%)</title><rect x="43" y="901" width="0" height="15" fill="rgb(214,199,52)"/><text text-anchor="left" x="46.00" y="911.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h3f62ba3cdaf73fa3 (1 samples, 0.01%)</title><rect x="44" y="885" width="0" height="15" fill="rgb(235,159,49)"/><text text-anchor="left" x="47.00" y="895.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..hash..Hash$GT$::hash::h9e5baff0c9b05a86 (1 samples, 0.01%)</title><rect x="44" y="885" width="0" height="15" fill="rgb(234,158,29)"/><text text-anchor="left" x="47.00" y="895.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::reserve::h050bb61552d02e26 (2 samples, 0.02%)</title><rect x="44" y="885" width="0" height="15" fill="rgb(231,4,46)"/><text text-anchor="left" x="47.00" y="895.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::reserve::h13027f1fcc7002a4 (1 samples, 0.01%)</title><rect x="44" y="869" width="0" height="15" fill="rgb(245,219,45)"/><text text-anchor="left" x="47.00" y="879.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::h457ff711c7bccc14 (1 samples, 0.01%)</title><rect x="44" y="837" width="1" height="15" fill="rgb(221,167,28)"/><text text-anchor="left" x="47.00" y="847.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::hd224d4137a7c7956 (1 samples, 0.01%)</title><rect x="45" y="821" width="0" height="15" fill="rgb(229,1,50)"/><text text-anchor="left" x="48.00" y="831.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::h3d2ca0ca14b84165 (1 samples, 0.01%)</title><rect x="45" y="805" width="0" height="15" fill="rgb(215,180,45)"/><text text-anchor="left" x="48.00" y="815.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h53937fa4a30b6ca7 (1 samples, 0.01%)</title><rect x="47" y="757" width="0" height="15" fill="rgb(239,186,18)"/><text text-anchor="left" x="50.00" y="767.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::c_rounds::h4e8869eda616472c (20 samples, 0.20%)</title><rect x="46" y="773" width="2" height="15" fill="rgb(245,183,16)"/><text text-anchor="left" x="49.00" y="783.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::hed81858368770b7c (5 samples, 0.05%)</title><rect x="47" y="757" width="1" height="15" fill="rgb(248,2,26)"/><text text-anchor="left" x="50.00" y="767.50" 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>deno_core_http_bench`core::hash::sip::u8to64_le::had081094c97f7097 (2 samples, 0.02%)</title><rect x="48" y="773" width="0" height="15" fill="rgb(221,126,42)"/><text text-anchor="left" x="51.00" y="783.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h46d9a225ee2b0165 (2 samples, 0.02%)</title><rect x="48" y="773" width="0" height="15" fill="rgb(245,145,33)"/><text text-anchor="left" x="51.00" y="783.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="48" y="757" width="0" height="15" fill="rgb(247,62,24)"/><text text-anchor="left" x="51.00" y="767.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h53937fa4a30b6ca7 (1 samples, 0.01%)</title><rect x="48" y="773" width="1" height="15" fill="rgb(233,151,25)"/><text text-anchor="left" x="51.00" y="783.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::hed81858368770b7c (1 samples, 0.01%)</title><rect x="49" y="773" width="0" height="15" fill="rgb(226,136,14)"/><text text-anchor="left" x="52.00" y="783.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::h06edfaedf5358de0 (4 samples, 0.04%)</title><rect x="49" y="757" width="0" height="15" fill="rgb(246,151,53)"/><text text-anchor="left" x="52.00" y="767.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::he02d4f87cb4d1a67 (4 samples, 0.04%)</title><rect x="49" y="741" width="0" height="15" fill="rgb(234,146,37)"/><text text-anchor="left" x="52.00" y="751.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::h3d2ca0ca14b84165 (38 samples, 0.37%)</title><rect x="45" y="789" width="4" height="15" fill="rgb(248,19,39)"/><text text-anchor="left" x="48.00" y="799.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked::h8e2a3a4ac262248b (7 samples, 0.07%)</title><rect x="49" y="773" width="0" height="15" fill="rgb(229,170,8)"/><text text-anchor="left" x="52.00" y="783.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::he02d4f87cb4d1a67 (2 samples, 0.02%)</title><rect x="49" y="757" width="0" height="15" fill="rgb(234,18,39)"/><text text-anchor="left" x="52.00" y="767.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::h457ff711c7bccc14 (42 samples, 0.41%)</title><rect x="45" y="821" width="5" height="15" fill="rgb(233,50,30)"/><text text-anchor="left" x="48.00" y="831.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::hd224d4137a7c7956 (39 samples, 0.38%)</title><rect x="45" y="805" width="5" height="15" fill="rgb(244,128,39)"/><text text-anchor="left" x="48.00" y="815.50" 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>deno_core_http_bench`core::mem::size_of::h1782a0d4eab16b70 (1 samples, 0.01%)</title><rect x="49" y="789" width="1" height="15" fill="rgb(208,167,23)"/><text text-anchor="left" x="52.00" y="799.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..hash..Hash$GT$::hash::h9e5baff0c9b05a86 (47 samples, 0.46%)</title><rect x="44" y="869" width="6" height="15" fill="rgb(241,219,32)"/><text text-anchor="left" x="47.00" y="879.50" 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>deno_core_http_bench`core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$usize$GT$::hash::h9da38b8b8d06a358 (46 samples, 0.45%)</title><rect x="44" y="853" width="6" height="15" fill="rgb(235,125,32)"/><text text-anchor="left" x="47.00" y="863.50" 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>deno_core_http_bench`core::hash::Hasher::write_usize::h55046af7cade9642 (44 samples, 0.43%)</title><rect x="45" y="837" width="5" height="15" fill="rgb(240,2,52)"/><text text-anchor="left" x="48.00" y="847.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::to_ne_bytes::hcc105dfaa5f0ac71 (1 samples, 0.01%)</title><rect x="50" y="821" width="0" height="15" fill="rgb(218,216,21)"/><text text-anchor="left" x="53.00" y="831.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::h144b358f6966f791 (1 samples, 0.01%)</title><rect x="50" y="853" width="0" height="15" fill="rgb(236,148,8)"/><text text-anchor="left" x="53.00" y="863.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h53937fa4a30b6ca7 (2 samples, 0.02%)</title><rect x="51" y="805" width="0" height="15" fill="rgb(206,36,6)"/><text text-anchor="left" x="54.00" y="815.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::c_rounds::h4e8869eda616472c (16 samples, 0.16%)</title><rect x="50" y="821" width="2" height="15" fill="rgb(239,142,40)"/><text text-anchor="left" x="53.00" y="831.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::hed81858368770b7c (7 samples, 0.07%)</title><rect x="51" y="805" width="1" height="15" fill="rgb(220,17,42)"/><text text-anchor="left" x="54.00" y="815.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h53937fa4a30b6ca7 (10 samples, 0.10%)</title><rect x="53" y="805" width="2" height="15" fill="rgb(224,102,41)"/><text text-anchor="left" x="56.00" y="815.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::h50ad7af12b72e28e (28 samples, 0.27%)</title><rect x="52" y="821" width="3" height="15" fill="rgb(207,224,42)"/><text text-anchor="left" x="55.00" y="831.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::hed81858368770b7c (3 samples, 0.03%)</title><rect x="55" y="805" width="0" height="15" fill="rgb(219,144,2)"/><text text-anchor="left" x="58.00" y="815.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h53937fa4a30b6ca7 (4 samples, 0.04%)</title><rect x="55" y="821" width="0" height="15" fill="rgb(251,208,20)"/><text text-anchor="left" x="58.00" y="831.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h475a02de951808b6 (51 samples, 0.50%)</title><rect x="50" y="869" width="6" height="15" fill="rgb(228,86,41)"/><text text-anchor="left" x="53.00" y="879.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h47f00ed6c562775b (50 samples, 0.49%)</title><rect x="50" y="853" width="6" height="15" fill="rgb(237,7,22)"/><text text-anchor="left" x="53.00" y="863.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::h144b358f6966f791 (50 samples, 0.49%)</title><rect x="50" y="837" width="6" height="15" fill="rgb(254,189,4)"/><text text-anchor="left" x="53.00" y="847.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::hed81858368770b7c (1 samples, 0.01%)</title><rect x="55" y="821" width="1" height="15" fill="rgb(209,215,50)"/><text text-anchor="left" x="58.00" y="831.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="56" y="853" width="0" height="15" fill="rgb(223,189,44)"/><text text-anchor="left" x="59.00" y="863.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::new_with_keys::h8288253d63b55717 (4 samples, 0.04%)</title><rect x="56" y="837" width="0" height="15" fill="rgb(234,16,7)"/><text text-anchor="left" x="59.00" y="847.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::reset::hba248b77b3fdff9a (2 samples, 0.02%)</title><rect x="56" y="821" width="0" height="15" fill="rgb(220,40,25)"/><text text-anchor="left" x="59.00" y="831.50" 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>deno_core_http_bench`core::hash::sip::SipHasher13::new_with_keys::hbb551e7836eb13f3 (7 samples, 0.07%)</title><rect x="56" y="853" width="1" height="15" fill="rgb(233,118,44)"/><text text-anchor="left" x="59.00" y="863.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="56" y="837" width="1" height="15" fill="rgb(207,41,45)"/><text text-anchor="left" x="59.00" y="847.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..RandomState$u20$as$u20$core..hash..BuildHasher$GT$::build_hasher::h6feaf7e3cf8f7643 (10 samples, 0.10%)</title><rect x="56" y="869" width="1" height="15" fill="rgb(227,198,36)"/><text text-anchor="left" x="59.00" y="879.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="57" y="853" width="0" height="15" fill="rgb(225,85,40)"/><text text-anchor="left" x="60.00" y="863.50" 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>deno_core_http_bench`hashbrown::map::make_hash::hec56fd858614d6f9 (110 samples, 1.08%)</title><rect x="44" y="885" width="13" height="15" fill="rgb(223,89,4)"/><text text-anchor="left" x="47.00" y="895.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="57" y="869" width="0" height="15" fill="rgb(233,110,47)"/><text text-anchor="left" x="60.00" y="879.50" 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>deno_core_http_bench`_$LT$I$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::h46b12b0bc3d3ec7f (1 samples, 0.01%)</title><rect x="58" y="869" width="0" height="15" fill="rgb(226,147,35)"/><text text-anchor="left" x="61.00" y="879.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::h02046452c120df2e (2 samples, 0.02%)</title><rect x="58" y="869" width="0" height="15" fill="rgb(209,24,5)"/><text text-anchor="left" x="61.00" y="879.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::from_error::hc7ed99fda5cd3f38 (1 samples, 0.01%)</title><rect x="58" y="869" width="0" height="15" fill="rgb(248,10,7)"/><text text-anchor="left" x="61.00" y="879.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hda644760abc79eb9 (1 samples, 0.01%)</title><rect x="58" y="869" width="0" height="15" fill="rgb(250,72,12)"/><text text-anchor="left" x="61.00" y="879.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hbccce9f3bc104162 (2 samples, 0.02%)</title><rect x="58" y="869" width="1" height="15" fill="rgb(246,167,22)"/><text text-anchor="left" x="61.00" y="879.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMask$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::hea93160ca0434601 (1 samples, 0.01%)</title><rect x="59" y="869" width="0" height="15" fill="rgb(222,32,28)"/><text text-anchor="left" x="62.00" y="879.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hb1c73cb6630d2d2e (1 samples, 0.01%)</title><rect x="59" y="853" width="0" height="15" fill="rgb(246,39,13)"/><text text-anchor="left" x="62.00" y="863.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h3f62ba3cdaf73fa3 (9 samples, 0.09%)</title><rect x="59" y="869" width="1" height="15" fill="rgb(239,57,15)"/><text text-anchor="left" x="62.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit::he488ebe2b29f234c (4 samples, 0.04%)</title><rect x="59" y="853" width="1" height="15" fill="rgb(223,223,50)"/><text text-anchor="left" x="62.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit_nonzero::h3e2055b87f8b7122 (1 samples, 0.01%)</title><rect x="60" y="837" width="0" height="15" fill="rgb(244,167,23)"/><text text-anchor="left" x="63.00" y="847.50" 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>deno_core_http_bench`core::cmp::Ord::min::he1c5cb37c704c270 (1 samples, 0.01%)</title><rect x="60" y="869" width="0" height="15" fill="rgb(239,204,21)"/><text text-anchor="left" x="63.00" y="879.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h319d7abd6b935f5f (1 samples, 0.01%)</title><rect x="60" y="869" width="0" height="15" fill="rgb(227,63,14)"/><text text-anchor="left" x="63.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ref::h1fb81a0e31116f98 (1 samples, 0.01%)</title><rect x="60" y="869" width="0" height="15" fill="rgb(206,184,12)"/><text text-anchor="left" x="63.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::bucket::h60af7fb612448213 (3 samples, 0.03%)</title><rect x="60" y="869" width="0" height="15" fill="rgb(248,40,25)"/><text text-anchor="left" x="63.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::from_base_index::h09c626581ef8b932 (3 samples, 0.03%)</title><rect x="60" y="853" width="0" height="15" fill="rgb(249,218,32)"/><text text-anchor="left" x="63.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h11f212b818fc6dbd (1 samples, 0.01%)</title><rect x="60" y="837" width="0" height="15" fill="rgb(214,159,12)"/><text text-anchor="left" x="63.00" y="847.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hef848204d08d5510 (1 samples, 0.01%)</title><rect x="60" y="821" width="0" height="15" fill="rgb(234,216,5)"/><text text-anchor="left" x="63.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::ha074fadb64e9ac93 (2 samples, 0.02%)</title><rect x="60" y="869" width="1" height="15" fill="rgb(228,28,5)"/><text text-anchor="left" x="63.00" y="879.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h73c5d92e3a7bc49b (2 samples, 0.02%)</title><rect x="60" y="853" width="1" height="15" fill="rgb(237,120,37)"/><text text-anchor="left" x="63.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h66b0526aae34ad29 (2 samples, 0.02%)</title><rect x="60" y="837" width="1" height="15" fill="rgb(205,184,9)"/><text text-anchor="left" x="63.00" y="847.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::h462ed6f7359fec22 (1 samples, 0.01%)</title><rect x="61" y="869" width="0" height="15" fill="rgb(209,187,37)"/><text text-anchor="left" x="64.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::h1::h7453f65e6249b095 (1 samples, 0.01%)</title><rect x="61" y="869" width="0" height="15" fill="rgb(232,155,49)"/><text text-anchor="left" x="64.00" y="879.50" 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>deno_core_http_bench`core::cmp::Ord::min::he1c5cb37c704c270 (1 samples, 0.01%)</title><rect x="61" y="853" width="0" height="15" fill="rgb(210,195,22)"/><text text-anchor="left" x="64.00" y="863.50" 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>deno_core_http_bench`hashbrown::raw::h2::hcc31f008ed5acdfd (2 samples, 0.02%)</title><rect x="61" y="869" width="0" height="15" fill="rgb(221,27,14)"/><text text-anchor="left" x="64.00" y="879.50" 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>deno_core_http_bench`core::mem::size_of::h1782a0d4eab16b70 (1 samples, 0.01%)</title><rect x="61" y="853" width="0" height="15" fill="rgb(205,213,39)"/><text text-anchor="left" x="64.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_undefined_si128::he170d67bf4fc7bd1 (1 samples, 0.01%)</title><rect x="62" y="837" width="0" height="15" fill="rgb(209,134,29)"/><text text-anchor="left" x="65.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hf2dc2f766d9c0ecc (7 samples, 0.07%)</title><rect x="61" y="853" width="1" height="15" fill="rgb(235,203,4)"/><text text-anchor="left" x="64.00" y="863.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h46d9a225ee2b0165 (2 samples, 0.02%)</title><rect x="62" y="837" width="0" height="15" fill="rgb(249,13,5)"/><text text-anchor="left" x="65.00" y="847.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="62" y="821" width="0" height="15" fill="rgb(236,12,11)"/><text text-anchor="left" x="65.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::load::h6205f1255bdd012f (8 samples, 0.08%)</title><rect x="61" y="869" width="1" height="15" fill="rgb(228,111,5)"/><text text-anchor="left" x="64.00" y="879.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h46d9a225ee2b0165 (1 samples, 0.01%)</title><rect x="62" y="853" width="0" height="15" fill="rgb(246,134,46)"/><text text-anchor="left" x="65.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_cmpeq_epi8::hb65672a814f4b9ca (2 samples, 0.02%)</title><rect x="62" y="853" width="1" height="15" fill="rgb(223,137,26)"/><text text-anchor="left" x="65.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (1 samples, 0.01%)</title><rect x="62" y="837" width="1" height="15" fill="rgb(205,138,24)"/><text text-anchor="left" x="65.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_movemask_epi8::h80c17773287d0c53 (3 samples, 0.03%)</title><rect x="63" y="853" width="0" height="15" fill="rgb(223,24,12)"/><text text-anchor="left" x="66.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (2 samples, 0.02%)</title><rect x="63" y="837" width="0" height="15" fill="rgb(239,124,48)"/><text text-anchor="left" x="66.00" y="847.50" 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>deno_core_http_bench`_$LT$core..core_arch..x86..__m128i$u20$as$u20$core..core_arch..x86..m128iExt$GT$::as_m128i::h075f5531757b6038 (2 samples, 0.02%)</title><rect x="63" y="821" width="0" height="15" fill="rgb(220,62,12)"/><text text-anchor="left" x="66.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_byte::hf225a6413a1e7ed0 (18 samples, 0.18%)</title><rect x="62" y="869" width="2" height="15" fill="rgb(214,119,19)"/><text text-anchor="left" x="65.00" y="879.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h319d7abd6b935f5f (11 samples, 0.11%)</title><rect x="63" y="853" width="1" height="15" fill="rgb(221,110,17)"/><text text-anchor="left" x="66.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set_epi8::h2e414b8517e1f6e5 (9 samples, 0.09%)</title><rect x="63" y="837" width="1" height="15" fill="rgb(218,17,23)"/><text text-anchor="left" x="66.00" y="847.50" 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>deno_core_http_bench`core::core_arch::simd::i8x16::new::hf72e84fd05110fb6 (2 samples, 0.02%)</title><rect x="64" y="821" width="0" height="15" fill="rgb(218,204,16)"/><text text-anchor="left" x="67.00" y="831.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_cmpeq_epi8::hb65672a814f4b9ca (2 samples, 0.02%)</title><rect x="64" y="837" width="1" height="15" fill="rgb(209,36,54)"/><text text-anchor="left" x="67.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (1 samples, 0.01%)</title><rect x="64" y="821" width="1" height="15" fill="rgb(242,64,50)"/><text text-anchor="left" x="67.00" y="831.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_movemask_epi8::h80c17773287d0c53 (2 samples, 0.02%)</title><rect x="65" y="837" width="0" height="15" fill="rgb(237,67,2)"/><text text-anchor="left" x="68.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (1 samples, 0.01%)</title><rect x="65" y="821" width="0" height="15" fill="rgb(211,156,11)"/><text text-anchor="left" x="68.00" y="831.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_empty::h8ee3f4aea61c9b87 (12 samples, 0.12%)</title><rect x="64" y="869" width="2" height="15" fill="rgb(210,171,37)"/><text text-anchor="left" x="67.00" y="879.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_byte::hf225a6413a1e7ed0 (11 samples, 0.11%)</title><rect x="64" y="853" width="2" height="15" fill="rgb(248,21,40)"/><text text-anchor="left" x="67.00" y="863.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h319d7abd6b935f5f (6 samples, 0.06%)</title><rect x="65" y="837" width="1" height="15" fill="rgb(213,157,17)"/><text text-anchor="left" x="68.00" y="847.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set_epi8::h2e414b8517e1f6e5 (5 samples, 0.05%)</title><rect x="65" y="821" width="1" height="15" fill="rgb(244,92,23)"/><text text-anchor="left" x="68.00" y="831.50" 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>deno_core_http_bench`core::core_arch::simd::i8x16::new::hf72e84fd05110fb6 (1 samples, 0.01%)</title><rect x="65" y="805" width="1" height="15" fill="rgb(240,102,45)"/><text text-anchor="left" x="68.00" y="815.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find::hc9545d765edabc57 (77 samples, 0.76%)</title><rect x="57" y="885" width="9" height="15" fill="rgb(209,173,49)"/><text text-anchor="left" x="60.00" y="895.50" 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>deno_core_http_bench`hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::_$u7b$$u7b$closure$u7d$$u7d$::hd7e830fb33ca65c3 (2 samples, 0.02%)</title><rect x="66" y="869" width="0" height="15" fill="rgb(205,109,24)"/><text text-anchor="left" x="69.00" y="879.50" 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>deno_core_http_bench`_$LT$mio..token..Token$u20$as$u20$core..cmp..PartialEq$GT$::eq::h38f8f1932e6c9de1 (1 samples, 0.01%)</title><rect x="66" y="853" width="0" height="15" fill="rgb(209,60,48)"/><text text-anchor="left" x="69.00" y="863.50" 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>deno_core_http_bench`hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h3e1d2c7fd4433eeb (195 samples, 1.91%)</title><rect x="43" y="901" width="23" height="15" fill="rgb(210,14,35)"/><text text-anchor="left" x="46.00" y="911.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::h462ed6f7359fec22 (1 samples, 0.01%)</title><rect x="66" y="885" width="0" height="15" fill="rgb(209,185,48)"/><text text-anchor="left" x="69.00" y="895.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::entry::h9eec8f9e5f581439 (199 samples, 1.95%)</title><rect x="43" y="917" width="23" height="15" fill="rgb(239,178,36)"/><text text-anchor="left" x="46.00" y="927.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::collections::hash::map::map_entry::hd8d0a2e21f82eb04 (2 samples, 0.02%)</title><rect x="66" y="901" width="0" height="15" fill="rgb(249,155,4)"/><text text-anchor="left" x="69.00" y="911.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::coalesce::h38c3503ee821e40a (294 samples, 2.88%)</title><rect x="32" y="933" width="34" height="15" fill="rgb(246,99,3)"/><text text-anchor="left" x="35.00" y="943.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::collections::hash::map::map_entry::hd8d0a2e21f82eb04 (1 samples, 0.01%)</title><rect x="66" y="917" width="0" height="15" fill="rgb(224,169,33)"/><text text-anchor="left" x="69.00" y="927.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::clear::hc56796d5e358ad87 (1 samples, 0.01%)</title><rect x="66" y="933" width="0" height="15" fill="rgb(228,117,36)"/><text text-anchor="left" x="69.00" y="943.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Selector::select::hf83a7f9c1d008593 (400 samples, 3.92%)</title><rect x="20" y="949" width="46" height="15" fill="rgb(252,56,43)"/><text text-anchor="left" x="23.00" y="959.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::entry::h9eec8f9e5f581439 (1 samples, 0.01%)</title><rect x="66" y="933" width="0" height="15" fill="rgb(249,34,45)"/><text text-anchor="left" x="69.00" y="943.50" 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>deno_core_http_bench`mio::poll::Poll::poll2::hfc464280cb779961 (597 samples, 5.86%)</title><rect x="15" y="965" width="70" height="15" fill="rgb(218,156,4)"/><text text-anchor="left" x="18.00" y="975.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_co..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`kevent (156 samples, 1.53%)</title><rect x="66" y="949" width="19" height="15" fill="rgb(237,27,7)"/><text text-anchor="left" x="69.00" y="959.50" 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>deno_core_http_bench`mio::poll::ReadinessQueue::poll::h6785814fdb7f8ec8 (1 samples, 0.01%)</title><rect x="85" y="965" width="0" height="15" fill="rgb(228,223,36)"/><text text-anchor="left" x="88.00" y="975.50" 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>deno_core_http_bench`mio::sys::unix::kqueue::Events::len::hebba1b7ca08cae56 (1 samples, 0.01%)</title><rect x="85" y="965" width="0" height="15" fill="rgb(253,185,53)"/><text text-anchor="left" x="88.00" y="975.50" 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>deno_core_http_bench`mio::poll::Poll::poll::h690ce1003c296eca (612 samples, 6.00%)</title><rect x="14" y="997" width="71" height="15" fill="rgb(227,229,23)"/><text text-anchor="left" x="17.00" y="1007.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_cor..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`mio::poll::Poll::poll1::hf1149ec30f0a6d71 (611 samples, 5.99%)</title><rect x="14" y="981" width="71" height="15" fill="rgb(246,18,53)"/><text text-anchor="left" x="17.00" y="991.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_cor..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`mach_absolute_time (3 samples, 0.03%)</title><rect x="85" y="965" width="0" height="15" fill="rgb(208,21,35)"/><text text-anchor="left" x="88.00" y="975.50" 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>deno_core_http_bench`_$LT$mio..poll..RegistrationInner$u20$as$u20$core..ops..deref..Deref$GT$::deref::hcc35a134ff8f2711 (1 samples, 0.01%)</title><rect x="85" y="981" width="0" height="15" fill="rgb(222,155,17)"/><text text-anchor="left" x="88.00" y="991.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::h74ee9b45e975f422 (1 samples, 0.01%)</title><rect x="85" y="965" width="0" height="15" fill="rgb(225,155,54)"/><text text-anchor="left" x="88.00" y="975.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h97b84935556202c4 (1 samples, 0.01%)</title><rect x="85" y="949" width="1" height="15" fill="rgb(247,213,1)"/><text text-anchor="left" x="88.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange::h1810b8a0a3d76107 (1 samples, 0.01%)</title><rect x="86" y="933" width="0" height="15" fill="rgb(218,4,19)"/><text text-anchor="left" x="89.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h8482d6f388e160db (1 samples, 0.01%)</title><rect x="86" y="917" width="0" height="15" fill="rgb(205,172,12)"/><text text-anchor="left" x="89.00" y="927.50" 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>deno_core_http_bench`mio::poll::AtomicState::compare_and_swap::h4c84d37437e86943 (4 samples, 0.04%)</title><rect x="85" y="965" width="1" height="15" fill="rgb(212,196,52)"/><text text-anchor="left" x="88.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_and_swap::h74082249eb5d8f38 (3 samples, 0.03%)</title><rect x="86" y="949" width="0" height="15" fill="rgb(227,81,12)"/><text text-anchor="left" x="89.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::strongest_failure_ordering::h64680a6c5bed81fb (1 samples, 0.01%)</title><rect x="86" y="933" width="0" height="15" fill="rgb(221,76,50)"/><text text-anchor="left" x="89.00" y="943.50" 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>deno_core_http_bench`mio::poll::SetReadiness::set_readiness::h5757d7dfb6b2ef48 (8 samples, 0.08%)</title><rect x="85" y="997" width="1" height="15" fill="rgb(235,37,18)"/><text text-anchor="left" x="88.00" y="1007.50" 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>deno_core_http_bench`mio::poll::RegistrationInner::set_readiness::hab46dd76e6bbc4e3 (7 samples, 0.07%)</title><rect x="85" y="981" width="1" height="15" fill="rgb(241,176,54)"/><text text-anchor="left" x="88.00" y="991.50" 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>deno_core_http_bench`mio::poll::ReadinessState::set_readiness::hf2b032964f9f3fcb (1 samples, 0.01%)</title><rect x="86" y="965" width="0" height="15" fill="rgb(244,96,48)"/><text text-anchor="left" x="89.00" y="975.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2b41f4645fa7da95 (1 samples, 0.01%)</title><rect x="87" y="981" width="0" height="15" fill="rgb(245,126,6)"/><text text-anchor="left" x="90.00" y="991.50" 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>deno_core_http_bench`_$LT$crossbeam_utils..cache_padded..CachePadded$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::ha28ffad4046fc06e (1 samples, 0.01%)</title><rect x="87" y="981" width="1" height="15" fill="rgb(205,212,40)"/><text text-anchor="left" x="90.00" y="991.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (1 samples, 0.01%)</title><rect x="88" y="981" width="0" height="15" fill="rgb(232,93,51)"/><text text-anchor="left" x="91.00" y="991.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (3 samples, 0.03%)</title><rect x="88" y="917" width="1" height="15" fill="rgb(235,217,54)"/><text text-anchor="left" x="91.00" y="927.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (3 samples, 0.03%)</title><rect x="88" y="901" width="1" height="15" fill="rgb(220,73,49)"/><text text-anchor="left" x="91.00" y="911.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc87e32fb84227632 (10 samples, 0.10%)</title><rect x="88" y="981" width="1" height="15" fill="rgb(253,141,20)"/><text text-anchor="left" x="91.00" y="991.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he318e1ff1cf4afdb (8 samples, 0.08%)</title><rect x="88" y="965" width="1" height="15" fill="rgb(234,133,6)"/><text text-anchor="left" x="91.00" y="975.50" 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>deno_core_http_bench`_$LT$lock_api..rwlock..RwLockReadGuard$LT$R$C$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hac875ec77758d33d (7 samples, 0.07%)</title><rect x="88" y="949" width="1" height="15" fill="rgb(219,147,33)"/><text text-anchor="left" x="91.00" y="959.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::unlock_shared::ha52ac62bd9eaee26 (7 samples, 0.07%)</title><rect x="88" y="933" width="1" height="15" fill="rgb(216,151,24)"/><text text-anchor="left" x="91.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (1 samples, 0.01%)</title><rect x="89" y="917" width="0" height="15" fill="rgb(220,70,48)"/><text text-anchor="left" x="92.00" y="927.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get::heaaba89dade19414 (1 samples, 0.01%)</title><rect x="89" y="981" width="0" height="15" fill="rgb(237,87,40)"/><text text-anchor="left" x="92.00" y="991.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_or::h228f12ad39e144fb (5 samples, 0.05%)</title><rect x="89" y="981" width="0" height="15" fill="rgb(213,117,54)"/><text text-anchor="left" x="92.00" y="991.50" 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>deno_core_http_bench`core::sync::atomic::atomic_or::hf26c53f14962adc4 (5 samples, 0.05%)</title><rect x="89" y="965" width="0" height="15" fill="rgb(239,61,18)"/><text text-anchor="left" x="92.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_or::ha0e632639cb4b734 (2 samples, 0.02%)</title><rect x="89" y="981" width="1" height="15" fill="rgb(206,64,42)"/><text text-anchor="left" x="92.00" y="991.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::hfbfb8e638a4e9b11 (1 samples, 0.01%)</title><rect x="90" y="981" width="0" height="15" fill="rgb(211,139,41)"/><text text-anchor="left" x="93.00" y="991.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_writable::h5db00b8daf42257e (2 samples, 0.02%)</title><rect x="90" y="981" width="0" height="15" fill="rgb(237,5,47)"/><text text-anchor="left" x="93.00" y="991.50" 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>deno_core_http_bench`mio::event_imp::Ready::contains::h38f0285421f31633 (2 samples, 0.02%)</title><rect x="90" y="965" width="0" height="15" fill="rgb(213,228,26)"/><text text-anchor="left" x="93.00" y="975.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (2 samples, 0.02%)</title><rect x="90" y="949" width="0" height="15" fill="rgb(218,176,20)"/><text text-anchor="left" x="93.00" y="959.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="90" y="933" width="0" height="15" fill="rgb(246,83,27)"/><text text-anchor="left" x="93.00" y="943.50" 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>deno_core_http_bench`mio::event_imp::Ready::writable::h86d656880ca0a503 (1 samples, 0.01%)</title><rect x="90" y="981" width="0" height="15" fill="rgb(239,176,35)"/><text text-anchor="left" x="93.00" y="991.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2b41f4645fa7da95 (3 samples, 0.03%)</title><rect x="91" y="965" width="0" height="15" fill="rgb(249,80,46)"/><text text-anchor="left" x="94.00" y="975.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hde2d078af0157721 (1 samples, 0.01%)</title><rect x="91" y="949" width="0" height="15" fill="rgb(232,190,47)"/><text text-anchor="left" x="94.00" y="959.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get::h59f3d501999c03a2 (1 samples, 0.01%)</title><rect x="91" y="965" width="0" height="15" fill="rgb(220,55,14)"/><text text-anchor="left" x="94.00" y="975.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::h0a96d19eedc120c0 (4 samples, 0.04%)</title><rect x="91" y="933" width="1" height="15" fill="rgb(252,149,38)"/><text text-anchor="left" x="94.00" y="943.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h3af0b7d08ceb3286 (2 samples, 0.02%)</title><rect x="91" y="917" width="1" height="15" fill="rgb(208,147,23)"/><text text-anchor="left" x="94.00" y="927.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hd765b065205f6e96 (2 samples, 0.02%)</title><rect x="91" y="901" width="1" height="15" fill="rgb(247,204,7)"/><text text-anchor="left" x="94.00" y="911.50" 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>deno_core_http_bench`slab::Slab$LT$T$GT$::get::h5613a8c8c8efcba7 (14 samples, 0.14%)</title><rect x="90" y="981" width="2" height="15" fill="rgb(219,131,46)"/><text text-anchor="left" x="93.00" y="991.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get::heaaba89dade19414 (5 samples, 0.05%)</title><rect x="91" y="965" width="1" height="15" fill="rgb(207,60,49)"/><text text-anchor="left" x="94.00" y="975.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get::h59f3d501999c03a2 (5 samples, 0.05%)</title><rect x="91" y="949" width="1" height="15" fill="rgb(226,140,27)"/><text text-anchor="left" x="94.00" y="959.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::as_ptr::h9270361a959fa04a (1 samples, 0.01%)</title><rect x="92" y="933" width="0" height="15" fill="rgb(253,217,26)"/><text text-anchor="left" x="95.00" y="943.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h32ecfac2ca68030f (1 samples, 0.01%)</title><rect x="92" y="933" width="0" height="15" fill="rgb(205,72,40)"/><text text-anchor="left" x="95.00" y="943.50" 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>deno_core_http_bench`core::ptr::null_mut::h416681d3c2f83223 (2 samples, 0.02%)</title><rect x="92" y="933" width="0" height="15" fill="rgb(217,213,43)"/><text text-anchor="left" x="95.00" y="943.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h7cd351fb0a1a7c81 (5 samples, 0.05%)</title><rect x="92" y="949" width="1" height="15" fill="rgb(253,13,30)"/><text text-anchor="left" x="95.00" y="959.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hb5e6c70e21260af6 (1 samples, 0.01%)</title><rect x="92" y="933" width="1" height="15" fill="rgb(251,43,0)"/><text text-anchor="left" x="95.00" y="943.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h5d093e989500fa13 (1 samples, 0.01%)</title><rect x="93" y="949" width="0" height="15" fill="rgb(243,174,8)"/><text text-anchor="left" x="96.00" y="959.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h223f1d7ef2570469 (8 samples, 0.08%)</title><rect x="92" y="965" width="1" height="15" fill="rgb(242,193,50)"/><text text-anchor="left" x="95.00" y="975.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::ha86f84a015fd89a5 (2 samples, 0.02%)</title><rect x="93" y="949" width="0" height="15" fill="rgb(244,34,50)"/><text text-anchor="left" x="96.00" y="959.50" 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>deno_core_http_bench`_$LT$crossbeam_utils..cache_padded..CachePadded$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::ha28ffad4046fc06e (1 samples, 0.01%)</title><rect x="93" y="965" width="0" height="15" fill="rgb(245,205,51)"/><text text-anchor="left" x="96.00" y="975.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::h6cc245eb941c3c47 (1 samples, 0.01%)</title><rect x="93" y="933" width="0" height="15" fill="rgb(240,218,34)"/><text text-anchor="left" x="96.00" y="943.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4629dd7faa41936f (1 samples, 0.01%)</title><rect x="93" y="917" width="0" height="15" fill="rgb(216,104,53)"/><text text-anchor="left" x="96.00" y="927.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="94" y="917" width="0" height="15" fill="rgb(239,37,53)"/><text text-anchor="left" x="97.00" y="927.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (5 samples, 0.05%)</title><rect x="93" y="933" width="1" height="15" fill="rgb(243,215,1)"/><text text-anchor="left" x="96.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (1 samples, 0.01%)</title><rect x="94" y="917" width="0" height="15" fill="rgb(208,25,30)"/><text text-anchor="left" x="97.00" y="927.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::lock_shared::ha2ce03267247a82c (8 samples, 0.08%)</title><rect x="93" y="949" width="1" height="15" fill="rgb(214,137,52)"/><text text-anchor="left" x="96.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (1 samples, 0.01%)</title><rect x="94" y="933" width="0" height="15" fill="rgb(214,141,28)"/><text text-anchor="left" x="97.00" y="943.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="94" y="917" width="0" height="15" fill="rgb(213,5,39)"/><text text-anchor="left" x="97.00" y="927.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::h6cc245eb941c3c47 (1 samples, 0.01%)</title><rect x="94" y="949" width="0" height="15" fill="rgb(253,93,26)"/><text text-anchor="left" x="97.00" y="959.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::is_ok::h97f33a0ad3e661aa (1 samples, 0.01%)</title><rect x="94" y="949" width="0" height="15" fill="rgb(250,205,42)"/><text text-anchor="left" x="97.00" y="959.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read::hd9ca754f605ffb0e (12 samples, 0.12%)</title><rect x="93" y="965" width="1" height="15" fill="rgb(253,128,18)"/><text text-anchor="left" x="96.00" y="975.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read_guard::hd040c7caeaf9e1a4 (1 samples, 0.01%)</title><rect x="94" y="949" width="0" height="15" fill="rgb(249,170,51)"/><text text-anchor="left" x="97.00" y="959.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h6087194a793c57d3 (1 samples, 0.01%)</title><rect x="94" y="965" width="1" height="15" fill="rgb(208,199,20)"/><text text-anchor="left" x="97.00" y="975.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc7eec755a72a73c8 (1 samples, 0.01%)</title><rect x="95" y="949" width="0" height="15" fill="rgb(253,76,0)"/><text text-anchor="left" x="98.00" y="959.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hcb66fcf326ad7814 (4 samples, 0.04%)</title><rect x="95" y="933" width="1" height="15" fill="rgb(236,206,11)"/><text text-anchor="left" x="98.00" y="943.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h7dec63b0d0cb6f7c (2 samples, 0.02%)</title><rect x="96" y="901" width="0" height="15" fill="rgb(212,77,41)"/><text text-anchor="left" x="99.00" y="911.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (8 samples, 0.08%)</title><rect x="96" y="933" width="1" height="15" fill="rgb(249,171,46)"/><text text-anchor="left" x="99.00" y="943.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::hd9f058479398d5bb (7 samples, 0.07%)</title><rect x="96" y="917" width="1" height="15" fill="rgb(238,138,48)"/><text text-anchor="left" x="99.00" y="927.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h85737dc74dbc8a64 (3 samples, 0.03%)</title><rect x="96" y="901" width="1" height="15" fill="rgb(236,207,31)"/><text text-anchor="left" x="99.00" y="911.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h7dec63b0d0cb6f7c (2 samples, 0.02%)</title><rect x="96" y="885" width="1" height="15" fill="rgb(253,42,13)"/><text text-anchor="left" x="99.00" y="895.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h6087194a793c57d3 (17 samples, 0.17%)</title><rect x="95" y="949" width="2" height="15" fill="rgb(242,86,21)"/><text text-anchor="left" x="98.00" y="959.50" 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>libdyld.dylib`tlv_get_addr (1 samples, 0.01%)</title><rect x="97" y="933" width="0" height="15" fill="rgb(239,31,35)"/><text text-anchor="left" x="100.00" y="943.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (1 samples, 0.01%)</title><rect x="97" y="949" width="0" height="15" fill="rgb(227,140,33)"/><text text-anchor="left" x="100.00" y="959.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::RwLock$LT$T$GT$::read::h5816c592d033b8ca (44 samples, 0.43%)</title><rect x="92" y="981" width="5" height="15" fill="rgb(238,125,4)"/><text text-anchor="left" x="95.00" y="991.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::h96dde913b1849116 (20 samples, 0.20%)</title><rect x="95" y="965" width="2" height="15" fill="rgb(246,101,41)"/><text text-anchor="left" x="98.00" y="975.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::_$u7b$$u7b$closure$u7d$$u7d$::h8ede7539b4d2d557 (1 samples, 0.01%)</title><rect x="97" y="949" width="0" height="15" fill="rgb(244,76,37)"/><text text-anchor="left" x="100.00" y="959.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::h96dde913b1849116 (1 samples, 0.01%)</title><rect x="97" y="981" width="0" height="15" fill="rgb(207,207,42)"/><text text-anchor="left" x="100.00" y="991.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h23d6b248e306bc1f (1 samples, 0.01%)</title><rect x="97" y="965" width="0" height="15" fill="rgb(219,164,47)"/><text text-anchor="left" x="100.00" y="975.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (3 samples, 0.03%)</title><rect x="97" y="965" width="1" height="15" fill="rgb(245,100,1)"/><text text-anchor="left" x="100.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_and::hd96d21858eeafeb5 (1 samples, 0.01%)</title><rect x="98" y="965" width="0" height="15" fill="rgb(225,70,31)"/><text text-anchor="left" x="101.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::atomic_and::h20a865046e10a8a9 (1 samples, 0.01%)</title><rect x="98" y="949" width="0" height="15" fill="rgb(244,120,36)"/><text text-anchor="left" x="101.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_or::ha0e632639cb4b734 (13 samples, 0.13%)</title><rect x="98" y="965" width="1" height="15" fill="rgb(248,172,49)"/><text text-anchor="left" x="101.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::atomic_or::hb1517ed49400f852 (12 samples, 0.12%)</title><rect x="98" y="949" width="1" height="15" fill="rgb(219,116,21)"/><text text-anchor="left" x="101.00" y="959.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h23d6b248e306bc1f (2 samples, 0.02%)</title><rect x="99" y="949" width="1" height="15" fill="rgb(205,78,49)"/><text text-anchor="left" x="102.00" y="959.50" 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>deno_core_http_bench`core::mem::replace::h71537b94a3b8edb2 (1 samples, 0.01%)</title><rect x="100" y="933" width="0" height="15" fill="rgb(207,196,16)"/><text text-anchor="left" x="103.00" y="943.50" 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>deno_core_http_bench`core::mem::size_of::h0630605d3347e606 (2 samples, 0.02%)</title><rect x="100" y="885" width="0" height="15" fill="rgb(228,97,5)"/><text text-anchor="left" x="103.00" y="895.50" 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>deno_core_http_bench`core::mem::size_of::h0630605d3347e606 (1 samples, 0.01%)</title><rect x="100" y="869" width="0" height="15" fill="rgb(208,229,50)"/><text text-anchor="left" x="103.00" y="879.50" 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>deno_core_http_bench`core::mem::size_of::h0630605d3347e606 (2 samples, 0.02%)</title><rect x="100" y="853" width="1" height="15" fill="rgb(239,91,25)"/><text text-anchor="left" x="103.00" y="863.50" 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>deno_core_http_bench`core::mem::size_of::he8243b7fbcbcc659 (1 samples, 0.01%)</title><rect x="101" y="853" width="0" height="15" fill="rgb(225,138,2)"/><text text-anchor="left" x="104.00" y="863.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h1200bf07366d757f (1 samples, 0.01%)</title><rect x="101" y="853" width="0" height="15" fill="rgb(211,195,43)"/><text text-anchor="left" x="104.00" y="863.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (2 samples, 0.02%)</title><rect x="101" y="837" width="0" height="15" fill="rgb(211,184,18)"/><text text-anchor="left" x="104.00" y="847.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h5b5a4623077b564c (11 samples, 0.11%)</title><rect x="101" y="837" width="2" height="15" fill="rgb(227,163,35)"/><text text-anchor="left" x="104.00" y="847.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (6 samples, 0.06%)</title><rect x="102" y="821" width="1" height="15" fill="rgb(221,198,19)"/><text text-anchor="left" x="105.00" y="831.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h1200bf07366d757f (12 samples, 0.12%)</title><rect x="103" y="837" width="1" height="15" fill="rgb(234,15,2)"/><text text-anchor="left" x="106.00" y="847.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h486da7c02f2b3cf6 (6 samples, 0.06%)</title><rect x="103" y="821" width="1" height="15" fill="rgb(246,147,54)"/><text text-anchor="left" x="106.00" y="831.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h486da7c02f2b3cf6 (2 samples, 0.02%)</title><rect x="104" y="837" width="0" height="15" fill="rgb(237,147,53)"/><text text-anchor="left" x="107.00" y="847.50" 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>deno_core_http_bench`core::mem::swap::hfebbc81ab67a7482 (41 samples, 0.40%)</title><rect x="100" y="901" width="4" height="15" fill="rgb(223,25,22)"/><text text-anchor="left" x="103.00" y="911.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h22cbe02c2a4b00f0 (39 samples, 0.38%)</title><rect x="100" y="885" width="4" height="15" fill="rgb(238,73,2)"/><text text-anchor="left" x="103.00" y="895.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::he7884c8eca9af407 (35 samples, 0.34%)</title><rect x="100" y="869" width="4" height="15" fill="rgb(237,213,10)"/><text text-anchor="left" x="103.00" y="879.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::hd85eff35bf63d7c8 (31 samples, 0.30%)</title><rect x="101" y="853" width="3" height="15" fill="rgb(254,59,52)"/><text text-anchor="left" x="104.00" y="863.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="104" y="837" width="0" height="15" fill="rgb(252,84,18)"/><text text-anchor="left" x="107.00" y="847.50" 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>deno_core_http_bench`tokio_sync::loom::sync::CausalCell$LT$T$GT$::with_mut::h76d6151ff3a18f66 (45 samples, 0.44%)</title><rect x="99" y="965" width="6" height="15" fill="rgb(210,40,25)"/><text text-anchor="left" x="102.00" y="975.50" 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>deno_core_http_bench`tokio_sync::task::atomic_task::AtomicTask::take_task::_$u7b$$u7b$closure$u7d$$u7d$::hc80229404d191d3e (43 samples, 0.42%)</title><rect x="100" y="949" width="5" height="15" fill="rgb(232,175,52)"/><text text-anchor="left" x="103.00" y="959.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::hb4a7fef4c6fd821b (42 samples, 0.41%)</title><rect x="100" y="933" width="5" height="15" fill="rgb(211,94,35)"/><text text-anchor="left" x="103.00" y="943.50" 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>deno_core_http_bench`core::mem::replace::h71537b94a3b8edb2 (42 samples, 0.41%)</title><rect x="100" y="917" width="5" height="15" fill="rgb(251,189,43)"/><text text-anchor="left" x="103.00" y="927.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="104" y="901" width="1" height="15" fill="rgb(248,190,24)"/><text text-anchor="left" x="107.00" y="911.50" 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>deno_core_http_bench`tokio_sync::task::atomic_task::AtomicTask::take_task::h17d2f5c703739dab (67 samples, 0.66%)</title><rect x="97" y="981" width="8" height="15" fill="rgb(212,55,27)"/><text text-anchor="left" x="100.00" y="991.50" 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>deno_core_http_bench`tokio_sync::task::atomic_task::AtomicTask::take_task::_$u7b$$u7b$closure$u7d$$u7d$::hc80229404d191d3e (2 samples, 0.02%)</title><rect x="105" y="965" width="0" height="15" fill="rgb(243,191,13)"/><text text-anchor="left" x="108.00" y="975.50" 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>deno_core_http_bench`tokio_reactor::Reactor::dispatch::hdcd69f9375209c39 (163 samples, 1.60%)</title><rect x="86" y="997" width="19" height="15" fill="rgb(213,2,42)"/><text text-anchor="left" x="89.00" y="1007.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="105" y="981" width="0" height="15" fill="rgb(226,3,0)"/><text text-anchor="left" x="108.00" y="991.50" 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>deno_core_http_bench`tokio_sync::task::atomic_task::AtomicTask::take_task::h17d2f5c703739dab (2 samples, 0.02%)</title><rect x="105" y="997" width="0" height="15" fill="rgb(252,16,44)"/><text text-anchor="left" x="108.00" y="1007.50" 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>deno_core_http_bench`_$LT$tokio_reactor..Reactor$u20$as$u20$tokio_executor..park..Park$GT$::park::hb1e8b4ab60f309dd (816 samples, 8.00%)</title><rect x="11" y="1045" width="94" height="15" fill="rgb(228,193,38)"/><text text-anchor="left" x="14.00" y="1055.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_h..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::Reactor::turn::h210739ab6738e540 (813 samples, 7.97%)</title><rect x="11" y="1029" width="94" height="15" fill="rgb(218,110,42)"/><text text-anchor="left" x="14.00" y="1039.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_h..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::Reactor::poll::hd744f660c535f866 (807 samples, 7.92%)</title><rect x="12" y="1013" width="93" height="15" fill="rgb(249,35,9)"/><text text-anchor="left" x="15.00" y="1023.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_h..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="105" y="997" width="0" height="15" fill="rgb(216,43,40)"/><text text-anchor="left" x="108.00" y="1007.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h1946aa7eda69610f (1 samples, 0.01%)</title><rect x="105" y="1045" width="0" height="15" fill="rgb(225,21,7)"/><text text-anchor="left" x="108.00" y="1055.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hd67249cc5d850a7e (2 samples, 0.02%)</title><rect x="105" y="1045" width="1" height="15" fill="rgb(205,174,3)"/><text text-anchor="left" x="108.00" y="1055.50" 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>deno_core_http_bench`_$LT$tokio_timer..clock..clock..Clock$u20$as$u20$tokio_timer..timer..now..Now$GT$::now::h967edf4ecf285930 (1 samples, 0.01%)</title><rect x="106" y="1029" width="0" height="15" fill="rgb(230,227,12)"/><text text-anchor="left" x="109.00" y="1039.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::is_none::h751899ec60904174 (1 samples, 0.01%)</title><rect x="106" y="1029" width="0" height="15" fill="rgb(224,29,38)"/><text text-anchor="left" x="109.00" y="1039.50" 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>deno_core_http_bench`tokio_timer::atomic::imp::AtomicU64::store::h3bd0722ce033f1f4 (1 samples, 0.01%)</title><rect x="106" y="1029" width="0" height="15" fill="rgb(234,113,7)"/><text text-anchor="left" x="109.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::store::hc60d4f88d638b4c1 (1 samples, 0.01%)</title><rect x="106" y="1013" width="0" height="15" fill="rgb(247,1,30)"/><text text-anchor="left" x="109.00" y="1023.50" 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>deno_core_http_bench`core::sync::atomic::atomic_store::hd5b21b3696aa7fee (1 samples, 0.01%)</title><rect x="106" y="997" width="0" height="15" fill="rgb(206,168,46)"/><text text-anchor="left" x="109.00" y="1007.50" 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>deno_core_http_bench`tokio_timer::clock::clock::Clock::now::hb234f6b3bec9d973 (1 samples, 0.01%)</title><rect x="106" y="1029" width="0" height="15" fill="rgb(214,115,47)"/><text text-anchor="left" x="109.00" y="1039.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::checked_mul::h945f6ed1d78eb69b (2 samples, 0.02%)</title><rect x="106" y="997" width="0" height="15" fill="rgb(228,88,48)"/><text text-anchor="left" x="109.00" y="1007.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::overflowing_mul::h2240a185c7aa30c0 (2 samples, 0.02%)</title><rect x="106" y="981" width="0" height="15" fill="rgb(254,143,41)"/><text text-anchor="left" x="109.00" y="991.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::saturating_mul::h34a6e678def2309d (3 samples, 0.03%)</title><rect x="106" y="1013" width="0" height="15" fill="rgb(241,190,21)"/><text text-anchor="left" x="109.00" y="1023.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap_or::h0c5d2a506433ef82 (1 samples, 0.01%)</title><rect x="106" y="997" width="0" height="15" fill="rgb(228,47,34)"/><text text-anchor="left" x="109.00" y="1007.50" 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>deno_core_http_bench`tokio_timer::ms::h6790db447d162664 (4 samples, 0.04%)</title><rect x="106" y="1029" width="1" height="15" fill="rgb(252,45,8)"/><text text-anchor="left" x="109.00" y="1039.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap_or::h0c5d2a506433ef82 (1 samples, 0.01%)</title><rect x="106" y="1013" width="1" height="15" fill="rgb(222,220,5)"/><text text-anchor="left" x="109.00" y="1023.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::and_then::h89a6d26c817dba6d (1 samples, 0.01%)</title><rect x="107" y="1013" width="0" height="15" fill="rgb(218,1,4)"/><text text-anchor="left" x="110.00" y="1023.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e3a1176a1daebad (1 samples, 0.01%)</title><rect x="107" y="997" width="0" height="15" fill="rgb(205,108,15)"/><text text-anchor="left" x="110.00" y="1007.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h7678c7fc968fc130 (1 samples, 0.01%)</title><rect x="108" y="965" width="0" height="15" fill="rgb(206,27,22)"/><text text-anchor="left" x="111.00" y="975.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h0dd8ede6cee224b4 (1 samples, 0.01%)</title><rect x="108" y="965" width="0" height="15" fill="rgb(233,20,50)"/><text text-anchor="left" x="111.00" y="975.50" 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>deno_core_http_bench`core::ptr::null_mut::h6f9531011d0c1abf (1 samples, 0.01%)</title><rect x="108" y="949" width="0" height="15" fill="rgb(235,50,27)"/><text text-anchor="left" x="111.00" y="959.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e3a1176a1daebad (5 samples, 0.05%)</title><rect x="108" y="981" width="0" height="15" fill="rgb(214,104,8)"/><text text-anchor="left" x="111.00" y="991.50" 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>deno_core_http_bench`core::ptr::null_mut::h6f9531011d0c1abf (1 samples, 0.01%)</title><rect x="108" y="965" width="0" height="15" fill="rgb(219,181,9)"/><text text-anchor="left" x="111.00" y="975.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h81b297126e3982d7 (1 samples, 0.01%)</title><rect x="108" y="981" width="0" height="15" fill="rgb(207,52,44)"/><text text-anchor="left" x="111.00" y="991.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h7678c7fc968fc130 (1 samples, 0.01%)</title><rect x="108" y="981" width="0" height="15" fill="rgb(253,69,18)"/><text text-anchor="left" x="111.00" y="991.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h992dddbcd4ac0357 (14 samples, 0.14%)</title><rect x="107" y="997" width="2" height="15" fill="rgb(225,225,26)"/><text text-anchor="left" x="110.00" y="1007.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h29f27e7a545b478c (4 samples, 0.04%)</title><rect x="108" y="981" width="1" height="15" fill="rgb(238,216,43)"/><text text-anchor="left" x="111.00" y="991.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h81b297126e3982d7 (3 samples, 0.03%)</title><rect x="108" y="965" width="1" height="15" fill="rgb(224,3,40)"/><text text-anchor="left" x="111.00" y="975.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..TryFrom$LT$U$GT$$GT$::try_from::h4cf881a1e9c4d1ea (3 samples, 0.03%)</title><rect x="109" y="965" width="1" height="15" fill="rgb(236,182,17)"/><text text-anchor="left" x="112.00" y="975.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_usize::h8309321a3e8ff8de (6 samples, 0.06%)</title><rect x="109" y="981" width="1" height="15" fill="rgb(247,96,31)"/><text text-anchor="left" x="112.00" y="991.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::hcdc6185dc62af09a (3 samples, 0.03%)</title><rect x="110" y="965" width="0" height="15" fill="rgb(228,225,8)"/><text text-anchor="left" x="113.00" y="975.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h3f1747e27b3710c9 (3 samples, 0.03%)</title><rect x="110" y="949" width="0" height="15" fill="rgb(233,184,30)"/><text text-anchor="left" x="113.00" y="959.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (11 samples, 0.11%)</title><rect x="109" y="997" width="1" height="15" fill="rgb(229,50,22)"/><text text-anchor="left" x="112.00" y="1007.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (1 samples, 0.01%)</title><rect x="110" y="981" width="0" height="15" fill="rgb(248,70,2)"/><text text-anchor="left" x="113.00" y="991.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc1acbf053fb3fbae (1 samples, 0.01%)</title><rect x="110" y="965" width="0" height="15" fill="rgb(210,204,4)"/><text text-anchor="left" x="113.00" y="975.50" 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>deno_core_http_bench`core::ptr::write::h705e1b7b97e1b91c (1 samples, 0.01%)</title><rect x="110" y="949" width="0" height="15" fill="rgb(252,97,13)"/><text text-anchor="left" x="113.00" y="959.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (1 samples, 0.01%)</title><rect x="110" y="997" width="0" height="15" fill="rgb(206,160,1)"/><text text-anchor="left" x="113.00" y="1007.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h29f27e7a545b478c (1 samples, 0.01%)</title><rect x="110" y="997" width="0" height="15" fill="rgb(246,92,23)"/><text text-anchor="left" x="113.00" y="1007.50" 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>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::poll::ha721836e5263d042 (35 samples, 0.34%)</title><rect x="107" y="1029" width="4" height="15" fill="rgb(213,58,4)"/><text text-anchor="left" x="110.00" y="1039.50" 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>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::next_expiration::hc1ba4a223c8e9534 (33 samples, 0.32%)</title><rect x="107" y="1013" width="4" height="15" fill="rgb(210,11,46)"/><text text-anchor="left" x="110.00" y="1023.50" 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>deno_core_http_bench`tokio_timer::wheel::level::Level$LT$T$GT$::next_expiration::h7ee489c761fd46d1 (3 samples, 0.03%)</title><rect x="110" y="997" width="1" height="15" fill="rgb(238,178,43)"/><text text-anchor="left" x="113.00" y="1007.50" 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>deno_core_http_bench`tokio_timer::wheel::level::Level$LT$T$GT$::next_occupied_slot::h9c69c06453eb9186 (1 samples, 0.01%)</title><rect x="111" y="981" width="0" height="15" fill="rgb(223,176,24)"/><text text-anchor="left" x="114.00" y="991.50" 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>deno_core_http_bench`tokio_timer::timer::Timer$LT$T$C$N$GT$::process::h881bcf83decf70ec (45 samples, 0.44%)</title><rect x="106" y="1045" width="5" height="15" fill="rgb(208,144,5)"/><text text-anchor="left" x="109.00" y="1055.50" 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>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::set_elapsed::he3ffb96c74c2c7b3 (1 samples, 0.01%)</title><rect x="111" y="1029" width="0" height="15" fill="rgb(224,31,52)"/><text text-anchor="left" x="114.00" y="1039.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h2c4f092b5dc01b18 (3 samples, 0.03%)</title><rect x="111" y="1013" width="0" height="15" fill="rgb(242,69,33)"/><text text-anchor="left" x="114.00" y="1023.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h0acc631b6618cefe (3 samples, 0.03%)</title><rect x="111" y="997" width="0" height="15" fill="rgb(229,214,12)"/><text text-anchor="left" x="114.00" y="1007.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h1bc9fa9d0ec761bd (5 samples, 0.05%)</title><rect x="111" y="1029" width="0" height="15" fill="rgb(213,33,17)"/><text text-anchor="left" x="114.00" y="1039.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h0acc631b6618cefe (2 samples, 0.02%)</title><rect x="111" y="1013" width="0" height="15" fill="rgb(248,164,52)"/><text text-anchor="left" x="114.00" y="1023.50" 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>deno_core_http_bench`_$LT$tokio_timer..timer..atomic_stack..AtomicStackEntries$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hf75d752f6818a793 (3 samples, 0.03%)</title><rect x="111" y="1029" width="1" height="15" fill="rgb(249,100,15)"/><text text-anchor="left" x="114.00" y="1039.50" 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>deno_core_http_bench`core::ptr::null_mut::h6f9531011d0c1abf (3 samples, 0.03%)</title><rect x="111" y="1013" width="1" height="15" fill="rgb(251,88,10)"/><text text-anchor="left" x="114.00" y="1023.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h2c4f092b5dc01b18 (2 samples, 0.02%)</title><rect x="112" y="1029" width="0" height="15" fill="rgb(209,177,11)"/><text text-anchor="left" x="115.00" y="1039.50" 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>deno_core_http_bench`core::ptr::null_mut::h6099ca523ff30d84 (1 samples, 0.01%)</title><rect x="112" y="1029" width="0" height="15" fill="rgb(224,91,46)"/><text text-anchor="left" x="115.00" y="1039.50" 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>deno_core_http_bench`tokio_timer::timer::Timer$LT$T$C$N$GT$::process_queue::h5ca75a2bd2345543 (12 samples, 0.12%)</title><rect x="111" y="1045" width="1" height="15" fill="rgb(229,199,33)"/><text text-anchor="left" x="114.00" y="1055.50" 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>deno_core_http_bench`tokio_timer::timer::atomic_stack::AtomicStack::take::h66e422643dabe0f0 (1 samples, 0.01%)</title><rect x="112" y="1029" width="0" height="15" fill="rgb(222,15,25)"/><text text-anchor="left" x="115.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::swap::h677839e317d1c39b (1 samples, 0.01%)</title><rect x="112" y="1013" width="0" height="15" fill="rgb(252,76,47)"/><text text-anchor="left" x="115.00" y="1023.50" 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>deno_core_http_bench`core::sync::atomic::atomic_swap::h940a6cdfac569c7f (1 samples, 0.01%)</title><rect x="112" y="997" width="0" height="15" fill="rgb(224,66,9)"/><text text-anchor="left" x="115.00" y="1007.50" 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>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::poll::ha721836e5263d042 (3 samples, 0.03%)</title><rect x="112" y="1045" width="1" height="15" fill="rgb(240,131,46)"/><text text-anchor="left" x="115.00" y="1055.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (1 samples, 0.01%)</title><rect x="113" y="1029" width="0" height="15" fill="rgb(222,142,19)"/><text text-anchor="left" x="116.00" y="1039.50" 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>deno_core_http_bench`_$LT$I$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::h6dfc773e7fcf03c5 (1 samples, 0.01%)</title><rect x="113" y="1013" width="0" height="15" fill="rgb(222,10,50)"/><text text-anchor="left" x="116.00" y="1023.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e3a1176a1daebad (1 samples, 0.01%)</title><rect x="113" y="1013" width="1" height="15" fill="rgb(211,46,34)"/><text text-anchor="left" x="116.00" y="1023.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h7678c7fc968fc130 (1 samples, 0.01%)</title><rect x="114" y="981" width="0" height="15" fill="rgb(217,208,4)"/><text text-anchor="left" x="117.00" y="991.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e3a1176a1daebad (4 samples, 0.04%)</title><rect x="114" y="997" width="0" height="15" fill="rgb(212,121,31)"/><text text-anchor="left" x="117.00" y="1007.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hd1d06e4bc8bacb21 (2 samples, 0.02%)</title><rect x="114" y="981" width="0" height="15" fill="rgb(236,109,54)"/><text text-anchor="left" x="117.00" y="991.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h992dddbcd4ac0357 (6 samples, 0.06%)</title><rect x="114" y="1013" width="0" height="15" fill="rgb(231,103,1)"/><text text-anchor="left" x="117.00" y="1023.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h29f27e7a545b478c (1 samples, 0.01%)</title><rect x="114" y="997" width="0" height="15" fill="rgb(223,41,6)"/><text text-anchor="left" x="117.00" y="1007.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_usize::h8309321a3e8ff8de (1 samples, 0.01%)</title><rect x="114" y="1013" width="0" height="15" fill="rgb(242,143,0)"/><text text-anchor="left" x="117.00" y="1023.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..TryFrom$LT$U$GT$$GT$::try_from::h4cf881a1e9c4d1ea (4 samples, 0.04%)</title><rect x="114" y="981" width="1" height="15" fill="rgb(228,2,51)"/><text text-anchor="left" x="117.00" y="991.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h1fd6bdef1e669df0 (2 samples, 0.02%)</title><rect x="115" y="965" width="0" height="15" fill="rgb(230,40,12)"/><text text-anchor="left" x="118.00" y="975.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::hcdc6185dc62af09a (1 samples, 0.01%)</title><rect x="115" y="981" width="0" height="15" fill="rgb(240,210,50)"/><text text-anchor="left" x="118.00" y="991.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h3f1747e27b3710c9 (1 samples, 0.01%)</title><rect x="115" y="965" width="0" height="15" fill="rgb(216,59,9)"/><text text-anchor="left" x="118.00" y="975.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..iter..range..Step$GT$::add_usize::h8309321a3e8ff8de (6 samples, 0.06%)</title><rect x="114" y="997" width="1" height="15" fill="rgb(225,166,11)"/><text text-anchor="left" x="117.00" y="1007.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h3f1747e27b3710c9 (1 samples, 0.01%)</title><rect x="115" y="981" width="0" height="15" fill="rgb(232,74,23)"/><text text-anchor="left" x="118.00" y="991.50" 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>deno_core_http_bench`core::mem::size_of::hab2f5027fb47096d (2 samples, 0.02%)</title><rect x="115" y="981" width="0" height="15" fill="rgb(218,212,19)"/><text text-anchor="left" x="118.00" y="991.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb2f4599fa7bc15b3 (2 samples, 0.02%)</title><rect x="116" y="965" width="0" height="15" fill="rgb(227,102,38)"/><text text-anchor="left" x="119.00" y="975.50" 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>deno_core_http_bench`core::mem::size_of::hab2f5027fb47096d (1 samples, 0.01%)</title><rect x="116" y="965" width="0" height="15" fill="rgb(233,200,30)"/><text text-anchor="left" x="119.00" y="975.50" 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>deno_core_http_bench`core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h9b8cbd790c980a4c (16 samples, 0.16%)</title><rect x="114" y="1013" width="2" height="15" fill="rgb(237,190,22)"/><text text-anchor="left" x="117.00" y="1023.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (9 samples, 0.09%)</title><rect x="115" y="997" width="1" height="15" fill="rgb(226,59,54)"/><text text-anchor="left" x="118.00" y="1007.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc1acbf053fb3fbae (7 samples, 0.07%)</title><rect x="115" y="981" width="1" height="15" fill="rgb(241,154,20)"/><text text-anchor="left" x="118.00" y="991.50" 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>deno_core_http_bench`core::ptr::read::h64b168721259f6aa (3 samples, 0.03%)</title><rect x="116" y="965" width="0" height="15" fill="rgb(253,227,13)"/><text text-anchor="left" x="119.00" y="975.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb2f4599fa7bc15b3 (1 samples, 0.01%)</title><rect x="116" y="949" width="0" height="15" fill="rgb(247,95,30)"/><text text-anchor="left" x="119.00" y="959.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="116" y="933" width="0" height="15" fill="rgb(223,9,24)"/><text text-anchor="left" x="119.00" y="943.50" 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>deno_core_http_bench`core::mem::swap::hb859c68c08757be8 (2 samples, 0.02%)</title><rect x="116" y="1013" width="0" height="15" fill="rgb(215,109,8)"/><text text-anchor="left" x="119.00" y="1023.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h29f27e7a545b478c (1 samples, 0.01%)</title><rect x="116" y="1013" width="1" height="15" fill="rgb(236,177,31)"/><text text-anchor="left" x="119.00" y="1023.50" 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>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::next_expiration::hc1ba4a223c8e9534 (40 samples, 0.39%)</title><rect x="113" y="1029" width="4" height="15" fill="rgb(211,101,21)"/><text text-anchor="left" x="116.00" y="1039.50" 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>deno_core_http_bench`tokio_timer::wheel::level::Level$LT$T$GT$::next_expiration::h7ee489c761fd46d1 (6 samples, 0.06%)</title><rect x="117" y="1013" width="0" height="15" fill="rgb(223,165,12)"/><text text-anchor="left" x="120.00" y="1023.50" 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>deno_core_http_bench`tokio_timer::wheel::level::Level$LT$T$GT$::next_occupied_slot::h9c69c06453eb9186 (4 samples, 0.04%)</title><rect x="117" y="997" width="0" height="15" fill="rgb(218,53,45)"/><text text-anchor="left" x="120.00" y="1007.50" 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>deno_core_http_bench`_$LT$tokio_timer..timer..Timer$LT$T$C$N$GT$$u20$as$u20$tokio_executor..park..Park$GT$::park::hbfcae3b01a50ec4e (926 samples, 9.08%)</title><rect x="10" y="1061" width="107" height="15" fill="rgb(209,165,18)"/><text text-anchor="left" x="13.00" y="1071.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_htt..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_timer::wheel::Wheel$LT$T$GT$::poll_at::h7be8745abbbaaf2c (43 samples, 0.42%)</title><rect x="113" y="1045" width="4" height="15" fill="rgb(214,22,23)"/><text text-anchor="left" x="116.00" y="1055.50" 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>deno_core_http_bench`tokio_timer::wheel::level::Level$LT$T$GT$::next_expiration::h7ee489c761fd46d1 (2 samples, 0.02%)</title><rect x="117" y="1029" width="0" height="15" fill="rgb(211,79,51)"/><text text-anchor="left" x="120.00" y="1039.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h0bb6c044894db38a (1 samples, 0.01%)</title><rect x="117" y="1061" width="1" height="15" fill="rgb(217,131,3)"/><text text-anchor="left" x="120.00" y="1071.50" 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>deno_core_http_bench`tokio_current_thread::CurrentThread$LT$P$GT$::is_idle::ha1e98e6836e1af5c (1 samples, 0.01%)</title><rect x="118" y="1061" width="0" height="15" fill="rgb(252,167,7)"/><text text-anchor="left" x="121.00" y="1071.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h033012a8a84e564c (1 samples, 0.01%)</title><rect x="118" y="1045" width="0" height="15" fill="rgb(220,29,33)"/><text text-anchor="left" x="121.00" y="1055.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h3159c8368ea90633 (1 samples, 0.01%)</title><rect x="118" y="1045" width="0" height="15" fill="rgb(250,12,18)"/><text text-anchor="left" x="121.00" y="1055.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h5a72e2eb4847db63 (1 samples, 0.01%)</title><rect x="118" y="1045" width="0" height="15" fill="rgb(218,222,32)"/><text text-anchor="left" x="121.00" y="1055.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_mut::he0b531ed2074c73e (1 samples, 0.01%)</title><rect x="118" y="1045" width="0" height="15" fill="rgb(239,3,14)"/><text text-anchor="left" x="121.00" y="1055.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h654e2c842d75f8b7 (1 samples, 0.01%)</title><rect x="118" y="1045" width="1" height="15" fill="rgb(253,105,48)"/><text text-anchor="left" x="121.00" y="1055.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::hb8e67124967ff4ef (1 samples, 0.01%)</title><rect x="119" y="1045" width="0" height="15" fill="rgb(229,182,25)"/><text text-anchor="left" x="122.00" y="1055.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_add::hd0a9c2195b5e909d (1 samples, 0.01%)</title><rect x="119" y="1045" width="0" height="15" fill="rgb(244,6,1)"/><text text-anchor="left" x="122.00" y="1055.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hd7bdd3917af46fc3 (2 samples, 0.02%)</title><rect x="119" y="1013" width="0" height="15" fill="rgb(205,125,0)"/><text text-anchor="left" x="122.00" y="1023.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1cb1204cc6c2fe94 (2 samples, 0.02%)</title><rect x="119" y="997" width="0" height="15" fill="rgb(211,100,16)"/><text text-anchor="left" x="122.00" y="1007.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h5a72e2eb4847db63 (5 samples, 0.05%)</title><rect x="119" y="1029" width="0" height="15" fill="rgb(250,229,16)"/><text text-anchor="left" x="122.00" y="1039.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1cb1204cc6c2fe94 (1 samples, 0.01%)</title><rect x="119" y="1013" width="0" height="15" fill="rgb(209,133,20)"/><text text-anchor="left" x="122.00" y="1023.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hd7bdd3917af46fc3 (1 samples, 0.01%)</title><rect x="119" y="1029" width="1" height="15" fill="rgb(212,172,16)"/><text text-anchor="left" x="122.00" y="1039.50" 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>deno_core_http_bench`std::sync::mpsc::Receiver$LT$T$GT$::try_recv::h8bfaff7cfbb3c686 (8 samples, 0.08%)</title><rect x="119" y="1045" width="1" height="15" fill="rgb(233,8,31)"/><text text-anchor="left" x="122.00" y="1055.50" 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>deno_core_http_bench`std::sync::mpsc::UnsafeFlavor::inner::heac7fbe8a8e40f74 (1 samples, 0.01%)</title><rect x="120" y="1029" width="0" height="15" fill="rgb(247,33,35)"/><text text-anchor="left" x="123.00" y="1039.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h681e13c9654a5626 (1 samples, 0.01%)</title><rect x="120" y="1013" width="0" height="15" fill="rgb(212,43,23)"/><text text-anchor="left" x="123.00" y="1023.50" 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>deno_core_http_bench`std::sync::mpsc::UnsafeFlavor::inner::heac7fbe8a8e40f74 (1 samples, 0.01%)</title><rect x="120" y="1045" width="0" height="15" fill="rgb(235,205,5)"/><text text-anchor="left" x="123.00" y="1055.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::List$LT$U$GT$::remove::hc5b4cf5413fecac1 (1 samples, 0.01%)</title><rect x="120" y="1045" width="0" height="15" fill="rgb(228,60,30)"/><text text-anchor="left" x="123.00" y="1055.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0bf9ef3a528d637b (1 samples, 0.01%)</title><rect x="121" y="1029" width="0" height="15" fill="rgb(216,181,17)"/><text text-anchor="left" x="124.00" y="1039.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h3159c8368ea90633 (4 samples, 0.04%)</title><rect x="121" y="1029" width="1" height="15" fill="rgb(210,203,31)"/><text text-anchor="left" x="124.00" y="1039.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h2abf6e5998ebc76d (1 samples, 0.01%)</title><rect x="122" y="1013" width="0" height="15" fill="rgb(251,83,46)"/><text text-anchor="left" x="125.00" y="1023.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hfda5d8a9569e4abc (1 samples, 0.01%)</title><rect x="122" y="997" width="0" height="15" fill="rgb(245,180,31)"/><text text-anchor="left" x="125.00" y="1007.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h46cf0cd529b560ee (1 samples, 0.01%)</title><rect x="122" y="981" width="0" height="15" fill="rgb(222,42,32)"/><text text-anchor="left" x="125.00" y="991.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::h0275b6859935e700 (1 samples, 0.01%)</title><rect x="122" y="965" width="0" height="15" fill="rgb(213,188,28)"/><text text-anchor="left" x="125.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h27fed45ad48fb50f (1 samples, 0.01%)</title><rect x="122" y="949" width="0" height="15" fill="rgb(254,99,6)"/><text text-anchor="left" x="125.00" y="959.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h22f7a78461cd1b7b (1 samples, 0.01%)</title><rect x="122" y="997" width="0" height="15" fill="rgb(214,95,48)"/><text text-anchor="left" x="125.00" y="1007.50" 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>deno_core_http_bench`mio::poll::AtomicState::compare_and_swap::h4c84d37437e86943 (2 samples, 0.02%)</title><rect x="122" y="965" width="0" height="15" fill="rgb(228,200,31)"/><text text-anchor="left" x="125.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_and_swap::h74082249eb5d8f38 (2 samples, 0.02%)</title><rect x="122" y="949" width="0" height="15" fill="rgb(210,109,42)"/><text text-anchor="left" x="125.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange::h1810b8a0a3d76107 (2 samples, 0.02%)</title><rect x="122" y="933" width="0" height="15" fill="rgb(253,220,6)"/><text text-anchor="left" x="125.00" y="943.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h8482d6f388e160db (2 samples, 0.02%)</title><rect x="122" y="917" width="0" height="15" fill="rgb(227,187,52)"/><text text-anchor="left" x="125.00" y="927.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h97b84935556202c4 (1 samples, 0.01%)</title><rect x="122" y="949" width="0" height="15" fill="rgb(249,10,18)"/><text text-anchor="left" x="125.00" y="959.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h502a5e61f57c6662 (1 samples, 0.01%)</title><rect x="122" y="933" width="0" height="15" fill="rgb(226,119,34)"/><text text-anchor="left" x="125.00" y="943.50" 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>deno_core_http_bench`mio::poll::AtomicState::load::h08706692b029f6ab (4 samples, 0.04%)</title><rect x="122" y="965" width="1" height="15" fill="rgb(206,112,16)"/><text text-anchor="left" x="125.00" y="975.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h9a1f3edb2794f09f (2 samples, 0.02%)</title><rect x="122" y="949" width="1" height="15" fill="rgb(205,218,53)"/><text text-anchor="left" x="125.00" y="959.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h0f3c1831d5b73a6b (1 samples, 0.01%)</title><rect x="122" y="933" width="1" height="15" fill="rgb(239,100,14)"/><text text-anchor="left" x="125.00" y="943.50" 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>deno_core_http_bench`mio::poll::SetReadiness::set_readiness::h5757d7dfb6b2ef48 (7 samples, 0.07%)</title><rect x="122" y="997" width="1" height="15" fill="rgb(210,229,7)"/><text text-anchor="left" x="125.00" y="1007.50" 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>deno_core_http_bench`mio::poll::RegistrationInner::set_readiness::hab46dd76e6bbc4e3 (7 samples, 0.07%)</title><rect x="122" y="981" width="1" height="15" fill="rgb(214,19,8)"/><text text-anchor="left" x="125.00" y="991.50" 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>deno_core_http_bench`mio::poll::ReadinessState::is_dropped::hed4a8a6eefecde51 (1 samples, 0.01%)</title><rect x="123" y="965" width="0" height="15" fill="rgb(253,88,33)"/><text text-anchor="left" x="126.00" y="975.50" 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>deno_core_http_bench`_$LT$tokio_reactor..Handle$u20$as$u20$tokio_executor..park..Unpark$GT$::unpark::h087be2399d671605 (13 samples, 0.13%)</title><rect x="122" y="1029" width="1" height="15" fill="rgb(229,127,18)"/><text text-anchor="left" x="125.00" y="1039.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::wakeup::h90c58fb04298d63d (13 samples, 0.13%)</title><rect x="122" y="1013" width="1" height="15" fill="rgb(254,226,30)"/><text text-anchor="left" x="125.00" y="1023.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::inner::h4aabadd704398e1a (4 samples, 0.04%)</title><rect x="123" y="997" width="0" height="15" fill="rgb(239,204,54)"/><text text-anchor="left" x="126.00" y="1007.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::upgrade::h0beb0d8ebffa9100 (2 samples, 0.02%)</title><rect x="123" y="981" width="0" height="15" fill="rgb(242,125,21)"/><text text-anchor="left" x="126.00" y="991.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66542eea088aa3f3 (1 samples, 0.01%)</title><rect x="123" y="965" width="0" height="15" fill="rgb(213,201,54)"/><text text-anchor="left" x="126.00" y="975.50" 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>deno_core_http_bench`core::mem::replace::h6cc7c8ccb963b025 (1 samples, 0.01%)</title><rect x="123" y="1029" width="0" height="15" fill="rgb(244,137,42)"/><text text-anchor="left" x="126.00" y="1039.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hebfe925debcf7b72 (3 samples, 0.03%)</title><rect x="124" y="965" width="0" height="15" fill="rgb(241,171,4)"/><text text-anchor="left" x="127.00" y="975.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="124" y="949" width="0" height="15" fill="rgb(243,101,50)"/><text text-anchor="left" x="127.00" y="959.50" 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>deno_core_http_bench`core::ptr::read::hf2207bcf50c5c611 (2 samples, 0.02%)</title><rect x="124" y="965" width="0" height="15" fill="rgb(216,137,25)"/><text text-anchor="left" x="127.00" y="975.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hebfe925debcf7b72 (1 samples, 0.01%)</title><rect x="124" y="949" width="0" height="15" fill="rgb(244,136,45)"/><text text-anchor="left" x="127.00" y="959.50" 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>deno_core_http_bench`core::ptr::write::h8ed76fde2b4bb521 (1 samples, 0.01%)</title><rect x="124" y="965" width="0" height="15" fill="rgb(210,13,48)"/><text text-anchor="left" x="127.00" y="975.50" 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>deno_core_http_bench`core::mem::replace::h6cc7c8ccb963b025 (7 samples, 0.07%)</title><rect x="124" y="1013" width="0" height="15" fill="rgb(226,132,25)"/><text text-anchor="left" x="127.00" y="1023.50" 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>deno_core_http_bench`core::mem::swap::he5e9ad6acfc47558 (7 samples, 0.07%)</title><rect x="124" y="997" width="0" height="15" fill="rgb(219,124,43)"/><text text-anchor="left" x="127.00" y="1007.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h2144b7913c8918b9 (7 samples, 0.07%)</title><rect x="124" y="981" width="0" height="15" fill="rgb(235,210,42)"/><text text-anchor="left" x="127.00" y="991.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="124" y="965" width="0" height="15" fill="rgb(242,118,37)"/><text text-anchor="left" x="127.00" y="975.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h672a0c4531347e03 (10 samples, 0.10%)</title><rect x="123" y="1029" width="1" height="15" fill="rgb(233,48,6)"/><text text-anchor="left" x="126.00" y="1039.50" 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>deno_core_http_bench`core::mem::swap::he5e9ad6acfc47558 (1 samples, 0.01%)</title><rect x="124" y="1013" width="0" height="15" fill="rgb(217,155,44)"/><text text-anchor="left" x="127.00" y="1023.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::hb8e67124967ff4ef (2 samples, 0.02%)</title><rect x="124" y="1029" width="1" height="15" fill="rgb(228,45,15)"/><text text-anchor="left" x="127.00" y="1039.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::hde6b92ba1911a7c7 (1 samples, 0.01%)</title><rect x="125" y="1029" width="0" height="15" fill="rgb(243,210,54)"/><text text-anchor="left" x="128.00" y="1039.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h672a0c4531347e03 (2 samples, 0.02%)</title><rect x="125" y="997" width="0" height="15" fill="rgb(219,213,31)"/><text text-anchor="left" x="128.00" y="1007.50" 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>deno_core_http_bench`core::mem::replace::h6cc7c8ccb963b025 (2 samples, 0.02%)</title><rect x="125" y="981" width="0" height="15" fill="rgb(208,227,27)"/><text text-anchor="left" x="128.00" y="991.50" 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>deno_core_http_bench`core::mem::swap::he5e9ad6acfc47558 (1 samples, 0.01%)</title><rect x="125" y="965" width="0" height="15" fill="rgb(215,199,20)"/><text text-anchor="left" x="128.00" y="975.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h2144b7913c8918b9 (1 samples, 0.01%)</title><rect x="125" y="949" width="0" height="15" fill="rgb(227,176,8)"/><text text-anchor="left" x="128.00" y="959.50" 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>deno_core_http_bench`core::ptr::read::hf2207bcf50c5c611 (1 samples, 0.01%)</title><rect x="125" y="933" width="0" height="15" fill="rgb(212,15,12)"/><text text-anchor="left" x="128.00" y="943.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..Scheduler$LT$U$GT$..tick..Bomb$LT$U$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h5e49448ad7722109 (3 samples, 0.03%)</title><rect x="125" y="1013" width="0" height="15" fill="rgb(240,117,21)"/><text text-anchor="left" x="128.00" y="1023.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h82fc15ce1c89eb84 (1 samples, 0.01%)</title><rect x="125" y="997" width="0" height="15" fill="rgb(205,126,5)"/><text text-anchor="left" x="128.00" y="1007.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5e1453a405506eab (4 samples, 0.04%)</title><rect x="125" y="1029" width="0" height="15" fill="rgb(238,57,2)"/><text text-anchor="left" x="128.00" y="1039.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h82fc15ce1c89eb84 (1 samples, 0.01%)</title><rect x="125" y="1013" width="0" height="15" fill="rgb(238,53,14)"/><text text-anchor="left" x="128.00" y="1023.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h82fc15ce1c89eb84 (1 samples, 0.01%)</title><rect x="125" y="1029" width="0" height="15" fill="rgb(243,208,0)"/><text text-anchor="left" x="128.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::swap::hda08049ec7c36c2c (2 samples, 0.02%)</title><rect x="125" y="1029" width="1" height="15" fill="rgb(214,42,41)"/><text text-anchor="left" x="128.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::atomic_swap::hc9e2e3028ad6949a (1 samples, 0.01%)</title><rect x="125" y="1013" width="1" height="15" fill="rgb(209,71,41)"/><text text-anchor="left" x="128.00" y="1023.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::hc6330a9a8dfed0af (1 samples, 0.01%)</title><rect x="126" y="1029" width="0" height="15" fill="rgb(251,124,14)"/><text text-anchor="left" x="129.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_add::hd0a9c2195b5e909d (1 samples, 0.01%)</title><rect x="126" y="1029" width="0" height="15" fill="rgb(243,228,42)"/><text text-anchor="left" x="129.00" y="1039.50" 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>deno_core_http_bench`core::sync::atomic::atomic_add::h4e00f29987451464 (1 samples, 0.01%)</title><rect x="126" y="1013" width="0" height="15" fill="rgb(229,167,9)"/><text text-anchor="left" x="129.00" y="1023.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::with::heb1ec8592ecb1ba0 (1 samples, 0.01%)</title><rect x="126" y="1029" width="0" height="15" fill="rgb(217,180,53)"/><text text-anchor="left" x="129.00" y="1039.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::expect::h6a83e36d11c4527e (1 samples, 0.01%)</title><rect x="126" y="997" width="0" height="15" fill="rgb(249,164,23)"/><text text-anchor="left" x="129.00" y="1007.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h0d6b03e701fa8373 (1 samples, 0.01%)</title><rect x="127" y="981" width="0" height="15" fill="rgb(219,110,21)"/><text text-anchor="left" x="130.00" y="991.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hc3dc817da62d803f (2 samples, 0.02%)</title><rect x="127" y="885" width="0" height="15" fill="rgb(242,101,14)"/><text text-anchor="left" x="130.00" y="895.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="127" y="869" width="0" height="15" fill="rgb(211,126,45)"/><text text-anchor="left" x="130.00" y="879.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hc3dc817da62d803f (1 samples, 0.01%)</title><rect x="127" y="869" width="0" height="15" fill="rgb(254,21,42)"/><text text-anchor="left" x="130.00" y="879.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h0d6b03e701fa8373 (5 samples, 0.05%)</title><rect x="127" y="965" width="0" height="15" fill="rgb(207,9,52)"/><text text-anchor="left" x="130.00" y="975.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h68c096dae0d0c91b (5 samples, 0.05%)</title><rect x="127" y="949" width="0" height="15" fill="rgb(212,219,19)"/><text text-anchor="left" x="130.00" y="959.50" 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>deno_core_http_bench`core::mem::replace::hc72b833b9048b3db (4 samples, 0.04%)</title><rect x="127" y="933" width="0" height="15" fill="rgb(252,59,54)"/><text text-anchor="left" x="130.00" y="943.50" 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>deno_core_http_bench`core::mem::swap::h503ecbc5c916f7b8 (4 samples, 0.04%)</title><rect x="127" y="917" width="0" height="15" fill="rgb(210,59,54)"/><text text-anchor="left" x="130.00" y="927.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h4b6c36188d33aba6 (4 samples, 0.04%)</title><rect x="127" y="901" width="0" height="15" fill="rgb(248,229,14)"/><text text-anchor="left" x="130.00" y="911.50" 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>deno_core_http_bench`core::ptr::read::h6281592d1fdb57ef (2 samples, 0.02%)</title><rect x="127" y="885" width="0" height="15" fill="rgb(249,8,1)"/><text text-anchor="left" x="130.00" y="895.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="127" y="869" width="0" height="15" fill="rgb(221,40,52)"/><text text-anchor="left" x="130.00" y="879.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8ad32bf0a468d52c (3 samples, 0.03%)</title><rect x="127" y="965" width="1" height="15" fill="rgb(254,67,12)"/><text text-anchor="left" x="130.00" y="975.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h6834e52b2d4343c1 (1 samples, 0.01%)</title><rect x="128" y="869" width="0" height="15" fill="rgb(210,58,14)"/><text text-anchor="left" x="131.00" y="879.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h13125b3eaabc358e (2 samples, 0.02%)</title><rect x="128" y="949" width="0" height="15" fill="rgb(237,55,43)"/><text text-anchor="left" x="131.00" y="959.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::he5da695aea34c92a (2 samples, 0.02%)</title><rect x="128" y="933" width="0" height="15" fill="rgb(238,50,24)"/><text text-anchor="left" x="131.00" y="943.50" 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>deno_core_http_bench`core::mem::replace::h58fa76b8036e15f2 (2 samples, 0.02%)</title><rect x="128" y="917" width="0" height="15" fill="rgb(206,167,31)"/><text text-anchor="left" x="131.00" y="927.50" 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>deno_core_http_bench`core::mem::swap::h5553f15b40447c35 (2 samples, 0.02%)</title><rect x="128" y="901" width="0" height="15" fill="rgb(247,216,14)"/><text text-anchor="left" x="131.00" y="911.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h28e41972319b3e2e (2 samples, 0.02%)</title><rect x="128" y="885" width="0" height="15" fill="rgb(254,160,38)"/><text text-anchor="left" x="131.00" y="895.50" 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>deno_core_http_bench`core::ptr::read::h23eef85901e1020d (1 samples, 0.01%)</title><rect x="128" y="869" width="0" height="15" fill="rgb(227,168,22)"/><text text-anchor="left" x="131.00" y="879.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h24952c245582b4bd (1 samples, 0.01%)</title><rect x="128" y="885" width="0" height="15" fill="rgb(219,64,18)"/><text text-anchor="left" x="131.00" y="895.50" 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>deno_core_http_bench`core::ptr::read::h6281592d1fdb57ef (1 samples, 0.01%)</title><rect x="128" y="853" width="0" height="15" fill="rgb(211,102,3)"/><text text-anchor="left" x="131.00" y="863.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hc3dc817da62d803f (1 samples, 0.01%)</title><rect x="128" y="837" width="0" height="15" fill="rgb(233,91,31)"/><text text-anchor="left" x="131.00" y="847.50" 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>deno_core_http_bench`core::mem::size_of::h607e02ac5141e381 (1 samples, 0.01%)</title><rect x="128" y="837" width="1" height="15" fill="rgb(211,69,25)"/><text text-anchor="left" x="131.00" y="847.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h68c096dae0d0c91b (5 samples, 0.05%)</title><rect x="128" y="901" width="1" height="15" fill="rgb(252,134,36)"/><text text-anchor="left" x="131.00" y="911.50" 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>deno_core_http_bench`core::mem::replace::hc72b833b9048b3db (4 samples, 0.04%)</title><rect x="128" y="885" width="1" height="15" fill="rgb(217,193,11)"/><text text-anchor="left" x="131.00" y="895.50" 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>deno_core_http_bench`core::mem::swap::h503ecbc5c916f7b8 (4 samples, 0.04%)</title><rect x="128" y="869" width="1" height="15" fill="rgb(227,43,18)"/><text text-anchor="left" x="131.00" y="879.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h4b6c36188d33aba6 (3 samples, 0.03%)</title><rect x="128" y="853" width="1" height="15" fill="rgb(251,53,8)"/><text text-anchor="left" x="131.00" y="863.50" 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>deno_core_http_bench`core::ptr::read::h6281592d1fdb57ef (1 samples, 0.01%)</title><rect x="129" y="837" width="0" height="15" fill="rgb(220,42,39)"/><text text-anchor="left" x="132.00" y="847.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h0d6b03e701fa8373 (7 samples, 0.07%)</title><rect x="128" y="917" width="1" height="15" fill="rgb(211,226,30)"/><text text-anchor="left" x="131.00" y="927.50" 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>deno_core_http_bench`core::mem::drop::h19238b0f165abbcd (2 samples, 0.02%)</title><rect x="129" y="901" width="0" height="15" fill="rgb(218,52,35)"/><text text-anchor="left" x="132.00" y="911.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hfd297ebac5d30eaf (1 samples, 0.01%)</title><rect x="129" y="885" width="0" height="15" fill="rgb(226,154,5)"/><text text-anchor="left" x="132.00" y="895.50" 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>deno_core_http_bench`core::mem::size_of::h770b52e467c6682d (2 samples, 0.02%)</title><rect x="129" y="853" width="0" height="15" fill="rgb(227,165,12)"/><text text-anchor="left" x="132.00" y="863.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h6834e52b2d4343c1 (1 samples, 0.01%)</title><rect x="130" y="837" width="0" height="15" fill="rgb(226,130,9)"/><text text-anchor="left" x="133.00" y="847.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="130" y="821" width="0" height="15" fill="rgb(224,87,0)"/><text text-anchor="left" x="133.00" y="831.50" 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>deno_core_http_bench`core::mem::replace::h58fa76b8036e15f2 (6 samples, 0.06%)</title><rect x="129" y="885" width="1" height="15" fill="rgb(206,11,54)"/><text text-anchor="left" x="132.00" y="895.50" 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>deno_core_http_bench`core::mem::swap::h5553f15b40447c35 (6 samples, 0.06%)</title><rect x="129" y="869" width="1" height="15" fill="rgb(228,17,17)"/><text text-anchor="left" x="132.00" y="879.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h28e41972319b3e2e (4 samples, 0.04%)</title><rect x="129" y="853" width="1" height="15" fill="rgb(253,98,21)"/><text text-anchor="left" x="132.00" y="863.50" 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>deno_core_http_bench`core::ptr::read::h23eef85901e1020d (2 samples, 0.02%)</title><rect x="130" y="837" width="0" height="15" fill="rgb(210,85,53)"/><text text-anchor="left" x="133.00" y="847.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h6834e52b2d4343c1 (2 samples, 0.02%)</title><rect x="130" y="821" width="0" height="15" fill="rgb(233,215,45)"/><text text-anchor="left" x="133.00" y="831.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="130" y="805" width="0" height="15" fill="rgb(243,14,49)"/><text text-anchor="left" x="133.00" y="815.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::he5da695aea34c92a (9 samples, 0.09%)</title><rect x="129" y="901" width="1" height="15" fill="rgb(221,76,12)"/><text text-anchor="left" x="132.00" y="911.50" 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>deno_core_http_bench`core::mem::swap::h5553f15b40447c35 (1 samples, 0.01%)</title><rect x="130" y="885" width="0" height="15" fill="rgb(221,155,11)"/><text text-anchor="left" x="133.00" y="895.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..CurrentRunner..set_spawn..Reset$u20$as$u20$core..ops..drop..Drop$GT$::drop::h43587286a3783539 (18 samples, 0.18%)</title><rect x="128" y="933" width="2" height="15" fill="rgb(248,77,12)"/><text text-anchor="left" x="131.00" y="943.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h13125b3eaabc358e (10 samples, 0.10%)</title><rect x="129" y="917" width="1" height="15" fill="rgb(239,44,14)"/><text text-anchor="left" x="132.00" y="927.50" 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>deno_core_http_bench`core::mem::replace::h58fa76b8036e15f2 (1 samples, 0.01%)</title><rect x="130" y="901" width="0" height="15" fill="rgb(232,175,52)"/><text text-anchor="left" x="133.00" y="911.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8ad32bf0a468d52c (19 samples, 0.19%)</title><rect x="128" y="949" width="2" height="15" fill="rgb(224,70,54)"/><text text-anchor="left" x="131.00" y="959.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h13125b3eaabc358e (1 samples, 0.01%)</title><rect x="130" y="933" width="0" height="15" fill="rgb(238,86,12)"/><text text-anchor="left" x="133.00" y="943.50" 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>deno_core_http_bench`futures::task_impl::Spawn$LT$T$GT$::poll_future_notify::h80a61ba444bd7172 (1 samples, 0.01%)</title><rect x="130" y="917" width="1" height="15" fill="rgb(236,26,40)"/><text text-anchor="left" x="133.00" y="927.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..set..Reset$u20$as$u20$core..ops..drop..Drop$GT$::drop::haeb8df53d8fb3ad5 (2 samples, 0.02%)</title><rect x="131" y="837" width="0" height="15" fill="rgb(225,78,29)"/><text text-anchor="left" x="134.00" y="847.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb9274ff275e36e81 (1 samples, 0.01%)</title><rect x="131" y="741" width="0" height="15" fill="rgb(233,0,36)"/><text text-anchor="left" x="134.00" y="751.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (3 samples, 0.03%)</title><rect x="131" y="837" width="0" height="15" fill="rgb(206,155,54)"/><text text-anchor="left" x="134.00" y="847.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h30391eb5e5850985 (3 samples, 0.03%)</title><rect x="131" y="821" width="0" height="15" fill="rgb(254,180,51)"/><text text-anchor="left" x="134.00" y="831.50" 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>deno_core_http_bench`core::mem::replace::h7717fd64d3136c91 (3 samples, 0.03%)</title><rect x="131" y="805" width="0" height="15" fill="rgb(222,107,21)"/><text text-anchor="left" x="134.00" y="815.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (3 samples, 0.03%)</title><rect x="131" y="789" width="0" height="15" fill="rgb(234,171,43)"/><text text-anchor="left" x="134.00" y="799.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (2 samples, 0.02%)</title><rect x="131" y="773" width="0" height="15" fill="rgb(219,135,44)"/><text text-anchor="left" x="134.00" y="783.50" 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>deno_core_http_bench`core::ptr::read::h4ec8a9a29f67cf99 (2 samples, 0.02%)</title><rect x="131" y="757" width="0" height="15" fill="rgb(241,133,5)"/><text text-anchor="left" x="134.00" y="767.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="131" y="741" width="0" height="15" fill="rgb(215,17,50)"/><text text-anchor="left" x="134.00" y="751.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hb3d053de19504f67 (1 samples, 0.01%)</title><rect x="132" y="773" width="0" height="15" fill="rgb(229,28,26)"/><text text-anchor="left" x="135.00" y="783.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb9274ff275e36e81 (1 samples, 0.01%)</title><rect x="132" y="725" width="0" height="15" fill="rgb(243,211,39)"/><text text-anchor="left" x="135.00" y="735.50" 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>deno_core_http_bench`core::mem::replace::h7717fd64d3136c91 (3 samples, 0.03%)</title><rect x="132" y="773" width="0" height="15" fill="rgb(249,102,51)"/><text text-anchor="left" x="135.00" y="783.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (3 samples, 0.03%)</title><rect x="132" y="757" width="0" height="15" fill="rgb(230,229,24)"/><text text-anchor="left" x="135.00" y="767.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (3 samples, 0.03%)</title><rect x="132" y="741" width="0" height="15" fill="rgb(248,66,41)"/><text text-anchor="left" x="135.00" y="751.50" 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>deno_core_http_bench`core::ptr::read::h4ec8a9a29f67cf99 (2 samples, 0.02%)</title><rect x="132" y="725" width="0" height="15" fill="rgb(206,135,29)"/><text text-anchor="left" x="135.00" y="735.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="132" y="709" width="0" height="15" fill="rgb(249,184,38)"/><text text-anchor="left" x="135.00" y="719.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..set..Reset$u20$as$u20$core..ops..drop..Drop$GT$::drop::haeb8df53d8fb3ad5 (7 samples, 0.07%)</title><rect x="131" y="821" width="1" height="15" fill="rgb(232,84,38)"/><text text-anchor="left" x="134.00" y="831.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (6 samples, 0.06%)</title><rect x="132" y="805" width="0" height="15" fill="rgb(239,32,7)"/><text text-anchor="left" x="135.00" y="815.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h30391eb5e5850985 (6 samples, 0.06%)</title><rect x="132" y="789" width="0" height="15" fill="rgb(228,175,28)"/><text text-anchor="left" x="135.00" y="799.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (1 samples, 0.01%)</title><rect x="132" y="773" width="0" height="15" fill="rgb(229,116,18)"/><text text-anchor="left" x="135.00" y="783.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h1bf63c9c56fdcc0e (8 samples, 0.08%)</title><rect x="131" y="837" width="1" height="15" fill="rgb(210,111,37)"/><text text-anchor="left" x="134.00" y="847.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (1 samples, 0.01%)</title><rect x="132" y="821" width="0" height="15" fill="rgb(209,85,48)"/><text text-anchor="left" x="135.00" y="831.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h0a05c6413e64be2f (1 samples, 0.01%)</title><rect x="133" y="757" width="0" height="15" fill="rgb(238,208,8)"/><text text-anchor="left" x="136.00" y="767.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h17daa7c0db861cd2 (2 samples, 0.02%)</title><rect x="133" y="741" width="0" height="15" fill="rgb(249,175,2)"/><text text-anchor="left" x="136.00" y="751.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h76c2a9afc046bb3b (2 samples, 0.02%)</title><rect x="133" y="741" width="0" height="15" fill="rgb(226,199,9)"/><text text-anchor="left" x="136.00" y="751.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h23ad6870ff0444cb (5 samples, 0.05%)</title><rect x="137" y="725" width="1" height="15" fill="rgb(239,0,4)"/><text text-anchor="left" x="140.00" y="735.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h76c2a9afc046bb3b (2 samples, 0.02%)</title><rect x="138" y="725" width="0" height="15" fill="rgb(212,29,16)"/><text text-anchor="left" x="141.00" y="735.50" 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>deno_core_http_bench`_$LT$futures..stream..futures_unordered..FuturesUnordered$LT$T$GT$$u20$as$u20$futures..stream..Stream$GT$::poll::h73ca1812a12442ea (6 samples, 0.06%)</title><rect x="138" y="725" width="1" height="15" fill="rgb(252,174,22)"/><text text-anchor="left" x="141.00" y="735.50" 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>deno_core_http_bench`_$LT$$LT$futures..stream..futures_unordered..FuturesUnordered$LT$T$GT$$u20$as$u20$futures..stream..Stream$GT$..poll..Bomb$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h3024a70a819cc349 (1 samples, 0.01%)</title><rect x="145" y="709" width="0" height="15" fill="rgb(251,65,25)"/><text text-anchor="left" x="148.00" y="719.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hc1461d69384ee8cb (9 samples, 0.09%)</title><rect x="146" y="693" width="1" height="15" fill="rgb(212,62,13)"/><text text-anchor="left" x="149.00" y="703.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h2b80f9be5006c330 (4 samples, 0.04%)</title><rect x="146" y="677" width="1" height="15" fill="rgb(246,129,13)"/><text text-anchor="left" x="149.00" y="687.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h60f83d938d2726f1 (1 samples, 0.01%)</title><rect x="147" y="661" width="0" height="15" fill="rgb(240,166,17)"/><text text-anchor="left" x="150.00" y="671.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h23ad6870ff0444cb (13 samples, 0.13%)</title><rect x="145" y="709" width="2" height="15" fill="rgb(214,169,50)"/><text text-anchor="left" x="148.00" y="719.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h2b80f9be5006c330 (1 samples, 0.01%)</title><rect x="147" y="693" width="0" height="15" fill="rgb(219,118,30)"/><text text-anchor="left" x="150.00" y="703.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h74ffa4e53f93122b (2 samples, 0.02%)</title><rect x="147" y="709" width="0" height="15" fill="rgb(243,30,13)"/><text text-anchor="left" x="150.00" y="719.50" 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>deno_core_http_bench`core::mem::replace::hf7e0d875d680eba9 (2 samples, 0.02%)</title><rect x="147" y="709" width="0" height="15" fill="rgb(216,206,10)"/><text text-anchor="left" x="150.00" y="719.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h5f43121f855e84fb (5 samples, 0.05%)</title><rect x="147" y="709" width="1" height="15" fill="rgb(221,32,17)"/><text text-anchor="left" x="150.00" y="719.50" 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>deno_core_http_bench`core::ptr::read::h4c4c0191f96dd37d (1 samples, 0.01%)</title><rect x="149" y="661" width="0" height="15" fill="rgb(228,96,48)"/><text text-anchor="left" x="152.00" y="671.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hd885cce9c14f6137 (3 samples, 0.03%)</title><rect x="149" y="645" width="0" height="15" fill="rgb(217,136,52)"/><text text-anchor="left" x="152.00" y="655.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="149" y="629" width="0" height="15" fill="rgb(222,106,33)"/><text text-anchor="left" x="152.00" y="639.50" 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>deno_core_http_bench`core::mem::size_of::h11d69b2226b94d47 (1 samples, 0.01%)</title><rect x="149" y="645" width="0" height="15" fill="rgb(238,18,3)"/><text text-anchor="left" x="152.00" y="655.50" 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>deno_core_http_bench`core::ptr::read::h4c4c0191f96dd37d (3 samples, 0.03%)</title><rect x="149" y="645" width="1" height="15" fill="rgb(210,70,32)"/><text text-anchor="left" x="152.00" y="655.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hd885cce9c14f6137 (2 samples, 0.02%)</title><rect x="149" y="629" width="1" height="15" fill="rgb(227,125,15)"/><text text-anchor="left" x="152.00" y="639.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="149" y="613" width="1" height="15" fill="rgb(242,214,13)"/><text text-anchor="left" x="152.00" y="623.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::hf767cb17d4220aec (15 samples, 0.15%)</title><rect x="148" y="709" width="2" height="15" fill="rgb(220,114,24)"/><text text-anchor="left" x="151.00" y="719.50" 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>deno_core_http_bench`core::mem::replace::hf7e0d875d680eba9 (13 samples, 0.13%)</title><rect x="148" y="693" width="2" height="15" fill="rgb(226,145,31)"/><text text-anchor="left" x="151.00" y="703.50" 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>deno_core_http_bench`core::mem::swap::hb42a6af08d5f0a4d (11 samples, 0.11%)</title><rect x="148" y="677" width="2" height="15" fill="rgb(224,24,6)"/><text text-anchor="left" x="151.00" y="687.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc111bd0777cd3d68 (9 samples, 0.09%)</title><rect x="149" y="661" width="1" height="15" fill="rgb(219,193,22)"/><text text-anchor="left" x="152.00" y="671.50" 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>deno_core_http_bench`core::ptr::write::hdbb2eee023278dbd (1 samples, 0.01%)</title><rect x="150" y="645" width="0" height="15" fill="rgb(225,164,15)"/><text text-anchor="left" x="153.00" y="655.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::he75eed40c5245815 (7 samples, 0.07%)</title><rect x="150" y="709" width="0" height="15" fill="rgb(225,201,54)"/><text text-anchor="left" x="153.00" y="719.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h5d91f1b3af872039 (1 samples, 0.01%)</title><rect x="150" y="709" width="1" height="15" fill="rgb(216,61,48)"/><text text-anchor="left" x="153.00" y="719.50" 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>deno_core_http_bench`core::ptr::null_mut::h1110e21324c5ef9a (1 samples, 0.01%)</title><rect x="151" y="709" width="0" height="15" fill="rgb(248,75,40)"/><text text-anchor="left" x="154.00" y="719.50" 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>deno_core_http_bench`core::alloc::Layout::align::hae36a57ddcfaab21 (2 samples, 0.02%)</title><rect x="152" y="661" width="1" height="15" fill="rgb(243,66,42)"/><text text-anchor="left" x="155.00" y="671.50" 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>libsystem_malloc.dylib`default_zone_free_definite_size (1 samples, 0.01%)</title><rect x="153" y="661" width="0" height="15" fill="rgb(226,188,43)"/><text text-anchor="left" x="156.00" y="671.50" 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>libsystem_malloc.dylib`free (3 samples, 0.03%)</title><rect x="153" y="661" width="0" height="15" fill="rgb(223,133,11)"/><text text-anchor="left" x="156.00" y="671.50" 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>libsystem_malloc.dylib`tiny_size (2 samples, 0.02%)</title><rect x="153" y="645" width="0" height="15" fill="rgb(211,146,43)"/><text text-anchor="left" x="156.00" y="655.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.02%)</title><rect x="154" y="645" width="1" height="15" fill="rgb(245,117,34)"/><text text-anchor="left" x="157.00" y="655.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.01%)</title><rect x="155" y="645" width="0" height="15" fill="rgb(238,48,31)"/><text text-anchor="left" x="158.00" y="655.50" 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>libsystem_malloc.dylib`free_tiny (25 samples, 0.25%)</title><rect x="153" y="661" width="3" height="15" fill="rgb(254,38,4)"/><text text-anchor="left" x="156.00" y="671.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (11 samples, 0.11%)</title><rect x="155" y="645" width="1" height="15" fill="rgb(217,204,52)"/><text text-anchor="left" x="158.00" y="655.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (6 samples, 0.06%)</title><rect x="155" y="629" width="1" height="15" fill="rgb(239,163,0)"/><text text-anchor="left" x="158.00" y="639.50" 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>deno_core_http_bench`alloc::alloc::dealloc::hec9ba75141bec4e0 (33 samples, 0.32%)</title><rect x="152" y="677" width="4" height="15" fill="rgb(228,3,36)"/><text text-anchor="left" x="155.00" y="687.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.01%)</title><rect x="156" y="661" width="0" height="15" fill="rgb(239,66,12)"/><text text-anchor="left" x="159.00" y="671.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::h2da81e1ce773df26 (3 samples, 0.03%)</title><rect x="156" y="677" width="0" height="15" fill="rgb(212,87,49)"/><text text-anchor="left" x="159.00" y="687.50" 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>deno_core_http_bench`alloc::alloc::box_free::hb312c0bac6f11cd4 (42 samples, 0.41%)</title><rect x="152" y="693" width="5" height="15" fill="rgb(219,184,15)"/><text text-anchor="left" x="155.00" y="703.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::hdf7656936093fc73 (1 samples, 0.01%)</title><rect x="156" y="677" width="1" height="15" fill="rgb(253,207,22)"/><text text-anchor="left" x="159.00" y="687.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::hdf7656936093fc73 (1 samples, 0.01%)</title><rect x="157" y="693" width="0" height="15" fill="rgb(250,150,45)"/><text text-anchor="left" x="160.00" y="703.50" 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>deno_core_http_bench`core::alloc::Layout::align::hae36a57ddcfaab21 (1 samples, 0.01%)</title><rect x="157" y="629" width="0" height="15" fill="rgb(219,123,17)"/><text text-anchor="left" x="160.00" y="639.50" 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>libsystem_malloc.dylib`free (6 samples, 0.06%)</title><rect x="157" y="629" width="1" height="15" fill="rgb(238,12,41)"/><text text-anchor="left" x="160.00" y="639.50" 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>libsystem_malloc.dylib`tiny_size (3 samples, 0.03%)</title><rect x="158" y="613" width="0" height="15" fill="rgb(224,169,40)"/><text text-anchor="left" x="161.00" y="623.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.02%)</title><rect x="159" y="613" width="0" height="15" fill="rgb(221,228,52)"/><text text-anchor="left" x="162.00" y="623.50" 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>deno_core_http_bench`alloc::alloc::dealloc::hec9ba75141bec4e0 (25 samples, 0.25%)</title><rect x="157" y="645" width="3" height="15" fill="rgb(252,15,42)"/><text text-anchor="left" x="160.00" y="655.50" 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>libsystem_malloc.dylib`free_tiny (16 samples, 0.16%)</title><rect x="158" y="629" width="2" height="15" fill="rgb(213,194,18)"/><text text-anchor="left" x="161.00" y="639.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (6 samples, 0.06%)</title><rect x="159" y="613" width="1" height="15" fill="rgb(246,12,0)"/><text text-anchor="left" x="162.00" y="623.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.01%)</title><rect x="160" y="597" width="0" height="15" fill="rgb(236,227,2)"/><text text-anchor="left" x="163.00" y="607.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::h2da81e1ce773df26 (1 samples, 0.01%)</title><rect x="160" y="645" width="0" height="15" fill="rgb(251,43,25)"/><text text-anchor="left" x="163.00" y="655.50" 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>deno_core_http_bench`alloc::alloc::box_free::hef874f982c3f0076 (30 samples, 0.29%)</title><rect x="157" y="661" width="3" height="15" fill="rgb(235,48,11)"/><text text-anchor="left" x="160.00" y="671.50" 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>libsystem_malloc.dylib`szone_free_definite_size (2 samples, 0.02%)</title><rect x="160" y="645" width="0" height="15" fill="rgb(209,68,51)"/><text text-anchor="left" x="163.00" y="655.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h9e6f7ed7e833d5bc (3 samples, 0.03%)</title><rect x="160" y="661" width="1" height="15" fill="rgb(216,5,3)"/><text text-anchor="left" x="163.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h207a6e600a860ebc (1 samples, 0.01%)</title><rect x="161" y="645" width="0" height="15" fill="rgb(254,73,21)"/><text text-anchor="left" x="164.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h09c2963091ea218b (1 samples, 0.01%)</title><rect x="161" y="629" width="0" height="15" fill="rgb(217,39,49)"/><text text-anchor="left" x="164.00" y="639.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h594d7ea584dc1540 (92 samples, 0.90%)</title><rect x="151" y="709" width="10" height="15" fill="rgb(249,187,43)"/><text text-anchor="left" x="154.00" y="719.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h393771ea24af29e2 (40 samples, 0.39%)</title><rect x="157" y="693" width="4" height="15" fill="rgb(210,154,16)"/><text text-anchor="left" x="160.00" y="703.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hd7dd407434f7110c (40 samples, 0.39%)</title><rect x="157" y="677" width="4" height="15" fill="rgb(243,112,5)"/><text text-anchor="left" x="160.00" y="687.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h9fe935ca301beecb (6 samples, 0.06%)</title><rect x="161" y="661" width="0" height="15" fill="rgb(208,72,42)"/><text text-anchor="left" x="164.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h40caf59cafb99e4f (5 samples, 0.05%)</title><rect x="161" y="645" width="0" height="15" fill="rgb(241,100,46)"/><text text-anchor="left" x="164.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h207a6e600a860ebc (2 samples, 0.02%)</title><rect x="161" y="629" width="0" height="15" fill="rgb(253,94,28)"/><text text-anchor="left" x="164.00" y="639.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h09c2963091ea218b (1 samples, 0.01%)</title><rect x="161" y="613" width="0" height="15" fill="rgb(210,18,4)"/><text text-anchor="left" x="164.00" y="623.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (1 samples, 0.01%)</title><rect x="162" y="677" width="1" height="15" fill="rgb(237,2,4)"/><text text-anchor="left" x="165.00" y="687.50" 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>deno_core_http_bench`core::mem::drop::h759c634793f3f471 (3 samples, 0.03%)</title><rect x="163" y="677" width="0" height="15" fill="rgb(226,69,21)"/><text text-anchor="left" x="166.00" y="687.50" 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>deno_core_http_bench`core::mem::replace::h1423ae460b657b4d (2 samples, 0.02%)</title><rect x="163" y="677" width="0" height="15" fill="rgb(227,126,14)"/><text text-anchor="left" x="166.00" y="687.50" 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>deno_core_http_bench`core::mem::size_of::h95e932219d9515f6 (3 samples, 0.03%)</title><rect x="164" y="629" width="0" height="15" fill="rgb(254,24,41)"/><text text-anchor="left" x="167.00" y="639.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h7d5d83c58581962d (1 samples, 0.01%)</title><rect x="164" y="613" width="0" height="15" fill="rgb(248,214,53)"/><text text-anchor="left" x="167.00" y="623.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="164" y="597" width="0" height="15" fill="rgb(219,204,6)"/><text text-anchor="left" x="167.00" y="607.50" 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>deno_core_http_bench`core::mem::size_of::h95e932219d9515f6 (1 samples, 0.01%)</title><rect x="164" y="613" width="0" height="15" fill="rgb(243,68,32)"/><text text-anchor="left" x="167.00" y="623.50" 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>deno_core_http_bench`core::ptr::read::hc17f2a6571a4618e (6 samples, 0.06%)</title><rect x="164" y="613" width="1" height="15" fill="rgb(236,20,42)"/><text text-anchor="left" x="167.00" y="623.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h7d5d83c58581962d (2 samples, 0.02%)</title><rect x="165" y="597" width="0" height="15" fill="rgb(219,151,48)"/><text text-anchor="left" x="168.00" y="607.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="165" y="581" width="0" height="15" fill="rgb(250,133,41)"/><text text-anchor="left" x="168.00" y="591.50" 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>deno_core_http_bench`core::mem::swap::hca93af930c7c8ffa (17 samples, 0.17%)</title><rect x="164" y="645" width="2" height="15" fill="rgb(239,175,4)"/><text text-anchor="left" x="167.00" y="655.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hacb3aca9697e42ae (14 samples, 0.14%)</title><rect x="164" y="629" width="2" height="15" fill="rgb(218,75,19)"/><text text-anchor="left" x="167.00" y="639.50" 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>deno_core_http_bench`core::ptr::write::h30853b766b3afcf4 (4 samples, 0.04%)</title><rect x="165" y="613" width="1" height="15" fill="rgb(242,154,24)"/><text text-anchor="left" x="168.00" y="623.50" 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>deno_core_http_bench`core::mem::replace::h1423ae460b657b4d (20 samples, 0.20%)</title><rect x="163" y="661" width="3" height="15" fill="rgb(220,45,44)"/><text text-anchor="left" x="166.00" y="671.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hacb3aca9697e42ae (1 samples, 0.01%)</title><rect x="166" y="645" width="0" height="15" fill="rgb(237,84,28)"/><text text-anchor="left" x="169.00" y="655.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::hc06421c983b1f8fd (24 samples, 0.24%)</title><rect x="163" y="677" width="3" height="15" fill="rgb(248,218,31)"/><text text-anchor="left" x="166.00" y="687.50" 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>deno_core_http_bench`core::mem::swap::hca93af930c7c8ffa (1 samples, 0.01%)</title><rect x="166" y="661" width="0" height="15" fill="rgb(246,210,25)"/><text text-anchor="left" x="169.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::swap::h5109fc7540466c70 (4 samples, 0.04%)</title><rect x="166" y="677" width="0" height="15" fill="rgb(235,93,35)"/><text text-anchor="left" x="169.00" y="687.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (7 samples, 0.07%)</title><rect x="167" y="661" width="1" height="15" fill="rgb(228,24,11)"/><text text-anchor="left" x="170.00" y="671.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (5 samples, 0.05%)</title><rect x="167" y="645" width="1" height="15" fill="rgb(229,173,3)"/><text text-anchor="left" x="170.00" y="655.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (3 samples, 0.03%)</title><rect x="167" y="629" width="1" height="15" fill="rgb(228,162,39)"/><text text-anchor="left" x="170.00" y="639.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h8c705671395f0454 (1 samples, 0.01%)</title><rect x="168" y="613" width="0" height="15" fill="rgb(243,78,7)"/><text text-anchor="left" x="171.00" y="623.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7e92e4fb88f22065 (2 samples, 0.02%)</title><rect x="168" y="661" width="0" height="15" fill="rgb(249,194,40)"/><text text-anchor="left" x="171.00" y="671.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hbf926afcf7749375 (1 samples, 0.01%)</title><rect x="168" y="661" width="0" height="15" fill="rgb(227,16,4)"/><text text-anchor="left" x="171.00" y="671.50" 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>deno_core_http_bench`core::mem::drop::h759c634793f3f471 (2 samples, 0.02%)</title><rect x="168" y="661" width="0" height="15" fill="rgb(227,200,40)"/><text text-anchor="left" x="171.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hda0a81dc2674c5e8 (1 samples, 0.01%)</title><rect x="168" y="645" width="0" height="15" fill="rgb(239,171,52)"/><text text-anchor="left" x="171.00" y="655.50" 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>deno_core_http_bench`core::mem::replace::hf7e0d875d680eba9 (1 samples, 0.01%)</title><rect x="168" y="661" width="1" height="15" fill="rgb(217,179,21)"/><text text-anchor="left" x="171.00" y="671.50" 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>deno_core_http_bench`core::ptr::read::h4c4c0191f96dd37d (2 samples, 0.02%)</title><rect x="169" y="613" width="0" height="15" fill="rgb(251,167,53)"/><text text-anchor="left" x="172.00" y="623.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hd885cce9c14f6137 (5 samples, 0.05%)</title><rect x="169" y="597" width="1" height="15" fill="rgb(212,133,31)"/><text text-anchor="left" x="172.00" y="607.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="170" y="581" width="0" height="15" fill="rgb(249,180,19)"/><text text-anchor="left" x="173.00" y="591.50" 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>deno_core_http_bench`core::mem::size_of::h11d69b2226b94d47 (1 samples, 0.01%)</title><rect x="170" y="597" width="0" height="15" fill="rgb(223,29,17)"/><text text-anchor="left" x="173.00" y="607.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::hf767cb17d4220aec (19 samples, 0.19%)</title><rect x="169" y="661" width="2" height="15" fill="rgb(231,207,54)"/><text text-anchor="left" x="172.00" y="671.50" 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>deno_core_http_bench`core::mem::replace::hf7e0d875d680eba9 (19 samples, 0.19%)</title><rect x="169" y="645" width="2" height="15" fill="rgb(230,32,39)"/><text text-anchor="left" x="172.00" y="655.50" 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>deno_core_http_bench`core::mem::swap::hb42a6af08d5f0a4d (18 samples, 0.18%)</title><rect x="169" y="629" width="2" height="15" fill="rgb(247,131,50)"/><text text-anchor="left" x="172.00" y="639.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hc111bd0777cd3d68 (15 samples, 0.15%)</title><rect x="169" y="613" width="2" height="15" fill="rgb(209,184,35)"/><text text-anchor="left" x="172.00" y="623.50" 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>deno_core_http_bench`core::ptr::read::h4c4c0191f96dd37d (7 samples, 0.07%)</title><rect x="170" y="597" width="1" height="15" fill="rgb(254,218,22)"/><text text-anchor="left" x="173.00" y="607.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hd885cce9c14f6137 (4 samples, 0.04%)</title><rect x="170" y="581" width="1" height="15" fill="rgb(229,42,44)"/><text text-anchor="left" x="173.00" y="591.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="170" y="565" width="1" height="15" fill="rgb(241,6,33)"/><text text-anchor="left" x="173.00" y="575.50" 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>deno_core_http_bench`__rdl_dealloc (1 samples, 0.01%)</title><rect x="172" y="597" width="0" height="15" fill="rgb(213,54,5)"/><text text-anchor="left" x="175.00" y="607.50" 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>deno_core_http_bench`core::alloc::Layout::align::hae36a57ddcfaab21 (1 samples, 0.01%)</title><rect x="173" y="581" width="0" height="15" fill="rgb(211,134,24)"/><text text-anchor="left" x="176.00" y="591.50" 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>deno_core_http_bench`core::alloc::Layout::size::h745cdccf71ba83d4 (1 samples, 0.01%)</title><rect x="173" y="581" width="0" height="15" fill="rgb(236,203,51)"/><text text-anchor="left" x="176.00" y="591.50" 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>deno_core_http_bench`core::num::NonZeroUsize::get::h916ae305ec332e47 (5 samples, 0.05%)</title><rect x="173" y="581" width="1" height="15" fill="rgb(227,166,48)"/><text text-anchor="left" x="176.00" y="591.50" 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>libsystem_malloc.dylib`free (4 samples, 0.04%)</title><rect x="174" y="581" width="0" height="15" fill="rgb(208,116,27)"/><text text-anchor="left" x="177.00" y="591.50" 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>libsystem_malloc.dylib`tiny_size (4 samples, 0.04%)</title><rect x="174" y="565" width="0" height="15" fill="rgb(212,51,10)"/><text text-anchor="left" x="177.00" y="575.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.01%)</title><rect x="175" y="565" width="0" height="15" fill="rgb(225,77,36)"/><text text-anchor="left" x="178.00" y="575.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (3 samples, 0.03%)</title><rect x="175" y="565" width="1" height="15" fill="rgb(218,73,42)"/><text text-anchor="left" x="178.00" y="575.50" 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>deno_core_http_bench`alloc::alloc::dealloc::hec9ba75141bec4e0 (44 samples, 0.43%)</title><rect x="172" y="597" width="5" height="15" fill="rgb(247,125,21)"/><text text-anchor="left" x="175.00" y="607.50" 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>libsystem_malloc.dylib`free_tiny (28 samples, 0.27%)</title><rect x="174" y="581" width="3" height="15" fill="rgb(207,60,52)"/><text text-anchor="left" x="177.00" y="591.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (14 samples, 0.14%)</title><rect x="176" y="565" width="1" height="15" fill="rgb(232,199,45)"/><text text-anchor="left" x="179.00" y="575.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (4 samples, 0.04%)</title><rect x="177" y="549" width="0" height="15" fill="rgb(232,88,43)"/><text text-anchor="left" x="180.00" y="559.50" 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>deno_core_http_bench`core::alloc::Layout::align::hae36a57ddcfaab21 (1 samples, 0.01%)</title><rect x="177" y="597" width="0" height="15" fill="rgb(239,207,36)"/><text text-anchor="left" x="180.00" y="607.50" 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>deno_core_http_bench`_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::h9c449897190cc84f (48 samples, 0.47%)</title><rect x="172" y="613" width="6" height="15" fill="rgb(254,185,30)"/><text text-anchor="left" x="175.00" y="623.50" 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>libsystem_malloc.dylib`free (2 samples, 0.02%)</title><rect x="177" y="597" width="1" height="15" fill="rgb(220,91,54)"/><text text-anchor="left" x="180.00" y="607.50" 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>deno_core_http_bench`alloc::alloc::dealloc::hec9ba75141bec4e0 (1 samples, 0.01%)</title><rect x="178" y="613" width="0" height="15" fill="rgb(228,185,13)"/><text text-anchor="left" x="181.00" y="623.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (1 samples, 0.01%)</title><rect x="178" y="613" width="0" height="15" fill="rgb(233,216,23)"/><text text-anchor="left" x="181.00" y="623.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (1 samples, 0.01%)</title><rect x="178" y="597" width="0" height="15" fill="rgb(230,86,14)"/><text text-anchor="left" x="181.00" y="607.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h8c705671395f0454 (1 samples, 0.01%)</title><rect x="178" y="581" width="0" height="15" fill="rgb(240,176,49)"/><text text-anchor="left" x="181.00" y="591.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::h2da81e1ce773df26 (3 samples, 0.03%)</title><rect x="178" y="597" width="0" height="15" fill="rgb(213,154,9)"/><text text-anchor="left" x="181.00" y="607.50" 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>deno_core_http_bench`core::num::NonZeroUsize::new_unchecked::h97402490e06b7d36 (1 samples, 0.01%)</title><rect x="178" y="581" width="0" height="15" fill="rgb(219,22,0)"/><text text-anchor="left" x="181.00" y="591.50" 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>deno_core_http_bench`core::alloc::Layout::for_value::h0190542453fef081 (6 samples, 0.06%)</title><rect x="178" y="613" width="0" height="15" fill="rgb(235,46,51)"/><text text-anchor="left" x="181.00" y="623.50" 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>deno_core_http_bench`core::num::NonZeroUsize::new_unchecked::h97402490e06b7d36 (1 samples, 0.01%)</title><rect x="178" y="597" width="0" height="15" fill="rgb(208,226,35)"/><text text-anchor="left" x="181.00" y="607.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::h2da81e1ce773df26 (3 samples, 0.03%)</title><rect x="178" y="613" width="1" height="15" fill="rgb(220,193,28)"/><text text-anchor="left" x="181.00" y="623.50" 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>deno_core_http_bench`core::mem::size_of_val::h1832a878edf6481d (1 samples, 0.01%)</title><rect x="179" y="613" width="0" height="15" fill="rgb(250,166,54)"/><text text-anchor="left" x="182.00" y="623.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_mut::hcb98daac308013ac (3 samples, 0.03%)</title><rect x="179" y="613" width="0" height="15" fill="rgb(216,166,43)"/><text text-anchor="left" x="182.00" y="623.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h8c705671395f0454 (1 samples, 0.01%)</title><rect x="179" y="597" width="0" height="15" fill="rgb(239,114,30)"/><text text-anchor="left" x="182.00" y="607.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h8c705671395f0454 (1 samples, 0.01%)</title><rect x="179" y="613" width="0" height="15" fill="rgb(254,17,25)"/><text text-anchor="left" x="182.00" y="623.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (2 samples, 0.02%)</title><rect x="179" y="613" width="1" height="15" fill="rgb(220,11,42)"/><text text-anchor="left" x="182.00" y="623.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::new_unchecked::hefef987c363d1d01 (1 samples, 0.01%)</title><rect x="180" y="613" width="0" height="15" fill="rgb(224,32,20)"/><text text-anchor="left" x="183.00" y="623.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h62092b401c2d21f7 (1 samples, 0.01%)</title><rect x="180" y="613" width="0" height="15" fill="rgb(209,38,42)"/><text text-anchor="left" x="183.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..stream..futures_unordered..Node$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h2a585f5e2d2eae3f (2 samples, 0.02%)</title><rect x="180" y="597" width="0" height="15" fill="rgb(252,71,18)"/><text text-anchor="left" x="183.00" y="607.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::is_some::h10debad351d15d04 (1 samples, 0.01%)</title><rect x="180" y="597" width="0" height="15" fill="rgb(212,176,34)"/><text text-anchor="left" x="183.00" y="607.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h62092b401c2d21f7 (2 samples, 0.02%)</title><rect x="180" y="597" width="1" height="15" fill="rgb(236,172,41)"/><text text-anchor="left" x="183.00" y="607.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hda0a81dc2674c5e8 (1 samples, 0.01%)</title><rect x="180" y="581" width="1" height="15" fill="rgb(215,163,48)"/><text text-anchor="left" x="183.00" y="591.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hda0a81dc2674c5e8 (2 samples, 0.02%)</title><rect x="181" y="597" width="0" height="15" fill="rgb(211,103,34)"/><text text-anchor="left" x="184.00" y="607.50" 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>deno_core_http_bench`alloc::rc::is_dangling::h305360fe77fafb89 (3 samples, 0.03%)</title><rect x="182" y="549" width="0" height="15" fill="rgb(219,189,50)"/><text text-anchor="left" x="185.00" y="559.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h60f83d938d2726f1 (1 samples, 0.01%)</title><rect x="182" y="533" width="0" height="15" fill="rgb(247,208,3)"/><text text-anchor="left" x="185.00" y="543.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::inner::h8c1145d3a77aa2e1 (6 samples, 0.06%)</title><rect x="182" y="565" width="0" height="15" fill="rgb(248,34,52)"/><text text-anchor="left" x="185.00" y="575.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h2b80f9be5006c330 (1 samples, 0.01%)</title><rect x="182" y="549" width="0" height="15" fill="rgb(215,20,53)"/><text text-anchor="left" x="185.00" y="559.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (1 samples, 0.01%)</title><rect x="183" y="549" width="0" height="15" fill="rgb(214,20,19)"/><text text-anchor="left" x="186.00" y="559.50" 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>deno_core_http_bench`_$LT$alloc..sync..Weak$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hbc89b8288cb9e087 (22 samples, 0.22%)</title><rect x="181" y="581" width="2" height="15" fill="rgb(236,99,28)"/><text text-anchor="left" x="184.00" y="591.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::he4dca69a0012585e (9 samples, 0.09%)</title><rect x="182" y="565" width="1" height="15" fill="rgb(237,187,41)"/><text text-anchor="left" x="185.00" y="575.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h99a1bbe630826b4b (5 samples, 0.05%)</title><rect x="183" y="549" width="0" height="15" fill="rgb(206,64,23)"/><text text-anchor="left" x="186.00" y="559.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hca41ae1f87fbe133 (31 samples, 0.30%)</title><rect x="180" y="613" width="3" height="15" fill="rgb(205,70,17)"/><text text-anchor="left" x="183.00" y="623.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he641d063868491d9 (23 samples, 0.23%)</title><rect x="181" y="597" width="2" height="15" fill="rgb(215,139,37)"/><text text-anchor="left" x="184.00" y="607.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::inner::h8c1145d3a77aa2e1 (1 samples, 0.01%)</title><rect x="183" y="581" width="0" height="15" fill="rgb(245,142,38)"/><text text-anchor="left" x="186.00" y="591.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he641d063868491d9 (4 samples, 0.04%)</title><rect x="183" y="613" width="1" height="15" fill="rgb(224,218,13)"/><text text-anchor="left" x="186.00" y="623.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::he4dca69a0012585e (5 samples, 0.05%)</title><rect x="184" y="613" width="1" height="15" fill="rgb(227,141,39)"/><text text-anchor="left" x="187.00" y="623.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h99a1bbe630826b4b (4 samples, 0.04%)</title><rect x="184" y="597" width="1" height="15" fill="rgb(237,6,37)"/><text text-anchor="left" x="187.00" y="607.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h99a1bbe630826b4b (1 samples, 0.01%)</title><rect x="185" y="613" width="0" height="15" fill="rgb(232,150,29)"/><text text-anchor="left" x="188.00" y="623.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::drop_slow::h5a3ca58f09bb6041 (117 samples, 1.15%)</title><rect x="171" y="629" width="14" height="15" fill="rgb(247,147,7)"/><text text-anchor="left" x="174.00" y="639.50" 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>deno_core_http_bench`core::sync::atomic::fence::h61035ed30e09663e (1 samples, 0.01%)</title><rect x="185" y="613" width="0" height="15" fill="rgb(208,73,26)"/><text text-anchor="left" x="188.00" y="623.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (4 samples, 0.04%)</title><rect x="185" y="629" width="0" height="15" fill="rgb(226,68,12)"/><text text-anchor="left" x="188.00" y="639.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (2 samples, 0.02%)</title><rect x="185" y="613" width="0" height="15" fill="rgb(205,184,14)"/><text text-anchor="left" x="188.00" y="623.50" 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>deno_core_http_bench`core::alloc::Layout::for_value::h0190542453fef081 (2 samples, 0.02%)</title><rect x="185" y="629" width="0" height="15" fill="rgb(248,3,36)"/><text text-anchor="left" x="188.00" y="639.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_mut::hcb98daac308013ac (6 samples, 0.06%)</title><rect x="185" y="629" width="1" height="15" fill="rgb(252,215,20)"/><text text-anchor="left" x="188.00" y="639.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (1 samples, 0.01%)</title><rect x="186" y="613" width="0" height="15" fill="rgb(238,116,35)"/><text text-anchor="left" x="189.00" y="623.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::he4dca69a0012585e (11 samples, 0.11%)</title><rect x="186" y="629" width="1" height="15" fill="rgb(235,75,6)"/><text text-anchor="left" x="189.00" y="639.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h99a1bbe630826b4b (8 samples, 0.08%)</title><rect x="186" y="613" width="1" height="15" fill="rgb(250,10,36)"/><text text-anchor="left" x="189.00" y="623.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7e92e4fb88f22065 (147 samples, 1.44%)</title><rect x="171" y="645" width="17" height="15" fill="rgb(241,82,13)"/><text text-anchor="left" x="174.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::fence::h61035ed30e09663e (4 samples, 0.04%)</title><rect x="187" y="629" width="1" height="15" fill="rgb(247,151,13)"/><text text-anchor="left" x="190.00" y="639.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::drop_slow::h5a3ca58f09bb6041 (4 samples, 0.04%)</title><rect x="188" y="645" width="0" height="15" fill="rgb(247,126,8)"/><text text-anchor="left" x="191.00" y="655.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (1 samples, 0.01%)</title><rect x="188" y="645" width="0" height="15" fill="rgb(253,197,13)"/><text text-anchor="left" x="191.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h601a52225901d42c (154 samples, 1.51%)</title><rect x="171" y="661" width="18" height="15" fill="rgb(239,151,38)"/><text text-anchor="left" x="174.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::fence::h61035ed30e09663e (1 samples, 0.01%)</title><rect x="188" y="645" width="1" height="15" fill="rgb(222,156,17)"/><text text-anchor="left" x="191.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hda0a81dc2674c5e8 (8 samples, 0.08%)</title><rect x="189" y="661" width="0" height="15" fill="rgb(241,138,17)"/><text text-anchor="left" x="192.00" y="671.50" 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>deno_core_http_bench`_$LT$$LT$futures..stream..futures_unordered..FuturesUnordered$LT$T$GT$$u20$as$u20$futures..stream..Stream$GT$..poll..Bomb$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h3024a70a819cc349 (242 samples, 2.37%)</title><rect x="162" y="693" width="28" height="15" fill="rgb(221,16,24)"/><text text-anchor="left" x="165.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::stream::futures_unordered::FuturesUnordered$LT$T$GT$::release_node::hfb77beb3d167a734 (203 samples, 1.99%)</title><rect x="166" y="677" width="24" height="15" fill="rgb(239,50,34)"/><text text-anchor="left" x="169.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`core::sync::atomic::AtomicBool::swap::h5109fc7540466c70 (3 samples, 0.03%)</title><rect x="189" y="661" width="1" height="15" fill="rgb(211,109,35)"/><text text-anchor="left" x="192.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::atomic_swap::h5fd3cfede5290e65 (2 samples, 0.02%)</title><rect x="190" y="645" width="0" height="15" fill="rgb(216,99,22)"/><text text-anchor="left" x="193.00" y="655.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::hc06421c983b1f8fd (1 samples, 0.01%)</title><rect x="190" y="693" width="0" height="15" fill="rgb(216,73,53)"/><text text-anchor="left" x="193.00" y="703.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc262f820acdea816 (3 samples, 0.03%)</title><rect x="190" y="693" width="0" height="15" fill="rgb(205,202,54)"/><text text-anchor="left" x="193.00" y="703.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::had59d835bb7801bb (253 samples, 2.48%)</title><rect x="161" y="709" width="30" height="15" fill="rgb(222,135,40)"/><text text-anchor="left" x="164.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::stream::futures_unordered::FuturesUnordered$LT$T$GT$::release_node::hfb77beb3d167a734 (3 samples, 0.03%)</title><rect x="190" y="693" width="1" height="15" fill="rgb(236,142,12)"/><text text-anchor="left" x="193.00" y="703.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc262f820acdea816 (3 samples, 0.03%)</title><rect x="191" y="709" width="0" height="15" fill="rgb(247,81,42)"/><text text-anchor="left" x="194.00" y="719.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h5f926850b6778092 (1 samples, 0.01%)</title><rect x="191" y="693" width="0" height="15" fill="rgb(233,163,46)"/><text text-anchor="left" x="194.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::swap::h5109fc7540466c70 (12 samples, 0.12%)</title><rect x="191" y="709" width="1" height="15" fill="rgb(214,225,10)"/><text text-anchor="left" x="194.00" y="719.50" 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>deno_core_http_bench`core::sync::atomic::atomic_swap::h5fd3cfede5290e65 (8 samples, 0.08%)</title><rect x="191" y="693" width="1" height="15" fill="rgb(229,72,12)"/><text text-anchor="left" x="194.00" y="703.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (9 samples, 0.09%)</title><rect x="195" y="677" width="1" height="15" fill="rgb(240,198,15)"/><text text-anchor="left" x="198.00" y="687.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (5 samples, 0.05%)</title><rect x="195" y="661" width="1" height="15" fill="rgb(222,206,10)"/><text text-anchor="left" x="198.00" y="671.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (15 samples, 0.15%)</title><rect x="194" y="693" width="2" height="15" fill="rgb(239,21,23)"/><text text-anchor="left" x="197.00" y="703.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (1 samples, 0.01%)</title><rect x="196" y="677" width="0" height="15" fill="rgb(228,176,34)"/><text text-anchor="left" x="199.00" y="687.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (1 samples, 0.01%)</title><rect x="196" y="693" width="0" height="15" fill="rgb(232,32,2)"/><text text-anchor="left" x="199.00" y="703.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h74ffa4e53f93122b (1 samples, 0.01%)</title><rect x="196" y="693" width="0" height="15" fill="rgb(231,52,44)"/><text text-anchor="left" x="199.00" y="703.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::is_null::hd241e861b9e972c7 (4 samples, 0.04%)</title><rect x="196" y="693" width="1" height="15" fill="rgb(225,102,34)"/><text text-anchor="left" x="199.00" y="703.50" 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>deno_core_http_bench`futures::stream::futures_unordered::FuturesUnordered$LT$T$GT$::unlink::h3ace55af005f1104 (45 samples, 0.44%)</title><rect x="192" y="709" width="6" height="15" fill="rgb(224,129,47)"/><text text-anchor="left" x="195.00" y="719.50" 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>deno_core_http_bench`futures::stream::futures_unordered::ptr2arc::h2dd1e63c63d4f543 (8 samples, 0.08%)</title><rect x="197" y="693" width="1" height="15" fill="rgb(231,225,37)"/><text text-anchor="left" x="200.00" y="703.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (3 samples, 0.03%)</title><rect x="197" y="677" width="1" height="15" fill="rgb(211,211,45)"/><text text-anchor="left" x="200.00" y="687.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (3 samples, 0.03%)</title><rect x="197" y="661" width="1" height="15" fill="rgb(237,226,8)"/><text text-anchor="left" x="200.00" y="671.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (3 samples, 0.03%)</title><rect x="197" y="645" width="1" height="15" fill="rgb(213,104,29)"/><text text-anchor="left" x="200.00" y="655.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h8c705671395f0454 (1 samples, 0.01%)</title><rect x="197" y="629" width="1" height="15" fill="rgb(210,142,16)"/><text text-anchor="left" x="200.00" y="639.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h74ffa4e53f93122b (1 samples, 0.01%)</title><rect x="199" y="693" width="0" height="15" fill="rgb(222,177,36)"/><text text-anchor="left" x="202.00" y="703.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h5d91f1b3af872039 (1 samples, 0.01%)</title><rect x="199" y="693" width="0" height="15" fill="rgb(240,64,9)"/><text text-anchor="left" x="202.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::load::h9cb1ee91db6ae7c2 (2 samples, 0.02%)</title><rect x="199" y="693" width="0" height="15" fill="rgb(250,207,28)"/><text text-anchor="left" x="202.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::h6212450900046e8f (7 samples, 0.07%)</title><rect x="199" y="693" width="1" height="15" fill="rgb(210,59,9)"/><text text-anchor="left" x="202.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (6 samples, 0.06%)</title><rect x="199" y="677" width="1" height="15" fill="rgb(247,162,32)"/><text text-anchor="left" x="202.00" y="687.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::swap::ha533fedab64e7cbc (1 samples, 0.01%)</title><rect x="200" y="693" width="0" height="15" fill="rgb(226,112,40)"/><text text-anchor="left" x="203.00" y="703.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h5f926850b6778092 (2 samples, 0.02%)</title><rect x="200" y="677" width="0" height="15" fill="rgb(237,186,29)"/><text text-anchor="left" x="203.00" y="687.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::store::hde0cbf0dfb3de114 (1 samples, 0.01%)</title><rect x="200" y="677" width="0" height="15" fill="rgb(231,112,32)"/><text text-anchor="left" x="203.00" y="687.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::enqueue::hec64627030f7b662 (5 samples, 0.05%)</title><rect x="200" y="693" width="1" height="15" fill="rgb(211,87,34)"/><text text-anchor="left" x="203.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::swap::ha533fedab64e7cbc (1 samples, 0.01%)</title><rect x="200" y="677" width="1" height="15" fill="rgb(209,162,32)"/><text text-anchor="left" x="203.00" y="687.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h584c6b207b0c42ea (1 samples, 0.01%)</title><rect x="200" y="661" width="1" height="15" fill="rgb(251,108,11)"/><text text-anchor="left" x="203.00" y="671.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::dequeue::heb1d65449b11d85c (32 samples, 0.31%)</title><rect x="198" y="709" width="3" height="15" fill="rgb(213,97,6)"/><text text-anchor="left" x="201.00" y="719.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::stub::hb882865f7dbfe6b7 (6 samples, 0.06%)</title><rect x="201" y="693" width="0" height="15" fill="rgb(215,206,3)"/><text text-anchor="left" x="204.00" y="703.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (6 samples, 0.06%)</title><rect x="201" y="677" width="0" height="15" fill="rgb(229,143,47)"/><text text-anchor="left" x="204.00" y="687.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (4 samples, 0.04%)</title><rect x="201" y="661" width="0" height="15" fill="rgb(243,217,28)"/><text text-anchor="left" x="204.00" y="671.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hd48b71036dcff1c1 (3 samples, 0.03%)</title><rect x="201" y="645" width="0" height="15" fill="rgb(210,90,29)"/><text text-anchor="left" x="204.00" y="655.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::enqueue::hec64627030f7b662 (1 samples, 0.01%)</title><rect x="201" y="709" width="0" height="15" fill="rgb(207,175,20)"/><text text-anchor="left" x="204.00" y="719.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::stub::hb882865f7dbfe6b7 (2 samples, 0.02%)</title><rect x="201" y="709" width="1" height="15" fill="rgb(246,35,34)"/><text text-anchor="left" x="204.00" y="719.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2e07de9223f41dd8 (1 samples, 0.01%)</title><rect x="202" y="693" width="0" height="15" fill="rgb(212,113,16)"/><text text-anchor="left" x="205.00" y="703.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::ha3b4506c35b2a30c (1 samples, 0.01%)</title><rect x="202" y="677" width="0" height="15" fill="rgb(229,168,19)"/><text text-anchor="left" x="205.00" y="687.50" 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>deno_core_http_bench`futures::stream::futures_unordered::ptr2arc::h2dd1e63c63d4f543 (1 samples, 0.01%)</title><rect x="202" y="709" width="0" height="15" fill="rgb(212,167,22)"/><text text-anchor="left" x="205.00" y="719.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (5 samples, 0.05%)</title><rect x="205" y="549" width="1" height="15" fill="rgb(226,212,42)"/><text text-anchor="left" x="208.00" y="559.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (4 samples, 0.04%)</title><rect x="205" y="533" width="1" height="15" fill="rgb(221,187,6)"/><text text-anchor="left" x="208.00" y="543.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h82f55c9d768ca6a7 (2 samples, 0.02%)</title><rect x="205" y="517" width="1" height="15" fill="rgb(228,94,30)"/><text text-anchor="left" x="208.00" y="527.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="206" y="549" width="0" height="15" fill="rgb(206,35,38)"/><text text-anchor="left" x="209.00" y="559.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h32bbcc8044f25157 (15 samples, 0.15%)</title><rect x="205" y="565" width="1" height="15" fill="rgb(218,215,44)"/><text text-anchor="left" x="208.00" y="575.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_add::hd0a9c2195b5e909d (6 samples, 0.06%)</title><rect x="206" y="549" width="0" height="15" fill="rgb(240,120,31)"/><text text-anchor="left" x="209.00" y="559.50" 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>deno_core_http_bench`core::sync::atomic::atomic_add::h4e00f29987451464 (3 samples, 0.03%)</title><rect x="206" y="533" width="0" height="15" fill="rgb(218,110,28)"/><text text-anchor="left" x="209.00" y="543.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (1 samples, 0.01%)</title><rect x="206" y="565" width="1" height="15" fill="rgb(207,20,27)"/><text text-anchor="left" x="209.00" y="575.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::new::h34b20af377a43d10 (1 samples, 0.01%)</title><rect x="207" y="565" width="0" height="15" fill="rgb(220,131,20)"/><text text-anchor="left" x="210.00" y="575.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::hae03e262f1efd836 (28 samples, 0.27%)</title><rect x="204" y="661" width="3" height="15" fill="rgb(222,122,2)"/><text text-anchor="left" x="207.00" y="671.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::h992f1f3d9ec507fd (25 samples, 0.25%)</title><rect x="204" y="645" width="3" height="15" fill="rgb(216,155,20)"/><text text-anchor="left" x="207.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..clone..Clone$GT$::clone::h72a4ce2093e467ad (24 samples, 0.24%)</title><rect x="204" y="629" width="3" height="15" fill="rgb(253,172,36)"/><text text-anchor="left" x="207.00" y="639.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::clone_raw::h6328c48d92268eeb (23 samples, 0.23%)</title><rect x="204" y="613" width="3" height="15" fill="rgb(211,44,33)"/><text text-anchor="left" x="207.00" y="623.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h326fb267ef943534 (21 samples, 0.21%)</title><rect x="204" y="597" width="3" height="15" fill="rgb(244,48,28)"/><text text-anchor="left" x="207.00" y="607.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::_$LT$impl$u20$core..convert..From$LT$tokio_current_thread..scheduler..Notify$LT$U$GT$$GT$$u20$for$u20$futures..task_impl..NotifyHandle$GT$::from::h845262dfb4482f6e (20 samples, 0.20%)</title><rect x="205" y="581" width="2" height="15" fill="rgb(243,201,38)"/><text text-anchor="left" x="208.00" y="591.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::hide_lt::h297f987ca8df0af8 (1 samples, 0.01%)</title><rect x="207" y="565" width="0" height="15" fill="rgb(243,125,30)"/><text text-anchor="left" x="210.00" y="575.50" 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>deno_core_http_bench`_$LT$futures..task_impl..Task$u20$as$u20$core..clone..Clone$GT$::clone::ha81d9992e0288099 (32 samples, 0.31%)</title><rect x="203" y="677" width="4" height="15" fill="rgb(216,126,32)"/><text text-anchor="left" x="206.00" y="687.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..UnparkEvents$u20$as$u20$core..clone..Clone$GT$::clone::hfe2b7e01c8c17569 (3 samples, 0.03%)</title><rect x="207" y="661" width="0" height="15" fill="rgb(231,160,52)"/><text text-anchor="left" x="210.00" y="671.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h23d6b248e306bc1f (1 samples, 0.01%)</title><rect x="207" y="677" width="0" height="15" fill="rgb(232,219,8)"/><text text-anchor="left" x="210.00" y="687.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..ops..drop..Drop$GT$::drop::h820059682a2e68f5 (4 samples, 0.04%)</title><rect x="208" y="613" width="1" height="15" fill="rgb(254,183,14)"/><text text-anchor="left" x="211.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::drop_id::h835632e4d1ed6b3d (2 samples, 0.02%)</title><rect x="209" y="597" width="0" height="15" fill="rgb(213,69,31)"/><text text-anchor="left" x="212.00" y="607.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::ha7bb13f216f7771d (1 samples, 0.01%)</title><rect x="209" y="565" width="0" height="15" fill="rgb(215,151,48)"/><text text-anchor="left" x="212.00" y="575.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (3 samples, 0.03%)</title><rect x="209" y="533" width="1" height="15" fill="rgb(238,198,6)"/><text text-anchor="left" x="212.00" y="543.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="210" y="517" width="0" height="15" fill="rgb(215,194,49)"/><text text-anchor="left" x="213.00" y="527.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbe1e6cefb08fb7be (17 samples, 0.17%)</title><rect x="208" y="645" width="2" height="15" fill="rgb(229,225,42)"/><text text-anchor="left" x="211.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h05d997f84d862816 (15 samples, 0.15%)</title><rect x="208" y="629" width="2" height="15" fill="rgb(234,218,46)"/><text text-anchor="left" x="211.00" y="639.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbe1c6d40d737558d (11 samples, 0.11%)</title><rect x="209" y="613" width="1" height="15" fill="rgb(236,174,2)"/><text text-anchor="left" x="212.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..ops..drop..Drop$GT$::drop::h9557032614a3d20b (11 samples, 0.11%)</title><rect x="209" y="597" width="1" height="15" fill="rgb(227,204,32)"/><text text-anchor="left" x="212.00" y="607.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h576b11225d7a8d58 (11 samples, 0.11%)</title><rect x="209" y="581" width="1" height="15" fill="rgb(210,71,35)"/><text text-anchor="left" x="212.00" y="591.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h224f31a42e7530a3 (10 samples, 0.10%)</title><rect x="209" y="565" width="1" height="15" fill="rgb(232,201,54)"/><text text-anchor="left" x="212.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::ha7bb13f216f7771d (10 samples, 0.10%)</title><rect x="209" y="549" width="1" height="15" fill="rgb(226,2,33)"/><text text-anchor="left" x="212.00" y="559.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::h33e273a478cb712b (6 samples, 0.06%)</title><rect x="210" y="533" width="0" height="15" fill="rgb(207,178,19)"/><text text-anchor="left" x="213.00" y="543.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h27fed45ad48fb50f (4 samples, 0.04%)</title><rect x="210" y="517" width="0" height="15" fill="rgb(240,142,30)"/><text text-anchor="left" x="213.00" y="527.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h3736263e994ad534 (26 samples, 0.26%)</title><rect x="207" y="677" width="3" height="15" fill="rgb(215,68,29)"/><text text-anchor="left" x="210.00" y="687.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h7651ea89adc8a9b0 (19 samples, 0.19%)</title><rect x="208" y="661" width="2" height="15" fill="rgb(236,181,36)"/><text text-anchor="left" x="211.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hce8b400f4d3f3669 (1 samples, 0.01%)</title><rect x="210" y="645" width="0" height="15" fill="rgb(248,54,53)"/><text text-anchor="left" x="213.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..ops..drop..Drop$GT$::drop::h820059682a2e68f5 (1 samples, 0.01%)</title><rect x="211" y="629" width="0" height="15" fill="rgb(227,157,47)"/><text text-anchor="left" x="214.00" y="639.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::drop_id::h835632e4d1ed6b3d (1 samples, 0.01%)</title><rect x="211" y="613" width="0" height="15" fill="rgb(223,227,1)"/><text text-anchor="left" x="214.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::Notify::drop_id::h1c5f2d9f016305ec (1 samples, 0.01%)</title><rect x="211" y="597" width="0" height="15" fill="rgb(237,154,25)"/><text text-anchor="left" x="214.00" y="607.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (4 samples, 0.04%)</title><rect x="211" y="549" width="0" height="15" fill="rgb(222,127,14)"/><text text-anchor="left" x="214.00" y="559.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (4 samples, 0.04%)</title><rect x="211" y="533" width="0" height="15" fill="rgb(249,47,51)"/><text text-anchor="left" x="214.00" y="543.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h82f55c9d768ca6a7 (2 samples, 0.02%)</title><rect x="211" y="517" width="0" height="15" fill="rgb(221,5,45)"/><text text-anchor="left" x="214.00" y="527.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h576b11225d7a8d58 (8 samples, 0.08%)</title><rect x="211" y="597" width="1" height="15" fill="rgb(226,177,49)"/><text text-anchor="left" x="214.00" y="607.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h224f31a42e7530a3 (8 samples, 0.08%)</title><rect x="211" y="581" width="1" height="15" fill="rgb(247,1,20)"/><text text-anchor="left" x="214.00" y="591.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::ha7bb13f216f7771d (8 samples, 0.08%)</title><rect x="211" y="565" width="1" height="15" fill="rgb(215,172,18)"/><text text-anchor="left" x="214.00" y="575.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::h33e273a478cb712b (3 samples, 0.03%)</title><rect x="211" y="549" width="1" height="15" fill="rgb(220,102,33)"/><text text-anchor="left" x="214.00" y="559.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h27fed45ad48fb50f (2 samples, 0.02%)</title><rect x="211" y="533" width="1" height="15" fill="rgb(214,183,13)"/><text text-anchor="left" x="214.00" y="543.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h7651ea89adc8a9b0 (12 samples, 0.12%)</title><rect x="210" y="677" width="2" height="15" fill="rgb(210,162,32)"/><text text-anchor="left" x="213.00" y="687.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbe1e6cefb08fb7be (11 samples, 0.11%)</title><rect x="210" y="661" width="2" height="15" fill="rgb(244,83,3)"/><text text-anchor="left" x="213.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h05d997f84d862816 (10 samples, 0.10%)</title><rect x="211" y="645" width="1" height="15" fill="rgb(227,169,7)"/><text text-anchor="left" x="214.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbe1c6d40d737558d (9 samples, 0.09%)</title><rect x="211" y="629" width="1" height="15" fill="rgb(218,156,29)"/><text text-anchor="left" x="214.00" y="639.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..ops..drop..Drop$GT$::drop::h9557032614a3d20b (9 samples, 0.09%)</title><rect x="211" y="613" width="1" height="15" fill="rgb(251,124,15)"/><text text-anchor="left" x="214.00" y="623.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h224f31a42e7530a3 (1 samples, 0.01%)</title><rect x="212" y="597" width="0" height="15" fill="rgb(229,214,15)"/><text text-anchor="left" x="215.00" y="607.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (1 samples, 0.01%)</title><rect x="212" y="645" width="0" height="15" fill="rgb(233,206,11)"/><text text-anchor="left" x="215.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange::hd9a84e164d348bdf (10 samples, 0.10%)</title><rect x="212" y="661" width="1" height="15" fill="rgb(231,47,26)"/><text text-anchor="left" x="215.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h6b3b107243a1297a (8 samples, 0.08%)</title><rect x="212" y="645" width="1" height="15" fill="rgb(218,118,28)"/><text text-anchor="left" x="215.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h6b3b107243a1297a (1 samples, 0.01%)</title><rect x="213" y="661" width="0" height="15" fill="rgb(254,154,53)"/><text text-anchor="left" x="216.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_and_swap::h76f67f281136785e (14 samples, 0.14%)</title><rect x="212" y="677" width="1" height="15" fill="rgb(217,229,24)"/><text text-anchor="left" x="215.00" y="687.50" 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>deno_core_http_bench`core::sync::atomic::strongest_failure_ordering::hd49c29129fbad16c (2 samples, 0.02%)</title><rect x="213" y="661" width="0" height="15" fill="rgb(225,162,8)"/><text text-anchor="left" x="216.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::atomic_task::AtomicTask::register_task::h1c42306f0a2e415f (105 samples, 1.03%)</title><rect x="202" y="693" width="12" height="15" fill="rgb(235,108,38)"/><text text-anchor="left" x="205.00" y="703.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange::hd9a84e164d348bdf (8 samples, 0.08%)</title><rect x="213" y="677" width="1" height="15" fill="rgb(209,155,21)"/><text text-anchor="left" x="216.00" y="687.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange::h6b3b107243a1297a (8 samples, 0.08%)</title><rect x="213" y="661" width="1" height="15" fill="rgb(254,53,0)"/><text text-anchor="left" x="216.00" y="671.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::hec325b88eba6719a (1 samples, 0.01%)</title><rect x="214" y="661" width="1" height="15" fill="rgb(205,49,53)"/><text text-anchor="left" x="217.00" y="671.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::new_in::h82c9725a09ef6392 (1 samples, 0.01%)</title><rect x="215" y="613" width="0" height="15" fill="rgb(212,195,49)"/><text text-anchor="left" x="218.00" y="623.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::new::h4c30cbf093bfdc3e (12 samples, 0.12%)</title><rect x="215" y="629" width="1" height="15" fill="rgb(246,86,4)"/><text text-anchor="left" x="218.00" y="639.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$GT$::new::hbe1b06536a08ecc6 (10 samples, 0.10%)</title><rect x="215" y="613" width="1" height="15" fill="rgb(211,29,34)"/><text text-anchor="left" x="218.00" y="623.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::new_in::h82c9725a09ef6392 (8 samples, 0.08%)</title><rect x="215" y="597" width="1" height="15" fill="rgb(219,52,16)"/><text text-anchor="left" x="218.00" y="607.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::empty::h8eb3609610993343 (4 samples, 0.04%)</title><rect x="216" y="581" width="0" height="15" fill="rgb(225,222,53)"/><text text-anchor="left" x="219.00" y="591.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::h32ce66b9fc57e110 (1 samples, 0.01%)</title><rect x="216" y="565" width="0" height="15" fill="rgb(235,85,44)"/><text text-anchor="left" x="219.00" y="575.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::hc2d3770e8979228e (1 samples, 0.01%)</title><rect x="217" y="565" width="0" height="15" fill="rgb(226,156,44)"/><text text-anchor="left" x="220.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::h0c57130e02b22e8a (3 samples, 0.03%)</title><rect x="217" y="581" width="0" height="15" fill="rgb(253,220,35)"/><text text-anchor="left" x="220.00" y="591.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h79f958df1271d3fb (1 samples, 0.01%)</title><rect x="217" y="565" width="0" height="15" fill="rgb(231,188,5)"/><text text-anchor="left" x="220.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..IndexMut$LT$I$GT$$GT$::index_mut::hf6868fbaa12928c0 (8 samples, 0.08%)</title><rect x="216" y="597" width="1" height="15" fill="rgb(217,104,36)"/><text text-anchor="left" x="219.00" y="607.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..IndexMut$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index_mut::h72e55dc7e6a6e7a5 (3 samples, 0.03%)</title><rect x="217" y="581" width="0" height="15" fill="rgb(247,4,48)"/><text text-anchor="left" x="220.00" y="591.50" 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>deno_core_http_bench`_$LT$core..ops..range..RangeFull$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index_mut::h5cb4d141a64a7b77 (1 samples, 0.01%)</title><rect x="217" y="565" width="0" height="15" fill="rgb(221,23,36)"/><text text-anchor="left" x="220.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hba5104d2c07663c4 (12 samples, 0.12%)</title><rect x="216" y="613" width="2" height="15" fill="rgb(239,128,20)"/><text text-anchor="left" x="219.00" y="623.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h0cd4d310f752b86c (3 samples, 0.03%)</title><rect x="217" y="597" width="1" height="15" fill="rgb(242,94,10)"/><text text-anchor="left" x="220.00" y="607.50" 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>deno_core_http_bench`futures::task_impl::std::BorrowedEvents::to_owned::hd26596dfc251d08a (26 samples, 0.26%)</title><rect x="215" y="645" width="3" height="15" fill="rgb(226,51,51)"/><text text-anchor="left" x="218.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h6bfa2bf4cdb1ab13 (14 samples, 0.14%)</title><rect x="216" y="629" width="2" height="15" fill="rgb(232,49,38)"/><text text-anchor="left" x="219.00" y="639.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hb81d5d729694e3ce (1 samples, 0.01%)</title><rect x="218" y="613" width="0" height="15" fill="rgb(230,172,18)"/><text text-anchor="left" x="221.00" y="623.50" 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>deno_core_http_bench`_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a41582844f7f5d0 (1 samples, 0.01%)</title><rect x="218" y="597" width="0" height="15" fill="rgb(248,35,16)"/><text text-anchor="left" x="221.00" y="607.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hc42947cae97c3436 (1 samples, 0.01%)</title><rect x="218" y="581" width="0" height="15" fill="rgb(242,178,1)"/><text text-anchor="left" x="221.00" y="591.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::clone_id::h53b7f29beb511ba1 (3 samples, 0.03%)</title><rect x="218" y="613" width="0" height="15" fill="rgb(237,100,37)"/><text text-anchor="left" x="221.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::Notify::clone_id::h0d0b11e894f63817 (1 samples, 0.01%)</title><rect x="218" y="597" width="0" height="15" fill="rgb(236,75,44)"/><text text-anchor="left" x="221.00" y="607.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (3 samples, 0.03%)</title><rect x="219" y="549" width="0" height="15" fill="rgb(226,64,8)"/><text text-anchor="left" x="222.00" y="559.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (2 samples, 0.02%)</title><rect x="219" y="533" width="0" height="15" fill="rgb(238,9,40)"/><text text-anchor="left" x="222.00" y="543.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h32bbcc8044f25157 (8 samples, 0.08%)</title><rect x="219" y="565" width="0" height="15" fill="rgb(214,173,37)"/><text text-anchor="left" x="222.00" y="575.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_add::hd0a9c2195b5e909d (2 samples, 0.02%)</title><rect x="219" y="549" width="0" height="15" fill="rgb(219,6,3)"/><text text-anchor="left" x="222.00" y="559.50" 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>deno_core_http_bench`core::sync::atomic::atomic_add::h4e00f29987451464 (1 samples, 0.01%)</title><rect x="219" y="533" width="0" height="15" fill="rgb(228,148,10)"/><text text-anchor="left" x="222.00" y="543.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h326fb267ef943534 (12 samples, 0.12%)</title><rect x="218" y="597" width="2" height="15" fill="rgb(209,175,22)"/><text text-anchor="left" x="221.00" y="607.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::_$LT$impl$u20$core..convert..From$LT$tokio_current_thread..scheduler..Notify$LT$U$GT$$GT$$u20$for$u20$futures..task_impl..NotifyHandle$GT$::from::h845262dfb4482f6e (10 samples, 0.10%)</title><rect x="219" y="581" width="1" height="15" fill="rgb(252,80,50)"/><text text-anchor="left" x="222.00" y="591.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::hide_lt::h297f987ca8df0af8 (2 samples, 0.02%)</title><rect x="219" y="565" width="1" height="15" fill="rgb(205,69,2)"/><text text-anchor="left" x="222.00" y="575.50" 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>deno_core_http_bench`futures::task_impl::current::_$u7b$$u7b$closure$u7d$$u7d$::h4eecf9653bda3510 (46 samples, 0.45%)</title><rect x="215" y="661" width="5" height="15" fill="rgb(216,97,5)"/><text text-anchor="left" x="218.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::std::BorrowedUnpark::to_owned::h8b6dbd64a80c291d (19 samples, 0.19%)</title><rect x="218" y="645" width="2" height="15" fill="rgb(234,211,20)"/><text text-anchor="left" x="221.00" y="655.50" 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>deno_core_http_bench`futures::task_impl::core::BorrowedUnpark::to_owned::h566e12b0b175c68f (19 samples, 0.19%)</title><rect x="218" y="629" width="2" height="15" fill="rgb(205,179,13)"/><text text-anchor="left" x="221.00" y="639.50" 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>deno_core_http_bench`futures::task_impl::Spawn$LT$T$GT$::poll_fn_notify::_$u7b$$u7b$closure$u7d$$u7d$::h952875e412fa0cb0 (16 samples, 0.16%)</title><rect x="218" y="613" width="2" height="15" fill="rgb(249,81,29)"/><text text-anchor="left" x="221.00" y="623.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..Notify$LT$U$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h90f7ff28868e6ad7 (2 samples, 0.02%)</title><rect x="220" y="597" width="0" height="15" fill="rgb(217,163,48)"/><text text-anchor="left" x="223.00" y="607.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (2 samples, 0.02%)</title><rect x="221" y="613" width="1" height="15" fill="rgb(253,82,11)"/><text text-anchor="left" x="224.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::core::is_get_ptr::hc451b28ccfcd3318 (9 samples, 0.09%)</title><rect x="221" y="645" width="1" height="15" fill="rgb(254,180,0)"/><text text-anchor="left" x="224.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hc6c8189cfd9a83e9 (6 samples, 0.06%)</title><rect x="221" y="629" width="1" height="15" fill="rgb(213,84,23)"/><text text-anchor="left" x="224.00" y="639.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (1 samples, 0.01%)</title><rect x="222" y="613" width="0" height="15" fill="rgb(225,226,30)"/><text text-anchor="left" x="225.00" y="623.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::expect::hff861177ee18ec95 (2 samples, 0.02%)</title><rect x="222" y="629" width="0" height="15" fill="rgb(246,131,0)"/><text text-anchor="left" x="225.00" y="639.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::ha20f105ec4bea74b (1 samples, 0.01%)</title><rect x="223" y="613" width="0" height="15" fill="rgb(216,86,40)"/><text text-anchor="left" x="226.00" y="623.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h53cc5144d170e7cc (1 samples, 0.01%)</title><rect x="223" y="613" width="0" height="15" fill="rgb(206,59,29)"/><text text-anchor="left" x="226.00" y="623.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::h6d072c2623d0dad5 (2 samples, 0.02%)</title><rect x="223" y="613" width="1" height="15" fill="rgb(205,194,27)"/><text text-anchor="left" x="226.00" y="623.50" 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>deno_core_http_bench`core::mem::needs_drop::ha960c2c7c684b405 (1 samples, 0.01%)</title><rect x="224" y="581" width="0" height="15" fill="rgb(237,128,45)"/><text text-anchor="left" x="227.00" y="591.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::h6438aae71122f2d0 (4 samples, 0.04%)</title><rect x="224" y="597" width="0" height="15" fill="rgb(210,25,40)"/><text text-anchor="left" x="227.00" y="607.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h52fa5f04dd86ad97 (1 samples, 0.01%)</title><rect x="224" y="581" width="0" height="15" fill="rgb(233,56,1)"/><text text-anchor="left" x="227.00" y="591.50" 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>deno_core_http_bench`futures::task_impl::std::CURRENT_TASK::__getit::ha94fa0f4e059698a (6 samples, 0.06%)</title><rect x="224" y="613" width="0" height="15" fill="rgb(237,103,15)"/><text text-anchor="left" x="227.00" y="623.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h52fa5f04dd86ad97 (2 samples, 0.02%)</title><rect x="224" y="597" width="0" height="15" fill="rgb(236,77,15)"/><text text-anchor="left" x="227.00" y="607.50" 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>deno_core_http_bench`futures::task_impl::std::get_ptr::_$u7b$$u7b$closure$u7d$$u7d$::h5d96f5baecb72c71 (2 samples, 0.02%)</title><rect x="224" y="613" width="1" height="15" fill="rgb(252,30,6)"/><text text-anchor="left" x="227.00" y="623.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h995bcaa03b9e1b22 (1 samples, 0.01%)</title><rect x="224" y="597" width="1" height="15" fill="rgb(222,46,10)"/><text text-anchor="left" x="227.00" y="607.50" 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>deno_core_http_bench`futures::task_impl::current::he0b5f0c10db6aa75 (90 samples, 0.88%)</title><rect x="214" y="693" width="11" height="15" fill="rgb(241,164,21)"/><text text-anchor="left" x="217.00" y="703.50" 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>deno_core_http_bench`futures::task_impl::with::hbf192bafa6e81b1c (90 samples, 0.88%)</title><rect x="214" y="677" width="11" height="15" fill="rgb(221,181,19)"/><text text-anchor="left" x="217.00" y="687.50" 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>deno_core_http_bench`futures::task_impl::std::get_ptr::he12e017a2c4fb9cb (41 samples, 0.40%)</title><rect x="220" y="661" width="5" height="15" fill="rgb(238,130,41)"/><text text-anchor="left" x="223.00" y="671.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::with::h255bb29d99ca0f3b (26 samples, 0.26%)</title><rect x="222" y="645" width="3" height="15" fill="rgb(207,138,31)"/><text text-anchor="left" x="225.00" y="655.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h5f3702a8aec485a8 (22 samples, 0.22%)</title><rect x="222" y="629" width="3" height="15" fill="rgb(246,175,3)"/><text text-anchor="left" x="225.00" y="639.50" 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>libdyld.dylib`tlv_get_addr (1 samples, 0.01%)</title><rect x="225" y="613" width="0" height="15" fill="rgb(245,77,26)"/><text text-anchor="left" x="228.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::atomic_task::AtomicTask::register::he13eb87f44127f37 (199 samples, 1.95%)</title><rect x="202" y="709" width="23" height="15" fill="rgb(207,33,49)"/><text text-anchor="left" x="205.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::task_impl::with::hbf192bafa6e81b1c (1 samples, 0.01%)</title><rect x="225" y="693" width="0" height="15" fill="rgb(205,84,39)"/><text text-anchor="left" x="228.00" y="703.50" 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>deno_core_http_bench`futures::task_impl::with::hc7899dc9e2c3a52d (1 samples, 0.01%)</title><rect x="225" y="709" width="0" height="15" fill="rgb(235,156,34)"/><text text-anchor="left" x="228.00" y="719.50" 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>deno_core_http_bench`futures::task_impl::std::BorrowedUnpark::new::h8dac80ab7353f164 (1 samples, 0.01%)</title><rect x="227" y="677" width="0" height="15" fill="rgb(207,51,54)"/><text text-anchor="left" x="230.00" y="687.50" 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>deno_core_http_bench`futures::task_impl::core::is_get_ptr::hc451b28ccfcd3318 (8 samples, 0.08%)</title><rect x="227" y="661" width="1" height="15" fill="rgb(234,32,3)"/><text text-anchor="left" x="230.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hc6c8189cfd9a83e9 (5 samples, 0.05%)</title><rect x="227" y="645" width="1" height="15" fill="rgb(251,189,38)"/><text text-anchor="left" x="230.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (4 samples, 0.04%)</title><rect x="227" y="629" width="1" height="15" fill="rgb(217,212,25)"/><text text-anchor="left" x="230.00" y="639.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::ha20f105ec4bea74b (1 samples, 0.01%)</title><rect x="228" y="645" width="0" height="15" fill="rgb(205,188,37)"/><text text-anchor="left" x="231.00" y="655.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::expect::hff861177ee18ec95 (1 samples, 0.01%)</title><rect x="228" y="645" width="0" height="15" fill="rgb(225,48,34)"/><text text-anchor="left" x="231.00" y="655.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::ha20f105ec4bea74b (2 samples, 0.02%)</title><rect x="229" y="629" width="0" height="15" fill="rgb(229,138,32)"/><text text-anchor="left" x="232.00" y="639.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h53cc5144d170e7cc (1 samples, 0.01%)</title><rect x="229" y="629" width="0" height="15" fill="rgb(236,220,34)"/><text text-anchor="left" x="232.00" y="639.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::h6438aae71122f2d0 (6 samples, 0.06%)</title><rect x="229" y="613" width="1" height="15" fill="rgb(243,78,1)"/><text text-anchor="left" x="232.00" y="623.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h52fa5f04dd86ad97 (4 samples, 0.04%)</title><rect x="229" y="597" width="1" height="15" fill="rgb(226,60,44)"/><text text-anchor="left" x="232.00" y="607.50" 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>deno_core_http_bench`core::mem::needs_drop::ha960c2c7c684b405 (1 samples, 0.01%)</title><rect x="230" y="581" width="0" height="15" fill="rgb(206,178,4)"/><text text-anchor="left" x="233.00" y="591.50" 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>deno_core_http_bench`futures::task_impl::std::CURRENT_TASK::__getit::ha94fa0f4e059698a (7 samples, 0.07%)</title><rect x="229" y="629" width="1" height="15" fill="rgb(209,2,35)"/><text text-anchor="left" x="232.00" y="639.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h52fa5f04dd86ad97 (1 samples, 0.01%)</title><rect x="230" y="613" width="0" height="15" fill="rgb(209,122,31)"/><text text-anchor="left" x="233.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::std::get_ptr::_$u7b$$u7b$closure$u7d$$u7d$::h5d96f5baecb72c71 (2 samples, 0.02%)</title><rect x="230" y="629" width="0" height="15" fill="rgb(214,42,7)"/><text text-anchor="left" x="233.00" y="639.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h995bcaa03b9e1b22 (1 samples, 0.01%)</title><rect x="230" y="613" width="0" height="15" fill="rgb(210,156,40)"/><text text-anchor="left" x="233.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::std::get_ptr::he12e017a2c4fb9cb (28 samples, 0.27%)</title><rect x="227" y="677" width="3" height="15" fill="rgb(253,21,21)"/><text text-anchor="left" x="230.00" y="687.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::with::h255bb29d99ca0f3b (20 samples, 0.20%)</title><rect x="228" y="661" width="2" height="15" fill="rgb(251,225,10)"/><text text-anchor="left" x="231.00" y="671.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h5f3702a8aec485a8 (17 samples, 0.17%)</title><rect x="228" y="645" width="2" height="15" fill="rgb(244,224,53)"/><text text-anchor="left" x="231.00" y="655.50" 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>libdyld.dylib`tlv_get_addr (1 samples, 0.01%)</title><rect x="230" y="629" width="0" height="15" fill="rgb(240,63,14)"/><text text-anchor="left" x="233.00" y="639.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (1 samples, 0.01%)</title><rect x="231" y="661" width="0" height="15" fill="rgb(251,80,37)"/><text text-anchor="left" x="234.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hb6736f2f1bb93929 (4 samples, 0.04%)</title><rect x="231" y="661" width="0" height="15" fill="rgb(212,62,18)"/><text text-anchor="left" x="234.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::core::BorrowedUnpark::new::hab90f7e790897511 (2 samples, 0.02%)</title><rect x="231" y="661" width="1" height="15" fill="rgb(233,18,39)"/><text text-anchor="left" x="234.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::core::is_get_ptr::h4c1ceab7554afa12 (2 samples, 0.02%)</title><rect x="232" y="661" width="0" height="15" fill="rgb(252,202,9)"/><text text-anchor="left" x="235.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::std::BorrowedUnpark::new::h8dac80ab7353f164 (2 samples, 0.02%)</title><rect x="232" y="661" width="0" height="15" fill="rgb(243,68,52)"/><text text-anchor="left" x="235.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::core::BorrowedUnpark::new::hab90f7e790897511 (1 samples, 0.01%)</title><rect x="232" y="645" width="0" height="15" fill="rgb(244,49,45)"/><text text-anchor="left" x="235.00" y="655.50" 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>deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4276ddca95faa5fa (1 samples, 0.01%)</title><rect x="233" y="645" width="1" height="15" fill="rgb(253,64,52)"/><text text-anchor="left" x="236.00" y="655.50" 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>deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h0b68c7d2a9471547 (2 samples, 0.02%)</title><rect x="234" y="613" width="1" height="15" fill="rgb(252,165,23)"/><text text-anchor="left" x="237.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..future..or_else..OrElse$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h6e07aa99ac65f5ff (1 samples, 0.01%)</title><rect x="239" y="565" width="0" height="15" fill="rgb(215,21,4)"/><text text-anchor="left" x="242.00" y="575.50" 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>deno_core_http_bench`_$LT$futures..future..then..Then$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h3d1845f5eb7f48d5 (3 samples, 0.03%)</title><rect x="239" y="565" width="0" height="15" fill="rgb(225,166,27)"/><text text-anchor="left" x="242.00" y="575.50" 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>deno_core_http_bench`core::mem::replace::h31cfd0bc2d4c4a1f (3 samples, 0.03%)</title><rect x="239" y="565" width="1" height="15" fill="rgb(230,130,44)"/><text text-anchor="left" x="242.00" y="575.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc93083f71ae07af7 (2 samples, 0.02%)</title><rect x="240" y="565" width="0" height="15" fill="rgb(248,28,39)"/><text text-anchor="left" x="243.00" y="575.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hbf6b023c56fa55b9 (1 samples, 0.01%)</title><rect x="243" y="549" width="0" height="15" fill="rgb(225,145,44)"/><text text-anchor="left" x="246.00" y="559.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h354cc7e0d62555c1 (3 samples, 0.03%)</title><rect x="243" y="533" width="1" height="15" fill="rgb(210,194,15)"/><text text-anchor="left" x="246.00" y="543.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he27bfc57f5c07998 (3 samples, 0.03%)</title><rect x="244" y="533" width="0" height="15" fill="rgb(210,112,48)"/><text text-anchor="left" x="247.00" y="543.50" 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>deno_core_http_bench`_$LT$futures..future..or_else..OrElse$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h7c7ee9a2c43bd9e0 (3 samples, 0.03%)</title><rect x="244" y="533" width="0" height="15" fill="rgb(232,3,46)"/><text text-anchor="left" x="247.00" y="543.50" 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>deno_core_http_bench`core::mem::replace::h0c04a92e7d54631b (5 samples, 0.05%)</title><rect x="244" y="533" width="1" height="15" fill="rgb(212,57,51)"/><text text-anchor="left" x="247.00" y="543.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h67bac0be2ddbae44 (4 samples, 0.04%)</title><rect x="245" y="533" width="1" height="15" fill="rgb(235,77,36)"/><text text-anchor="left" x="248.00" y="543.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h86cf3f6d62fa3b1d (1 samples, 0.01%)</title><rect x="250" y="501" width="0" height="15" fill="rgb(224,202,38)"/><text text-anchor="left" x="253.00" y="511.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h33b8cb6526bafe12 (2 samples, 0.02%)</title><rect x="250" y="501" width="0" height="15" fill="rgb(218,20,8)"/><text text-anchor="left" x="253.00" y="511.50" 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>deno_core_http_bench`core::mem::replace::hc5adfa9b07136bf1 (3 samples, 0.03%)</title><rect x="250" y="501" width="1" height="15" fill="rgb(205,152,27)"/><text text-anchor="left" x="253.00" y="511.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8810b7c05aeb8cd2 (2 samples, 0.02%)</title><rect x="251" y="501" width="0" height="15" fill="rgb(228,105,16)"/><text text-anchor="left" x="254.00" y="511.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="255" y="453" width="0" height="15" fill="rgb(209,106,49)"/><text text-anchor="left" x="258.00" y="463.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hb5848d419346d091 (2 samples, 0.02%)</title><rect x="255" y="453" width="1" height="15" fill="rgb(237,12,53)"/><text text-anchor="left" x="258.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h018d3fd47ce3e830 (2 samples, 0.02%)</title><rect x="256" y="453" width="0" height="15" fill="rgb(226,59,30)"/><text text-anchor="left" x="259.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..poll_fn..PollFn$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h40f8ca1b660186c8 (1 samples, 0.01%)</title><rect x="256" y="453" width="0" height="15" fill="rgb(219,137,4)"/><text text-anchor="left" x="259.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4f3007d9d07f1240 (3 samples, 0.03%)</title><rect x="256" y="453" width="0" height="15" fill="rgb(226,119,42)"/><text text-anchor="left" x="259.00" y="463.50" 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>deno_core_http_bench`core::mem::replace::h6a138fccee5793b8 (2 samples, 0.02%)</title><rect x="256" y="453" width="0" height="15" fill="rgb(209,15,46)"/><text text-anchor="left" x="259.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::ha018e5b2303135bc (1 samples, 0.01%)</title><rect x="256" y="453" width="1" height="15" fill="rgb(219,29,30)"/><text text-anchor="left" x="259.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hb44827c2bba1eb4c (3 samples, 0.03%)</title><rect x="257" y="453" width="0" height="15" fill="rgb(241,128,7)"/><text text-anchor="left" x="260.00" y="463.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hc2ac955a2cf39368 (1 samples, 0.01%)</title><rect x="261" y="389" width="0" height="15" fill="rgb(232,85,41)"/><text text-anchor="left" x="264.00" y="399.50" 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>deno_core_http_bench`futures::future::result_::result::h265a65b90575774d (1 samples, 0.01%)</title><rect x="261" y="373" width="0" height="15" fill="rgb(231,10,9)"/><text text-anchor="left" x="264.00" y="383.50" 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>deno_core_http_bench`_$LT$log..Level$u20$as$u20$core..cmp..PartialOrd$LT$log..LevelFilter$GT$$GT$::le::h50e0657871618baf (1 samples, 0.01%)</title><rect x="261" y="373" width="1" height="15" fill="rgb(237,64,23)"/><text text-anchor="left" x="264.00" y="383.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h018d3fd47ce3e830 (15 samples, 0.15%)</title><rect x="260" y="437" width="2" height="15" fill="rgb(220,221,7)"/><text text-anchor="left" x="263.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h4e67fbeb9b6ec5b6 (13 samples, 0.13%)</title><rect x="260" y="421" width="2" height="15" fill="rgb(244,143,48)"/><text text-anchor="left" x="263.00" y="431.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h7bbaf240b70ce96f (7 samples, 0.07%)</title><rect x="261" y="405" width="1" height="15" fill="rgb(228,189,40)"/><text text-anchor="left" x="264.00" y="415.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_write::_$u7b$$u7b$closure$u7d$$u7d$::h3afcfb38a12a5ca7 (4 samples, 0.04%)</title><rect x="261" y="389" width="1" height="15" fill="rgb(245,145,46)"/><text text-anchor="left" x="264.00" y="399.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h907275030267c2f2 (2 samples, 0.02%)</title><rect x="262" y="373" width="0" height="15" fill="rgb(221,31,42)"/><text text-anchor="left" x="265.00" y="383.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (2 samples, 0.02%)</title><rect x="262" y="357" width="0" height="15" fill="rgb(226,202,25)"/><text text-anchor="left" x="265.00" y="367.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..deref..Deref$GT$::deref::hd34e9df78d7ea0dc (2 samples, 0.02%)</title><rect x="262" y="421" width="0" height="15" fill="rgb(232,129,35)"/><text text-anchor="left" x="265.00" y="431.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..RESOURCE_TABLE$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0de92f423f6591c8 (2 samples, 0.02%)</title><rect x="262" y="421" width="1" height="15" fill="rgb(252,29,5)"/><text text-anchor="left" x="265.00" y="431.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5cc73244089e2682 (1 samples, 0.01%)</title><rect x="263" y="421" width="0" height="15" fill="rgb(247,22,47)"/><text text-anchor="left" x="266.00" y="431.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..deref..Deref$GT$::deref::hd34e9df78d7ea0dc (3 samples, 0.03%)</title><rect x="263" y="405" width="1" height="15" fill="rgb(216,108,12)"/><text text-anchor="left" x="266.00" y="415.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h821cc9350aa5f8a9 (2 samples, 0.02%)</title><rect x="264" y="389" width="0" height="15" fill="rgb(242,94,33)"/><text text-anchor="left" x="267.00" y="399.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::as_ptr::hab7117783a5e1bca (1 samples, 0.01%)</title><rect x="264" y="389" width="0" height="15" fill="rgb(252,173,26)"/><text text-anchor="left" x="267.00" y="399.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="265" y="341" width="0" height="15" fill="rgb(226,85,27)"/><text text-anchor="left" x="268.00" y="351.50" 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>deno_core_http_bench`std::sync::once::Once::call_once::h0ebc2c95e97f76b9 (7 samples, 0.07%)</title><rect x="264" y="389" width="1" height="15" fill="rgb(214,134,26)"/><text text-anchor="left" x="267.00" y="399.50" 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>deno_core_http_bench`std::sync::once::Once::is_completed::h1b2a5f5e28333a1f (7 samples, 0.07%)</title><rect x="264" y="373" width="1" height="15" fill="rgb(238,222,46)"/><text text-anchor="left" x="267.00" y="383.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h907275030267c2f2 (7 samples, 0.07%)</title><rect x="264" y="357" width="1" height="15" fill="rgb(252,88,24)"/><text text-anchor="left" x="267.00" y="367.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (4 samples, 0.04%)</title><rect x="265" y="341" width="0" height="15" fill="rgb(250,8,35)"/><text text-anchor="left" x="268.00" y="351.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..RESOURCE_TABLE$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0de92f423f6591c8 (13 samples, 0.13%)</title><rect x="264" y="405" width="1" height="15" fill="rgb(222,102,54)"/><text text-anchor="left" x="267.00" y="415.50" 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>deno_core_http_bench`std::sync::once::Once::is_completed::h1b2a5f5e28333a1f (1 samples, 0.01%)</title><rect x="265" y="389" width="0" height="15" fill="rgb(254,131,2)"/><text text-anchor="left" x="268.00" y="399.50" 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>deno_core_http_bench`_$LT$tokio_tcp..stream..TcpStream$u20$as$u20$std..io..Write$GT$::write::hfc4d82a56a117f29 (6 samples, 0.06%)</title><rect x="265" y="405" width="1" height="15" fill="rgb(250,64,4)"/><text text-anchor="left" x="268.00" y="415.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h821cc9350aa5f8a9 (1 samples, 0.01%)</title><rect x="266" y="405" width="0" height="15" fill="rgb(222,215,6)"/><text text-anchor="left" x="269.00" y="415.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h2456437234273396 (3 samples, 0.03%)</title><rect x="266" y="405" width="0" height="15" fill="rgb(215,212,32)"/><text text-anchor="left" x="269.00" y="415.50" 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>deno_core_http_bench`std::sys::unix::mutex::Mutex::unlock::h83e7f7408cd66449 (1 samples, 0.01%)</title><rect x="267" y="373" width="0" height="15" fill="rgb(246,36,47)"/><text text-anchor="left" x="270.00" y="383.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_unlock::h5a3d6afc8f64312a (6 samples, 0.06%)</title><rect x="267" y="373" width="0" height="15" fill="rgb(250,48,12)"/><text text-anchor="left" x="270.00" y="383.50" 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>libsystem_pthread.dylib`pthread_mutex_unlock (6 samples, 0.06%)</title><rect x="267" y="357" width="0" height="15" fill="rgb(248,122,33)"/><text text-anchor="left" x="270.00" y="367.50" 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>deno_core_http_bench`std::panicking::panicking::h59a7bbbccfc7f88b (4 samples, 0.04%)</title><rect x="267" y="357" width="1" height="15" fill="rgb(231,24,10)"/><text text-anchor="left" x="270.00" y="367.50" 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>deno_core_http_bench`_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h99dd435295934775 (16 samples, 0.16%)</title><rect x="266" y="389" width="2" height="15" fill="rgb(232,141,44)"/><text text-anchor="left" x="269.00" y="399.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::done::h55efa07ff7a816d7 (8 samples, 0.08%)</title><rect x="267" y="373" width="1" height="15" fill="rgb(250,3,27)"/><text text-anchor="left" x="270.00" y="383.50" 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>deno_core_http_bench`std::thread::panicking::h91240ed2c9a6e1d5 (3 samples, 0.03%)</title><rect x="268" y="357" width="0" height="15" fill="rgb(251,145,39)"/><text text-anchor="left" x="271.00" y="367.50" 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>libdyld.dylib`tlv_get_addr (2 samples, 0.02%)</title><rect x="268" y="341" width="0" height="15" fill="rgb(245,142,20)"/><text text-anchor="left" x="271.00" y="351.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5cc73244089e2682 (20 samples, 0.20%)</title><rect x="266" y="405" width="3" height="15" fill="rgb(243,162,10)"/><text text-anchor="left" x="269.00" y="415.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_unlock::h5a3d6afc8f64312a (4 samples, 0.04%)</title><rect x="268" y="389" width="1" height="15" fill="rgb(230,44,36)"/><text text-anchor="left" x="271.00" y="399.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h055c924716820112 (2 samples, 0.02%)</title><rect x="269" y="405" width="0" height="15" fill="rgb(217,118,46)"/><text text-anchor="left" x="272.00" y="415.50" 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>deno_core_http_bench`core::slice::from_raw_parts::h8ebd2b89b521de45 (2 samples, 0.02%)</title><rect x="269" y="405" width="0" height="15" fill="rgb(241,54,11)"/><text text-anchor="left" x="272.00" y="415.50" 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>deno_core_http_bench`_$LT$I$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::hd861271da5e46841 (2 samples, 0.02%)</title><rect x="269" y="373" width="1" height="15" fill="rgb(209,138,11)"/><text text-anchor="left" x="272.00" y="383.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h08dd336ba9152c22 (2 samples, 0.02%)</title><rect x="270" y="373" width="0" height="15" fill="rgb(208,134,35)"/><text text-anchor="left" x="273.00" y="383.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::h7fb1387bca49b149 (1 samples, 0.01%)</title><rect x="270" y="373" width="0" height="15" fill="rgb(246,42,9)"/><text text-anchor="left" x="273.00" y="383.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::_$u7b$$u7b$closure$u7d$$u7d$::h151f3ea323dbe199 (1 samples, 0.01%)</title><rect x="270" y="373" width="0" height="15" fill="rgb(240,114,28)"/><text text-anchor="left" x="273.00" y="383.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::c_rounds::h538addd045b625c9 (9 samples, 0.09%)</title><rect x="270" y="309" width="1" height="15" fill="rgb(230,99,2)"/><text text-anchor="left" x="273.00" y="319.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (1 samples, 0.01%)</title><rect x="271" y="293" width="0" height="15" fill="rgb(222,128,36)"/><text text-anchor="left" x="274.00" y="303.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (7 samples, 0.07%)</title><rect x="272" y="293" width="1" height="15" fill="rgb(209,98,4)"/><text text-anchor="left" x="275.00" y="303.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::h463086e8038f8ffd (17 samples, 0.17%)</title><rect x="271" y="309" width="2" height="15" fill="rgb(218,186,25)"/><text text-anchor="left" x="274.00" y="319.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h2de39ccc63360d07 (1 samples, 0.01%)</title><rect x="273" y="293" width="0" height="15" fill="rgb(211,174,20)"/><text text-anchor="left" x="276.00" y="303.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h08dd336ba9152c22 (31 samples, 0.30%)</title><rect x="270" y="357" width="4" height="15" fill="rgb(230,169,38)"/><text text-anchor="left" x="273.00" y="367.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h1991235cd4785ac6 (30 samples, 0.29%)</title><rect x="270" y="341" width="4" height="15" fill="rgb(237,215,26)"/><text text-anchor="left" x="273.00" y="351.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::h5ba49ec546d4bc95 (30 samples, 0.29%)</title><rect x="270" y="325" width="4" height="15" fill="rgb(254,213,45)"/><text text-anchor="left" x="273.00" y="335.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (2 samples, 0.02%)</title><rect x="273" y="309" width="1" height="15" fill="rgb(239,171,47)"/><text text-anchor="left" x="276.00" y="319.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="274" y="341" width="0" height="15" fill="rgb(236,190,50)"/><text text-anchor="left" x="277.00" y="351.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::new_with_keys::heab337ad3409c9b1 (5 samples, 0.05%)</title><rect x="274" y="325" width="0" height="15" fill="rgb(239,47,23)"/><text text-anchor="left" x="277.00" y="335.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::reset::h48a260305f6a48b0 (3 samples, 0.03%)</title><rect x="274" y="309" width="0" height="15" fill="rgb(219,80,47)"/><text text-anchor="left" x="277.00" y="319.50" 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>deno_core_http_bench`core::hash::sip::SipHasher13::new_with_keys::h261482389a3aa742 (9 samples, 0.09%)</title><rect x="274" y="341" width="1" height="15" fill="rgb(229,52,26)"/><text text-anchor="left" x="277.00" y="351.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (4 samples, 0.04%)</title><rect x="274" y="325" width="1" height="15" fill="rgb(214,143,21)"/><text text-anchor="left" x="277.00" y="335.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..RandomState$u20$as$u20$core..hash..BuildHasher$GT$::build_hasher::hb6b7b2fdd72c10c5 (12 samples, 0.12%)</title><rect x="274" y="357" width="1" height="15" fill="rgb(209,188,13)"/><text text-anchor="left" x="277.00" y="367.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="275" y="341" width="0" height="15" fill="rgb(225,213,7)"/><text text-anchor="left" x="278.00" y="351.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h91d93e186c13e3e2 (1 samples, 0.01%)</title><rect x="276" y="261" width="0" height="15" fill="rgb(247,123,34)"/><text text-anchor="left" x="279.00" y="271.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="276" y="245" width="0" height="15" fill="rgb(253,30,6)"/><text text-anchor="left" x="279.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h841faa7e121147cb (2 samples, 0.02%)</title><rect x="276" y="229" width="0" height="15" fill="rgb(239,193,32)"/><text text-anchor="left" x="279.00" y="239.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hefb0c9b49ecd32c4 (2 samples, 0.02%)</title><rect x="276" y="213" width="0" height="15" fill="rgb(218,101,26)"/><text text-anchor="left" x="279.00" y="223.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::h73a8e7e2364fc153 (3 samples, 0.03%)</title><rect x="276" y="245" width="1" height="15" fill="rgb(228,134,8)"/><text text-anchor="left" x="279.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hefb0c9b49ecd32c4 (1 samples, 0.01%)</title><rect x="276" y="229" width="1" height="15" fill="rgb(207,49,3)"/><text text-anchor="left" x="279.00" y="239.50" 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>deno_core_http_bench`core::hash::sip::u8to64_le::ha10f46342469dc90 (11 samples, 0.11%)</title><rect x="275" y="277" width="2" height="15" fill="rgb(238,74,9)"/><text text-anchor="left" x="278.00" y="287.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked::hbdfb9a8ee1b48bb2 (5 samples, 0.05%)</title><rect x="276" y="261" width="1" height="15" fill="rgb(232,151,11)"/><text text-anchor="left" x="279.00" y="271.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h841faa7e121147cb (1 samples, 0.01%)</title><rect x="277" y="245" width="0" height="15" fill="rgb(242,11,7)"/><text text-anchor="left" x="280.00" y="255.50" 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>deno_core_http_bench`core::mem::size_of::hfd057a6d9a812c10 (1 samples, 0.01%)</title><rect x="277" y="277" width="0" height="15" fill="rgb(205,142,13)"/><text text-anchor="left" x="280.00" y="287.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u32$GT$::to_le::h5913e623ea128df9 (1 samples, 0.01%)</title><rect x="277" y="277" width="0" height="15" fill="rgb(209,183,30)"/><text text-anchor="left" x="280.00" y="287.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::h60579d91328011b5 (14 samples, 0.14%)</title><rect x="275" y="293" width="2" height="15" fill="rgb(235,225,54)"/><text text-anchor="left" x="278.00" y="303.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::ha67e6bc4d0715966 (1 samples, 0.01%)</title><rect x="277" y="277" width="0" height="15" fill="rgb(244,144,32)"/><text text-anchor="left" x="280.00" y="287.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::h2f6bbd7248ce0ddc (16 samples, 0.16%)</title><rect x="275" y="325" width="2" height="15" fill="rgb(244,3,2)"/><text text-anchor="left" x="278.00" y="335.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::hb84ea769f87d27ad (16 samples, 0.16%)</title><rect x="275" y="309" width="2" height="15" fill="rgb(207,54,31)"/><text text-anchor="left" x="278.00" y="319.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::ha67e6bc4d0715966 (1 samples, 0.01%)</title><rect x="277" y="293" width="0" height="15" fill="rgb(224,136,10)"/><text text-anchor="left" x="280.00" y="303.50" 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>deno_core_http_bench`hashbrown::map::make_hash::h500b7b4ca1e1239d (62 samples, 0.61%)</title><rect x="270" y="373" width="7" height="15" fill="rgb(244,1,39)"/><text text-anchor="left" x="273.00" y="383.50" 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>deno_core_http_bench`core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$i32$GT$::hash::h6b86b5244062d7b6 (19 samples, 0.19%)</title><rect x="275" y="357" width="2" height="15" fill="rgb(228,60,27)"/><text text-anchor="left" x="278.00" y="367.50" 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>deno_core_http_bench`core::hash::Hasher::write_i32::h3f7a8f2f6082a362 (18 samples, 0.18%)</title><rect x="275" y="341" width="2" height="15" fill="rgb(222,187,33)"/><text text-anchor="left" x="278.00" y="351.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$i32$GT$::to_ne_bytes::h80a697b951314ce3 (1 samples, 0.01%)</title><rect x="277" y="325" width="0" height="15" fill="rgb(233,91,45)"/><text text-anchor="left" x="280.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::h42763d3d8dd6ad62 (1 samples, 0.01%)</title><rect x="277" y="373" width="0" height="15" fill="rgb(214,50,15)"/><text text-anchor="left" x="280.00" y="383.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0119456287663c10 (2 samples, 0.02%)</title><rect x="279" y="357" width="0" height="15" fill="rgb(245,202,35)"/><text text-anchor="left" x="282.00" y="367.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMask$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::hc54ed7938c79b5e0 (1 samples, 0.01%)</title><rect x="279" y="357" width="0" height="15" fill="rgb(231,198,36)"/><text text-anchor="left" x="282.00" y="367.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc499889fc1978223 (1 samples, 0.01%)</title><rect x="279" y="341" width="0" height="15" fill="rgb(232,133,7)"/><text text-anchor="left" x="282.00" y="351.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hdb2da99d3cc718b2 (1 samples, 0.01%)</title><rect x="279" y="325" width="0" height="15" fill="rgb(213,123,14)"/><text text-anchor="left" x="282.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit::h7b7384fb8751c8f4 (3 samples, 0.03%)</title><rect x="279" y="341" width="1" height="15" fill="rgb(214,98,23)"/><text text-anchor="left" x="282.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit_nonzero::h98385cdbb4591b9e (2 samples, 0.02%)</title><rect x="279" y="325" width="1" height="15" fill="rgb(223,182,17)"/><text text-anchor="left" x="282.00" y="335.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0e45be6481478b66 (7 samples, 0.07%)</title><rect x="279" y="357" width="1" height="15" fill="rgb(240,141,28)"/><text text-anchor="left" x="282.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::remove_lowest_bit::hbd8a548493c1f773 (1 samples, 0.01%)</title><rect x="280" y="341" width="0" height="15" fill="rgb(229,43,8)"/><text text-anchor="left" x="283.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hc8fc4d897c2e8bd9 (4 samples, 0.04%)</title><rect x="280" y="357" width="0" height="15" fill="rgb(243,126,38)"/><text text-anchor="left" x="283.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h5a357f1b126c4a66 (1 samples, 0.01%)</title><rect x="280" y="357" width="0" height="15" fill="rgb(213,29,37)"/><text text-anchor="left" x="283.00" y="367.50" 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>deno_core_http_bench`core::mem::size_of::h9634f50dbd0dd637 (1 samples, 0.01%)</title><rect x="280" y="357" width="0" height="15" fill="rgb(206,16,43)"/><text text-anchor="left" x="283.00" y="367.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h1ae7b6d23647d98e (2 samples, 0.02%)</title><rect x="280" y="357" width="1" height="15" fill="rgb(223,112,22)"/><text text-anchor="left" x="283.00" y="367.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h2f691bf29c2fbf06 (1 samples, 0.01%)</title><rect x="281" y="357" width="0" height="15" fill="rgb(233,132,3)"/><text text-anchor="left" x="284.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (3 samples, 0.03%)</title><rect x="281" y="357" width="0" height="15" fill="rgb(207,34,15)"/><text text-anchor="left" x="284.00" y="367.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::_$u7b$$u7b$closure$u7d$$u7d$::h151f3ea323dbe199 (3 samples, 0.03%)</title><rect x="281" y="357" width="0" height="15" fill="rgb(235,52,53)"/><text text-anchor="left" x="284.00" y="367.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialEq$u20$for$u20$i32$GT$::eq::h33efba4c37d13798 (3 samples, 0.03%)</title><rect x="281" y="341" width="0" height="15" fill="rgb(254,39,41)"/><text text-anchor="left" x="284.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h2afc1c4645ef0673 (2 samples, 0.02%)</title><rect x="282" y="341" width="0" height="15" fill="rgb(248,178,35)"/><text text-anchor="left" x="285.00" y="351.50" 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>deno_core_http_bench`core::mem::size_of::hacba3364e02ed152 (1 samples, 0.01%)</title><rect x="282" y="325" width="0" height="15" fill="rgb(233,212,6)"/><text text-anchor="left" x="285.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::bucket::hec841c2669ac193c (9 samples, 0.09%)</title><rect x="281" y="357" width="2" height="15" fill="rgb(249,46,19)"/><text text-anchor="left" x="284.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::from_base_index::h67d5b6113d3353e2 (5 samples, 0.05%)</title><rect x="282" y="341" width="1" height="15" fill="rgb(223,63,2)"/><text text-anchor="left" x="285.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h2afc1c4645ef0673 (2 samples, 0.02%)</title><rect x="282" y="325" width="1" height="15" fill="rgb(245,74,53)"/><text text-anchor="left" x="285.00" y="335.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::h4e58dbb023d7d225 (1 samples, 0.01%)</title><rect x="282" y="309" width="1" height="15" fill="rgb(239,173,38)"/><text text-anchor="left" x="285.00" y="319.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::h42763d3d8dd6ad62 (2 samples, 0.02%)</title><rect x="283" y="357" width="0" height="15" fill="rgb(238,75,4)"/><text text-anchor="left" x="286.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (2 samples, 0.02%)</title><rect x="283" y="341" width="0" height="15" fill="rgb(209,128,13)"/><text text-anchor="left" x="286.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (1 samples, 0.01%)</title><rect x="283" y="325" width="0" height="15" fill="rgb(254,123,14)"/><text text-anchor="left" x="286.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::hbaf0f74a0736996f (2 samples, 0.02%)</title><rect x="283" y="357" width="0" height="15" fill="rgb(230,178,48)"/><text text-anchor="left" x="286.00" y="367.50" 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>deno_core_http_bench`core::cmp::Ord::min::hf7d260515dde4d02 (2 samples, 0.02%)</title><rect x="283" y="341" width="0" height="15" fill="rgb(208,88,41)"/><text text-anchor="left" x="286.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::h2::h6e8814d0d91a489e (6 samples, 0.06%)</title><rect x="283" y="357" width="1" height="15" fill="rgb(210,147,43)"/><text text-anchor="left" x="286.00" y="367.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::le::hde07b858387126ab (2 samples, 0.02%)</title><rect x="283" y="341" width="1" height="15" fill="rgb(219,221,44)"/><text text-anchor="left" x="286.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_undefined_si128::ha7fa690dbe8b9cd2 (2 samples, 0.02%)</title><rect x="284" y="325" width="0" height="15" fill="rgb(245,172,8)"/><text text-anchor="left" x="287.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::load::hb5a194846706c045 (7 samples, 0.07%)</title><rect x="284" y="357" width="1" height="15" fill="rgb(215,17,14)"/><text text-anchor="left" x="287.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hc8fc4d897c2e8bd9 (6 samples, 0.06%)</title><rect x="284" y="341" width="1" height="15" fill="rgb(218,64,18)"/><text text-anchor="left" x="287.00" y="351.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (1 samples, 0.01%)</title><rect x="284" y="325" width="1" height="15" fill="rgb(210,12,39)"/><text text-anchor="left" x="287.00" y="335.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (2 samples, 0.02%)</title><rect x="285" y="341" width="0" height="15" fill="rgb(214,133,15)"/><text text-anchor="left" x="288.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_cmpeq_epi8::h5373d02c655a73e7 (2 samples, 0.02%)</title><rect x="285" y="341" width="0" height="15" fill="rgb(232,3,17)"/><text text-anchor="left" x="288.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_movemask_epi8::h72d1bf52189cf8d4 (9 samples, 0.09%)</title><rect x="285" y="341" width="1" height="15" fill="rgb(215,72,27)"/><text text-anchor="left" x="288.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (4 samples, 0.04%)</title><rect x="286" y="325" width="0" height="15" fill="rgb(206,147,33)"/><text text-anchor="left" x="289.00" y="335.50" 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>deno_core_http_bench`_$LT$core..core_arch..x86..__m128i$u20$as$u20$core..core_arch..x86..m128iExt$GT$::as_m128i::h075f5531757b6038 (1 samples, 0.01%)</title><rect x="286" y="309" width="0" height="15" fill="rgb(221,72,6)"/><text text-anchor="left" x="289.00" y="319.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find::h0c5384d5f0317d89 (87 samples, 0.85%)</title><rect x="277" y="373" width="10" height="15" fill="rgb(205,50,5)"/><text text-anchor="left" x="280.00" y="383.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_byte::h0804c77ea5e4f61f (25 samples, 0.25%)</title><rect x="285" y="357" width="2" height="15" fill="rgb(216,80,36)"/><text text-anchor="left" x="288.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h5a357f1b126c4a66 (10 samples, 0.10%)</title><rect x="286" y="341" width="1" height="15" fill="rgb(216,4,4)"/><text text-anchor="left" x="289.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set_epi8::h52a58f5abfb59879 (6 samples, 0.06%)</title><rect x="287" y="325" width="0" height="15" fill="rgb(229,165,51)"/><text text-anchor="left" x="290.00" y="335.50" 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>deno_core_http_bench`core::core_arch::simd::i8x16::new::h183764d5eac91dba (1 samples, 0.01%)</title><rect x="287" y="309" width="0" height="15" fill="rgb(225,6,33)"/><text text-anchor="left" x="290.00" y="319.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::hbaf0f74a0736996f (2 samples, 0.02%)</title><rect x="287" y="373" width="1" height="15" fill="rgb(254,206,7)"/><text text-anchor="left" x="290.00" y="383.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::h2ae125c85bb84e3a (161 samples, 1.58%)</title><rect x="269" y="389" width="19" height="15" fill="rgb(206,89,38)"/><text text-anchor="left" x="272.00" y="399.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::load::hb5a194846706c045 (2 samples, 0.02%)</title><rect x="288" y="373" width="0" height="15" fill="rgb(209,83,8)"/><text text-anchor="left" x="291.00" y="383.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::h074494a9725ddf4c (162 samples, 1.59%)</title><rect x="269" y="405" width="19" height="15" fill="rgb(239,9,24)"/><text text-anchor="left" x="272.00" y="415.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find::h0c5384d5f0317d89 (1 samples, 0.01%)</title><rect x="288" y="389" width="0" height="15" fill="rgb(254,137,34)"/><text text-anchor="left" x="291.00" y="399.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::load::ha542f680e866ec32 (3 samples, 0.03%)</title><rect x="288" y="357" width="1" height="15" fill="rgb(226,195,9)"/><text text-anchor="left" x="291.00" y="367.50" 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>deno_core_http_bench`std::panicking::panicking::h59a7bbbccfc7f88b (1 samples, 0.01%)</title><rect x="289" y="357" width="0" height="15" fill="rgb(212,175,30)"/><text text-anchor="left" x="292.00" y="367.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hff7a20bb3292aca9 (2 samples, 0.02%)</title><rect x="289" y="341" width="0" height="15" fill="rgb(238,126,9)"/><text text-anchor="left" x="292.00" y="351.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hff7a20bb3292aca9 (1 samples, 0.01%)</title><rect x="289" y="325" width="0" height="15" fill="rgb(244,127,33)"/><text text-anchor="left" x="292.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::load::ha542f680e866ec32 (4 samples, 0.04%)</title><rect x="289" y="341" width="1" height="15" fill="rgb(206,72,51)"/><text text-anchor="left" x="292.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::ha2594c9f600c32dc (3 samples, 0.03%)</title><rect x="289" y="325" width="1" height="15" fill="rgb(249,117,47)"/><text text-anchor="left" x="292.00" y="335.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::get::h76e0d0a86fd63622 (7 samples, 0.07%)</title><rect x="289" y="357" width="1" height="15" fill="rgb(227,100,39)"/><text text-anchor="left" x="292.00" y="367.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::ha2594c9f600c32dc (1 samples, 0.01%)</title><rect x="290" y="341" width="0" height="15" fill="rgb(222,51,2)"/><text text-anchor="left" x="293.00" y="351.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::borrow::h2c69bcb5b700e448 (13 samples, 0.13%)</title><rect x="288" y="373" width="2" height="15" fill="rgb(249,163,17)"/><text text-anchor="left" x="291.00" y="383.50" 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>deno_core_http_bench`std::thread::panicking::h91240ed2c9a6e1d5 (2 samples, 0.02%)</title><rect x="290" y="357" width="0" height="15" fill="rgb(220,20,39)"/><text text-anchor="left" x="293.00" y="367.50" 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>deno_core_http_bench`std::panicking::panicking::h59a7bbbccfc7f88b (1 samples, 0.01%)</title><rect x="290" y="341" width="0" height="15" fill="rgb(244,130,35)"/><text text-anchor="left" x="293.00" y="351.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::get::h76e0d0a86fd63622 (1 samples, 0.01%)</title><rect x="290" y="373" width="0" height="15" fill="rgb(222,127,24)"/><text text-anchor="left" x="293.00" y="383.50" 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>deno_core_http_bench`std::sync::mutex::MutexGuard$LT$T$GT$::new::h54749b830b59a0e5 (17 samples, 0.17%)</title><rect x="288" y="389" width="2" height="15" fill="rgb(227,146,52)"/><text text-anchor="left" x="291.00" y="399.50" 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>deno_core_http_bench`std::sys_common::poison::map_result::hc48074941eac737a (1 samples, 0.01%)</title><rect x="290" y="373" width="0" height="15" fill="rgb(222,108,18)"/><text text-anchor="left" x="293.00" y="383.50" 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>deno_core_http_bench`std::sys::unix::mutex::Mutex::lock::h44fd2e3d44c2d56f (1 samples, 0.01%)</title><rect x="290" y="389" width="0" height="15" fill="rgb(209,79,17)"/><text text-anchor="left" x="293.00" y="399.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h4ebc354224a013c9 (1 samples, 0.01%)</title><rect x="290" y="373" width="1" height="15" fill="rgb(232,170,23)"/><text text-anchor="left" x="293.00" y="383.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_lock::ha818d1f48fe47d12 (3 samples, 0.03%)</title><rect x="290" y="389" width="1" height="15" fill="rgb(248,198,16)"/><text text-anchor="left" x="293.00" y="399.50" 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>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.01%)</title><rect x="291" y="373" width="0" height="15" fill="rgb(244,179,27)"/><text text-anchor="left" x="294.00" y="383.50" 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>deno_core_http_bench`std::sync::mutex::Mutex$LT$T$GT$::lock::h1b018b622fbd7899 (25 samples, 0.25%)</title><rect x="288" y="405" width="3" height="15" fill="rgb(249,157,15)"/><text text-anchor="left" x="291.00" y="415.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::borrow::h2c69bcb5b700e448 (2 samples, 0.02%)</title><rect x="291" y="389" width="0" height="15" fill="rgb(205,205,29)"/><text text-anchor="left" x="294.00" y="399.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_lock::ha818d1f48fe47d12 (3 samples, 0.03%)</title><rect x="291" y="405" width="0" height="15" fill="rgb(210,149,1)"/><text text-anchor="left" x="294.00" y="415.50" 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>deno_core_http_bench`_$LT$tokio_reactor..poll_evented..PollEvented$LT$E$GT$$u20$as$u20$std..io..Write$GT$::write::ha50ebe5cc8de0e22 (5 samples, 0.05%)</title><rect x="291" y="389" width="1" height="15" fill="rgb(227,125,18)"/><text text-anchor="left" x="294.00" y="399.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h933982778423c8e8 (2 samples, 0.02%)</title><rect x="292" y="373" width="0" height="15" fill="rgb(250,107,29)"/><text text-anchor="left" x="295.00" y="383.50" 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>deno_core_http_bench`_$LT$mio..net..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::h1228f38109ffd101 (5 samples, 0.05%)</title><rect x="292" y="373" width="1" height="15" fill="rgb(247,73,9)"/><text text-anchor="left" x="295.00" y="383.50" 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>deno_core_http_bench`_$LT$$RF$mio..sys..unix..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::hdf99b0a7abd0576d (4 samples, 0.04%)</title><rect x="294" y="357" width="0" height="15" fill="rgb(218,145,25)"/><text text-anchor="left" x="297.00" y="367.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h933982778423c8e8 (1 samples, 0.01%)</title><rect x="294" y="357" width="0" height="15" fill="rgb(224,66,10)"/><text text-anchor="left" x="297.00" y="367.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hffd50f5b30a9363b (1 samples, 0.01%)</title><rect x="294" y="357" width="0" height="15" fill="rgb(208,33,11)"/><text text-anchor="left" x="297.00" y="367.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (1 samples, 0.01%)</title><rect x="294" y="357" width="0" height="15" fill="rgb(209,107,22)"/><text text-anchor="left" x="297.00" y="367.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitOr$LT$T$GT$$GT$::bitor::h3c74c6262e259a2d (1 samples, 0.01%)</title><rect x="294" y="357" width="1" height="15" fill="rgb(239,221,17)"/><text text-anchor="left" x="297.00" y="367.50" 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>deno_core_http_bench`_$LT$$RF$std..net..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::h00759255e754169e (7 samples, 0.07%)</title><rect x="295" y="325" width="1" height="15" fill="rgb(233,41,0)"/><text text-anchor="left" x="298.00" y="335.50" 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>libsystem_c.dylib`DYLD-STUB$$__sendto (1 samples, 0.01%)</title><rect x="296" y="325" width="0" height="15" fill="rgb(235,58,49)"/><text text-anchor="left" x="299.00" y="335.50" 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>libsystem_c.dylib`send (1 samples, 0.01%)</title><rect x="296" y="325" width="0" height="15" fill="rgb(254,97,45)"/><text text-anchor="left" x="299.00" y="335.50" 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>deno_core_http_bench`_$LT$$RF$mio..sys..unix..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::hdf99b0a7abd0576d (1,003 samples, 9.84%)</title><rect x="295" y="341" width="116" height="15" fill="rgb(222,86,45)"/><text text-anchor="left" x="298.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__sendto (994 samples, 9.75%)</title><rect x="296" y="325" width="115" height="15" fill="rgb(247,162,29)"/><text text-anchor="left" x="299.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">libsystem_kern..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$mio..net..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::h1228f38109ffd101 (1,008 samples, 9.89%)</title><rect x="295" y="357" width="116" height="15" fill="rgb(237,151,17)"/><text text-anchor="left" x="298.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$$RF$std..net..tcp..TcpStream$u20$as$u20$std..io..Write$GT$::write::h00759255e754169e (3 samples, 0.03%)</title><rect x="411" y="341" width="0" height="15" fill="rgb(215,133,32)"/><text text-anchor="left" x="414.00" y="351.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h27bc1469a5a18c0f (4 samples, 0.04%)</title><rect x="411" y="357" width="1" height="15" fill="rgb(208,43,2)"/><text text-anchor="left" x="414.00" y="367.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::store::h068d34cba1ddf81d (4 samples, 0.04%)</title><rect x="412" y="357" width="0" height="15" fill="rgb(210,122,17)"/><text text-anchor="left" x="415.00" y="367.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::he4f9266b597c4bfc (3 samples, 0.03%)</title><rect x="412" y="357" width="1" height="15" fill="rgb(252,80,26)"/><text text-anchor="left" x="415.00" y="367.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (2 samples, 0.02%)</title><rect x="413" y="357" width="0" height="15" fill="rgb(207,200,39)"/><text text-anchor="left" x="416.00" y="367.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_mut::hd6a764fea4a3c208 (1 samples, 0.01%)</title><rect x="413" y="341" width="0" height="15" fill="rgb(243,58,44)"/><text text-anchor="left" x="416.00" y="351.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::get_mut::h5f9901d685901913 (6 samples, 0.06%)</title><rect x="413" y="357" width="0" height="15" fill="rgb(243,186,19)"/><text text-anchor="left" x="416.00" y="367.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h91202ce918f6041c (3 samples, 0.03%)</title><rect x="413" y="341" width="0" height="15" fill="rgb(251,59,19)"/><text text-anchor="left" x="416.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h55ec68e0f45683cf (1 samples, 0.01%)</title><rect x="414" y="341" width="0" height="15" fill="rgb(237,46,38)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="414" y="341" width="0" height="15" fill="rgb(228,211,30)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::hfd69363eecb77517 (1 samples, 0.01%)</title><rect x="414" y="341" width="0" height="15" fill="rgb(231,24,54)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$futures..poll..Async$LT$T$GT$$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::h22d7fb64709b22bd (1 samples, 0.01%)</title><rect x="414" y="325" width="0" height="15" fill="rgb(239,63,16)"/><text text-anchor="left" x="417.00" y="335.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h15943ec545552b0d (1 samples, 0.01%)</title><rect x="414" y="341" width="0" height="15" fill="rgb(213,51,3)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (1 samples, 0.01%)</title><rect x="414" y="341" width="0" height="15" fill="rgb(250,203,2)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitOr$LT$T$GT$$GT$::bitor::h3c74c6262e259a2d (4 samples, 0.04%)</title><rect x="414" y="341" width="1" height="15" fill="rgb(230,171,12)"/><text text-anchor="left" x="417.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (3 samples, 0.03%)</title><rect x="415" y="325" width="0" height="15" fill="rgb(248,191,30)"/><text text-anchor="left" x="418.00" y="335.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::hfa900f6f1b1f632d (1 samples, 0.01%)</title><rect x="415" y="309" width="0" height="15" fill="rgb(217,182,17)"/><text text-anchor="left" x="418.00" y="319.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::hbcf0cf4c156f6e39 (3 samples, 0.03%)</title><rect x="415" y="341" width="0" height="15" fill="rgb(217,118,2)"/><text text-anchor="left" x="418.00" y="351.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h2476ff90c79ca7d1 (1 samples, 0.01%)</title><rect x="415" y="341" width="0" height="15" fill="rgb(249,96,33)"/><text text-anchor="left" x="418.00" y="351.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="416" y="325" width="0" height="15" fill="rgb(221,38,25)"/><text text-anchor="left" x="419.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::ha358f980e13c3bef (6 samples, 0.06%)</title><rect x="415" y="341" width="1" height="15" fill="rgb(211,134,32)"/><text text-anchor="left" x="418.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (3 samples, 0.03%)</title><rect x="416" y="325" width="0" height="15" fill="rgb(242,29,19)"/><text text-anchor="left" x="419.00" y="335.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="416" y="325" width="0" height="15" fill="rgb(215,178,54)"/><text text-anchor="left" x="419.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::store::h068d34cba1ddf81d (3 samples, 0.03%)</title><rect x="416" y="341" width="0" height="15" fill="rgb(243,108,12)"/><text text-anchor="left" x="419.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_store::h9c992538f2b78704 (1 samples, 0.01%)</title><rect x="416" y="325" width="0" height="15" fill="rgb(254,15,12)"/><text text-anchor="left" x="419.00" y="335.50" 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>deno_core_http_bench`mio::event_imp::Ready::from_usize::hbb026ea30dcf2f90 (1 samples, 0.01%)</title><rect x="416" y="341" width="1" height="15" fill="rgb(249,18,43)"/><text text-anchor="left" x="419.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::he4f9266b597c4bfc (5 samples, 0.05%)</title><rect x="417" y="341" width="0" height="15" fill="rgb(234,197,46)"/><text text-anchor="left" x="420.00" y="351.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4d4d0512192fa9c3 (3 samples, 0.03%)</title><rect x="417" y="325" width="0" height="15" fill="rgb(243,123,29)"/><text text-anchor="left" x="420.00" y="335.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (1 samples, 0.01%)</title><rect x="417" y="341" width="0" height="15" fill="rgb(221,196,14)"/><text text-anchor="left" x="420.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (4 samples, 0.04%)</title><rect x="417" y="325" width="1" height="15" fill="rgb(223,133,49)"/><text text-anchor="left" x="420.00" y="335.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (8 samples, 0.08%)</title><rect x="417" y="341" width="1" height="15" fill="rgb(209,148,2)"/><text text-anchor="left" x="420.00" y="351.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (3 samples, 0.03%)</title><rect x="418" y="325" width="0" height="15" fill="rgb(252,97,3)"/><text text-anchor="left" x="421.00" y="335.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (1 samples, 0.01%)</title><rect x="418" y="309" width="0" height="15" fill="rgb(240,196,8)"/><text text-anchor="left" x="421.00" y="319.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h15943ec545552b0d (3 samples, 0.03%)</title><rect x="418" y="325" width="1" height="15" fill="rgb(232,179,33)"/><text text-anchor="left" x="421.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::hbcf0cf4c156f6e39 (1 samples, 0.01%)</title><rect x="419" y="325" width="0" height="15" fill="rgb(233,194,53)"/><text text-anchor="left" x="422.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h2476ff90c79ca7d1 (1 samples, 0.01%)</title><rect x="419" y="325" width="0" height="15" fill="rgb(215,8,34)"/><text text-anchor="left" x="422.00" y="335.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register2::hdf8b78b410aaf0c7 (2 samples, 0.02%)</title><rect x="419" y="325" width="0" height="15" fill="rgb(232,69,49)"/><text text-anchor="left" x="422.00" y="335.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="419" y="277" width="0" height="15" fill="rgb(210,166,37)"/><text text-anchor="left" x="422.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::register::hac1e48a385c82a71 (14 samples, 0.14%)</title><rect x="418" y="341" width="2" height="15" fill="rgb(229,126,11)"/><text text-anchor="left" x="421.00" y="351.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register::h1ed4f9fe829defc9 (5 samples, 0.05%)</title><rect x="419" y="325" width="1" height="15" fill="rgb(209,109,6)"/><text text-anchor="left" x="422.00" y="335.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register2::hdf8b78b410aaf0c7 (5 samples, 0.05%)</title><rect x="419" y="309" width="1" height="15" fill="rgb(242,59,0)"/><text text-anchor="left" x="422.00" y="319.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::ha358f980e13c3bef (4 samples, 0.04%)</title><rect x="419" y="293" width="1" height="15" fill="rgb(224,9,26)"/><text text-anchor="left" x="422.00" y="303.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (3 samples, 0.03%)</title><rect x="419" y="277" width="1" height="15" fill="rgb(246,98,49)"/><text text-anchor="left" x="422.00" y="287.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h11571165fa65c8d9 (1 samples, 0.01%)</title><rect x="420" y="325" width="0" height="15" fill="rgb(232,19,9)"/><text text-anchor="left" x="423.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h5f2d9253e2db28ae (2 samples, 0.02%)</title><rect x="420" y="325" width="0" height="15" fill="rgb(250,70,40)"/><text text-anchor="left" x="423.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="420" y="325" width="1" height="15" fill="rgb(230,102,45)"/><text text-anchor="left" x="423.00" y="335.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..arith..Sub$LT$T$GT$$GT$::sub::h04a268de882bd444 (1 samples, 0.01%)</title><rect x="421" y="309" width="0" height="15" fill="rgb(210,100,10)"/><text text-anchor="left" x="424.00" y="319.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h2c8a26de4b289749 (3 samples, 0.03%)</title><rect x="421" y="309" width="0" height="15" fill="rgb(247,15,7)"/><text text-anchor="left" x="424.00" y="319.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h5f2d9253e2db28ae (1 samples, 0.01%)</title><rect x="421" y="309" width="0" height="15" fill="rgb(230,36,49)"/><text text-anchor="left" x="424.00" y="319.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hfda5d8a9569e4abc (1 samples, 0.01%)</title><rect x="421" y="309" width="0" height="15" fill="rgb(224,33,24)"/><text text-anchor="left" x="424.00" y="319.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="421" y="309" width="1" height="15" fill="rgb(234,191,2)"/><text text-anchor="left" x="424.00" y="319.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (1 samples, 0.01%)</title><rect x="422" y="293" width="0" height="15" fill="rgb(236,63,6)"/><text text-anchor="left" x="425.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::hfbfb8e638a4e9b11 (1 samples, 0.01%)</title><rect x="422" y="309" width="0" height="15" fill="rgb(241,46,48)"/><text text-anchor="left" x="425.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::Direction::mask::h0bbf668c06b63728 (1 samples, 0.01%)</title><rect x="422" y="309" width="0" height="15" fill="rgb(217,199,21)"/><text text-anchor="left" x="425.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::inner::h4aabadd704398e1a (1 samples, 0.01%)</title><rect x="422" y="309" width="0" height="15" fill="rgb(221,148,53)"/><text text-anchor="left" x="425.00" y="319.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="422" y="293" width="0" height="15" fill="rgb(238,152,7)"/><text text-anchor="left" x="425.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h46cf0cd529b560ee (2 samples, 0.02%)</title><rect x="422" y="293" width="1" height="15" fill="rgb(210,64,53)"/><text text-anchor="left" x="425.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h223f1d7ef2570469 (1 samples, 0.01%)</title><rect x="423" y="293" width="0" height="15" fill="rgb(218,47,21)"/><text text-anchor="left" x="426.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..arith..Sub$LT$T$GT$$GT$::sub::h04a268de882bd444 (7 samples, 0.07%)</title><rect x="423" y="293" width="1" height="15" fill="rgb(238,180,4)"/><text text-anchor="left" x="426.00" y="303.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (6 samples, 0.06%)</title><rect x="423" y="277" width="1" height="15" fill="rgb(247,95,20)"/><text text-anchor="left" x="426.00" y="287.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::hfa900f6f1b1f632d (1 samples, 0.01%)</title><rect x="423" y="261" width="1" height="15" fill="rgb(235,148,39)"/><text text-anchor="left" x="426.00" y="271.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (1 samples, 0.01%)</title><rect x="424" y="293" width="0" height="15" fill="rgb(241,197,39)"/><text text-anchor="left" x="427.00" y="303.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="424" y="277" width="0" height="15" fill="rgb(230,173,42)"/><text text-anchor="left" x="427.00" y="287.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h66d73a2c424320cc (1 samples, 0.01%)</title><rect x="424" y="245" width="0" height="15" fill="rgb(231,84,13)"/><text text-anchor="left" x="427.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::ha0f0a24c19177c28 (1 samples, 0.01%)</title><rect x="424" y="245" width="0" height="15" fill="rgb(219,113,34)"/><text text-anchor="left" x="427.00" y="255.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2b41f4645fa7da95 (10 samples, 0.10%)</title><rect x="424" y="261" width="1" height="15" fill="rgb(249,79,16)"/><text text-anchor="left" x="427.00" y="271.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hde2d078af0157721 (5 samples, 0.05%)</title><rect x="424" y="245" width="1" height="15" fill="rgb(220,23,7)"/><text text-anchor="left" x="427.00" y="255.50" 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>deno_core_http_bench`_$LT$slab..Slab$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$usize$GT$$GT$::index::ha4f915c03e208695 (13 samples, 0.13%)</title><rect x="424" y="293" width="1" height="15" fill="rgb(225,132,16)"/><text text-anchor="left" x="427.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h50870b45d5b7c1a1 (11 samples, 0.11%)</title><rect x="424" y="277" width="1" height="15" fill="rgb(221,94,22)"/><text text-anchor="left" x="427.00" y="287.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hde2d078af0157721 (1 samples, 0.01%)</title><rect x="425" y="261" width="0" height="15" fill="rgb(223,176,30)"/><text text-anchor="left" x="428.00" y="271.50" 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>deno_core_http_bench`_$LT$tokio_reactor..sharded_rwlock..RwLockReadGuard$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hfc1d07a050e4da7c (2 samples, 0.02%)</title><rect x="425" y="293" width="0" height="15" fill="rgb(228,183,10)"/><text text-anchor="left" x="428.00" y="303.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hf8ec3e378cad75ee (1 samples, 0.01%)</title><rect x="425" y="277" width="0" height="15" fill="rgb(240,227,7)"/><text text-anchor="left" x="428.00" y="287.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::len::h4c23334428af9105 (1 samples, 0.01%)</title><rect x="425" y="293" width="0" height="15" fill="rgb(239,110,8)"/><text text-anchor="left" x="428.00" y="303.50" 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>deno_core_http_bench`_$LT$lock_api..rwlock..RwLockReadGuard$LT$R$C$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hac875ec77758d33d (1 samples, 0.01%)</title><rect x="425" y="277" width="1" height="15" fill="rgb(246,170,17)"/><text text-anchor="left" x="428.00" y="287.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::is_ok::h97f33a0ad3e661aa (1 samples, 0.01%)</title><rect x="426" y="229" width="0" height="15" fill="rgb(207,23,44)"/><text text-anchor="left" x="429.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (7 samples, 0.07%)</title><rect x="426" y="229" width="1" height="15" fill="rgb(254,183,52)"/><text text-anchor="left" x="429.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (5 samples, 0.05%)</title><rect x="427" y="213" width="0" height="15" fill="rgb(251,54,34)"/><text text-anchor="left" x="430.00" y="223.50" 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>deno_core_http_bench`_$LT$lock_api..rwlock..RwLockReadGuard$LT$R$C$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hac875ec77758d33d (16 samples, 0.16%)</title><rect x="426" y="261" width="1" height="15" fill="rgb(237,200,11)"/><text text-anchor="left" x="429.00" y="271.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::unlock_shared::ha52ac62bd9eaee26 (14 samples, 0.14%)</title><rect x="426" y="245" width="1" height="15" fill="rgb(222,150,53)"/><text text-anchor="left" x="429.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="427" y="229" width="0" height="15" fill="rgb(212,49,45)"/><text text-anchor="left" x="430.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (2 samples, 0.02%)</title><rect x="427" y="213" width="0" height="15" fill="rgb(230,105,1)"/><text text-anchor="left" x="430.00" y="223.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc87e32fb84227632 (18 samples, 0.18%)</title><rect x="425" y="293" width="3" height="15" fill="rgb(233,19,53)"/><text text-anchor="left" x="428.00" y="303.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he318e1ff1cf4afdb (17 samples, 0.17%)</title><rect x="426" y="277" width="2" height="15" fill="rgb(233,186,53)"/><text text-anchor="left" x="429.00" y="287.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::unlock_shared::ha52ac62bd9eaee26 (1 samples, 0.01%)</title><rect x="427" y="261" width="1" height="15" fill="rgb(245,61,38)"/><text text-anchor="left" x="430.00" y="271.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hf51031a99f80584a (2 samples, 0.02%)</title><rect x="428" y="261" width="0" height="15" fill="rgb(221,154,1)"/><text text-anchor="left" x="431.00" y="271.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hcbef5e80717c6ced (1 samples, 0.01%)</title><rect x="428" y="245" width="0" height="15" fill="rgb(224,101,38)"/><text text-anchor="left" x="431.00" y="255.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (3 samples, 0.03%)</title><rect x="428" y="245" width="0" height="15" fill="rgb(249,128,44)"/><text text-anchor="left" x="431.00" y="255.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hfda5d8a9569e4abc (7 samples, 0.07%)</title><rect x="428" y="293" width="0" height="15" fill="rgb(240,56,22)"/><text text-anchor="left" x="431.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h46cf0cd529b560ee (7 samples, 0.07%)</title><rect x="428" y="277" width="0" height="15" fill="rgb(242,210,50)"/><text text-anchor="left" x="431.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::h0275b6859935e700 (4 samples, 0.04%)</title><rect x="428" y="261" width="0" height="15" fill="rgb(205,204,12)"/><text text-anchor="left" x="431.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h27fed45ad48fb50f (1 samples, 0.01%)</title><rect x="428" y="245" width="0" height="15" fill="rgb(212,80,28)"/><text text-anchor="left" x="431.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_and::h215ac4893240001a (6 samples, 0.06%)</title><rect x="428" y="293" width="1" height="15" fill="rgb(245,223,38)"/><text text-anchor="left" x="431.00" y="303.50" 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>deno_core_http_bench`core::sync::atomic::atomic_and::h9904fc8bfae849db (6 samples, 0.06%)</title><rect x="428" y="277" width="1" height="15" fill="rgb(250,211,19)"/><text text-anchor="left" x="431.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::atomic_and::h9904fc8bfae849db (1 samples, 0.01%)</title><rect x="429" y="293" width="0" height="15" fill="rgb(225,102,35)"/><text text-anchor="left" x="432.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::as_usize::h96e5202cc8613856 (1 samples, 0.01%)</title><rect x="429" y="293" width="0" height="15" fill="rgb(253,154,48)"/><text text-anchor="left" x="432.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::h21fb6ad7247b1f75 (3 samples, 0.03%)</title><rect x="429" y="277" width="1" height="15" fill="rgb(245,45,44)"/><text text-anchor="left" x="432.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::hfbfb8e638a4e9b11 (5 samples, 0.05%)</title><rect x="429" y="293" width="1" height="15" fill="rgb(211,105,34)"/><text text-anchor="left" x="432.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::empty::hdf998d09fdc68d59 (1 samples, 0.01%)</title><rect x="430" y="277" width="0" height="15" fill="rgb(247,92,15)"/><text text-anchor="left" x="433.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::Ready::writable::h86d656880ca0a503 (1 samples, 0.01%)</title><rect x="430" y="293" width="0" height="15" fill="rgb(229,73,19)"/><text text-anchor="left" x="433.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitOr$LT$T$GT$$GT$::bitor::h3c74c6262e259a2d (2 samples, 0.02%)</title><rect x="430" y="277" width="1" height="15" fill="rgb(228,109,2)"/><text text-anchor="left" x="433.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::Ready::writable::h86d656880ca0a503 (2 samples, 0.02%)</title><rect x="431" y="277" width="0" height="15" fill="rgb(226,97,23)"/><text text-anchor="left" x="434.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::Direction::mask::h0bbf668c06b63728 (11 samples, 0.11%)</title><rect x="430" y="293" width="1" height="15" fill="rgb(226,182,32)"/><text text-anchor="left" x="433.00" y="303.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (4 samples, 0.04%)</title><rect x="431" y="277" width="0" height="15" fill="rgb(243,172,49)"/><text text-anchor="left" x="434.00" y="287.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (2 samples, 0.02%)</title><rect x="431" y="261" width="0" height="15" fill="rgb(246,151,4)"/><text text-anchor="left" x="434.00" y="271.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66542eea088aa3f3 (4 samples, 0.04%)</title><rect x="431" y="277" width="1" height="15" fill="rgb(240,79,48)"/><text text-anchor="left" x="434.00" y="287.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66542eea088aa3f3 (3 samples, 0.03%)</title><rect x="432" y="261" width="0" height="15" fill="rgb(208,5,27)"/><text text-anchor="left" x="435.00" y="271.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hc9a063854b2a7c00 (2 samples, 0.02%)</title><rect x="432" y="245" width="0" height="15" fill="rgb(220,60,5)"/><text text-anchor="left" x="435.00" y="255.50" 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>deno_core_http_bench`alloc::rc::is_dangling::hbfddb273609fa43f (4 samples, 0.04%)</title><rect x="433" y="245" width="0" height="15" fill="rgb(250,107,50)"/><text text-anchor="left" x="436.00" y="255.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::hf00a477988c2a2a8 (1 samples, 0.01%)</title><rect x="433" y="229" width="0" height="15" fill="rgb(228,177,27)"/><text text-anchor="left" x="436.00" y="239.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::hf00a477988c2a2a8 (1 samples, 0.01%)</title><rect x="433" y="245" width="0" height="15" fill="rgb(252,223,21)"/><text text-anchor="left" x="436.00" y="255.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::inner::h5a5cac38636c198b (11 samples, 0.11%)</title><rect x="432" y="261" width="1" height="15" fill="rgb(209,100,3)"/><text text-anchor="left" x="435.00" y="271.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hcbef5e80717c6ced (1 samples, 0.01%)</title><rect x="433" y="245" width="0" height="15" fill="rgb(234,176,48)"/><text text-anchor="left" x="436.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (6 samples, 0.06%)</title><rect x="433" y="261" width="1" height="15" fill="rgb(244,159,38)"/><text text-anchor="left" x="436.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (6 samples, 0.06%)</title><rect x="433" y="245" width="1" height="15" fill="rgb(254,196,20)"/><text text-anchor="left" x="436.00" y="255.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::inner::h4aabadd704398e1a (26 samples, 0.26%)</title><rect x="431" y="293" width="3" height="15" fill="rgb(205,184,39)"/><text text-anchor="left" x="434.00" y="303.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::upgrade::h0beb0d8ebffa9100 (22 samples, 0.22%)</title><rect x="432" y="277" width="2" height="15" fill="rgb(228,193,50)"/><text text-anchor="left" x="435.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (1 samples, 0.01%)</title><rect x="434" y="261" width="0" height="15" fill="rgb(246,44,24)"/><text text-anchor="left" x="437.00" y="271.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h55ec68e0f45683cf (2 samples, 0.02%)</title><rect x="434" y="277" width="1" height="15" fill="rgb(224,84,6)"/><text text-anchor="left" x="437.00" y="287.50" 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>deno_core_http_bench`mio::sys::unix::ready::_$LT$impl$u20$core..convert..From$LT$mio..sys..unix..ready..UnixReady$GT$$u20$for$u20$mio..event_imp..Ready$GT$::from::h8b35fe50c386205f (1 samples, 0.01%)</title><rect x="435" y="261" width="0" height="15" fill="rgb(214,212,26)"/><text text-anchor="left" x="438.00" y="271.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (4 samples, 0.04%)</title><rect x="434" y="293" width="1" height="15" fill="rgb(240,115,50)"/><text text-anchor="left" x="437.00" y="303.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (1 samples, 0.01%)</title><rect x="435" y="277" width="0" height="15" fill="rgb(235,91,4)"/><text text-anchor="left" x="438.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (1 samples, 0.01%)</title><rect x="435" y="261" width="0" height="15" fill="rgb(216,149,13)"/><text text-anchor="left" x="438.00" y="271.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::ha86f84a015fd89a5 (1 samples, 0.01%)</title><rect x="436" y="245" width="0" height="15" fill="rgb(232,150,5)"/><text text-anchor="left" x="439.00" y="255.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h245261f6ec28479d (1 samples, 0.01%)</title><rect x="436" y="245" width="0" height="15" fill="rgb(229,173,45)"/><text text-anchor="left" x="439.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h32ecfac2ca68030f (1 samples, 0.01%)</title><rect x="436" y="245" width="0" height="15" fill="rgb(217,210,8)"/><text text-anchor="left" x="439.00" y="255.50" 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>deno_core_http_bench`core::ptr::null_mut::h416681d3c2f83223 (1 samples, 0.01%)</title><rect x="436" y="245" width="0" height="15" fill="rgb(228,30,26)"/><text text-anchor="left" x="439.00" y="255.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h7cd351fb0a1a7c81 (13 samples, 0.13%)</title><rect x="435" y="261" width="2" height="15" fill="rgb(243,195,19)"/><text text-anchor="left" x="438.00" y="271.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hb5e6c70e21260af6 (7 samples, 0.07%)</title><rect x="436" y="245" width="1" height="15" fill="rgb(244,21,4)"/><text text-anchor="left" x="439.00" y="255.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h5d093e989500fa13 (1 samples, 0.01%)</title><rect x="437" y="261" width="0" height="15" fill="rgb(210,134,5)"/><text text-anchor="left" x="440.00" y="271.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::ha86f84a015fd89a5 (1 samples, 0.01%)</title><rect x="437" y="261" width="0" height="15" fill="rgb(213,117,25)"/><text text-anchor="left" x="440.00" y="271.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h223f1d7ef2570469 (21 samples, 0.21%)</title><rect x="435" y="277" width="3" height="15" fill="rgb(235,187,34)"/><text text-anchor="left" x="438.00" y="287.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4b01ce816520d5d3 (3 samples, 0.03%)</title><rect x="437" y="261" width="1" height="15" fill="rgb(222,225,28)"/><text text-anchor="left" x="440.00" y="271.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h5d093e989500fa13 (2 samples, 0.02%)</title><rect x="437" y="245" width="1" height="15" fill="rgb(234,126,39)"/><text text-anchor="left" x="440.00" y="255.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::h6cc245eb941c3c47 (2 samples, 0.02%)</title><rect x="438" y="245" width="0" height="15" fill="rgb(226,144,2)"/><text text-anchor="left" x="441.00" y="255.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4629dd7faa41936f (2 samples, 0.02%)</title><rect x="438" y="229" width="0" height="15" fill="rgb(241,15,8)"/><text text-anchor="left" x="441.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (7 samples, 0.07%)</title><rect x="438" y="245" width="1" height="15" fill="rgb(244,58,36)"/><text text-anchor="left" x="441.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (7 samples, 0.07%)</title><rect x="438" y="229" width="1" height="15" fill="rgb(236,217,45)"/><text text-anchor="left" x="441.00" y="239.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read::hd9ca754f605ffb0e (17 samples, 0.17%)</title><rect x="438" y="277" width="1" height="15" fill="rgb(241,59,10)"/><text text-anchor="left" x="441.00" y="287.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::lock_shared::ha2ce03267247a82c (16 samples, 0.16%)</title><rect x="438" y="261" width="1" height="15" fill="rgb(218,221,24)"/><text text-anchor="left" x="441.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="439" y="245" width="0" height="15" fill="rgb(220,83,53)"/><text text-anchor="left" x="442.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (1 samples, 0.01%)</title><rect x="439" y="229" width="0" height="15" fill="rgb(208,171,48)"/><text text-anchor="left" x="442.00" y="239.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc7eec755a72a73c8 (2 samples, 0.02%)</title><rect x="439" y="261" width="1" height="15" fill="rgb(243,24,6)"/><text text-anchor="left" x="442.00" y="271.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hcb66fcf326ad7814 (2 samples, 0.02%)</title><rect x="440" y="261" width="0" height="15" fill="rgb(236,32,39)"/><text text-anchor="left" x="443.00" y="271.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap_or::hc1f5c53a09bf1ecd (1 samples, 0.01%)</title><rect x="440" y="261" width="0" height="15" fill="rgb(222,100,7)"/><text text-anchor="left" x="443.00" y="271.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc7eec755a72a73c8 (1 samples, 0.01%)</title><rect x="441" y="245" width="0" height="15" fill="rgb(238,207,24)"/><text text-anchor="left" x="444.00" y="255.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hcb66fcf326ad7814 (1 samples, 0.01%)</title><rect x="441" y="245" width="0" height="15" fill="rgb(249,134,22)"/><text text-anchor="left" x="444.00" y="255.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::hd9f058479398d5bb (1 samples, 0.01%)</title><rect x="441" y="245" width="0" height="15" fill="rgb(211,82,49)"/><text text-anchor="left" x="444.00" y="255.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h7dec63b0d0cb6f7c (2 samples, 0.02%)</title><rect x="441" y="213" width="0" height="15" fill="rgb(212,116,50)"/><text text-anchor="left" x="444.00" y="223.50" 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>deno_core_http_bench`core::mem::needs_drop::h8c83b32cd8c8c840 (1 samples, 0.01%)</title><rect x="441" y="213" width="0" height="15" fill="rgb(249,42,25)"/><text text-anchor="left" x="444.00" y="223.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (8 samples, 0.08%)</title><rect x="441" y="245" width="1" height="15" fill="rgb(209,92,39)"/><text text-anchor="left" x="444.00" y="255.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::hd9f058479398d5bb (8 samples, 0.08%)</title><rect x="441" y="229" width="1" height="15" fill="rgb(230,87,52)"/><text text-anchor="left" x="444.00" y="239.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h85737dc74dbc8a64 (5 samples, 0.05%)</title><rect x="441" y="213" width="1" height="15" fill="rgb(248,44,40)"/><text text-anchor="left" x="444.00" y="223.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h7dec63b0d0cb6f7c (2 samples, 0.02%)</title><rect x="442" y="197" width="0" height="15" fill="rgb(250,13,19)"/><text text-anchor="left" x="445.00" y="207.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::_$u7b$$u7b$closure$u7d$$u7d$::h8ede7539b4d2d557 (1 samples, 0.01%)</title><rect x="442" y="245" width="0" height="15" fill="rgb(224,17,36)"/><text text-anchor="left" x="445.00" y="255.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h6087194a793c57d3 (23 samples, 0.23%)</title><rect x="440" y="261" width="3" height="15" fill="rgb(238,185,52)"/><text text-anchor="left" x="443.00" y="271.50" 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>libdyld.dylib`tlv_get_addr (5 samples, 0.05%)</title><rect x="442" y="245" width="1" height="15" fill="rgb(241,211,44)"/><text text-anchor="left" x="445.00" y="255.50" 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>deno_core_http_bench`_$LT$tokio_reactor..poll_evented..PollEvented$LT$E$GT$$u20$as$u20$std..io..Write$GT$::write::ha50ebe5cc8de0e22 (1,297 samples, 12.72%)</title><rect x="293" y="373" width="150" height="15" fill="rgb(232,215,17)"/><text text-anchor="left" x="296.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_benc..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::poll_write_ready::h23ff8fad52732a3e (256 samples, 2.51%)</title><rect x="413" y="357" width="30" height="15" fill="rgb(226,224,13)"/><text text-anchor="left" x="416.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Registration::take_write_ready::h6f21666bdf58ada5 (201 samples, 1.97%)</title><rect x="420" y="341" width="23" height="15" fill="rgb(248,142,6)"/><text text-anchor="left" x="423.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Registration::poll_ready::hbde160ddc3b51c14 (194 samples, 1.90%)</title><rect x="421" y="325" width="22" height="15" fill="rgb(253,84,7)"/><text text-anchor="left" x="424.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Inner::poll_ready::hde1342dfd694fa9d (182 samples, 1.79%)</title><rect x="422" y="309" width="21" height="15" fill="rgb(218,187,22)"/><text text-anchor="left" x="425.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::RwLock$LT$T$GT$::read::h5816c592d033b8ca (72 samples, 0.71%)</title><rect x="435" y="293" width="8" height="15" fill="rgb(214,207,14)"/><text text-anchor="left" x="438.00" y="303.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::h96dde913b1849116 (31 samples, 0.30%)</title><rect x="439" y="277" width="4" height="15" fill="rgb(240,205,17)"/><text text-anchor="left" x="442.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (3 samples, 0.03%)</title><rect x="443" y="261" width="0" height="15" fill="rgb(216,34,21)"/><text text-anchor="left" x="446.00" y="271.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h436637e3010e2175 (1 samples, 0.01%)</title><rect x="443" y="373" width="0" height="15" fill="rgb(217,98,46)"/><text text-anchor="left" x="446.00" y="383.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::get_mut::h5f9901d685901913 (1 samples, 0.01%)</title><rect x="443" y="373" width="0" height="15" fill="rgb(233,146,54)"/><text text-anchor="left" x="446.00" y="383.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::poll_write_ready::h23ff8fad52732a3e (4 samples, 0.04%)</title><rect x="443" y="373" width="1" height="15" fill="rgb(225,82,25)"/><text text-anchor="left" x="446.00" y="383.50" 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>deno_core_http_bench`_$LT$tokio_tcp..stream..TcpStream$u20$as$u20$std..io..Write$GT$::write::hfc4d82a56a117f29 (1,313 samples, 12.88%)</title><rect x="292" y="389" width="152" height="15" fill="rgb(235,145,39)"/><text text-anchor="left" x="295.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_benc..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::poll_evented::is_wouldblock::h466cd44fdf54f036 (2 samples, 0.02%)</title><rect x="444" y="373" width="0" height="15" fill="rgb(205,37,18)"/><text text-anchor="left" x="447.00" y="383.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_write::_$u7b$$u7b$closure$u7d$$u7d$::hb1040d3c4ddabbdf (1,567 samples, 15.37%)</title><rect x="263" y="421" width="181" height="15" fill="rgb(222,138,31)"/><text text-anchor="left" x="266.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_io::async_write::AsyncWrite::poll_write::h49060a8ec6b585a7 (1,321 samples, 12.96%)</title><rect x="291" y="405" width="153" height="15" fill="rgb(212,86,5)"/><text text-anchor="left" x="294.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_benc..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`core::ptr::real_drop_in_place::h2456437234273396 (1 samples, 0.01%)</title><rect x="444" y="389" width="0" height="15" fill="rgb(212,23,26)"/><text text-anchor="left" x="447.00" y="399.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::h074494a9725ddf4c (1 samples, 0.01%)</title><rect x="444" y="421" width="0" height="15" fill="rgb(223,192,5)"/><text text-anchor="left" x="447.00" y="431.50" 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>deno_core_http_bench`std::sync::mutex::Mutex$LT$T$GT$::lock::h1b018b622fbd7899 (2 samples, 0.02%)</title><rect x="444" y="421" width="0" height="15" fill="rgb(214,229,4)"/><text text-anchor="left" x="447.00" y="431.50" 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>deno_core_http_bench`_$LT$futures..future..poll_fn..PollFn$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h40f8ca1b660186c8 (1,579 samples, 15.49%)</title><rect x="262" y="437" width="183" height="15" fill="rgb(234,93,43)"/><text text-anchor="left" x="265.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_io::async_write::AsyncWrite::poll_write::h49060a8ec6b585a7 (1 samples, 0.01%)</title><rect x="444" y="421" width="1" height="15" fill="rgb(220,181,39)"/><text text-anchor="left" x="447.00" y="431.50" 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>deno_core_http_bench`core::mem::replace::hafbcd04bc301aa0e (1 samples, 0.01%)</title><rect x="445" y="421" width="0" height="15" fill="rgb(228,93,52)"/><text text-anchor="left" x="448.00" y="431.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::ha93e2db1d38aff63 (1 samples, 0.01%)</title><rect x="445" y="421" width="0" height="15" fill="rgb(234,62,23)"/><text text-anchor="left" x="448.00" y="431.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hc9baf3fd1bd4e1f5 (1 samples, 0.01%)</title><rect x="446" y="357" width="0" height="15" fill="rgb(254,44,36)"/><text text-anchor="left" x="449.00" y="367.50" 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>deno_core_http_bench`core::ptr::read::hfe35971180755932 (5 samples, 0.05%)</title><rect x="446" y="357" width="0" height="15" fill="rgb(222,91,9)"/><text text-anchor="left" x="449.00" y="367.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hc9baf3fd1bd4e1f5 (1 samples, 0.01%)</title><rect x="446" y="341" width="0" height="15" fill="rgb(242,173,34)"/><text text-anchor="left" x="449.00" y="351.50" 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>deno_core_http_bench`core::mem::swap::hcde475c026fc3ea8 (10 samples, 0.10%)</title><rect x="445" y="389" width="1" height="15" fill="rgb(225,76,12)"/><text text-anchor="left" x="448.00" y="399.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h539f6a856230c935 (10 samples, 0.10%)</title><rect x="445" y="373" width="1" height="15" fill="rgb(249,173,12)"/><text text-anchor="left" x="448.00" y="383.50" 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>deno_core_http_bench`core::ptr::write::h033396537bee378d (1 samples, 0.01%)</title><rect x="446" y="357" width="0" height="15" fill="rgb(216,101,22)"/><text text-anchor="left" x="449.00" y="367.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h64273a5b66e66484 (15 samples, 0.15%)</title><rect x="445" y="421" width="2" height="15" fill="rgb(246,143,51)"/><text text-anchor="left" x="448.00" y="431.50" 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>deno_core_http_bench`core::mem::replace::hafbcd04bc301aa0e (14 samples, 0.14%)</title><rect x="445" y="405" width="2" height="15" fill="rgb(253,195,33)"/><text text-anchor="left" x="448.00" y="415.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h539f6a856230c935 (1 samples, 0.01%)</title><rect x="446" y="389" width="1" height="15" fill="rgb(236,16,8)"/><text text-anchor="left" x="449.00" y="399.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::hc2531c785859c46f (2 samples, 0.02%)</title><rect x="447" y="405" width="0" height="15" fill="rgb(241,222,1)"/><text text-anchor="left" x="450.00" y="415.50" 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>deno_core_http_bench`futures::poll::Async::Ready::heae5839d54b86a0b (1 samples, 0.01%)</title><rect x="447" y="389" width="0" height="15" fill="rgb(226,187,15)"/><text text-anchor="left" x="450.00" y="399.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4f3007d9d07f1240 (25 samples, 0.25%)</title><rect x="445" y="437" width="2" height="15" fill="rgb(214,124,33)"/><text text-anchor="left" x="448.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h63db91bbb876c879 (8 samples, 0.08%)</title><rect x="447" y="421" width="0" height="15" fill="rgb(230,193,9)"/><text text-anchor="left" x="450.00" y="431.50" 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>deno_core_http_bench`futures::poll::Async::Ready::heae5839d54b86a0b (1 samples, 0.01%)</title><rect x="447" y="405" width="0" height="15" fill="rgb(249,116,48)"/><text text-anchor="left" x="450.00" y="415.50" 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>deno_core_http_bench`core::mem::size_of::he4dd5ac49330d6f6 (1 samples, 0.01%)</title><rect x="448" y="405" width="0" height="15" fill="rgb(247,60,17)"/><text text-anchor="left" x="451.00" y="415.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::h3cce3925d37f87bc (2 samples, 0.02%)</title><rect x="448" y="405" width="0" height="15" fill="rgb(211,98,51)"/><text text-anchor="left" x="451.00" y="415.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (3 samples, 0.03%)</title><rect x="448" y="373" width="1" height="15" fill="rgb(234,138,7)"/><text text-anchor="left" x="451.00" y="383.50" 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>deno_core_http_bench`core::mem::size_of::h7ae92680284dc7ae (1 samples, 0.01%)</title><rect x="449" y="373" width="0" height="15" fill="rgb(210,112,22)"/><text text-anchor="left" x="452.00" y="383.50" 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>deno_core_http_bench`core::mem::size_of::he4dd5ac49330d6f6 (2 samples, 0.02%)</title><rect x="449" y="373" width="0" height="15" fill="rgb(206,69,31)"/><text text-anchor="left" x="452.00" y="383.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (3 samples, 0.03%)</title><rect x="449" y="357" width="1" height="15" fill="rgb(226,218,7)"/><text text-anchor="left" x="452.00" y="367.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="449" y="341" width="1" height="15" fill="rgb(247,67,7)"/><text text-anchor="left" x="452.00" y="351.50" 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>deno_core_http_bench`core::mem::size_of::h7ae92680284dc7ae (2 samples, 0.02%)</title><rect x="450" y="357" width="0" height="15" fill="rgb(219,229,9)"/><text text-anchor="left" x="453.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (6 samples, 0.06%)</title><rect x="450" y="357" width="1" height="15" fill="rgb(241,138,45)"/><text text-anchor="left" x="453.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (4 samples, 0.04%)</title><rect x="450" y="341" width="1" height="15" fill="rgb(246,124,17)"/><text text-anchor="left" x="453.00" y="351.50" 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>deno_core_http_bench`core::mem::swap::hc8b6be3cabbea2f0 (31 samples, 0.30%)</title><rect x="448" y="421" width="3" height="15" fill="rgb(228,166,45)"/><text text-anchor="left" x="451.00" y="431.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h61c7d6a23832241c (28 samples, 0.27%)</title><rect x="448" y="405" width="3" height="15" fill="rgb(211,121,39)"/><text text-anchor="left" x="451.00" y="415.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::h3cce3925d37f87bc (28 samples, 0.27%)</title><rect x="448" y="389" width="3" height="15" fill="rgb(251,224,2)"/><text text-anchor="left" x="451.00" y="399.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (19 samples, 0.19%)</title><rect x="449" y="373" width="2" height="15" fill="rgb(208,134,9)"/><text text-anchor="left" x="452.00" y="383.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (4 samples, 0.04%)</title><rect x="451" y="357" width="0" height="15" fill="rgb(209,64,18)"/><text text-anchor="left" x="454.00" y="367.50" 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>deno_core_http_bench`core::mem::replace::h6a138fccee5793b8 (34 samples, 0.33%)</title><rect x="447" y="437" width="4" height="15" fill="rgb(232,116,5)"/><text text-anchor="left" x="450.00" y="447.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h61c7d6a23832241c (2 samples, 0.02%)</title><rect x="451" y="421" width="0" height="15" fill="rgb(207,139,50)"/><text text-anchor="left" x="454.00" y="431.50" 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>deno_core_http_bench`core::mem::swap::hc8b6be3cabbea2f0 (5 samples, 0.05%)</title><rect x="451" y="437" width="1" height="15" fill="rgb(212,1,1)"/><text text-anchor="left" x="454.00" y="447.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::ha93e2db1d38aff63 (1 samples, 0.01%)</title><rect x="452" y="437" width="0" height="15" fill="rgb(235,112,5)"/><text text-anchor="left" x="455.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h0bfbddcbb2f5102a (2 samples, 0.02%)</title><rect x="452" y="437" width="0" height="15" fill="rgb(245,142,44)"/><text text-anchor="left" x="455.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::ha018e5b2303135bc (1 samples, 0.01%)</title><rect x="452" y="437" width="0" height="15" fill="rgb(209,107,30)"/><text text-anchor="left" x="455.00" y="447.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..drop..Drop$GT$::drop::hc286e04ab18d17e1 (2 samples, 0.02%)</title><rect x="453" y="405" width="0" height="15" fill="rgb(234,144,4)"/><text text-anchor="left" x="456.00" y="415.50" 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>deno_core_http_bench`std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::find&lt;void*&gt; (6 samples, 0.06%)</title><rect x="453" y="357" width="1" height="15" fill="rgb(235,175,23)"/><text text-anchor="left" x="456.00" y="367.50" 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>deno_core_http_bench`std::__1::__libcpp_mutex_unlock (1 samples, 0.01%)</title><rect x="454" y="357" width="0" height="15" fill="rgb(242,215,39)"/><text text-anchor="left" x="457.00" y="367.50" 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>deno_core_http_bench`DYLD-STUB$$pthread_mutex_lock (1 samples, 0.01%)</title><rect x="454" y="341" width="0" height="15" fill="rgb(250,165,11)"/><text text-anchor="left" x="457.00" y="351.50" 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>deno_core_http_bench`std::__1::__libcpp_mutex_lock (1 samples, 0.01%)</title><rect x="454" y="341" width="0" height="15" fill="rgb(242,50,11)"/><text text-anchor="left" x="457.00" y="351.50" 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>deno_core_http_bench`std::__1::mutex::lock (3 samples, 0.03%)</title><rect x="454" y="357" width="0" height="15" fill="rgb(221,191,26)"/><text text-anchor="left" x="457.00" y="367.50" 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>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.01%)</title><rect x="454" y="341" width="0" height="15" fill="rgb(236,205,32)"/><text text-anchor="left" x="457.00" y="351.50" 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>deno_core_http_bench`deno::ArrayBufferAllocator::Unref (14 samples, 0.14%)</title><rect x="453" y="373" width="2" height="15" fill="rgb(238,175,33)"/><text text-anchor="left" x="456.00" y="383.50" 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>deno_core_http_bench`std::__1::mutex::unlock (2 samples, 0.02%)</title><rect x="454" y="357" width="1" height="15" fill="rgb(221,60,50)"/><text text-anchor="left" x="457.00" y="367.50" 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>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="455" y="341" width="0" height="15" fill="rgb(246,156,25)"/><text text-anchor="left" x="458.00" y="351.50" 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>deno_core_http_bench`deno_pinned_buf_delete (4 samples, 0.04%)</title><rect x="455" y="373" width="0" height="15" fill="rgb(207,38,33)"/><text text-anchor="left" x="458.00" y="383.50" 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>deno_core_http_bench`std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::find&lt;void*&gt; (6 samples, 0.06%)</title><rect x="455" y="373" width="1" height="15" fill="rgb(242,32,34)"/><text text-anchor="left" x="458.00" y="383.50" 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>deno_core_http_bench`std::__1::mutex::lock (1 samples, 0.01%)</title><rect x="456" y="373" width="0" height="15" fill="rgb(207,103,34)"/><text text-anchor="left" x="459.00" y="383.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..drop..Drop$GT$::drop::hc286e04ab18d17e1 (27 samples, 0.26%)</title><rect x="453" y="389" width="3" height="15" fill="rgb(216,16,42)"/><text text-anchor="left" x="456.00" y="399.50" 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>deno_core_http_bench`std::__1::mutex::unlock (1 samples, 0.01%)</title><rect x="456" y="373" width="0" height="15" fill="rgb(253,108,29)"/><text text-anchor="left" x="459.00" y="383.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h0bfbddcbb2f5102a (31 samples, 0.30%)</title><rect x="453" y="421" width="3" height="15" fill="rgb(227,5,13)"/><text text-anchor="left" x="456.00" y="431.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5c3a50f345b3744e (28 samples, 0.27%)</title><rect x="453" y="405" width="3" height="15" fill="rgb(246,80,28)"/><text text-anchor="left" x="456.00" y="415.50" 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>deno_core_http_bench`deno::ArrayBufferAllocator::Unref (1 samples, 0.01%)</title><rect x="456" y="389" width="0" height="15" fill="rgb(243,126,12)"/><text text-anchor="left" x="459.00" y="399.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hb44827c2bba1eb4c (34 samples, 0.33%)</title><rect x="452" y="437" width="4" height="15" fill="rgb(205,95,49)"/><text text-anchor="left" x="455.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5c3a50f345b3744e (2 samples, 0.02%)</title><rect x="456" y="421" width="0" height="15" fill="rgb(223,47,1)"/><text text-anchor="left" x="459.00" y="431.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h4e67fbeb9b6ec5b6 (3 samples, 0.03%)</title><rect x="456" y="437" width="1" height="15" fill="rgb(216,62,45)"/><text text-anchor="left" x="459.00" y="447.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_write::_$u7b$$u7b$closure$u7d$$u7d$::hb1040d3c4ddabbdf (4 samples, 0.04%)</title><rect x="457" y="437" width="0" height="15" fill="rgb(230,121,5)"/><text text-anchor="left" x="460.00" y="447.50" 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>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::hcdb68dde37d7c621 (1,731 samples, 16.98%)</title><rect x="257" y="453" width="200" height="15" fill="rgb(247,135,13)"/><text text-anchor="left" x="260.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futur..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="457" y="437" width="0" height="15" fill="rgb(248,59,52)"/><text text-anchor="left" x="460.00" y="447.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h83b3153ccbb5a8ec (1,748 samples, 17.15%)</title><rect x="255" y="469" width="202" height="15" fill="rgb(234,18,54)"/><text text-anchor="left" x="258.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="457" y="453" width="0" height="15" fill="rgb(217,76,47)"/><text text-anchor="left" x="460.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..poll_fn..PollFn$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he6a65c671fb3d13e (1 samples, 0.01%)</title><rect x="458" y="453" width="0" height="15" fill="rgb(219,12,36)"/><text text-anchor="left" x="461.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4f3007d9d07f1240 (3 samples, 0.03%)</title><rect x="458" y="453" width="0" height="15" fill="rgb(252,112,8)"/><text text-anchor="left" x="461.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::ha46be945c6b61cbc (1 samples, 0.01%)</title><rect x="458" y="453" width="0" height="15" fill="rgb(247,189,39)"/><text text-anchor="left" x="461.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc49be57bf8b39eff (2 samples, 0.02%)</title><rect x="458" y="453" width="0" height="15" fill="rgb(237,86,21)"/><text text-anchor="left" x="461.00" y="463.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hb5848d419346d091 (2 samples, 0.02%)</title><rect x="461" y="437" width="0" height="15" fill="rgb(239,97,45)"/><text text-anchor="left" x="464.00" y="447.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="461" y="421" width="0" height="15" fill="rgb(213,43,35)"/><text text-anchor="left" x="464.00" y="431.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h041868c4a26a1a18 (1 samples, 0.01%)</title><rect x="461" y="421" width="0" height="15" fill="rgb(250,25,22)"/><text text-anchor="left" x="464.00" y="431.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hc2ac955a2cf39368 (2 samples, 0.02%)</title><rect x="462" y="389" width="0" height="15" fill="rgb(224,139,25)"/><text text-anchor="left" x="465.00" y="399.50" 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>deno_core_http_bench`futures::future::result_::result::h265a65b90575774d (1 samples, 0.01%)</title><rect x="462" y="373" width="0" height="15" fill="rgb(223,93,40)"/><text text-anchor="left" x="465.00" y="383.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h907275030267c2f2 (2 samples, 0.02%)</title><rect x="462" y="389" width="0" height="15" fill="rgb(210,25,40)"/><text text-anchor="left" x="465.00" y="399.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::h041868c4a26a1a18 (12 samples, 0.12%)</title><rect x="462" y="405" width="1" height="15" fill="rgb(216,152,33)"/><text text-anchor="left" x="465.00" y="415.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_read::_$u7b$$u7b$closure$u7d$$u7d$::h600f56799c27e378 (5 samples, 0.05%)</title><rect x="462" y="389" width="1" height="15" fill="rgb(229,62,44)"/><text text-anchor="left" x="465.00" y="399.50" 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>deno_core_http_bench`_$LT$log..Level$u20$as$u20$core..cmp..PartialOrd$LT$log..LevelFilter$GT$$GT$::le::h50e0657871618baf (3 samples, 0.03%)</title><rect x="463" y="373" width="0" height="15" fill="rgb(206,78,0)"/><text text-anchor="left" x="466.00" y="383.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::hecd102b8c833c707 (20 samples, 0.20%)</title><rect x="461" y="437" width="2" height="15" fill="rgb(219,63,42)"/><text text-anchor="left" x="464.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::hd147630a59f6f124 (19 samples, 0.19%)</title><rect x="461" y="421" width="2" height="15" fill="rgb(234,222,0)"/><text text-anchor="left" x="464.00" y="431.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_read::_$u7b$$u7b$closure$u7d$$u7d$::h600f56799c27e378 (2 samples, 0.02%)</title><rect x="463" y="405" width="0" height="15" fill="rgb(221,21,6)"/><text text-anchor="left" x="466.00" y="415.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::h495fdf5b716b352f (3 samples, 0.03%)</title><rect x="463" y="421" width="1" height="15" fill="rgb(237,171,48)"/><text text-anchor="left" x="466.00" y="431.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..RESOURCE_TABLE$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0de92f423f6591c8 (2 samples, 0.02%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(237,146,13)"/><text text-anchor="left" x="467.00" y="431.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5cc73244089e2682 (3 samples, 0.03%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(238,215,36)"/><text text-anchor="left" x="467.00" y="431.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h055c924716820112 (1 samples, 0.01%)</title><rect x="464" y="421" width="0" height="15" fill="rgb(238,8,35)"/><text text-anchor="left" x="467.00" y="431.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::h495fdf5b716b352f (2 samples, 0.02%)</title><rect x="465" y="405" width="1" height="15" fill="rgb(241,57,36)"/><text text-anchor="left" x="468.00" y="415.50" 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>deno_core_http_bench`std::sync::once::Once::call_once::h0ebc2c95e97f76b9 (5 samples, 0.05%)</title><rect x="466" y="389" width="0" height="15" fill="rgb(221,97,1)"/><text text-anchor="left" x="469.00" y="399.50" 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>deno_core_http_bench`std::sync::once::Once::is_completed::h1b2a5f5e28333a1f (5 samples, 0.05%)</title><rect x="466" y="373" width="0" height="15" fill="rgb(210,71,51)"/><text text-anchor="left" x="469.00" y="383.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h907275030267c2f2 (4 samples, 0.04%)</title><rect x="466" y="357" width="0" height="15" fill="rgb(235,85,49)"/><text text-anchor="left" x="469.00" y="367.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (2 samples, 0.02%)</title><rect x="466" y="341" width="0" height="15" fill="rgb(219,109,39)"/><text text-anchor="left" x="469.00" y="351.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..RESOURCE_TABLE$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0de92f423f6591c8 (8 samples, 0.08%)</title><rect x="466" y="405" width="0" height="15" fill="rgb(254,58,43)"/><text text-anchor="left" x="469.00" y="415.50" 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>deno_core_http_bench`std::sync::once::Once::is_completed::h1b2a5f5e28333a1f (1 samples, 0.01%)</title><rect x="466" y="389" width="0" height="15" fill="rgb(206,98,25)"/><text text-anchor="left" x="469.00" y="399.50" 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>deno_core_http_bench`_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..deref..DerefMut$GT$::deref_mut::h964c06c93d72d4f0 (1 samples, 0.01%)</title><rect x="466" y="405" width="1" height="15" fill="rgb(213,138,12)"/><text text-anchor="left" x="469.00" y="415.50" 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>deno_core_http_bench`_$LT$tokio_tcp..stream..TcpStream$u20$as$u20$std..io..Read$GT$::read::hba528de9a3dd607f (2 samples, 0.02%)</title><rect x="467" y="405" width="0" height="15" fill="rgb(243,19,40)"/><text text-anchor="left" x="470.00" y="415.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h821cc9350aa5f8a9 (1 samples, 0.01%)</title><rect x="467" y="405" width="0" height="15" fill="rgb(239,112,11)"/><text text-anchor="left" x="470.00" y="415.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h2456437234273396 (1 samples, 0.01%)</title><rect x="467" y="405" width="0" height="15" fill="rgb(211,178,39)"/><text text-anchor="left" x="470.00" y="415.50" 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>deno_core_http_bench`std::sys::unix::mutex::Mutex::unlock::h83e7f7408cd66449 (1 samples, 0.01%)</title><rect x="467" y="373" width="1" height="15" fill="rgb(208,171,30)"/><text text-anchor="left" x="470.00" y="383.50" 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>deno_core_http_bench`std::sys::unix::mutex::Mutex::unlock::h83e7f7408cd66449 (3 samples, 0.03%)</title><rect x="468" y="357" width="0" height="15" fill="rgb(254,131,29)"/><text text-anchor="left" x="471.00" y="367.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_unlock::h5a3d6afc8f64312a (6 samples, 0.06%)</title><rect x="468" y="373" width="0" height="15" fill="rgb(241,58,51)"/><text text-anchor="left" x="471.00" y="383.50" 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>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="468" y="357" width="0" height="15" fill="rgb(213,93,13)"/><text text-anchor="left" x="471.00" y="367.50" 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>deno_core_http_bench`std::panicking::panicking::h59a7bbbccfc7f88b (2 samples, 0.02%)</title><rect x="468" y="341" width="1" height="15" fill="rgb(210,155,4)"/><text text-anchor="left" x="471.00" y="351.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::done::h55efa07ff7a816d7 (4 samples, 0.04%)</title><rect x="468" y="373" width="1" height="15" fill="rgb(252,95,5)"/><text text-anchor="left" x="471.00" y="383.50" 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>deno_core_http_bench`std::thread::panicking::h91240ed2c9a6e1d5 (4 samples, 0.04%)</title><rect x="468" y="357" width="1" height="15" fill="rgb(229,98,1)"/><text text-anchor="left" x="471.00" y="367.50" 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>libdyld.dylib`tlv_get_addr (1 samples, 0.01%)</title><rect x="469" y="341" width="0" height="15" fill="rgb(218,148,18)"/><text text-anchor="left" x="472.00" y="351.50" 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>deno_core_http_bench`_$LT$std..sync..mutex..MutexGuard$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h99dd435295934775 (16 samples, 0.16%)</title><rect x="467" y="389" width="2" height="15" fill="rgb(207,201,10)"/><text text-anchor="left" x="470.00" y="399.50" 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>deno_core_http_bench`std::thread::panicking::h91240ed2c9a6e1d5 (1 samples, 0.01%)</title><rect x="469" y="373" width="0" height="15" fill="rgb(247,11,38)"/><text text-anchor="left" x="472.00" y="383.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_unlock::h5a3d6afc8f64312a (1 samples, 0.01%)</title><rect x="469" y="389" width="0" height="15" fill="rgb(217,49,24)"/><text text-anchor="left" x="472.00" y="399.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5cc73244089e2682 (18 samples, 0.18%)</title><rect x="467" y="405" width="2" height="15" fill="rgb(221,152,25)"/><text text-anchor="left" x="470.00" y="415.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::done::h55efa07ff7a816d7 (1 samples, 0.01%)</title><rect x="469" y="389" width="0" height="15" fill="rgb(227,214,17)"/><text text-anchor="left" x="472.00" y="399.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h055c924716820112 (3 samples, 0.03%)</title><rect x="469" y="405" width="0" height="15" fill="rgb(226,81,48)"/><text text-anchor="left" x="472.00" y="415.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::h7fb1387bca49b149 (3 samples, 0.03%)</title><rect x="470" y="389" width="0" height="15" fill="rgb(231,215,25)"/><text text-anchor="left" x="473.00" y="399.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0119456287663c10 (1 samples, 0.01%)</title><rect x="470" y="373" width="0" height="15" fill="rgb(210,194,50)"/><text text-anchor="left" x="473.00" y="383.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0e45be6481478b66 (1 samples, 0.01%)</title><rect x="470" y="373" width="0" height="15" fill="rgb(215,22,22)"/><text text-anchor="left" x="473.00" y="383.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h08dd336ba9152c22 (2 samples, 0.02%)</title><rect x="470" y="373" width="1" height="15" fill="rgb(218,93,0)"/><text text-anchor="left" x="473.00" y="383.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::map::h7fb1387bca49b149 (4 samples, 0.04%)</title><rect x="471" y="373" width="0" height="15" fill="rgb(210,106,31)"/><text text-anchor="left" x="474.00" y="383.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::_$u7b$$u7b$closure$u7d$$u7d$::h4623bcceea559360 (2 samples, 0.02%)</title><rect x="471" y="357" width="0" height="15" fill="rgb(206,125,51)"/><text text-anchor="left" x="474.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_mut::h89cf6cbb90078bad (2 samples, 0.02%)</title><rect x="471" y="341" width="0" height="15" fill="rgb(252,34,16)"/><text text-anchor="left" x="474.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ptr::h08fe40410d6edc61 (1 samples, 0.01%)</title><rect x="471" y="325" width="0" height="15" fill="rgb(217,214,4)"/><text text-anchor="left" x="474.00" y="335.50" 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>deno_core_http_bench`core::mem::size_of::hacba3364e02ed152 (1 samples, 0.01%)</title><rect x="471" y="309" width="0" height="15" fill="rgb(218,18,48)"/><text text-anchor="left" x="474.00" y="319.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (2 samples, 0.02%)</title><rect x="473" y="293" width="0" height="15" fill="rgb(231,140,39)"/><text text-anchor="left" x="476.00" y="303.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::c_rounds::h538addd045b625c9 (14 samples, 0.14%)</title><rect x="472" y="309" width="2" height="15" fill="rgb(254,0,46)"/><text text-anchor="left" x="475.00" y="319.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h2de39ccc63360d07 (3 samples, 0.03%)</title><rect x="473" y="293" width="1" height="15" fill="rgb(219,129,19)"/><text text-anchor="left" x="476.00" y="303.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (7 samples, 0.07%)</title><rect x="475" y="293" width="1" height="15" fill="rgb(219,22,47)"/><text text-anchor="left" x="478.00" y="303.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::h463086e8038f8ffd (24 samples, 0.24%)</title><rect x="474" y="309" width="2" height="15" fill="rgb(235,198,3)"/><text text-anchor="left" x="477.00" y="319.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::wrapping_add::h2de39ccc63360d07 (2 samples, 0.02%)</title><rect x="476" y="293" width="0" height="15" fill="rgb(221,207,19)"/><text text-anchor="left" x="479.00" y="303.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::h5ba49ec546d4bc95 (43 samples, 0.42%)</title><rect x="472" y="325" width="5" height="15" fill="rgb(222,18,8)"/><text text-anchor="left" x="475.00" y="335.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u64$GT$::rotate_left::h01066c0e096a2bcc (2 samples, 0.02%)</title><rect x="476" y="309" width="1" height="15" fill="rgb(220,34,41)"/><text text-anchor="left" x="479.00" y="319.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h08dd336ba9152c22 (47 samples, 0.46%)</title><rect x="471" y="357" width="6" height="15" fill="rgb(227,229,37)"/><text text-anchor="left" x="474.00" y="367.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::h1991235cd4785ac6 (46 samples, 0.45%)</title><rect x="471" y="341" width="6" height="15" fill="rgb(242,138,9)"/><text text-anchor="left" x="474.00" y="351.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::c_rounds::h538addd045b625c9 (2 samples, 0.02%)</title><rect x="477" y="325" width="0" height="15" fill="rgb(211,164,20)"/><text text-anchor="left" x="480.00" y="335.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::new_with_keys::heab337ad3409c9b1 (8 samples, 0.08%)</title><rect x="477" y="325" width="1" height="15" fill="rgb(220,189,29)"/><text text-anchor="left" x="480.00" y="335.50" 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>deno_core_http_bench`core::hash::sip::Hasher$LT$S$GT$::reset::h48a260305f6a48b0 (4 samples, 0.04%)</title><rect x="477" y="309" width="1" height="15" fill="rgb(230,64,6)"/><text text-anchor="left" x="480.00" y="319.50" 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>deno_core_http_bench`core::hash::sip::SipHasher13::new_with_keys::h261482389a3aa742 (11 samples, 0.11%)</title><rect x="477" y="341" width="1" height="15" fill="rgb(212,81,53)"/><text text-anchor="left" x="480.00" y="351.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="478" y="325" width="0" height="15" fill="rgb(212,196,14)"/><text text-anchor="left" x="481.00" y="335.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..RandomState$u20$as$u20$core..hash..BuildHasher$GT$::build_hasher::hb6b7b2fdd72c10c5 (16 samples, 0.16%)</title><rect x="477" y="357" width="2" height="15" fill="rgb(208,82,1)"/><text text-anchor="left" x="480.00" y="367.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="478" y="341" width="1" height="15" fill="rgb(220,69,43)"/><text text-anchor="left" x="481.00" y="351.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::h60579d91328011b5 (1 samples, 0.01%)</title><rect x="479" y="309" width="0" height="15" fill="rgb(253,13,30)"/><text text-anchor="left" x="482.00" y="319.50" 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>deno_core_http_bench`core::hash::sip::u8to64_le::ha10f46342469dc90 (11 samples, 0.11%)</title><rect x="479" y="277" width="1" height="15" fill="rgb(254,8,9)"/><text text-anchor="left" x="482.00" y="287.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked::hbdfb9a8ee1b48bb2 (6 samples, 0.06%)</title><rect x="480" y="261" width="0" height="15" fill="rgb(225,203,5)"/><text text-anchor="left" x="483.00" y="271.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::h73a8e7e2364fc153 (4 samples, 0.04%)</title><rect x="480" y="245" width="0" height="15" fill="rgb(244,155,20)"/><text text-anchor="left" x="483.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h841faa7e121147cb (1 samples, 0.01%)</title><rect x="480" y="229" width="0" height="15" fill="rgb(240,8,29)"/><text text-anchor="left" x="483.00" y="239.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::hefb0c9b49ecd32c4 (1 samples, 0.01%)</title><rect x="480" y="213" width="0" height="15" fill="rgb(239,57,39)"/><text text-anchor="left" x="483.00" y="223.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h91d93e186c13e3e2 (2 samples, 0.02%)</title><rect x="480" y="277" width="0" height="15" fill="rgb(248,142,44)"/><text text-anchor="left" x="483.00" y="287.50" 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>deno_core_http_bench`core::mem::size_of::hfd057a6d9a812c10 (1 samples, 0.01%)</title><rect x="480" y="277" width="1" height="15" fill="rgb(239,179,18)"/><text text-anchor="left" x="483.00" y="287.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$u32$GT$::to_le::h5913e623ea128df9 (1 samples, 0.01%)</title><rect x="481" y="277" width="0" height="15" fill="rgb(211,121,24)"/><text text-anchor="left" x="484.00" y="287.50" 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>deno_core_http_bench`_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::h60579d91328011b5 (18 samples, 0.18%)</title><rect x="479" y="293" width="2" height="15" fill="rgb(235,221,38)"/><text text-anchor="left" x="482.00" y="303.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::ha67e6bc4d0715966 (2 samples, 0.02%)</title><rect x="481" y="277" width="0" height="15" fill="rgb(246,205,34)"/><text text-anchor="left" x="484.00" y="287.50" 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>deno_core_http_bench`core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$i32$GT$::hash::h6b86b5244062d7b6 (21 samples, 0.21%)</title><rect x="479" y="357" width="2" height="15" fill="rgb(236,85,51)"/><text text-anchor="left" x="482.00" y="367.50" 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>deno_core_http_bench`core::hash::Hasher::write_i32::h3f7a8f2f6082a362 (21 samples, 0.21%)</title><rect x="479" y="341" width="2" height="15" fill="rgb(251,163,17)"/><text text-anchor="left" x="482.00" y="351.50" 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>deno_core_http_bench`_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::h2f6bbd7248ce0ddc (21 samples, 0.21%)</title><rect x="479" y="325" width="2" height="15" fill="rgb(228,190,29)"/><text text-anchor="left" x="482.00" y="335.50" 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>deno_core_http_bench`_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::hb84ea769f87d27ad (19 samples, 0.19%)</title><rect x="479" y="309" width="2" height="15" fill="rgb(208,73,54)"/><text text-anchor="left" x="482.00" y="319.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::ha67e6bc4d0715966 (1 samples, 0.01%)</title><rect x="481" y="293" width="0" height="15" fill="rgb(241,54,24)"/><text text-anchor="left" x="484.00" y="303.50" 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>deno_core_http_bench`core::hash::sip::SipHasher13::new_with_keys::h261482389a3aa742 (1 samples, 0.01%)</title><rect x="481" y="357" width="0" height="15" fill="rgb(249,56,42)"/><text text-anchor="left" x="484.00" y="367.50" 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>deno_core_http_bench`hashbrown::map::make_hash::h500b7b4ca1e1239d (88 samples, 0.86%)</title><rect x="471" y="373" width="10" height="15" fill="rgb(244,223,46)"/><text text-anchor="left" x="474.00" y="383.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="481" y="357" width="0" height="15" fill="rgb(225,181,6)"/><text text-anchor="left" x="484.00" y="367.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..borrow..Borrow$LT$T$GT$$GT$::borrow::h92d37848ed83fa59 (1 samples, 0.01%)</title><rect x="483" y="357" width="0" height="15" fill="rgb(245,103,23)"/><text text-anchor="left" x="486.00" y="367.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc499889fc1978223 (1 samples, 0.01%)</title><rect x="483" y="357" width="0" height="15" fill="rgb(231,34,3)"/><text text-anchor="left" x="486.00" y="367.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0119456287663c10 (1 samples, 0.01%)</title><rect x="483" y="357" width="0" height="15" fill="rgb(229,121,11)"/><text text-anchor="left" x="486.00" y="367.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMask$u20$as$u20$core..iter..traits..collect..IntoIterator$GT$::into_iter::hc54ed7938c79b5e0 (1 samples, 0.01%)</title><rect x="483" y="357" width="0" height="15" fill="rgb(211,120,43)"/><text text-anchor="left" x="486.00" y="367.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc499889fc1978223 (2 samples, 0.02%)</title><rect x="483" y="341" width="0" height="15" fill="rgb(206,78,7)"/><text text-anchor="left" x="486.00" y="351.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hdb2da99d3cc718b2 (2 samples, 0.02%)</title><rect x="483" y="325" width="0" height="15" fill="rgb(235,180,5)"/><text text-anchor="left" x="486.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hdb2da99d3cc718b2 (3 samples, 0.03%)</title><rect x="483" y="341" width="1" height="15" fill="rgb(235,116,42)"/><text text-anchor="left" x="486.00" y="351.50" 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>deno_core_http_bench`_$LT$hashbrown..raw..bitmask..BitMaskIter$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h0e45be6481478b66 (12 samples, 0.12%)</title><rect x="483" y="357" width="1" height="15" fill="rgb(231,207,35)"/><text text-anchor="left" x="486.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit::h7b7384fb8751c8f4 (5 samples, 0.05%)</title><rect x="484" y="341" width="0" height="15" fill="rgb(247,135,11)"/><text text-anchor="left" x="487.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::bitmask::BitMask::lowest_set_bit_nonzero::h98385cdbb4591b9e (3 samples, 0.03%)</title><rect x="484" y="325" width="0" height="15" fill="rgb(215,4,2)"/><text text-anchor="left" x="487.00" y="335.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialEq$u20$for$u20$i32$GT$::eq::h33efba4c37d13798 (1 samples, 0.01%)</title><rect x="484" y="357" width="1" height="15" fill="rgb(208,182,7)"/><text text-anchor="left" x="487.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hc8fc4d897c2e8bd9 (1 samples, 0.01%)</title><rect x="485" y="357" width="0" height="15" fill="rgb(215,36,8)"/><text text-anchor="left" x="488.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h5a357f1b126c4a66 (1 samples, 0.01%)</title><rect x="485" y="357" width="0" height="15" fill="rgb(213,135,42)"/><text text-anchor="left" x="488.00" y="367.50" 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>deno_core_http_bench`core::mem::size_of::h9634f50dbd0dd637 (1 samples, 0.01%)</title><rect x="485" y="357" width="0" height="15" fill="rgb(251,87,36)"/><text text-anchor="left" x="488.00" y="367.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h1ae7b6d23647d98e (2 samples, 0.02%)</title><rect x="485" y="357" width="0" height="15" fill="rgb(207,186,28)"/><text text-anchor="left" x="488.00" y="367.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h2f691bf29c2fbf06 (4 samples, 0.04%)</title><rect x="485" y="357" width="1" height="15" fill="rgb(225,100,14)"/><text text-anchor="left" x="488.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (2 samples, 0.02%)</title><rect x="486" y="357" width="0" height="15" fill="rgb(209,107,49)"/><text text-anchor="left" x="489.00" y="367.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::_$u7b$$u7b$closure$u7d$$u7d$::h151f3ea323dbe199 (2 samples, 0.02%)</title><rect x="486" y="357" width="0" height="15" fill="rgb(247,146,32)"/><text text-anchor="left" x="489.00" y="367.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialEq$u20$for$u20$i32$GT$::eq::h33efba4c37d13798 (1 samples, 0.01%)</title><rect x="486" y="341" width="0" height="15" fill="rgb(242,195,53)"/><text text-anchor="left" x="489.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ref::h9424fd1e76d8fc39 (3 samples, 0.03%)</title><rect x="486" y="357" width="0" height="15" fill="rgb(237,202,53)"/><text text-anchor="left" x="489.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::as_ptr::h08fe40410d6edc61 (2 samples, 0.02%)</title><rect x="486" y="341" width="0" height="15" fill="rgb(208,223,44)"/><text text-anchor="left" x="489.00" y="351.50" 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>deno_core_http_bench`core::mem::size_of::hacba3364e02ed152 (2 samples, 0.02%)</title><rect x="486" y="325" width="0" height="15" fill="rgb(254,173,15)"/><text text-anchor="left" x="489.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::from_base_index::h67d5b6113d3353e2 (1 samples, 0.01%)</title><rect x="486" y="357" width="0" height="15" fill="rgb(241,177,44)"/><text text-anchor="left" x="489.00" y="367.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h1ae7b6d23647d98e (2 samples, 0.02%)</title><rect x="487" y="341" width="0" height="15" fill="rgb(250,132,47)"/><text text-anchor="left" x="490.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h2afc1c4645ef0673 (1 samples, 0.01%)</title><rect x="487" y="341" width="0" height="15" fill="rgb(207,146,3)"/><text text-anchor="left" x="490.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::h2afc1c4645ef0673 (3 samples, 0.03%)</title><rect x="487" y="325" width="0" height="15" fill="rgb(213,141,54)"/><text text-anchor="left" x="490.00" y="335.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::h4e58dbb023d7d225 (2 samples, 0.02%)</title><rect x="487" y="309" width="0" height="15" fill="rgb(249,75,10)"/><text text-anchor="left" x="490.00" y="319.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::bucket::hec841c2669ac193c (10 samples, 0.10%)</title><rect x="486" y="357" width="2" height="15" fill="rgb(205,120,10)"/><text text-anchor="left" x="489.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::Bucket$LT$T$GT$::from_base_index::h67d5b6113d3353e2 (6 samples, 0.06%)</title><rect x="487" y="341" width="1" height="15" fill="rgb(234,133,4)"/><text text-anchor="left" x="490.00" y="351.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::h4e58dbb023d7d225 (2 samples, 0.02%)</title><rect x="487" y="325" width="1" height="15" fill="rgb(217,174,5)"/><text text-anchor="left" x="490.00" y="335.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h2f691bf29c2fbf06 (2 samples, 0.02%)</title><rect x="488" y="341" width="0" height="15" fill="rgb(250,63,31)"/><text text-anchor="left" x="491.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::ctrl::h42763d3d8dd6ad62 (6 samples, 0.06%)</title><rect x="488" y="357" width="0" height="15" fill="rgb(209,146,43)"/><text text-anchor="left" x="491.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (2 samples, 0.02%)</title><rect x="488" y="341" width="0" height="15" fill="rgb(234,179,7)"/><text text-anchor="left" x="491.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::hbaf0f74a0736996f (1 samples, 0.01%)</title><rect x="488" y="357" width="0" height="15" fill="rgb(216,196,38)"/><text text-anchor="left" x="491.00" y="367.50" 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>deno_core_http_bench`hashbrown::raw::h1::hc8c029b85e3e40d7 (3 samples, 0.03%)</title><rect x="488" y="357" width="1" height="15" fill="rgb(219,151,30)"/><text text-anchor="left" x="491.00" y="367.50" 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>deno_core_http_bench`core::cmp::Ord::min::hf7d260515dde4d02 (3 samples, 0.03%)</title><rect x="489" y="341" width="0" height="15" fill="rgb(226,139,29)"/><text text-anchor="left" x="492.00" y="351.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::le::hde07b858387126ab (1 samples, 0.01%)</title><rect x="489" y="325" width="0" height="15" fill="rgb(230,58,49)"/><text text-anchor="left" x="492.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::h2::h6e8814d0d91a489e (4 samples, 0.04%)</title><rect x="489" y="357" width="0" height="15" fill="rgb(247,174,26)"/><text text-anchor="left" x="492.00" y="367.50" 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>deno_core_http_bench`core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::le::hde07b858387126ab (1 samples, 0.01%)</title><rect x="489" y="341" width="0" height="15" fill="rgb(235,114,22)"/><text text-anchor="left" x="492.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_loadu_si128::hc8fc4d897c2e8bd9 (9 samples, 0.09%)</title><rect x="489" y="341" width="2" height="15" fill="rgb(236,212,21)"/><text text-anchor="left" x="492.00" y="351.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (6 samples, 0.06%)</title><rect x="490" y="325" width="1" height="15" fill="rgb(213,135,10)"/><text text-anchor="left" x="493.00" y="335.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (6 samples, 0.06%)</title><rect x="490" y="309" width="1" height="15" fill="rgb(206,205,31)"/><text text-anchor="left" x="493.00" y="319.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (1 samples, 0.01%)</title><rect x="491" y="341" width="0" height="15" fill="rgb(221,2,43)"/><text text-anchor="left" x="494.00" y="351.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::load::hb5a194846706c045 (13 samples, 0.13%)</title><rect x="489" y="357" width="2" height="15" fill="rgb(215,193,51)"/><text text-anchor="left" x="492.00" y="367.50" 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>deno_core_http_bench`core::mem::size_of::hdfc7fd3d10706cfd (1 samples, 0.01%)</title><rect x="491" y="341" width="0" height="15" fill="rgb(213,169,27)"/><text text-anchor="left" x="494.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_cmpeq_epi8::h5373d02c655a73e7 (7 samples, 0.07%)</title><rect x="491" y="341" width="1" height="15" fill="rgb(250,205,45)"/><text text-anchor="left" x="494.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (4 samples, 0.04%)</title><rect x="491" y="325" width="1" height="15" fill="rgb(236,173,54)"/><text text-anchor="left" x="494.00" y="335.50" 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>deno_core_http_bench`_$LT$core..core_arch..x86..__m128i$u20$as$u20$core..core_arch..x86..m128iExt$GT$::as_m128i::h075f5531757b6038 (1 samples, 0.01%)</title><rect x="491" y="309" width="1" height="15" fill="rgb(227,174,31)"/><text text-anchor="left" x="494.00" y="319.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_movemask_epi8::h72d1bf52189cf8d4 (5 samples, 0.05%)</title><rect x="492" y="341" width="0" height="15" fill="rgb(208,73,46)"/><text text-anchor="left" x="495.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::m128iExt::as_i8x16::hd736d6b0b7dd8a31 (3 samples, 0.03%)</title><rect x="492" y="325" width="0" height="15" fill="rgb(231,23,30)"/><text text-anchor="left" x="495.00" y="335.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find::h0c5384d5f0317d89 (106 samples, 1.04%)</title><rect x="481" y="373" width="13" height="15" fill="rgb(247,216,44)"/><text text-anchor="left" x="484.00" y="383.50" 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>deno_core_http_bench`hashbrown::raw::imp::Group::match_byte::h0804c77ea5e4f61f (24 samples, 0.24%)</title><rect x="491" y="357" width="3" height="15" fill="rgb(224,134,42)"/><text text-anchor="left" x="494.00" y="367.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set1_epi8::h5a357f1b126c4a66 (12 samples, 0.12%)</title><rect x="492" y="341" width="2" height="15" fill="rgb(245,129,34)"/><text text-anchor="left" x="495.00" y="351.50" 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>deno_core_http_bench`core::core_arch::x86::sse2::_mm_set_epi8::h52a58f5abfb59879 (9 samples, 0.09%)</title><rect x="492" y="325" width="2" height="15" fill="rgb(236,128,28)"/><text text-anchor="left" x="495.00" y="335.50" 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>deno_core_http_bench`core::core_arch::simd::i8x16::new::h183764d5eac91dba (3 samples, 0.03%)</title><rect x="493" y="309" width="1" height="15" fill="rgb(215,149,19)"/><text text-anchor="left" x="496.00" y="319.50" 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>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::probe_seq::hbaf0f74a0736996f (1 samples, 0.01%)</title><rect x="494" y="373" width="0" height="15" fill="rgb(249,102,5)"/><text text-anchor="left" x="497.00" y="383.50" 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>deno_core_http_bench`hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::h2ae125c85bb84e3a (208 samples, 2.04%)</title><rect x="470" y="389" width="24" height="15" fill="rgb(229,159,49)"/><text text-anchor="left" x="473.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`hashbrown::raw::imp::Group::load::hb5a194846706c045 (3 samples, 0.03%)</title><rect x="494" y="373" width="0" height="15" fill="rgb(211,81,0)"/><text text-anchor="left" x="497.00" y="383.50" 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>deno_core_http_bench`std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::get_mut::h074494a9725ddf4c (215 samples, 2.11%)</title><rect x="469" y="405" width="25" height="15" fill="rgb(233,132,37)"/><text text-anchor="left" x="472.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`hashbrown::raw::RawTable$LT$T$GT$::find::h0c5384d5f0317d89 (3 samples, 0.03%)</title><rect x="494" y="389" width="0" height="15" fill="rgb(223,135,17)"/><text text-anchor="left" x="497.00" y="399.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::load::ha542f680e866ec32 (1 samples, 0.01%)</title><rect x="495" y="357" width="0" height="15" fill="rgb(219,3,37)"/><text text-anchor="left" x="498.00" y="367.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hff7a20bb3292aca9 (1 samples, 0.01%)</title><rect x="495" y="341" width="0" height="15" fill="rgb(246,179,39)"/><text text-anchor="left" x="498.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::load::ha542f680e866ec32 (2 samples, 0.02%)</title><rect x="495" y="341" width="0" height="15" fill="rgb(232,84,15)"/><text text-anchor="left" x="498.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::ha2594c9f600c32dc (2 samples, 0.02%)</title><rect x="495" y="325" width="0" height="15" fill="rgb(222,57,5)"/><text text-anchor="left" x="498.00" y="335.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::get::h76e0d0a86fd63622 (7 samples, 0.07%)</title><rect x="495" y="357" width="1" height="15" fill="rgb(244,103,24)"/><text text-anchor="left" x="498.00" y="367.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::ha2594c9f600c32dc (4 samples, 0.04%)</title><rect x="495" y="341" width="1" height="15" fill="rgb(214,23,52)"/><text text-anchor="left" x="498.00" y="351.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::borrow::h2c69bcb5b700e448 (15 samples, 0.15%)</title><rect x="495" y="373" width="1" height="15" fill="rgb(235,48,28)"/><text text-anchor="left" x="498.00" y="383.50" 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>deno_core_http_bench`std::thread::panicking::h91240ed2c9a6e1d5 (5 samples, 0.05%)</title><rect x="496" y="357" width="0" height="15" fill="rgb(242,154,19)"/><text text-anchor="left" x="499.00" y="367.50" 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>libdyld.dylib`tlv_get_addr (4 samples, 0.04%)</title><rect x="496" y="341" width="0" height="15" fill="rgb(205,55,30)"/><text text-anchor="left" x="499.00" y="351.50" 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>deno_core_http_bench`std::sync::mutex::MutexGuard$LT$T$GT$::new::h54749b830b59a0e5 (20 samples, 0.20%)</title><rect x="494" y="389" width="3" height="15" fill="rgb(228,129,25)"/><text text-anchor="left" x="497.00" y="399.50" 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>deno_core_http_bench`std::sys_common::poison::map_result::hc48074941eac737a (4 samples, 0.04%)</title><rect x="496" y="373" width="1" height="15" fill="rgb(211,52,16)"/><text text-anchor="left" x="499.00" y="383.50" 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>deno_core_http_bench`std::sync::mutex::MutexGuard$LT$T$GT$::new::_$u7b$$u7b$closure$u7d$$u7d$::h7fe39d7c9f773d22 (1 samples, 0.01%)</title><rect x="497" y="357" width="0" height="15" fill="rgb(230,37,5)"/><text text-anchor="left" x="500.00" y="367.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h4ebc354224a013c9 (5 samples, 0.05%)</title><rect x="497" y="373" width="0" height="15" fill="rgb(238,34,38)"/><text text-anchor="left" x="500.00" y="383.50" 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>deno_core_http_bench`std::sys::unix::mutex::Mutex::lock::h44fd2e3d44c2d56f (4 samples, 0.04%)</title><rect x="497" y="373" width="1" height="15" fill="rgb(249,145,19)"/><text text-anchor="left" x="500.00" y="383.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h4ebc354224a013c9 (2 samples, 0.02%)</title><rect x="498" y="357" width="0" height="15" fill="rgb(254,11,0)"/><text text-anchor="left" x="501.00" y="367.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_lock::ha818d1f48fe47d12 (12 samples, 0.12%)</title><rect x="497" y="389" width="1" height="15" fill="rgb(231,144,2)"/><text text-anchor="left" x="500.00" y="399.50" 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>libsystem_pthread.dylib`pthread_mutex_lock (3 samples, 0.03%)</title><rect x="498" y="373" width="0" height="15" fill="rgb(222,200,28)"/><text text-anchor="left" x="501.00" y="383.50" 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>deno_core_http_bench`std::sync::mutex::Mutex$LT$T$GT$::lock::h1b018b622fbd7899 (34 samples, 0.33%)</title><rect x="494" y="405" width="4" height="15" fill="rgb(244,68,2)"/><text text-anchor="left" x="497.00" y="415.50" 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>deno_core_http_bench`std::sys_common::poison::Flag::borrow::h2c69bcb5b700e448 (1 samples, 0.01%)</title><rect x="498" y="389" width="0" height="15" fill="rgb(231,121,41)"/><text text-anchor="left" x="501.00" y="399.50" 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>deno_core_http_bench`std::sync::once::Once::call_once::h0ebc2c95e97f76b9 (3 samples, 0.03%)</title><rect x="498" y="405" width="1" height="15" fill="rgb(216,107,26)"/><text text-anchor="left" x="501.00" y="415.50" 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>deno_core_http_bench`std::sys_common::mutex::Mutex::raw_lock::ha818d1f48fe47d12 (3 samples, 0.03%)</title><rect x="499" y="405" width="0" height="15" fill="rgb(227,190,13)"/><text text-anchor="left" x="502.00" y="415.50" 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>deno_core_http_bench`_$LT$tokio_reactor..poll_evented..PollEvented$LT$E$GT$$u20$as$u20$std..io..Read$GT$::read::h841f6f4eb5397dd1 (2 samples, 0.02%)</title><rect x="500" y="389" width="0" height="15" fill="rgb(253,192,0)"/><text text-anchor="left" x="503.00" y="399.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h933982778423c8e8 (2 samples, 0.02%)</title><rect x="501" y="373" width="0" height="15" fill="rgb(238,176,51)"/><text text-anchor="left" x="504.00" y="383.50" 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>deno_core_http_bench`_$LT$mio..net..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::h21b33e941501ace2 (1 samples, 0.01%)</title><rect x="501" y="373" width="0" height="15" fill="rgb(233,188,7)"/><text text-anchor="left" x="504.00" y="383.50" 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>deno_core_http_bench`_$LT$$RF$mio..sys..unix..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::h0a8243d36cee8743 (1 samples, 0.01%)</title><rect x="502" y="357" width="0" height="15" fill="rgb(254,113,50)"/><text text-anchor="left" x="505.00" y="367.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hffd50f5b30a9363b (2 samples, 0.02%)</title><rect x="502" y="357" width="0" height="15" fill="rgb(222,154,21)"/><text text-anchor="left" x="505.00" y="367.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (2 samples, 0.02%)</title><rect x="502" y="357" width="1" height="15" fill="rgb(212,156,39)"/><text text-anchor="left" x="505.00" y="367.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitOr$LT$T$GT$$GT$::bitor::h3c74c6262e259a2d (2 samples, 0.02%)</title><rect x="503" y="357" width="0" height="15" fill="rgb(245,200,39)"/><text text-anchor="left" x="506.00" y="367.50" 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>deno_core_http_bench`_$LT$$RF$std..net..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::hab74533150f25415 (4 samples, 0.04%)</title><rect x="503" y="325" width="1" height="15" fill="rgb(205,215,32)"/><text text-anchor="left" x="506.00" y="335.50" 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>libsystem_c.dylib`recv (2 samples, 0.02%)</title><rect x="504" y="325" width="0" height="15" fill="rgb(214,3,23)"/><text text-anchor="left" x="507.00" y="335.50" 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>deno_core_http_bench`_$LT$$RF$mio..sys..unix..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::h0a8243d36cee8743 (419 samples, 4.11%)</title><rect x="503" y="341" width="49" height="15" fill="rgb(224,199,22)"/><text text-anchor="left" x="506.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_kernel.dylib`__recvfrom (410 samples, 4.02%)</title><rect x="504" y="325" width="48" height="15" fill="rgb(211,0,37)"/><text text-anchor="left" x="507.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">libs..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$mio..net..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::h21b33e941501ace2 (423 samples, 4.15%)</title><rect x="503" y="357" width="49" height="15" fill="rgb(253,157,2)"/><text text-anchor="left" x="506.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$$RF$std..net..tcp..TcpStream$u20$as$u20$std..io..Read$GT$::read::hab74533150f25415 (1 samples, 0.01%)</title><rect x="552" y="341" width="0" height="15" fill="rgb(235,102,40)"/><text text-anchor="left" x="555.00" y="351.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h91202ce918f6041c (1 samples, 0.01%)</title><rect x="552" y="357" width="0" height="15" fill="rgb(243,105,36)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h084d1d93a3bf6cfd (1 samples, 0.01%)</title><rect x="552" y="357" width="0" height="15" fill="rgb(235,24,19)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h27bc1469a5a18c0f (2 samples, 0.02%)</title><rect x="552" y="357" width="0" height="15" fill="rgb(229,229,12)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`mio::event_imp::Ready::from_usize::hbb026ea30dcf2f90 (1 samples, 0.01%)</title><rect x="552" y="357" width="0" height="15" fill="rgb(211,152,27)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::he4f9266b597c4bfc (1 samples, 0.01%)</title><rect x="552" y="357" width="0" height="15" fill="rgb(211,191,6)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_writable::h76101cb08f53f255 (2 samples, 0.02%)</title><rect x="552" y="357" width="1" height="15" fill="rgb(213,222,23)"/><text text-anchor="left" x="555.00" y="367.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::get_mut::h5f9901d685901913 (4 samples, 0.04%)</title><rect x="553" y="357" width="0" height="15" fill="rgb(227,140,45)"/><text text-anchor="left" x="556.00" y="367.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h91202ce918f6041c (2 samples, 0.02%)</title><rect x="553" y="341" width="0" height="15" fill="rgb(222,73,49)"/><text text-anchor="left" x="556.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h55ec68e0f45683cf (1 samples, 0.01%)</title><rect x="554" y="341" width="0" height="15" fill="rgb(233,6,5)"/><text text-anchor="left" x="557.00" y="351.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h5e16e122527288e6 (1 samples, 0.01%)</title><rect x="554" y="341" width="0" height="15" fill="rgb(234,33,53)"/><text text-anchor="left" x="557.00" y="351.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hffd50f5b30a9363b (1 samples, 0.01%)</title><rect x="554" y="341" width="1" height="15" fill="rgb(210,216,3)"/><text text-anchor="left" x="557.00" y="351.50" 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>deno_core_http_bench`_$LT$futures..poll..Async$LT$T$GT$$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::h22d7fb64709b22bd (1 samples, 0.01%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(223,123,29)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (2 samples, 0.02%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(223,155,15)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="555" y="325" width="0" height="15" fill="rgb(240,64,36)"/><text text-anchor="left" x="558.00" y="335.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::hfa900f6f1b1f632d (1 samples, 0.01%)</title><rect x="555" y="309" width="0" height="15" fill="rgb(253,228,37)"/><text text-anchor="left" x="558.00" y="319.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitOr$LT$T$GT$$GT$::bitor::h3c74c6262e259a2d (1 samples, 0.01%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(240,138,54)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="555" y="325" width="0" height="15" fill="rgb(207,81,28)"/><text text-anchor="left" x="558.00" y="335.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::hfa900f6f1b1f632d (1 samples, 0.01%)</title><rect x="555" y="309" width="0" height="15" fill="rgb(242,11,35)"/><text text-anchor="left" x="558.00" y="319.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h2476ff90c79ca7d1 (1 samples, 0.01%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(223,3,39)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h084d1d93a3bf6cfd (1 samples, 0.01%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(215,210,23)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h27bc1469a5a18c0f (2 samples, 0.02%)</title><rect x="555" y="341" width="0" height="15" fill="rgb(219,89,43)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::ha358f980e13c3bef (2 samples, 0.02%)</title><rect x="555" y="341" width="1" height="15" fill="rgb(229,26,0)"/><text text-anchor="left" x="558.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (2 samples, 0.02%)</title><rect x="555" y="325" width="1" height="15" fill="rgb(254,114,14)"/><text text-anchor="left" x="558.00" y="335.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="556" y="325" width="0" height="15" fill="rgb(211,17,48)"/><text text-anchor="left" x="559.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::store::h068d34cba1ddf81d (2 samples, 0.02%)</title><rect x="556" y="341" width="0" height="15" fill="rgb(235,8,5)"/><text text-anchor="left" x="559.00" y="351.50" 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>deno_core_http_bench`core::sync::atomic::atomic_store::h9c992538f2b78704 (1 samples, 0.01%)</title><rect x="556" y="325" width="0" height="15" fill="rgb(209,121,9)"/><text text-anchor="left" x="559.00" y="335.50" 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>deno_core_http_bench`mio::event_imp::Ready::as_usize::h96e5202cc8613856 (1 samples, 0.01%)</title><rect x="556" y="341" width="0" height="15" fill="rgb(227,67,7)"/><text text-anchor="left" x="559.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::Ready::contains::h38f0285421f31633 (4 samples, 0.04%)</title><rect x="556" y="341" width="1" height="15" fill="rgb(220,111,9)"/><text text-anchor="left" x="559.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::Ready::from_usize::hbb026ea30dcf2f90 (2 samples, 0.02%)</title><rect x="557" y="341" width="0" height="15" fill="rgb(235,196,20)"/><text text-anchor="left" x="560.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::he4f9266b597c4bfc (3 samples, 0.03%)</title><rect x="557" y="341" width="0" height="15" fill="rgb(227,221,8)"/><text text-anchor="left" x="560.00" y="351.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::h4d4d0512192fa9c3 (2 samples, 0.02%)</title><rect x="557" y="325" width="0" height="15" fill="rgb(221,164,39)"/><text text-anchor="left" x="560.00" y="335.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::hdacbd5bc5c47384d (1 samples, 0.01%)</title><rect x="557" y="325" width="0" height="15" fill="rgb(234,52,50)"/><text text-anchor="left" x="560.00" y="335.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (4 samples, 0.04%)</title><rect x="558" y="309" width="0" height="15" fill="rgb(241,25,41)"/><text text-anchor="left" x="561.00" y="319.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..From$LT$T$GT$$GT$::from::hfa900f6f1b1f632d (1 samples, 0.01%)</title><rect x="558" y="293" width="0" height="15" fill="rgb(209,93,54)"/><text text-anchor="left" x="561.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_writable::h76101cb08f53f255 (10 samples, 0.10%)</title><rect x="557" y="341" width="1" height="15" fill="rgb(244,59,15)"/><text text-anchor="left" x="560.00" y="351.50" 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>deno_core_http_bench`mio::event_imp::Ready::contains::h38f0285421f31633 (8 samples, 0.08%)</title><rect x="557" y="325" width="1" height="15" fill="rgb(234,137,17)"/><text text-anchor="left" x="560.00" y="335.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::hdacbd5bc5c47384d (2 samples, 0.02%)</title><rect x="558" y="309" width="0" height="15" fill="rgb(247,81,47)"/><text text-anchor="left" x="561.00" y="319.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h55ec68e0f45683cf (1 samples, 0.01%)</title><rect x="558" y="325" width="0" height="15" fill="rgb(214,115,4)"/><text text-anchor="left" x="561.00" y="335.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (2 samples, 0.02%)</title><rect x="558" y="325" width="1" height="15" fill="rgb(241,156,0)"/><text text-anchor="left" x="561.00" y="335.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (1 samples, 0.01%)</title><rect x="559" y="325" width="0" height="15" fill="rgb(253,43,18)"/><text text-anchor="left" x="562.00" y="335.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (1 samples, 0.01%)</title><rect x="559" y="309" width="0" height="15" fill="rgb(253,94,0)"/><text text-anchor="left" x="562.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (5 samples, 0.05%)</title><rect x="558" y="341" width="1" height="15" fill="rgb(237,201,48)"/><text text-anchor="left" x="561.00" y="351.50" 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>deno_core_http_bench`mio::sys::unix::ready::_$LT$impl$u20$core..convert..From$LT$mio..sys..unix..ready..UnixReady$GT$$u20$for$u20$mio..event_imp..Ready$GT$::from::h8b35fe50c386205f (1 samples, 0.01%)</title><rect x="559" y="325" width="0" height="15" fill="rgb(218,177,10)"/><text text-anchor="left" x="562.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::hbcf0cf4c156f6e39 (2 samples, 0.02%)</title><rect x="559" y="325" width="0" height="15" fill="rgb(244,127,18)"/><text text-anchor="left" x="562.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::ha358f980e13c3bef (3 samples, 0.03%)</title><rect x="560" y="309" width="0" height="15" fill="rgb(221,21,42)"/><text text-anchor="left" x="563.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::register::hac1e48a385c82a71 (15 samples, 0.15%)</title><rect x="559" y="341" width="2" height="15" fill="rgb(239,34,38)"/><text text-anchor="left" x="562.00" y="351.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register::h1ed4f9fe829defc9 (10 samples, 0.10%)</title><rect x="559" y="325" width="2" height="15" fill="rgb(230,80,0)"/><text text-anchor="left" x="562.00" y="335.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register2::hdf8b78b410aaf0c7 (6 samples, 0.06%)</title><rect x="560" y="309" width="1" height="15" fill="rgb(209,141,39)"/><text text-anchor="left" x="563.00" y="319.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::ha358f980e13c3bef (3 samples, 0.03%)</title><rect x="560" y="293" width="1" height="15" fill="rgb(216,102,32)"/><text text-anchor="left" x="563.00" y="303.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (2 samples, 0.02%)</title><rect x="560" y="277" width="1" height="15" fill="rgb(246,184,7)"/><text text-anchor="left" x="563.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::registration::Registration::register::h1ed4f9fe829defc9 (2 samples, 0.02%)</title><rect x="561" y="341" width="0" height="15" fill="rgb(225,85,38)"/><text text-anchor="left" x="564.00" y="351.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h11571165fa65c8d9 (6 samples, 0.06%)</title><rect x="561" y="325" width="1" height="15" fill="rgb(252,78,38)"/><text text-anchor="left" x="564.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h2c8a26de4b289749 (1 samples, 0.01%)</title><rect x="562" y="325" width="0" height="15" fill="rgb(250,171,12)"/><text text-anchor="left" x="565.00" y="335.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h5f2d9253e2db28ae (1 samples, 0.01%)</title><rect x="562" y="325" width="0" height="15" fill="rgb(229,85,43)"/><text text-anchor="left" x="565.00" y="335.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h6a7f53d434f76833 (2 samples, 0.02%)</title><rect x="562" y="325" width="0" height="15" fill="rgb(206,14,23)"/><text text-anchor="left" x="565.00" y="335.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (1 samples, 0.01%)</title><rect x="562" y="325" width="0" height="15" fill="rgb(252,62,18)"/><text text-anchor="left" x="565.00" y="335.50" 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>deno_core_http_bench`tokio_reactor::registration::Inner::poll_ready::hde1342dfd694fa9d (2 samples, 0.02%)</title><rect x="562" y="325" width="1" height="15" fill="rgb(224,122,36)"/><text text-anchor="left" x="565.00" y="335.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..bit..BitAnd$LT$T$GT$$GT$::bitand::h0bfb0a8d98db3349 (2 samples, 0.02%)</title><rect x="563" y="309" width="0" height="15" fill="rgb(228,134,23)"/><text text-anchor="left" x="566.00" y="319.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h11571165fa65c8d9 (1 samples, 0.01%)</title><rect x="563" y="309" width="0" height="15" fill="rgb(205,219,18)"/><text text-anchor="left" x="566.00" y="319.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::unwrap::h5f2d9253e2db28ae (2 samples, 0.02%)</title><rect x="563" y="309" width="1" height="15" fill="rgb(218,224,50)"/><text text-anchor="left" x="566.00" y="319.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hfda5d8a9569e4abc (2 samples, 0.02%)</title><rect x="564" y="309" width="0" height="15" fill="rgb(220,209,17)"/><text text-anchor="left" x="567.00" y="319.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (2 samples, 0.02%)</title><rect x="564" y="293" width="0" height="15" fill="rgb(243,94,27)"/><text text-anchor="left" x="567.00" y="303.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (5 samples, 0.05%)</title><rect x="564" y="309" width="0" height="15" fill="rgb(240,31,38)"/><text text-anchor="left" x="567.00" y="319.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (1 samples, 0.01%)</title><rect x="564" y="293" width="0" height="15" fill="rgb(251,112,36)"/><text text-anchor="left" x="567.00" y="303.50" 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>deno_core_http_bench`tokio_reactor::Direction::mask::h0bbf668c06b63728 (1 samples, 0.01%)</title><rect x="564" y="309" width="0" height="15" fill="rgb(236,9,28)"/><text text-anchor="left" x="567.00" y="319.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::inner::h4aabadd704398e1a (1 samples, 0.01%)</title><rect x="564" y="309" width="1" height="15" fill="rgb(219,149,51)"/><text text-anchor="left" x="567.00" y="319.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h46cf0cd529b560ee (1 samples, 0.01%)</title><rect x="566" y="293" width="0" height="15" fill="rgb(240,94,29)"/><text text-anchor="left" x="569.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h50870b45d5b7c1a1 (1 samples, 0.01%)</title><rect x="566" y="293" width="0" height="15" fill="rgb(245,87,1)"/><text text-anchor="left" x="569.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::h21fb6ad7247b1f75 (2 samples, 0.02%)</title><rect x="566" y="293" width="1" height="15" fill="rgb(223,94,39)"/><text text-anchor="left" x="569.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..arith..Sub$LT$T$GT$$GT$::sub::h04a268de882bd444 (3 samples, 0.03%)</title><rect x="567" y="293" width="0" height="15" fill="rgb(215,119,2)"/><text text-anchor="left" x="570.00" y="303.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (2 samples, 0.02%)</title><rect x="567" y="277" width="0" height="15" fill="rgb(237,0,29)"/><text text-anchor="left" x="570.00" y="287.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h66d73a2c424320cc (1 samples, 0.01%)</title><rect x="567" y="245" width="0" height="15" fill="rgb(243,7,53)"/><text text-anchor="left" x="570.00" y="255.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::hd47752142d890fe8 (1 samples, 0.01%)</title><rect x="567" y="229" width="0" height="15" fill="rgb(206,215,19)"/><text text-anchor="left" x="570.00" y="239.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h2b41f4645fa7da95 (9 samples, 0.09%)</title><rect x="567" y="261" width="1" height="15" fill="rgb(240,212,17)"/><text text-anchor="left" x="570.00" y="271.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hde2d078af0157721 (8 samples, 0.08%)</title><rect x="567" y="245" width="1" height="15" fill="rgb(232,197,29)"/><text text-anchor="left" x="570.00" y="255.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h058deb65f126d84d (1 samples, 0.01%)</title><rect x="568" y="261" width="1" height="15" fill="rgb(238,207,40)"/><text text-anchor="left" x="571.00" y="271.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h8b5bffccaaf65d73 (2 samples, 0.02%)</title><rect x="569" y="261" width="0" height="15" fill="rgb(217,204,25)"/><text text-anchor="left" x="572.00" y="271.50" 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>deno_core_http_bench`_$LT$slab..Slab$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$usize$GT$$GT$::index::ha4f915c03e208695 (16 samples, 0.16%)</title><rect x="567" y="293" width="2" height="15" fill="rgb(215,101,35)"/><text text-anchor="left" x="570.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h50870b45d5b7c1a1 (14 samples, 0.14%)</title><rect x="567" y="277" width="2" height="15" fill="rgb(237,111,32)"/><text text-anchor="left" x="570.00" y="287.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hde2d078af0157721 (1 samples, 0.01%)</title><rect x="569" y="261" width="0" height="15" fill="rgb(243,148,45)"/><text text-anchor="left" x="572.00" y="271.50" 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>deno_core_http_bench`_$LT$tokio_reactor..sharded_rwlock..RwLockReadGuard$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hfc1d07a050e4da7c (1 samples, 0.01%)</title><rect x="569" y="293" width="0" height="15" fill="rgb(228,86,39)"/><text text-anchor="left" x="572.00" y="303.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hf51031a99f80584a (3 samples, 0.03%)</title><rect x="569" y="293" width="0" height="15" fill="rgb(233,68,43)"/><text text-anchor="left" x="572.00" y="303.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::upgrade::h0beb0d8ebffa9100 (2 samples, 0.02%)</title><rect x="569" y="293" width="1" height="15" fill="rgb(225,107,42)"/><text text-anchor="left" x="572.00" y="303.50" 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>deno_core_http_bench`_$LT$lock_api..rwlock..RwLockReadGuard$LT$R$C$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hac875ec77758d33d (3 samples, 0.03%)</title><rect x="570" y="277" width="0" height="15" fill="rgb(230,156,25)"/><text text-anchor="left" x="573.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (8 samples, 0.08%)</title><rect x="570" y="229" width="1" height="15" fill="rgb(245,116,10)"/><text text-anchor="left" x="573.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (5 samples, 0.05%)</title><rect x="571" y="213" width="0" height="15" fill="rgb(228,135,9)"/><text text-anchor="left" x="574.00" y="223.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::unlock_shared::ha52ac62bd9eaee26 (12 samples, 0.12%)</title><rect x="570" y="245" width="1" height="15" fill="rgb(222,224,23)"/><text text-anchor="left" x="573.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (3 samples, 0.03%)</title><rect x="571" y="229" width="0" height="15" fill="rgb(216,66,1)"/><text text-anchor="left" x="574.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (3 samples, 0.03%)</title><rect x="571" y="213" width="0" height="15" fill="rgb(226,213,11)"/><text text-anchor="left" x="574.00" y="223.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc87e32fb84227632 (17 samples, 0.17%)</title><rect x="570" y="293" width="2" height="15" fill="rgb(242,200,51)"/><text text-anchor="left" x="573.00" y="303.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he318e1ff1cf4afdb (13 samples, 0.13%)</title><rect x="570" y="277" width="2" height="15" fill="rgb(238,26,44)"/><text text-anchor="left" x="573.00" y="287.50" 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>deno_core_http_bench`_$LT$lock_api..rwlock..RwLockReadGuard$LT$R$C$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hac875ec77758d33d (13 samples, 0.13%)</title><rect x="570" y="261" width="2" height="15" fill="rgb(251,64,6)"/><text text-anchor="left" x="573.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (1 samples, 0.01%)</title><rect x="571" y="245" width="1" height="15" fill="rgb(241,152,41)"/><text text-anchor="left" x="574.00" y="255.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he318e1ff1cf4afdb (1 samples, 0.01%)</title><rect x="572" y="293" width="0" height="15" fill="rgb(243,193,37)"/><text text-anchor="left" x="575.00" y="303.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::hf51031a99f80584a (3 samples, 0.03%)</title><rect x="572" y="261" width="0" height="15" fill="rgb(236,96,27)"/><text text-anchor="left" x="575.00" y="271.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hcbef5e80717c6ced (2 samples, 0.02%)</title><rect x="572" y="245" width="0" height="15" fill="rgb(209,122,25)"/><text text-anchor="left" x="575.00" y="255.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h6017ae6896a39060 (1 samples, 0.01%)</title><rect x="572" y="261" width="0" height="15" fill="rgb(235,221,11)"/><text text-anchor="left" x="575.00" y="271.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hfda5d8a9569e4abc (13 samples, 0.13%)</title><rect x="572" y="293" width="1" height="15" fill="rgb(249,8,43)"/><text text-anchor="left" x="575.00" y="303.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h46cf0cd529b560ee (12 samples, 0.12%)</title><rect x="572" y="277" width="1" height="15" fill="rgb(233,172,42)"/><text text-anchor="left" x="575.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_sub::h0275b6859935e700 (8 samples, 0.08%)</title><rect x="572" y="261" width="1" height="15" fill="rgb(217,117,6)"/><text text-anchor="left" x="575.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::atomic_sub::h27fed45ad48fb50f (3 samples, 0.03%)</title><rect x="573" y="245" width="0" height="15" fill="rgb(245,159,9)"/><text text-anchor="left" x="576.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_and::h215ac4893240001a (6 samples, 0.06%)</title><rect x="573" y="293" width="1" height="15" fill="rgb(252,81,39)"/><text text-anchor="left" x="576.00" y="303.50" 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>deno_core_http_bench`core::sync::atomic::atomic_and::h9904fc8bfae849db (5 samples, 0.05%)</title><rect x="573" y="277" width="1" height="15" fill="rgb(243,112,15)"/><text text-anchor="left" x="576.00" y="287.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read::hd9ca754f605ffb0e (1 samples, 0.01%)</title><rect x="574" y="293" width="0" height="15" fill="rgb(211,83,5)"/><text text-anchor="left" x="577.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::all::h38171aed3dbd6ee6 (5 samples, 0.05%)</title><rect x="574" y="293" width="1" height="15" fill="rgb(231,128,18)"/><text text-anchor="left" x="577.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::empty::hdf998d09fdc68d59 (2 samples, 0.02%)</title><rect x="575" y="293" width="0" height="15" fill="rgb(210,161,3)"/><text text-anchor="left" x="578.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::from_usize::hbb026ea30dcf2f90 (1 samples, 0.01%)</title><rect x="575" y="293" width="0" height="15" fill="rgb(249,197,35)"/><text text-anchor="left" x="578.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..cmp..PartialEq$GT$::eq::h21fb6ad7247b1f75 (4 samples, 0.04%)</title><rect x="575" y="277" width="1" height="15" fill="rgb(212,107,19)"/><text text-anchor="left" x="578.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::Ready::is_empty::hfbfb8e638a4e9b11 (8 samples, 0.08%)</title><rect x="575" y="293" width="1" height="15" fill="rgb(254,85,42)"/><text text-anchor="left" x="578.00" y="303.50" 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>deno_core_http_bench`mio::event_imp::Ready::empty::hdf998d09fdc68d59 (2 samples, 0.02%)</title><rect x="576" y="277" width="0" height="15" fill="rgb(209,116,16)"/><text text-anchor="left" x="579.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::Ready::writable::h86d656880ca0a503 (1 samples, 0.01%)</title><rect x="576" y="293" width="0" height="15" fill="rgb(224,146,2)"/><text text-anchor="left" x="579.00" y="303.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (1 samples, 0.01%)</title><rect x="576" y="293" width="0" height="15" fill="rgb(217,190,10)"/><text text-anchor="left" x="579.00" y="303.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="576" y="277" width="0" height="15" fill="rgb(229,173,14)"/><text text-anchor="left" x="579.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::Direction::mask::h0bbf668c06b63728 (3 samples, 0.03%)</title><rect x="576" y="293" width="0" height="15" fill="rgb(253,167,50)"/><text text-anchor="left" x="579.00" y="303.50" 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>deno_core_http_bench`_$LT$mio..event_imp..Ready$u20$as$u20$core..ops..arith..Sub$LT$T$GT$$GT$::sub::h04a268de882bd444 (2 samples, 0.02%)</title><rect x="576" y="277" width="0" height="15" fill="rgb(206,86,54)"/><text text-anchor="left" x="579.00" y="287.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h648cc572604dd9bf (1 samples, 0.01%)</title><rect x="576" y="261" width="0" height="15" fill="rgb(243,166,28)"/><text text-anchor="left" x="579.00" y="271.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66542eea088aa3f3 (3 samples, 0.03%)</title><rect x="577" y="277" width="0" height="15" fill="rgb(238,205,39)"/><text text-anchor="left" x="580.00" y="287.50" 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>deno_core_http_bench`_$LT$core..option..Option$LT$T$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h66542eea088aa3f3 (2 samples, 0.02%)</title><rect x="577" y="261" width="0" height="15" fill="rgb(211,26,11)"/><text text-anchor="left" x="580.00" y="271.50" 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>deno_core_http_bench`alloc::rc::is_dangling::hbfddb273609fa43f (1 samples, 0.01%)</title><rect x="577" y="261" width="0" height="15" fill="rgb(206,111,3)"/><text text-anchor="left" x="580.00" y="271.50" 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>deno_core_http_bench`alloc::rc::is_dangling::hbfddb273609fa43f (2 samples, 0.02%)</title><rect x="577" y="245" width="1" height="15" fill="rgb(214,34,14)"/><text text-anchor="left" x="580.00" y="255.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::inner::h5a5cac38636c198b (7 samples, 0.07%)</title><rect x="577" y="261" width="1" height="15" fill="rgb(235,34,21)"/><text text-anchor="left" x="580.00" y="271.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::hf00a477988c2a2a8 (4 samples, 0.04%)</title><rect x="578" y="245" width="0" height="15" fill="rgb(219,34,26)"/><text text-anchor="left" x="581.00" y="255.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::hcbef5e80717c6ced (2 samples, 0.02%)</title><rect x="578" y="261" width="0" height="15" fill="rgb(219,176,42)"/><text text-anchor="left" x="581.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (6 samples, 0.06%)</title><rect x="578" y="261" width="1" height="15" fill="rgb(253,119,47)"/><text text-anchor="left" x="581.00" y="271.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (4 samples, 0.04%)</title><rect x="578" y="245" width="1" height="15" fill="rgb(212,214,43)"/><text text-anchor="left" x="581.00" y="255.50" 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>deno_core_http_bench`tokio_reactor::HandlePriv::inner::h4aabadd704398e1a (24 samples, 0.24%)</title><rect x="576" y="293" width="3" height="15" fill="rgb(235,172,44)"/><text text-anchor="left" x="579.00" y="303.50" 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>deno_core_http_bench`alloc::sync::Weak$LT$T$GT$::upgrade::h0beb0d8ebffa9100 (20 samples, 0.20%)</title><rect x="577" y="277" width="2" height="15" fill="rgb(210,128,34)"/><text text-anchor="left" x="580.00" y="287.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="579" y="261" width="0" height="15" fill="rgb(240,128,54)"/><text text-anchor="left" x="582.00" y="271.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h55ec68e0f45683cf (3 samples, 0.03%)</title><rect x="579" y="277" width="1" height="15" fill="rgb(246,65,17)"/><text text-anchor="left" x="582.00" y="287.50" 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>deno_core_http_bench`mio::sys::unix::ready::_$LT$impl$u20$core..convert..From$LT$mio..sys..unix..ready..UnixReady$GT$$u20$for$u20$mio..event_imp..Ready$GT$::from::h8b35fe50c386205f (1 samples, 0.01%)</title><rect x="580" y="261" width="0" height="15" fill="rgb(225,156,21)"/><text text-anchor="left" x="583.00" y="271.50" 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>deno_core_http_bench`tokio_reactor::platform::hup::h8ec9d21ccede4f3a (6 samples, 0.06%)</title><rect x="579" y="293" width="1" height="15" fill="rgb(212,105,5)"/><text text-anchor="left" x="582.00" y="303.50" 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>deno_core_http_bench`mio::sys::unix::ready::UnixReady::hup::h8402c58e4eee7093 (2 samples, 0.02%)</title><rect x="580" y="277" width="0" height="15" fill="rgb(233,171,15)"/><text text-anchor="left" x="583.00" y="287.50" 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>deno_core_http_bench`mio::event_imp::ready_from_usize::hd507135cebca0336 (1 samples, 0.01%)</title><rect x="580" y="261" width="0" height="15" fill="rgb(233,76,45)"/><text text-anchor="left" x="583.00" y="271.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h7cd351fb0a1a7c81 (1 samples, 0.01%)</title><rect x="580" y="277" width="0" height="15" fill="rgb(248,125,46)"/><text text-anchor="left" x="583.00" y="287.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::ha86f84a015fd89a5 (1 samples, 0.01%)</title><rect x="580" y="245" width="1" height="15" fill="rgb(209,30,29)"/><text text-anchor="left" x="583.00" y="255.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h245261f6ec28479d (4 samples, 0.04%)</title><rect x="581" y="245" width="0" height="15" fill="rgb(211,92,51)"/><text text-anchor="left" x="584.00" y="255.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h32ecfac2ca68030f (3 samples, 0.03%)</title><rect x="581" y="245" width="0" height="15" fill="rgb(227,156,26)"/><text text-anchor="left" x="584.00" y="255.50" 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>deno_core_http_bench`core::ptr::null_mut::h416681d3c2f83223 (1 samples, 0.01%)</title><rect x="581" y="245" width="1" height="15" fill="rgb(220,159,12)"/><text text-anchor="left" x="584.00" y="255.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h7cd351fb0a1a7c81 (16 samples, 0.16%)</title><rect x="580" y="261" width="2" height="15" fill="rgb(217,200,52)"/><text text-anchor="left" x="583.00" y="271.50" 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>deno_core_http_bench`core::slice::from_raw_parts::hb5e6c70e21260af6 (5 samples, 0.05%)</title><rect x="582" y="245" width="0" height="15" fill="rgb(231,43,15)"/><text text-anchor="left" x="585.00" y="255.50" 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>deno_core_http_bench`_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h5d093e989500fa13 (4 samples, 0.04%)</title><rect x="582" y="261" width="1" height="15" fill="rgb(245,116,39)"/><text text-anchor="left" x="585.00" y="271.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::ha86f84a015fd89a5 (3 samples, 0.03%)</title><rect x="583" y="261" width="0" height="15" fill="rgb(212,70,33)"/><text text-anchor="left" x="586.00" y="271.50" 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>deno_core_http_bench`_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..index..Index$LT$I$GT$$GT$::index::h223f1d7ef2570469 (24 samples, 0.24%)</title><rect x="580" y="277" width="3" height="15" fill="rgb(222,4,25)"/><text text-anchor="left" x="583.00" y="287.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4b01ce816520d5d3 (1 samples, 0.01%)</title><rect x="583" y="261" width="0" height="15" fill="rgb(252,25,6)"/><text text-anchor="left" x="586.00" y="271.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::len::h4c23334428af9105 (2 samples, 0.02%)</title><rect x="583" y="277" width="0" height="15" fill="rgb(236,224,53)"/><text text-anchor="left" x="586.00" y="287.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h4b01ce816520d5d3 (3 samples, 0.03%)</title><rect x="583" y="277" width="1" height="15" fill="rgb(230,213,6)"/><text text-anchor="left" x="586.00" y="287.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::checked_add::h6cc245eb941c3c47 (3 samples, 0.03%)</title><rect x="584" y="245" width="0" height="15" fill="rgb(223,23,46)"/><text text-anchor="left" x="587.00" y="255.50" 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>deno_core_http_bench`core::num::_$LT$impl$u20$usize$GT$::overflowing_add::h4629dd7faa41936f (3 samples, 0.03%)</title><rect x="584" y="229" width="0" height="15" fill="rgb(232,103,45)"/><text text-anchor="left" x="587.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::compare_exchange_weak::h20851c7407c6241a (3 samples, 0.03%)</title><rect x="584" y="245" width="1" height="15" fill="rgb(219,164,5)"/><text text-anchor="left" x="587.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (3 samples, 0.03%)</title><rect x="584" y="229" width="1" height="15" fill="rgb(216,150,28)"/><text text-anchor="left" x="587.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::hb32ac0d7d1cce9a0 (2 samples, 0.02%)</title><rect x="585" y="245" width="0" height="15" fill="rgb(253,222,50)"/><text text-anchor="left" x="588.00" y="255.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h8ea177d22915077c (1 samples, 0.01%)</title><rect x="585" y="229" width="0" height="15" fill="rgb(254,47,13)"/><text text-anchor="left" x="588.00" y="239.50" 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>deno_core_http_bench`core::sync::atomic::atomic_compare_exchange_weak::h982c8e26ac64ce0b (1 samples, 0.01%)</title><rect x="585" y="245" width="0" height="15" fill="rgb(235,106,28)"/><text text-anchor="left" x="588.00" y="255.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read::hd9ca754f605ffb0e (14 samples, 0.14%)</title><rect x="584" y="277" width="1" height="15" fill="rgb(221,39,48)"/><text text-anchor="left" x="587.00" y="287.50" 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>deno_core_http_bench`_$LT$parking_lot..raw_rwlock..RawRwLock$u20$as$u20$lock_api..rwlock..RawRwLock$GT$::lock_shared::ha2ce03267247a82c (12 samples, 0.12%)</title><rect x="584" y="261" width="1" height="15" fill="rgb(245,26,26)"/><text text-anchor="left" x="587.00" y="271.50" 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>deno_core_http_bench`parking_lot_core::parking_lot::deadlock::acquire_resource::hcaecf64eb2a187f7 (1 samples, 0.01%)</title><rect x="585" y="245" width="0" height="15" fill="rgb(238,220,38)"/><text text-anchor="left" x="588.00" y="255.50" 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>deno_core_http_bench`lock_api::rwlock::RwLock$LT$R$C$T$GT$::read_guard::hd040c7caeaf9e1a4 (1 samples, 0.01%)</title><rect x="585" y="277" width="0" height="15" fill="rgb(249,95,45)"/><text text-anchor="left" x="588.00" y="287.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h6087194a793c57d3 (1 samples, 0.01%)</title><rect x="585" y="277" width="0" height="15" fill="rgb(219,179,11)"/><text text-anchor="left" x="588.00" y="287.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc7eec755a72a73c8 (1 samples, 0.01%)</title><rect x="586" y="261" width="0" height="15" fill="rgb(236,78,11)"/><text text-anchor="left" x="589.00" y="271.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hc7eec755a72a73c8 (1 samples, 0.01%)</title><rect x="587" y="245" width="0" height="15" fill="rgb(230,57,7)"/><text text-anchor="left" x="590.00" y="255.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::hcb66fcf326ad7814 (2 samples, 0.02%)</title><rect x="587" y="245" width="0" height="15" fill="rgb(238,193,45)"/><text text-anchor="left" x="590.00" y="255.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::hd9f058479398d5bb (2 samples, 0.02%)</title><rect x="587" y="245" width="0" height="15" fill="rgb(230,84,41)"/><text text-anchor="left" x="590.00" y="255.50" 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>deno_core_http_bench`core::mem::needs_drop::h8c83b32cd8c8c840 (3 samples, 0.03%)</title><rect x="587" y="229" width="1" height="15" fill="rgb(209,118,16)"/><text text-anchor="left" x="590.00" y="239.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h7dec63b0d0cb6f7c (2 samples, 0.02%)</title><rect x="588" y="213" width="0" height="15" fill="rgb(224,139,48)"/><text text-anchor="left" x="591.00" y="223.50" 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>deno_core_http_bench`core::mem::needs_drop::h8c83b32cd8c8c840 (3 samples, 0.03%)</title><rect x="588" y="213" width="0" height="15" fill="rgb(222,15,28)"/><text text-anchor="left" x="591.00" y="223.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::hd9f058479398d5bb (7 samples, 0.07%)</title><rect x="588" y="229" width="0" height="15" fill="rgb(247,86,37)"/><text text-anchor="left" x="591.00" y="239.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h85737dc74dbc8a64 (1 samples, 0.01%)</title><rect x="588" y="213" width="0" height="15" fill="rgb(243,217,15)"/><text text-anchor="left" x="591.00" y="223.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (15 samples, 0.15%)</title><rect x="587" y="245" width="2" height="15" fill="rgb(248,88,5)"/><text text-anchor="left" x="590.00" y="255.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h85737dc74dbc8a64 (5 samples, 0.05%)</title><rect x="588" y="229" width="1" height="15" fill="rgb(235,184,14)"/><text text-anchor="left" x="591.00" y="239.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::_$u7b$$u7b$closure$u7d$$u7d$::h8ede7539b4d2d557 (2 samples, 0.02%)</title><rect x="589" y="245" width="0" height="15" fill="rgb(222,133,16)"/><text text-anchor="left" x="592.00" y="255.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::h6087194a793c57d3 (37 samples, 0.36%)</title><rect x="586" y="261" width="4" height="15" fill="rgb(229,225,24)"/><text text-anchor="left" x="589.00" y="271.50" 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>libdyld.dylib`tlv_get_addr (6 samples, 0.06%)</title><rect x="589" y="245" width="1" height="15" fill="rgb(237,194,4)"/><text text-anchor="left" x="592.00" y="255.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::poll_read_ready::h175bee92a8ed6046 (319 samples, 3.13%)</title><rect x="553" y="357" width="37" height="15" fill="rgb(250,143,23)"/><text text-anchor="left" x="556.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">den..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Registration::take_read_ready::haa53d379c45e38de (253 samples, 2.48%)</title><rect x="561" y="341" width="29" height="15" fill="rgb(236,146,15)"/><text text-anchor="left" x="564.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">de..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Registration::poll_ready::hbde160ddc3b51c14 (237 samples, 2.32%)</title><rect x="563" y="325" width="27" height="15" fill="rgb(254,108,4)"/><text text-anchor="left" x="566.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Inner::poll_ready::hde1342dfd694fa9d (220 samples, 2.16%)</title><rect x="565" y="309" width="25" height="15" fill="rgb(226,203,53)"/><text text-anchor="left" x="568.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">d..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::sharded_rwlock::RwLock$LT$T$GT$::read::h5816c592d033b8ca (88 samples, 0.86%)</title><rect x="580" y="293" width="10" height="15" fill="rgb(211,75,49)"/><text text-anchor="left" x="583.00" y="303.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::thread_index::h96dde913b1849116 (40 samples, 0.39%)</title><rect x="585" y="277" width="5" height="15" fill="rgb(205,97,1)"/><text text-anchor="left" x="588.00" y="287.50" 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>deno_core_http_bench`tokio_reactor::sharded_rwlock::REGISTRATION::__getit::hcc888821a0be8989 (1 samples, 0.01%)</title><rect x="590" y="261" width="0" height="15" fill="rgb(238,153,8)"/><text text-anchor="left" x="593.00" y="271.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::is_wouldblock::h466cd44fdf54f036 (1 samples, 0.01%)</title><rect x="590" y="357" width="0" height="15" fill="rgb(246,222,45)"/><text text-anchor="left" x="593.00" y="367.50" 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>deno_core_http_bench`_$LT$tokio_reactor..poll_evented..PollEvented$LT$E$GT$$u20$as$u20$std..io..Read$GT$::read::h841f6f4eb5397dd1 (769 samples, 7.54%)</title><rect x="501" y="373" width="89" height="15" fill="rgb(252,141,25)"/><text text-anchor="left" x="504.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::registration::Registration::take_read_ready::haa53d379c45e38de (1 samples, 0.01%)</title><rect x="590" y="357" width="0" height="15" fill="rgb(248,161,14)"/><text text-anchor="left" x="593.00" y="367.50" 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>deno_core_http_bench`mio::event_imp::Ready::readable::h9e3840cdbf6a87f0 (1 samples, 0.01%)</title><rect x="590" y="373" width="0" height="15" fill="rgb(234,42,7)"/><text text-anchor="left" x="593.00" y="383.50" 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>deno_core_http_bench`tokio_reactor::poll_evented::PollEvented$LT$E$GT$::get_mut::h5f9901d685901913 (2 samples, 0.02%)</title><rect x="590" y="373" width="1" height="15" fill="rgb(211,218,38)"/><text text-anchor="left" x="593.00" y="383.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_read::_$u7b$$u7b$closure$u7d$$u7d$::ha59bf6b648a1c2b8 (1,092 samples, 10.71%)</title><rect x="464" y="421" width="127" height="15" fill="rgb(240,174,11)"/><text text-anchor="left" x="467.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_io::async_read::AsyncRead::poll_read::hee84145a3751a22f (794 samples, 7.79%)</title><rect x="499" y="405" width="92" height="15" fill="rgb(232,31,5)"/><text text-anchor="left" x="502.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$tokio_tcp..stream..TcpStream$u20$as$u20$std..io..Read$GT$::read::hba528de9a3dd607f (781 samples, 7.66%)</title><rect x="500" y="389" width="91" height="15" fill="rgb(250,116,46)"/><text text-anchor="left" x="503.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`tokio_reactor::poll_evented::is_wouldblock::h466cd44fdf54f036 (2 samples, 0.02%)</title><rect x="591" y="373" width="0" height="15" fill="rgb(241,102,19)"/><text text-anchor="left" x="594.00" y="383.50" 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>deno_core_http_bench`_$LT$futures..future..poll_fn..PollFn$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he6a65c671fb3d13e (1,107 samples, 10.86%)</title><rect x="463" y="437" width="128" height="15" fill="rgb(215,136,33)"/><text text-anchor="left" x="466.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_b..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::sync::mutex::Mutex$LT$T$GT$::lock::h1b018b622fbd7899 (4 samples, 0.04%)</title><rect x="591" y="421" width="0" height="15" fill="rgb(249,208,50)"/><text text-anchor="left" x="594.00" y="431.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::ha93e2db1d38aff63 (4 samples, 0.04%)</title><rect x="591" y="421" width="1" height="15" fill="rgb(240,15,28)"/><text text-anchor="left" x="594.00" y="431.50" 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>deno_core_http_bench`core::ptr::read::hfe35971180755932 (1 samples, 0.01%)</title><rect x="592" y="373" width="0" height="15" fill="rgb(215,55,17)"/><text text-anchor="left" x="595.00" y="383.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h539f6a856230c935 (5 samples, 0.05%)</title><rect x="592" y="373" width="1" height="15" fill="rgb(254,143,53)"/><text text-anchor="left" x="595.00" y="383.50" 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>deno_core_http_bench`core::ptr::read::hfe35971180755932 (5 samples, 0.05%)</title><rect x="592" y="357" width="1" height="15" fill="rgb(221,17,50)"/><text text-anchor="left" x="595.00" y="367.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="592" y="341" width="1" height="15" fill="rgb(242,127,10)"/><text text-anchor="left" x="595.00" y="351.50" 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>deno_core_http_bench`core::mem::replace::hafbcd04bc301aa0e (7 samples, 0.07%)</title><rect x="592" y="405" width="1" height="15" fill="rgb(254,133,35)"/><text text-anchor="left" x="595.00" y="415.50" 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>deno_core_http_bench`core::mem::swap::hcde475c026fc3ea8 (7 samples, 0.07%)</title><rect x="592" y="389" width="1" height="15" fill="rgb(212,19,12)"/><text text-anchor="left" x="595.00" y="399.50" 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>deno_core_http_bench`core::ptr::write::h033396537bee378d (1 samples, 0.01%)</title><rect x="593" y="373" width="0" height="15" fill="rgb(234,135,41)"/><text text-anchor="left" x="596.00" y="383.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h64273a5b66e66484 (8 samples, 0.08%)</title><rect x="592" y="421" width="1" height="15" fill="rgb(246,32,47)"/><text text-anchor="left" x="595.00" y="431.50" 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>deno_core_http_bench`core::mem::swap::hcde475c026fc3ea8 (1 samples, 0.01%)</title><rect x="593" y="405" width="0" height="15" fill="rgb(216,211,14)"/><text text-anchor="left" x="596.00" y="415.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4f3007d9d07f1240 (17 samples, 0.17%)</title><rect x="591" y="437" width="2" height="15" fill="rgb(251,172,16)"/><text text-anchor="left" x="594.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h63db91bbb876c879 (4 samples, 0.04%)</title><rect x="593" y="421" width="0" height="15" fill="rgb(215,102,37)"/><text text-anchor="left" x="596.00" y="431.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::hc2531c785859c46f (1 samples, 0.01%)</title><rect x="593" y="405" width="0" height="15" fill="rgb(236,142,12)"/><text text-anchor="left" x="596.00" y="415.50" 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>deno_core_http_bench`core::mem::size_of::h17e3afa45f4a3739 (4 samples, 0.04%)</title><rect x="593" y="405" width="1" height="15" fill="rgb(237,7,7)"/><text text-anchor="left" x="596.00" y="415.50" 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>deno_core_http_bench`core::mem::size_of::h17e3afa45f4a3739 (2 samples, 0.02%)</title><rect x="594" y="389" width="0" height="15" fill="rgb(224,92,42)"/><text text-anchor="left" x="597.00" y="399.50" 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>deno_core_http_bench`core::mem::size_of::h17e3afa45f4a3739 (1 samples, 0.01%)</title><rect x="595" y="373" width="0" height="15" fill="rgb(245,86,19)"/><text text-anchor="left" x="598.00" y="383.50" 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>deno_core_http_bench`core::mem::size_of::h7ae92680284dc7ae (2 samples, 0.02%)</title><rect x="595" y="373" width="0" height="15" fill="rgb(247,105,44)"/><text text-anchor="left" x="598.00" y="383.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (8 samples, 0.08%)</title><rect x="596" y="357" width="0" height="15" fill="rgb(227,152,17)"/><text text-anchor="left" x="599.00" y="367.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (5 samples, 0.05%)</title><rect x="596" y="341" width="0" height="15" fill="rgb(242,225,22)"/><text text-anchor="left" x="599.00" y="351.50" 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>deno_core_http_bench`core::mem::size_of::h7ae92680284dc7ae (1 samples, 0.01%)</title><rect x="596" y="357" width="1" height="15" fill="rgb(241,187,9)"/><text text-anchor="left" x="599.00" y="367.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::hcc29f419a7f2e326 (25 samples, 0.25%)</title><rect x="594" y="389" width="3" height="15" fill="rgb(210,225,3)"/><text text-anchor="left" x="597.00" y="399.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (20 samples, 0.20%)</title><rect x="595" y="373" width="2" height="15" fill="rgb(222,209,13)"/><text text-anchor="left" x="598.00" y="383.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (6 samples, 0.06%)</title><rect x="597" y="357" width="0" height="15" fill="rgb(229,101,4)"/><text text-anchor="left" x="600.00" y="367.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (3 samples, 0.03%)</title><rect x="597" y="341" width="0" height="15" fill="rgb(228,204,14)"/><text text-anchor="left" x="600.00" y="351.50" 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>deno_core_http_bench`core::mem::swap::hdb19f76e8f5f136e (35 samples, 0.34%)</title><rect x="593" y="421" width="4" height="15" fill="rgb(218,174,5)"/><text text-anchor="left" x="596.00" y="431.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hb142138c3e151548 (31 samples, 0.30%)</title><rect x="594" y="405" width="3" height="15" fill="rgb(218,34,8)"/><text text-anchor="left" x="597.00" y="415.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (2 samples, 0.02%)</title><rect x="597" y="389" width="0" height="15" fill="rgb(242,25,23)"/><text text-anchor="left" x="600.00" y="399.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hb142138c3e151548 (2 samples, 0.02%)</title><rect x="597" y="421" width="1" height="15" fill="rgb(230,148,39)"/><text text-anchor="left" x="600.00" y="431.50" 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>deno_core_http_bench`core::mem::replace::hae3a2898470aa68e (39 samples, 0.38%)</title><rect x="593" y="437" width="5" height="15" fill="rgb(216,208,50)"/><text text-anchor="left" x="596.00" y="447.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="598" y="421" width="0" height="15" fill="rgb(206,8,30)"/><text text-anchor="left" x="601.00" y="431.50" 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>deno_core_http_bench`core::mem::swap::hdb19f76e8f5f136e (1 samples, 0.01%)</title><rect x="598" y="437" width="0" height="15" fill="rgb(225,79,52)"/><text text-anchor="left" x="601.00" y="447.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h64273a5b66e66484 (1 samples, 0.01%)</title><rect x="598" y="437" width="0" height="15" fill="rgb(246,25,32)"/><text text-anchor="left" x="601.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5c3a50f345b3744e (1 samples, 0.01%)</title><rect x="598" y="421" width="0" height="15" fill="rgb(216,135,36)"/><text text-anchor="left" x="601.00" y="431.50" 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>deno_core_http_bench`std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::find&lt;void*&gt; (3 samples, 0.03%)</title><rect x="599" y="357" width="0" height="15" fill="rgb(215,77,31)"/><text text-anchor="left" x="602.00" y="367.50" 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>deno_core_http_bench`std::__1::__libcpp_mutex_unlock (1 samples, 0.01%)</title><rect x="599" y="357" width="0" height="15" fill="rgb(248,100,46)"/><text text-anchor="left" x="602.00" y="367.50" 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>deno_core_http_bench`std::__1::mutex::lock (1 samples, 0.01%)</title><rect x="599" y="357" width="1" height="15" fill="rgb(247,2,35)"/><text text-anchor="left" x="602.00" y="367.50" 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>libsystem_pthread.dylib`pthread_mutex_lock (1 samples, 0.01%)</title><rect x="599" y="341" width="1" height="15" fill="rgb(227,2,47)"/><text text-anchor="left" x="602.00" y="351.50" 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>deno_core_http_bench`deno::ArrayBufferAllocator::Unref (8 samples, 0.08%)</title><rect x="599" y="373" width="1" height="15" fill="rgb(208,120,17)"/><text text-anchor="left" x="602.00" y="383.50" 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>deno_core_http_bench`std::__1::mutex::unlock (1 samples, 0.01%)</title><rect x="600" y="357" width="0" height="15" fill="rgb(237,207,14)"/><text text-anchor="left" x="603.00" y="367.50" 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>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="600" y="341" width="0" height="15" fill="rgb(254,150,24)"/><text text-anchor="left" x="603.00" y="351.50" 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>deno_core_http_bench`deno_pinned_buf_delete (1 samples, 0.01%)</title><rect x="600" y="373" width="0" height="15" fill="rgb(243,96,30)"/><text text-anchor="left" x="603.00" y="383.50" 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>deno_core_http_bench`std::__1::__hash_iterator&lt;std::__1::__hash_node&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, void*&gt;*&gt; std::__1::__hash_table&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::__unordered_map_hasher&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::hash&lt;void*&gt;, true&gt;, std::__1::__unordered_map_equal&lt;void*, std::__1::__hash_value_type&lt;void*, unsigned long&gt;, std::__1::equal_to&lt;void*&gt;, true&gt;, std::__1::allocator&lt;std::__1::__hash_value_type&lt;void*, unsigned long&gt; &gt; &gt;::find&lt;void*&gt; (1 samples, 0.01%)</title><rect x="600" y="373" width="0" height="15" fill="rgb(239,18,40)"/><text text-anchor="left" x="603.00" y="383.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::ha46be945c6b61cbc (17 samples, 0.17%)</title><rect x="598" y="437" width="2" height="15" fill="rgb(212,130,4)"/><text text-anchor="left" x="601.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbb0c0024a449e3f7 (16 samples, 0.16%)</title><rect x="598" y="421" width="2" height="15" fill="rgb(205,217,6)"/><text text-anchor="left" x="601.00" y="431.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5c3a50f345b3744e (15 samples, 0.15%)</title><rect x="598" y="405" width="2" height="15" fill="rgb(213,37,50)"/><text text-anchor="left" x="601.00" y="415.50" 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>deno_core_http_bench`_$LT$deno..libdeno..PinnedBuf$u20$as$u20$core..ops..drop..Drop$GT$::drop::hc286e04ab18d17e1 (14 samples, 0.14%)</title><rect x="598" y="389" width="2" height="15" fill="rgb(229,58,17)"/><text text-anchor="left" x="601.00" y="399.50" 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>deno_core_http_bench`std::__1::mutex::unlock (1 samples, 0.01%)</title><rect x="600" y="373" width="0" height="15" fill="rgb(224,189,8)"/><text text-anchor="left" x="603.00" y="383.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hbb0c0024a449e3f7 (2 samples, 0.02%)</title><rect x="600" y="437" width="0" height="15" fill="rgb(240,186,48)"/><text text-anchor="left" x="603.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc49be57bf8b39eff (2 samples, 0.02%)</title><rect x="600" y="437" width="0" height="15" fill="rgb(231,152,15)"/><text text-anchor="left" x="603.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h63db91bbb876c879 (2 samples, 0.02%)</title><rect x="600" y="437" width="1" height="15" fill="rgb(234,3,25)"/><text text-anchor="left" x="603.00" y="447.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::hd147630a59f6f124 (4 samples, 0.04%)</title><rect x="601" y="437" width="0" height="15" fill="rgb(246,227,16)"/><text text-anchor="left" x="604.00" y="447.50" 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>deno_core_http_bench`deno_core_http_bench_bin::op_read::_$u7b$$u7b$closure$u7d$$u7d$::ha59bf6b648a1c2b8 (1 samples, 0.01%)</title><rect x="601" y="437" width="0" height="15" fill="rgb(253,175,4)"/><text text-anchor="left" x="604.00" y="447.50" 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>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::h8a2578298c3d1683 (1,236 samples, 12.12%)</title><rect x="458" y="453" width="144" height="15" fill="rgb(218,46,48)"/><text text-anchor="left" x="461.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_ben..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="601" y="437" width="1" height="15" fill="rgb(247,79,42)"/><text text-anchor="left" x="604.00" y="447.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::ha46bd3e96271b7ba (1,247 samples, 12.23%)</title><rect x="457" y="469" width="145" height="15" fill="rgb(208,30,29)"/><text text-anchor="left" x="460.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_ben..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="602" y="453" width="0" height="15" fill="rgb(224,98,35)"/><text text-anchor="left" x="605.00" y="463.50" 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>deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::hf6b9d0ec9a1717d6 (3,006 samples, 29.49%)</title><rect x="254" y="485" width="348" height="15" fill="rgb(209,115,46)"/><text text-anchor="left" x="257.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$alloc..boxed..Box$LT$..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::h8a2578298c3d1683 (3 samples, 0.03%)</title><rect x="602" y="469" width="0" height="15" fill="rgb(215,183,37)"/><text text-anchor="left" x="605.00" y="479.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h86cf3f6d62fa3b1d (3 samples, 0.03%)</title><rect x="602" y="485" width="0" height="15" fill="rgb(238,36,24)"/><text text-anchor="left" x="605.00" y="495.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="602" y="469" width="0" height="15" fill="rgb(240,150,15)"/><text text-anchor="left" x="605.00" y="479.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcd21c1c13b8469e8 (1 samples, 0.01%)</title><rect x="603" y="469" width="0" height="15" fill="rgb(253,118,54)"/><text text-anchor="left" x="606.00" y="479.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hd730a8c293f64d73 (1 samples, 0.01%)</title><rect x="603" y="453" width="0" height="15" fill="rgb(221,225,40)"/><text text-anchor="left" x="606.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::hcd21c1c13b8469e8 (11 samples, 0.11%)</title><rect x="603" y="453" width="1" height="15" fill="rgb(225,175,10)"/><text text-anchor="left" x="606.00" y="463.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hd730a8c293f64d73 (5 samples, 0.05%)</title><rect x="604" y="437" width="0" height="15" fill="rgb(209,74,2)"/><text text-anchor="left" x="607.00" y="447.50" 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>deno_core_http_bench`futures::future::result_::result::h848e23ba984182f1 (3 samples, 0.03%)</title><rect x="604" y="421" width="0" height="15" fill="rgb(242,174,30)"/><text text-anchor="left" x="607.00" y="431.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h33b8cb6526bafe12 (18 samples, 0.18%)</title><rect x="602" y="485" width="3" height="15" fill="rgb(242,116,28)"/><text text-anchor="left" x="605.00" y="495.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::hc63908797878c8a5 (15 samples, 0.15%)</title><rect x="603" y="469" width="2" height="15" fill="rgb(208,95,16)"/><text text-anchor="left" x="606.00" y="479.50" 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>deno_core_http_bench`deno_core_http_bench_bin::dispatch::_$u7b$$u7b$closure$u7d$$u7d$::hd473710c21aee6e9 (2 samples, 0.02%)</title><rect x="604" y="453" width="1" height="15" fill="rgb(217,107,35)"/><text text-anchor="left" x="607.00" y="463.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h83b3153ccbb5a8ec (2 samples, 0.02%)</title><rect x="605" y="485" width="0" height="15" fill="rgb(210,21,43)"/><text text-anchor="left" x="608.00" y="495.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::ha46bd3e96271b7ba (7 samples, 0.07%)</title><rect x="605" y="485" width="1" height="15" fill="rgb(225,78,33)"/><text text-anchor="left" x="608.00" y="495.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::h0377abf341f5a7b2 (1 samples, 0.01%)</title><rect x="606" y="469" width="0" height="15" fill="rgb(207,137,1)"/><text text-anchor="left" x="609.00" y="479.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::hcb17c712655ce0af (5 samples, 0.05%)</title><rect x="606" y="469" width="1" height="15" fill="rgb(221,154,12)"/><text text-anchor="left" x="609.00" y="479.50" 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>deno_core_http_bench`core::mem::size_of::h1a635034ecbf0b08 (2 samples, 0.02%)</title><rect x="607" y="421" width="1" height="15" fill="rgb(236,111,51)"/><text text-anchor="left" x="610.00" y="431.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h41e804693640755f (5 samples, 0.05%)</title><rect x="608" y="405" width="0" height="15" fill="rgb(241,23,31)"/><text text-anchor="left" x="611.00" y="415.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="608" y="389" width="0" height="15" fill="rgb(224,85,36)"/><text text-anchor="left" x="611.00" y="399.50" 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>deno_core_http_bench`core::mem::size_of::h1a635034ecbf0b08 (2 samples, 0.02%)</title><rect x="608" y="405" width="1" height="15" fill="rgb(212,142,21)"/><text text-anchor="left" x="611.00" y="415.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="609" y="389" width="0" height="15" fill="rgb(249,203,50)"/><text text-anchor="left" x="612.00" y="399.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h41e804693640755f (1 samples, 0.01%)</title><rect x="609" y="389" width="1" height="15" fill="rgb(214,3,12)"/><text text-anchor="left" x="612.00" y="399.50" 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>deno_core_http_bench`core::ptr::read::hc15a836c88e8a82c (8 samples, 0.08%)</title><rect x="609" y="405" width="1" height="15" fill="rgb(229,92,37)"/><text text-anchor="left" x="612.00" y="415.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="610" y="389" width="0" height="15" fill="rgb(246,28,23)"/><text text-anchor="left" x="613.00" y="399.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h6b00573bc605e02a (19 samples, 0.19%)</title><rect x="608" y="421" width="2" height="15" fill="rgb(240,197,4)"/><text text-anchor="left" x="611.00" y="431.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="610" y="405" width="0" height="15" fill="rgb(252,12,10)"/><text text-anchor="left" x="613.00" y="415.50" 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>deno_core_http_bench`core::mem::swap::h8ec5c6e8af66f99f (23 samples, 0.23%)</title><rect x="607" y="437" width="3" height="15" fill="rgb(230,214,23)"/><text text-anchor="left" x="610.00" y="447.50" 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>deno_core_http_bench`core::ptr::write::h52f2a156858a9714 (1 samples, 0.01%)</title><rect x="610" y="421" width="0" height="15" fill="rgb(225,168,39)"/><text text-anchor="left" x="613.00" y="431.50" 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>deno_core_http_bench`core::mem::replace::h93c79f74500101d9 (27 samples, 0.26%)</title><rect x="607" y="453" width="3" height="15" fill="rgb(213,134,7)"/><text text-anchor="left" x="610.00" y="463.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h6b00573bc605e02a (2 samples, 0.02%)</title><rect x="610" y="437" width="0" height="15" fill="rgb(213,49,13)"/><text text-anchor="left" x="613.00" y="447.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h4d31b3080a904393 (30 samples, 0.29%)</title><rect x="607" y="469" width="3" height="15" fill="rgb(248,80,13)"/><text text-anchor="left" x="610.00" y="479.50" 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>deno_core_http_bench`core::mem::swap::h8ec5c6e8af66f99f (1 samples, 0.01%)</title><rect x="610" y="453" width="0" height="15" fill="rgb(208,85,8)"/><text text-anchor="left" x="613.00" y="463.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::h0377abf341f5a7b2 (2 samples, 0.02%)</title><rect x="611" y="453" width="0" height="15" fill="rgb(205,154,9)"/><text text-anchor="left" x="614.00" y="463.50" 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>deno_core_http_bench`futures::poll::Async::Ready::he5ed77303485394a (1 samples, 0.01%)</title><rect x="611" y="437" width="0" height="15" fill="rgb(248,38,21)"/><text text-anchor="left" x="614.00" y="447.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h2e5736e4de7e7a32 (53 samples, 0.52%)</title><rect x="606" y="485" width="6" height="15" fill="rgb(235,177,28)"/><text text-anchor="left" x="609.00" y="495.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h3e529c1b39d93bfc (13 samples, 0.13%)</title><rect x="610" y="469" width="2" height="15" fill="rgb(214,86,51)"/><text text-anchor="left" x="613.00" y="479.50" 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>deno_core_http_bench`futures::poll::Async::Ready::he5ed77303485394a (4 samples, 0.04%)</title><rect x="611" y="453" width="1" height="15" fill="rgb(213,228,10)"/><text text-anchor="left" x="614.00" y="463.50" 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>deno_core_http_bench`core::mem::size_of::h5fb9c6ef1b4e8a0a (3 samples, 0.03%)</title><rect x="612" y="453" width="0" height="15" fill="rgb(248,225,11)"/><text text-anchor="left" x="615.00" y="463.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::haf9d4c87641156cd (2 samples, 0.02%)</title><rect x="612" y="453" width="1" height="15" fill="rgb(251,100,46)"/><text text-anchor="left" x="615.00" y="463.50" 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>deno_core_http_bench`core::mem::size_of::h5fb9c6ef1b4e8a0a (3 samples, 0.03%)</title><rect x="613" y="421" width="0" height="15" fill="rgb(237,225,14)"/><text text-anchor="left" x="616.00" y="431.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (3 samples, 0.03%)</title><rect x="614" y="405" width="0" height="15" fill="rgb(236,102,38)"/><text text-anchor="left" x="617.00" y="415.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="614" y="389" width="0" height="15" fill="rgb(249,131,4)"/><text text-anchor="left" x="617.00" y="399.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (3 samples, 0.03%)</title><rect x="614" y="405" width="0" height="15" fill="rgb(228,194,1)"/><text text-anchor="left" x="617.00" y="415.50" 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>deno_core_http_bench`core::mem::swap::hebd984f289709524 (21 samples, 0.21%)</title><rect x="612" y="469" width="2" height="15" fill="rgb(232,98,39)"/><text text-anchor="left" x="615.00" y="479.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h5e8c002fc2deedc9 (16 samples, 0.16%)</title><rect x="613" y="453" width="1" height="15" fill="rgb(227,75,38)"/><text text-anchor="left" x="616.00" y="463.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::haf9d4c87641156cd (15 samples, 0.15%)</title><rect x="613" y="437" width="1" height="15" fill="rgb(222,161,13)"/><text text-anchor="left" x="616.00" y="447.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (10 samples, 0.10%)</title><rect x="613" y="421" width="1" height="15" fill="rgb(221,25,42)"/><text text-anchor="left" x="616.00" y="431.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="614" y="405" width="0" height="15" fill="rgb(235,188,5)"/><text text-anchor="left" x="617.00" y="415.50" 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>deno_core_http_bench`core::mem::replace::hc5adfa9b07136bf1 (25 samples, 0.25%)</title><rect x="612" y="485" width="3" height="15" fill="rgb(209,174,14)"/><text text-anchor="left" x="615.00" y="495.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h5e8c002fc2deedc9 (1 samples, 0.01%)</title><rect x="614" y="469" width="1" height="15" fill="rgb(209,9,0)"/><text text-anchor="left" x="617.00" y="479.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::hcb17c712655ce0af (1 samples, 0.01%)</title><rect x="615" y="485" width="0" height="15" fill="rgb(242,161,0)"/><text text-anchor="left" x="618.00" y="495.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5866cdbc2658e34c (1 samples, 0.01%)</title><rect x="615" y="485" width="0" height="15" fill="rgb(238,191,27)"/><text text-anchor="left" x="618.00" y="495.50" 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>deno_core_http_bench`DYLD-STUB$$free (1 samples, 0.01%)</title><rect x="616" y="453" width="0" height="15" fill="rgb(242,29,5)"/><text text-anchor="left" x="619.00" y="463.50" 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>deno_core_http_bench`__rdl_dealloc (5 samples, 0.05%)</title><rect x="616" y="453" width="1" height="15" fill="rgb(229,171,4)"/><text text-anchor="left" x="619.00" y="463.50" 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>deno_core_http_bench`__rust_dealloc (1 samples, 0.01%)</title><rect x="617" y="453" width="0" height="15" fill="rgb(252,56,17)"/><text text-anchor="left" x="620.00" y="463.50" 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>deno_core_http_bench`core::alloc::Layout::align::h7b8c30f466887d0a (2 samples, 0.02%)</title><rect x="617" y="437" width="0" height="15" fill="rgb(209,148,20)"/><text text-anchor="left" x="620.00" y="447.50" 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>libsystem_malloc.dylib`default_zone_free_definite_size (1 samples, 0.01%)</title><rect x="617" y="437" width="0" height="15" fill="rgb(207,181,24)"/><text text-anchor="left" x="620.00" y="447.50" 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>libsystem_malloc.dylib`free (23 samples, 0.23%)</title><rect x="617" y="437" width="3" height="15" fill="rgb(253,139,38)"/><text text-anchor="left" x="620.00" y="447.50" 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>libsystem_malloc.dylib`tiny_size (10 samples, 0.10%)</title><rect x="619" y="421" width="1" height="15" fill="rgb(221,156,44)"/><text text-anchor="left" x="622.00" y="431.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (2 samples, 0.02%)</title><rect x="621" y="421" width="0" height="15" fill="rgb(221,143,31)"/><text text-anchor="left" x="624.00" y="431.50" 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>deno_core_http_bench`alloc::alloc::dealloc::h989cd476efafb51c (41 samples, 0.40%)</title><rect x="617" y="453" width="5" height="15" fill="rgb(229,207,43)"/><text text-anchor="left" x="620.00" y="463.50" 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>libsystem_malloc.dylib`free_tiny (14 samples, 0.14%)</title><rect x="620" y="437" width="2" height="15" fill="rgb(218,78,21)"/><text text-anchor="left" x="623.00" y="447.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (7 samples, 0.07%)</title><rect x="621" y="421" width="1" height="15" fill="rgb(221,23,18)"/><text text-anchor="left" x="624.00" y="431.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::hf13111f7fafd1a53 (2 samples, 0.02%)</title><rect x="622" y="453" width="0" height="15" fill="rgb(227,45,48)"/><text text-anchor="left" x="625.00" y="463.50" 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>deno_core_http_bench`core::num::NonZeroUsize::new_unchecked::h42f058eb843f094c (2 samples, 0.02%)</title><rect x="622" y="437" width="0" height="15" fill="rgb(217,175,1)"/><text text-anchor="left" x="625.00" y="447.50" 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>deno_core_http_bench`core::alloc::Layout::size::h88e9fa499c363ab5 (1 samples, 0.01%)</title><rect x="622" y="453" width="0" height="15" fill="rgb(214,113,48)"/><text text-anchor="left" x="625.00" y="463.50" 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>libsystem_malloc.dylib`free (2 samples, 0.02%)</title><rect x="622" y="453" width="0" height="15" fill="rgb(224,171,13)"/><text text-anchor="left" x="625.00" y="463.50" 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>libsystem_malloc.dylib`free_tiny (1 samples, 0.01%)</title><rect x="622" y="453" width="0" height="15" fill="rgb(250,141,29)"/><text text-anchor="left" x="625.00" y="463.50" 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>deno_core_http_bench`alloc::alloc::box_free::h6604520bb159535f (62 samples, 0.61%)</title><rect x="615" y="469" width="8" height="15" fill="rgb(227,102,0)"/><text text-anchor="left" x="618.00" y="479.50" 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>libsystem_malloc.dylib`szone_free_definite_size (2 samples, 0.02%)</title><rect x="622" y="453" width="1" height="15" fill="rgb(212,64,3)"/><text text-anchor="left" x="625.00" y="463.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::hf13111f7fafd1a53 (1 samples, 0.01%)</title><rect x="623" y="469" width="0" height="15" fill="rgb(214,202,7)"/><text text-anchor="left" x="626.00" y="479.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h5866cdbc2658e34c (2 samples, 0.02%)</title><rect x="623" y="469" width="0" height="15" fill="rgb(243,193,17)"/><text text-anchor="left" x="626.00" y="479.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc49be57bf8b39eff (1 samples, 0.01%)</title><rect x="623" y="453" width="0" height="15" fill="rgb(214,23,48)"/><text text-anchor="left" x="626.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::ha018e5b2303135bc (5 samples, 0.05%)</title><rect x="623" y="453" width="1" height="15" fill="rgb(205,15,8)"/><text text-anchor="left" x="626.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hf319ddd566284820 (1 samples, 0.01%)</title><rect x="623" y="437" width="1" height="15" fill="rgb(249,82,26)"/><text text-anchor="left" x="626.00" y="447.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h4850864ceb5946ae (1 samples, 0.01%)</title><rect x="623" y="421" width="1" height="15" fill="rgb(206,174,18)"/><text text-anchor="left" x="626.00" y="431.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h8810b7c05aeb8cd2 (76 samples, 0.75%)</title><rect x="615" y="485" width="9" height="15" fill="rgb(240,61,34)"/><text text-anchor="left" x="618.00" y="495.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hcddd900bbde0f870 (6 samples, 0.06%)</title><rect x="623" y="469" width="1" height="15" fill="rgb(231,143,16)"/><text text-anchor="left" x="626.00" y="479.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hf319ddd566284820 (1 samples, 0.01%)</title><rect x="624" y="453" width="0" height="15" fill="rgb(207,184,15)"/><text text-anchor="left" x="627.00" y="463.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h88f1e80a7f787e83 (6 samples, 0.06%)</title><rect x="624" y="485" width="0" height="15" fill="rgb(218,227,7)"/><text text-anchor="left" x="627.00" y="495.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hcddd900bbde0f870 (4 samples, 0.04%)</title><rect x="624" y="485" width="1" height="15" fill="rgb(235,49,9)"/><text text-anchor="left" x="627.00" y="495.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h3e529c1b39d93bfc (1 samples, 0.01%)</title><rect x="625" y="485" width="0" height="15" fill="rgb(221,8,47)"/><text text-anchor="left" x="628.00" y="495.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::hc63908797878c8a5 (1 samples, 0.01%)</title><rect x="625" y="485" width="0" height="15" fill="rgb(251,198,5)"/><text text-anchor="left" x="628.00" y="495.50" 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>deno_core_http_bench`_$LT$futures..future..and_then..AndThen$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he27bfc57f5c07998 (3,248 samples, 31.86%)</title><rect x="250" y="517" width="375" height="15" fill="rgb(207,109,0)"/><text text-anchor="left" x="253.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..future..and_the..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::hdfc315af17332d19 (3,237 samples, 31.75%)</title><rect x="251" y="501" width="374" height="15" fill="rgb(239,14,44)"/><text text-anchor="left" x="254.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::future::chain::Chain..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (4 samples, 0.04%)</title><rect x="625" y="485" width="0" height="15" fill="rgb(234,64,53)"/><text text-anchor="left" x="628.00" y="495.50" 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>deno_core_http_bench`_$LT$futures..future..or_else..OrElse$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h7c7ee9a2c43bd9e0 (15 samples, 0.15%)</title><rect x="625" y="517" width="2" height="15" fill="rgb(220,46,46)"/><text text-anchor="left" x="628.00" y="527.50" 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>deno_core_http_bench`deno_core_http_bench_bin::dispatch::_$u7b$$u7b$closure$u7d$$u7d$::h789aef89d1b476ac (1 samples, 0.01%)</title><rect x="627" y="501" width="0" height="15" fill="rgb(238,182,2)"/><text text-anchor="left" x="630.00" y="511.50" 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>deno_core_http_bench`std::io::stdio::_eprint::h8470f605d845f586 (1 samples, 0.01%)</title><rect x="627" y="485" width="0" height="15" fill="rgb(206,108,46)"/><text text-anchor="left" x="630.00" y="495.50" 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>deno_core_http_bench`_$LT$std..io..stdio..Stderr$u20$as$u20$std..io..Write$GT$::write_fmt::h879b044527c7e1af (1 samples, 0.01%)</title><rect x="627" y="469" width="0" height="15" fill="rgb(247,188,0)"/><text text-anchor="left" x="630.00" y="479.50" 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>deno_core_http_bench`core::fmt::write::h52a697e768c14293 (1 samples, 0.01%)</title><rect x="627" y="453" width="0" height="15" fill="rgb(247,211,15)"/><text text-anchor="left" x="630.00" y="463.50" 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>deno_core_http_bench`_$LT$std..io..error..Error$u20$as$u20$core..fmt..Display$GT$::fmt::ha54bbe0e722b86f9 (1 samples, 0.01%)</title><rect x="627" y="437" width="0" height="15" fill="rgb(213,9,45)"/><text text-anchor="left" x="630.00" y="447.50" 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>deno_core_http_bench`std::sys::unix::os::error_string::hc86f5bd966ad0560 (1 samples, 0.01%)</title><rect x="627" y="421" width="0" height="15" fill="rgb(243,128,15)"/><text text-anchor="left" x="630.00" y="431.50" 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>libsystem_malloc.dylib`malloc (1 samples, 0.01%)</title><rect x="627" y="405" width="0" height="15" fill="rgb(231,31,43)"/><text text-anchor="left" x="630.00" y="415.50" 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>libsystem_malloc.dylib`malloc_zone_malloc (1 samples, 0.01%)</title><rect x="627" y="389" width="0" height="15" fill="rgb(237,74,28)"/><text text-anchor="left" x="630.00" y="399.50" 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>deno_core_http_bench`core::mem::size_of::he9fc7aa3e1f01338 (3 samples, 0.03%)</title><rect x="628" y="485" width="1" height="15" fill="rgb(208,182,3)"/><text text-anchor="left" x="631.00" y="495.50" 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>deno_core_http_bench`core::mem::size_of::he9fc7aa3e1f01338 (1 samples, 0.01%)</title><rect x="629" y="469" width="0" height="15" fill="rgb(220,130,19)"/><text text-anchor="left" x="632.00" y="479.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (2 samples, 0.02%)</title><rect x="630" y="453" width="0" height="15" fill="rgb(219,185,43)"/><text text-anchor="left" x="633.00" y="463.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (10 samples, 0.10%)</title><rect x="631" y="437" width="1" height="15" fill="rgb(220,120,19)"/><text text-anchor="left" x="634.00" y="447.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (6 samples, 0.06%)</title><rect x="631" y="421" width="1" height="15" fill="rgb(240,59,24)"/><text text-anchor="left" x="634.00" y="431.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (3 samples, 0.03%)</title><rect x="632" y="437" width="0" height="15" fill="rgb(218,24,10)"/><text text-anchor="left" x="635.00" y="447.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (3 samples, 0.03%)</title><rect x="632" y="421" width="0" height="15" fill="rgb(231,110,30)"/><text text-anchor="left" x="635.00" y="431.50" 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>deno_core_http_bench`core::mem::swap::hc7c40aa82689fbf5 (36 samples, 0.35%)</title><rect x="628" y="501" width="4" height="15" fill="rgb(223,129,5)"/><text text-anchor="left" x="631.00" y="511.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hcf617662e72742d2 (30 samples, 0.29%)</title><rect x="629" y="485" width="3" height="15" fill="rgb(240,69,53)"/><text text-anchor="left" x="632.00" y="495.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::h092c4e25c236ff3c (25 samples, 0.25%)</title><rect x="629" y="469" width="3" height="15" fill="rgb(222,27,20)"/><text text-anchor="left" x="632.00" y="479.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (19 samples, 0.19%)</title><rect x="630" y="453" width="2" height="15" fill="rgb(235,85,33)"/><text text-anchor="left" x="633.00" y="463.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="632" y="437" width="0" height="15" fill="rgb(224,77,20)"/><text text-anchor="left" x="635.00" y="447.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::hcf617662e72742d2 (2 samples, 0.02%)</title><rect x="632" y="501" width="0" height="15" fill="rgb(213,85,50)"/><text text-anchor="left" x="635.00" y="511.50" 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>deno_core_http_bench`core::mem::replace::h0c04a92e7d54631b (46 samples, 0.45%)</title><rect x="627" y="517" width="6" height="15" fill="rgb(210,136,42)"/><text text-anchor="left" x="630.00" y="527.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="632" y="501" width="1" height="15" fill="rgb(224,64,19)"/><text text-anchor="left" x="635.00" y="511.50" 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>deno_core_http_bench`core::mem::swap::hc7c40aa82689fbf5 (1 samples, 0.01%)</title><rect x="633" y="517" width="0" height="15" fill="rgb(248,224,43)"/><text text-anchor="left" x="636.00" y="527.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h367d83c1dd7e4e17 (2 samples, 0.02%)</title><rect x="633" y="501" width="0" height="15" fill="rgb(212,43,47)"/><text text-anchor="left" x="636.00" y="511.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h35a4e0cc807193ce (1 samples, 0.01%)</title><rect x="633" y="485" width="0" height="15" fill="rgb(242,222,53)"/><text text-anchor="left" x="636.00" y="495.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h67bac0be2ddbae44 (8 samples, 0.08%)</title><rect x="633" y="517" width="1" height="15" fill="rgb(236,26,25)"/><text text-anchor="left" x="636.00" y="527.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h88f1e80a7f787e83 (6 samples, 0.06%)</title><rect x="633" y="501" width="1" height="15" fill="rgb(227,48,22)"/><text text-anchor="left" x="636.00" y="511.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h367d83c1dd7e4e17 (4 samples, 0.04%)</title><rect x="633" y="485" width="1" height="15" fill="rgb(240,38,36)"/><text text-anchor="left" x="636.00" y="495.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h35a4e0cc807193ce (2 samples, 0.02%)</title><rect x="633" y="469" width="1" height="15" fill="rgb(216,27,4)"/><text text-anchor="left" x="636.00" y="479.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h88f1e80a7f787e83 (1 samples, 0.01%)</title><rect x="634" y="517" width="0" height="15" fill="rgb(217,165,15)"/><text text-anchor="left" x="637.00" y="527.50" 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>deno_core_http_bench`_$LT$futures..future..or_else..OrElse$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h6e07aa99ac65f5ff (3,374 samples, 33.09%)</title><rect x="243" y="549" width="391" height="15" fill="rgb(218,35,42)"/><text text-anchor="left" x="246.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..future..or_else..O..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::hcdbd718b6900f602 (3,355 samples, 32.91%)</title><rect x="246" y="533" width="388" height="15" fill="rgb(253,50,27)"/><text text-anchor="left" x="249.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::future::chain::Chain$L..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="634" y="517" width="0" height="15" fill="rgb(220,201,47)"/><text text-anchor="left" x="637.00" y="527.50" 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>deno_core_http_bench`core::mem::replace::h591f7af1f8215560 (2 samples, 0.02%)</title><rect x="634" y="533" width="0" height="15" fill="rgb(238,64,3)"/><text text-anchor="left" x="637.00" y="543.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::h778ed6d5cc219648 (2 samples, 0.02%)</title><rect x="634" y="533" width="1" height="15" fill="rgb(224,198,18)"/><text text-anchor="left" x="637.00" y="543.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::h5b21e2ee3e384311 (1 samples, 0.01%)</title><rect x="635" y="533" width="0" height="15" fill="rgb(245,180,10)"/><text text-anchor="left" x="638.00" y="543.50" 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>deno_core_http_bench`core::ptr::read::h4c96c2e26e5d41da (1 samples, 0.01%)</title><rect x="635" y="485" width="1" height="15" fill="rgb(225,227,18)"/><text text-anchor="left" x="638.00" y="495.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h6f8bea2e9ad932a9 (1 samples, 0.01%)</title><rect x="636" y="469" width="0" height="15" fill="rgb(224,163,35)"/><text text-anchor="left" x="639.00" y="479.50" 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>deno_core_http_bench`core::mem::size_of::he821c95c3d2e0900 (1 samples, 0.01%)</title><rect x="636" y="469" width="0" height="15" fill="rgb(245,9,23)"/><text text-anchor="left" x="639.00" y="479.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h6f8bea2e9ad932a9 (2 samples, 0.02%)</title><rect x="637" y="453" width="0" height="15" fill="rgb(223,6,31)"/><text text-anchor="left" x="640.00" y="463.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="637" y="437" width="0" height="15" fill="rgb(215,35,38)"/><text text-anchor="left" x="640.00" y="447.50" 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>deno_core_http_bench`core::ptr::read::h4c96c2e26e5d41da (6 samples, 0.06%)</title><rect x="636" y="469" width="1" height="15" fill="rgb(223,92,12)"/><text text-anchor="left" x="639.00" y="479.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="637" y="453" width="0" height="15" fill="rgb(211,73,15)"/><text text-anchor="left" x="640.00" y="463.50" 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>deno_core_http_bench`core::ptr::write::h1660aadfedf95ec3 (3 samples, 0.03%)</title><rect x="637" y="469" width="1" height="15" fill="rgb(239,60,54)"/><text text-anchor="left" x="640.00" y="479.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h01fd54d926a3527e (18 samples, 0.18%)</title><rect x="636" y="485" width="2" height="15" fill="rgb(227,120,50)"/><text text-anchor="left" x="639.00" y="495.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="638" y="469" width="0" height="15" fill="rgb(239,151,10)"/><text text-anchor="left" x="641.00" y="479.50" 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>deno_core_http_bench`core::mem::swap::had170ab3a7e64b6c (27 samples, 0.26%)</title><rect x="635" y="501" width="3" height="15" fill="rgb(205,196,36)"/><text text-anchor="left" x="638.00" y="511.50" 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>deno_core_http_bench`core::ptr::write::h1660aadfedf95ec3 (4 samples, 0.04%)</title><rect x="638" y="485" width="0" height="15" fill="rgb(214,108,31)"/><text text-anchor="left" x="641.00" y="495.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h78d62df84f0ea82a (34 samples, 0.33%)</title><rect x="635" y="533" width="4" height="15" fill="rgb(220,135,21)"/><text text-anchor="left" x="638.00" y="543.50" 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>deno_core_http_bench`core::mem::replace::h591f7af1f8215560 (32 samples, 0.31%)</title><rect x="635" y="517" width="4" height="15" fill="rgb(223,46,49)"/><text text-anchor="left" x="638.00" y="527.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h01fd54d926a3527e (4 samples, 0.04%)</title><rect x="638" y="501" width="1" height="15" fill="rgb(235,200,6)"/><text text-anchor="left" x="641.00" y="511.50" 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>deno_core_http_bench`_$LT$futures..future..result_..FutureResult$LT$T$C$E$GT$$u20$as$u20$futures..future..Future$GT$::poll::h7fd7f9392a3f08bc (47 samples, 0.46%)</title><rect x="634" y="549" width="5" height="15" fill="rgb(205,219,5)"/><text text-anchor="left" x="637.00" y="559.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::hf65a31807099be2b (6 samples, 0.06%)</title><rect x="639" y="533" width="0" height="15" fill="rgb(233,36,19)"/><text text-anchor="left" x="642.00" y="543.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::h778ed6d5cc219648 (5 samples, 0.05%)</title><rect x="639" y="517" width="0" height="15" fill="rgb(248,216,0)"/><text text-anchor="left" x="642.00" y="527.50" 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>deno_core_http_bench`futures::poll::Async::Ready::h3d1ea8b228b9647c (1 samples, 0.01%)</title><rect x="639" y="501" width="0" height="15" fill="rgb(232,151,29)"/><text text-anchor="left" x="642.00" y="511.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$futures..future..IntoFuture$GT$::into_future::hbf6b023c56fa55b9 (1 samples, 0.01%)</title><rect x="640" y="533" width="0" height="15" fill="rgb(218,164,6)"/><text text-anchor="left" x="643.00" y="543.50" 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>deno_core_http_bench`futures::future::result_::result::hd13d36d850aa4ea0 (1 samples, 0.01%)</title><rect x="640" y="517" width="0" height="15" fill="rgb(217,68,14)"/><text text-anchor="left" x="643.00" y="527.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..Record$u20$as$u20$core..convert..Into$LT$alloc..boxed..Box$LT$$u5b$u8$u5d$$GT$$GT$$GT$::into::h84716eb3fb57fc45 (1 samples, 0.01%)</title><rect x="640" y="533" width="0" height="15" fill="rgb(222,107,48)"/><text text-anchor="left" x="643.00" y="543.50" 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>deno_core_http_bench`__rdl_alloc (3 samples, 0.03%)</title><rect x="641" y="485" width="1" height="15" fill="rgb(205,91,47)"/><text text-anchor="left" x="644.00" y="495.50" 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>deno_core_http_bench`core::alloc::Layout::align::h7b8c30f466887d0a (2 samples, 0.02%)</title><rect x="642" y="469" width="0" height="15" fill="rgb(218,207,15)"/><text text-anchor="left" x="645.00" y="479.50" 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>libsystem_malloc.dylib`szone_malloc_should_clear (22 samples, 0.22%)</title><rect x="643" y="437" width="2" height="15" fill="rgb(210,157,51)"/><text text-anchor="left" x="646.00" y="447.50" 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>libsystem_malloc.dylib`tiny_malloc_should_clear (16 samples, 0.16%)</title><rect x="643" y="421" width="2" height="15" fill="rgb(252,28,15)"/><text text-anchor="left" x="646.00" y="431.50" 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>libsystem_malloc.dylib`tiny_malloc_from_free_list (3 samples, 0.03%)</title><rect x="645" y="405" width="0" height="15" fill="rgb(252,143,6)"/><text text-anchor="left" x="648.00" y="415.50" 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>libsystem_malloc.dylib`malloc_zone_malloc (23 samples, 0.23%)</title><rect x="643" y="453" width="2" height="15" fill="rgb(243,217,25)"/><text text-anchor="left" x="646.00" y="463.50" 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>libsystem_malloc.dylib`tiny_malloc_should_clear (1 samples, 0.01%)</title><rect x="645" y="437" width="0" height="15" fill="rgb(250,224,44)"/><text text-anchor="left" x="648.00" y="447.50" 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>deno_core_http_bench`alloc::alloc::alloc::h9bd575d42b56bec5 (31 samples, 0.30%)</title><rect x="642" y="485" width="3" height="15" fill="rgb(217,166,12)"/><text text-anchor="left" x="645.00" y="495.50" 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>libsystem_malloc.dylib`malloc (26 samples, 0.26%)</title><rect x="642" y="469" width="3" height="15" fill="rgb(237,185,23)"/><text text-anchor="left" x="645.00" y="479.50" 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>libsystem_malloc.dylib`szone_malloc (1 samples, 0.01%)</title><rect x="645" y="453" width="0" height="15" fill="rgb(213,98,53)"/><text text-anchor="left" x="648.00" y="463.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::hf13111f7fafd1a53 (1 samples, 0.01%)</title><rect x="645" y="485" width="1" height="15" fill="rgb(210,137,14)"/><text text-anchor="left" x="648.00" y="495.50" 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>deno_core_http_bench`core::alloc::Layout::size::h88e9fa499c363ab5 (1 samples, 0.01%)</title><rect x="646" y="485" width="0" height="15" fill="rgb(240,77,20)"/><text text-anchor="left" x="649.00" y="495.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h817ede8f29f1988f (5 samples, 0.05%)</title><rect x="646" y="485" width="0" height="15" fill="rgb(233,92,28)"/><text text-anchor="left" x="649.00" y="495.50" 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>deno_core_http_bench`alloc::alloc::exchange_malloc::h4b403cbe5beb3ee0 (52 samples, 0.51%)</title><rect x="641" y="501" width="6" height="15" fill="rgb(247,148,13)"/><text text-anchor="left" x="644.00" y="511.50" 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>libsystem_malloc.dylib`malloc (6 samples, 0.06%)</title><rect x="646" y="485" width="1" height="15" fill="rgb(244,133,52)"/><text text-anchor="left" x="649.00" y="495.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::from_raw::hfecf5a17e6c63532 (8 samples, 0.08%)</title><rect x="647" y="501" width="1" height="15" fill="rgb(206,81,12)"/><text text-anchor="left" x="650.00" y="511.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::hed1e973974642798 (5 samples, 0.05%)</title><rect x="647" y="485" width="1" height="15" fill="rgb(209,179,54)"/><text text-anchor="left" x="650.00" y="495.50" 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>deno_core_http_bench`_$LT$core..ptr..NonNull$LT$T$GT$$u20$as$u20$core..convert..From$LT$core..ptr..Unique$LT$T$GT$$GT$$GT$::from::hb5e7d365507a1756 (1 samples, 0.01%)</title><rect x="648" y="469" width="0" height="15" fill="rgb(206,66,44)"/><text text-anchor="left" x="651.00" y="479.50" 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>deno_core_http_bench`core::mem::forget::h090a6fd77c0a6fdc (1 samples, 0.01%)</title><rect x="648" y="453" width="0" height="15" fill="rgb(228,28,2)"/><text text-anchor="left" x="651.00" y="463.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_mut::h1c843231e8b860ab (2 samples, 0.02%)</title><rect x="648" y="453" width="1" height="15" fill="rgb(232,141,33)"/><text text-anchor="left" x="651.00" y="463.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h82114ac6b8a6b604 (1 samples, 0.01%)</title><rect x="649" y="453" width="0" height="15" fill="rgb(237,170,44)"/><text text-anchor="left" x="652.00" y="463.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::into_raw::h317d07b39929d4bd (9 samples, 0.09%)</title><rect x="648" y="501" width="1" height="15" fill="rgb(248,152,39)"/><text text-anchor="left" x="651.00" y="511.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::into_raw_non_null::h70e4be8d3ff1cdfc (8 samples, 0.08%)</title><rect x="648" y="485" width="1" height="15" fill="rgb(206,129,27)"/><text text-anchor="left" x="651.00" y="495.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::into_unique::hf6df71fb946a841e (7 samples, 0.07%)</title><rect x="648" y="469" width="1" height="15" fill="rgb(207,192,37)"/><text text-anchor="left" x="651.00" y="479.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::hf3a2d02180313112 (1 samples, 0.01%)</title><rect x="649" y="453" width="0" height="15" fill="rgb(207,182,6)"/><text text-anchor="left" x="652.00" y="463.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$GT$::into_box::h66420db6e718d6db (2 samples, 0.02%)</title><rect x="649" y="501" width="0" height="15" fill="rgb(229,95,31)"/><text text-anchor="left" x="652.00" y="511.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$GT$::from_raw_parts::hbbc2e0bc26860285 (4 samples, 0.04%)</title><rect x="650" y="469" width="0" height="15" fill="rgb(233,103,0)"/><text text-anchor="left" x="653.00" y="479.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$GT$::from_raw_parts::hbbc2e0bc26860285 (3 samples, 0.03%)</title><rect x="650" y="453" width="0" height="15" fill="rgb(226,130,52)"/><text text-anchor="left" x="653.00" y="463.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::h71e34e4bf7670f83 (2 samples, 0.02%)</title><rect x="650" y="437" width="0" height="15" fill="rgb(244,229,44)"/><text text-anchor="left" x="653.00" y="447.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::from_raw_parts::h729d5c178d519c01 (4 samples, 0.04%)</title><rect x="650" y="469" width="1" height="15" fill="rgb(239,57,1)"/><text text-anchor="left" x="653.00" y="479.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::h71e34e4bf7670f83 (1 samples, 0.01%)</title><rect x="650" y="453" width="1" height="15" fill="rgb(231,219,35)"/><text text-anchor="left" x="653.00" y="463.50" 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>deno_core_http_bench`core::mem::forget::h090a6fd77c0a6fdc (1 samples, 0.01%)</title><rect x="651" y="469" width="0" height="15" fill="rgb(232,9,15)"/><text text-anchor="left" x="654.00" y="479.50" 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>deno_core_http_bench`alloc::slice::hack::into_vec::h612a4df8fcf34a0c (17 samples, 0.17%)</title><rect x="649" y="485" width="2" height="15" fill="rgb(252,29,9)"/><text text-anchor="left" x="652.00" y="495.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::h1f8c9fdbccdc2e9c (4 samples, 0.04%)</title><rect x="651" y="469" width="0" height="15" fill="rgb(243,225,30)"/><text text-anchor="left" x="654.00" y="479.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::from_raw_parts::h729d5c178d519c01 (3 samples, 0.03%)</title><rect x="651" y="485" width="1" height="15" fill="rgb(238,101,43)"/><text text-anchor="left" x="654.00" y="495.50" 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>deno_core_http_bench`core::mem::forget::h090a6fd77c0a6fdc (1 samples, 0.01%)</title><rect x="652" y="485" width="0" height="15" fill="rgb(217,95,52)"/><text text-anchor="left" x="655.00" y="495.50" 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>deno_core_http_bench`alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::into_vec::h3e4be97760ea9bbf (24 samples, 0.24%)</title><rect x="649" y="501" width="3" height="15" fill="rgb(228,52,50)"/><text text-anchor="left" x="652.00" y="511.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::len::h1f8c9fdbccdc2e9c (2 samples, 0.02%)</title><rect x="652" y="485" width="0" height="15" fill="rgb(213,157,1)"/><text text-anchor="left" x="655.00" y="495.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::from_raw::haa733c3ba58d1879 (5 samples, 0.05%)</title><rect x="653" y="469" width="1" height="15" fill="rgb(247,37,42)"/><text text-anchor="left" x="656.00" y="479.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h210181dbf95783e3 (4 samples, 0.04%)</title><rect x="654" y="469" width="0" height="15" fill="rgb(221,15,41)"/><text text-anchor="left" x="657.00" y="479.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h573d9081a80ac2d4 (2 samples, 0.02%)</title><rect x="654" y="453" width="0" height="15" fill="rgb(230,76,45)"/><text text-anchor="left" x="657.00" y="463.50" 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>deno_core_http_bench`core::mem::forget::heee95cf4f8438255 (1 samples, 0.01%)</title><rect x="654" y="469" width="0" height="15" fill="rgb(253,96,40)"/><text text-anchor="left" x="657.00" y="479.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::h573d9081a80ac2d4 (2 samples, 0.02%)</title><rect x="654" y="469" width="1" height="15" fill="rgb(236,74,23)"/><text text-anchor="left" x="657.00" y="479.50" 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>deno_core_http_bench`alloc::raw_vec::RawVec$LT$T$GT$::into_box::h66420db6e718d6db (23 samples, 0.23%)</title><rect x="652" y="485" width="3" height="15" fill="rgb(230,78,19)"/><text text-anchor="left" x="655.00" y="495.50" 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>deno_core_http_bench`core::slice::from_raw_parts_mut::h9415ce8ff32b5772 (2 samples, 0.02%)</title><rect x="655" y="469" width="0" height="15" fill="rgb(238,214,11)"/><text text-anchor="left" x="658.00" y="479.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::capacity::he34a098caf375009 (3 samples, 0.03%)</title><rect x="655" y="485" width="0" height="15" fill="rgb(233,189,46)"/><text text-anchor="left" x="658.00" y="495.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::capacity::he34a098caf375009 (2 samples, 0.02%)</title><rect x="655" y="469" width="0" height="15" fill="rgb(217,23,42)"/><text text-anchor="left" x="658.00" y="479.50" 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>deno_core_http_bench`core::mem::size_of::h96cfe620b91bcfdc (1 samples, 0.01%)</title><rect x="655" y="453" width="0" height="15" fill="rgb(238,0,4)"/><text text-anchor="left" x="658.00" y="463.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::shrink_to_fit::h962bf717edc59c2d (6 samples, 0.06%)</title><rect x="655" y="485" width="1" height="15" fill="rgb(214,172,31)"/><text text-anchor="left" x="658.00" y="495.50" 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>deno_core_http_bench`core::mem::size_of::h96cfe620b91bcfdc (3 samples, 0.03%)</title><rect x="655" y="469" width="1" height="15" fill="rgb(218,92,49)"/><text text-anchor="left" x="658.00" y="479.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hbc4c33f78f398f32 (1 samples, 0.01%)</title><rect x="656" y="485" width="0" height="15" fill="rgb(242,179,14)"/><text text-anchor="left" x="659.00" y="495.50" 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>deno_core_http_bench`core::mem::forget::h09848c19fa288015 (2 samples, 0.02%)</title><rect x="656" y="485" width="0" height="15" fill="rgb(244,94,31)"/><text text-anchor="left" x="659.00" y="495.50" 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>deno_core_http_bench`core::mem::forget::heee95cf4f8438255 (1 samples, 0.01%)</title><rect x="656" y="485" width="0" height="15" fill="rgb(214,100,22)"/><text text-anchor="left" x="659.00" y="495.50" 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>deno_core_http_bench`DYLD-STUB$$memcpy (1 samples, 0.01%)</title><rect x="657" y="469" width="0" height="15" fill="rgb(227,170,35)"/><text text-anchor="left" x="660.00" y="479.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hbc4c33f78f398f32 (1 samples, 0.01%)</title><rect x="657" y="469" width="0" height="15" fill="rgb(235,100,45)"/><text text-anchor="left" x="660.00" y="479.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::into_boxed_slice::hf2b73ee13fdd83b1 (44 samples, 0.43%)</title><rect x="652" y="501" width="5" height="15" fill="rgb(247,190,6)"/><text text-anchor="left" x="655.00" y="511.50" 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>deno_core_http_bench`core::ptr::read::h50bd246a3aefe189 (6 samples, 0.06%)</title><rect x="656" y="485" width="1" height="15" fill="rgb(253,192,15)"/><text text-anchor="left" x="659.00" y="495.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (2 samples, 0.02%)</title><rect x="657" y="469" width="0" height="15" fill="rgb(238,48,35)"/><text text-anchor="left" x="660.00" y="479.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::shrink_to_fit::h962bf717edc59c2d (2 samples, 0.02%)</title><rect x="657" y="501" width="0" height="15" fill="rgb(254,131,22)"/><text text-anchor="left" x="660.00" y="511.50" 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>deno_core_http_bench`core::mem::forget::h09848c19fa288015 (1 samples, 0.01%)</title><rect x="657" y="501" width="0" height="15" fill="rgb(243,25,29)"/><text text-anchor="left" x="660.00" y="511.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::new_unchecked::hed1e973974642798 (2 samples, 0.02%)</title><rect x="657" y="501" width="1" height="15" fill="rgb(233,32,39)"/><text text-anchor="left" x="660.00" y="511.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h817ede8f29f1988f (1 samples, 0.01%)</title><rect x="658" y="501" width="0" height="15" fill="rgb(208,114,40)"/><text text-anchor="left" x="661.00" y="511.50" 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>deno_core_http_bench`_$LT$deno_core_http_bench_bin..Record$u20$as$u20$core..convert..Into$LT$alloc..boxed..Box$LT$$u5b$u8$u5d$$GT$$GT$$GT$::into::h84716eb3fb57fc45 (149 samples, 1.46%)</title><rect x="641" y="517" width="17" height="15" fill="rgb(220,30,4)"/><text text-anchor="left" x="644.00" y="527.50" 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>deno_core_http_bench`core::ptr::read::h50bd246a3aefe189 (2 samples, 0.02%)</title><rect x="658" y="501" width="0" height="15" fill="rgb(227,127,10)"/><text text-anchor="left" x="661.00" y="511.50" 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>deno_core_http_bench`alloc::alloc::exchange_malloc::h4b403cbe5beb3ee0 (2 samples, 0.02%)</title><rect x="658" y="517" width="0" height="15" fill="rgb(216,191,20)"/><text text-anchor="left" x="661.00" y="527.50" 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>deno_core_http_bench`alloc::boxed::Box$LT$T$GT$::from_raw::hfecf5a17e6c63532 (1 samples, 0.01%)</title><rect x="658" y="517" width="0" height="15" fill="rgb(220,65,3)"/><text text-anchor="left" x="661.00" y="527.50" 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>deno_core_http_bench`alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::into_vec::h3e4be97760ea9bbf (2 samples, 0.02%)</title><rect x="658" y="517" width="0" height="15" fill="rgb(208,184,34)"/><text text-anchor="left" x="661.00" y="527.50" 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>deno_core_http_bench`alloc::vec::Vec$LT$T$GT$::into_boxed_slice::hf2b73ee13fdd83b1 (1 samples, 0.01%)</title><rect x="658" y="517" width="1" height="15" fill="rgb(243,61,20)"/><text text-anchor="left" x="661.00" y="527.50" 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>deno_core_http_bench`deno_core_http_bench_bin::dispatch::_$u7b$$u7b$closure$u7d$$u7d$::hea54cddd5c85a0e3 (166 samples, 1.63%)</title><rect x="640" y="533" width="19" height="15" fill="rgb(235,33,18)"/><text text-anchor="left" x="643.00" y="543.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::unwrap::h33800bf91cc20337 (4 samples, 0.04%)</title><rect x="659" y="517" width="0" height="15" fill="rgb(229,37,52)"/><text text-anchor="left" x="662.00" y="527.50" 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>deno_core_http_bench`_$LT$futures..future..then..Then$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::h3d1845f5eb7f48d5 (172 samples, 1.69%)</title><rect x="639" y="549" width="20" height="15" fill="rgb(227,196,7)"/><text text-anchor="left" x="642.00" y="559.50" 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>deno_core_http_bench`futures::future::result_::result::hd13d36d850aa4ea0 (1 samples, 0.01%)</title><rect x="659" y="533" width="0" height="15" fill="rgb(249,97,4)"/><text text-anchor="left" x="662.00" y="543.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::h2a8fff9b1382a45a (2 samples, 0.02%)</title><rect x="659" y="517" width="0" height="15" fill="rgb(231,133,50)"/><text text-anchor="left" x="662.00" y="527.50" 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>deno_core_http_bench`core::mem::size_of::h51cb0c587cc3977b (2 samples, 0.02%)</title><rect x="660" y="501" width="0" height="15" fill="rgb(240,38,6)"/><text text-anchor="left" x="663.00" y="511.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (1 samples, 0.01%)</title><rect x="660" y="485" width="1" height="15" fill="rgb(225,143,13)"/><text text-anchor="left" x="663.00" y="495.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb334ec398504a9b8 (11 samples, 0.11%)</title><rect x="661" y="469" width="2" height="15" fill="rgb(222,58,8)"/><text text-anchor="left" x="664.00" y="479.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (10 samples, 0.10%)</title><rect x="661" y="453" width="2" height="15" fill="rgb(220,109,17)"/><text text-anchor="left" x="664.00" y="463.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h949e04c7f9bdf0eb (5 samples, 0.05%)</title><rect x="663" y="469" width="0" height="15" fill="rgb(244,147,38)"/><text text-anchor="left" x="666.00" y="479.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (1 samples, 0.01%)</title><rect x="663" y="453" width="0" height="15" fill="rgb(221,222,20)"/><text text-anchor="left" x="666.00" y="463.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::h3e31c6fc2962663a (1 samples, 0.01%)</title><rect x="663" y="469" width="0" height="15" fill="rgb(244,179,41)"/><text text-anchor="left" x="666.00" y="479.50" 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>deno_core_http_bench`core::mem::replace::h31cfd0bc2d4c4a1f (36 samples, 0.35%)</title><rect x="659" y="549" width="4" height="15" fill="rgb(253,137,26)"/><text text-anchor="left" x="662.00" y="559.50" 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>deno_core_http_bench`core::mem::swap::hebecf5e284645a6c (36 samples, 0.35%)</title><rect x="659" y="533" width="4" height="15" fill="rgb(223,197,43)"/><text text-anchor="left" x="662.00" y="543.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h468e3b80a9b20404 (34 samples, 0.33%)</title><rect x="659" y="517" width="4" height="15" fill="rgb(230,117,28)"/><text text-anchor="left" x="662.00" y="527.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping::h2a8fff9b1382a45a (28 samples, 0.27%)</title><rect x="660" y="501" width="3" height="15" fill="rgb(248,228,44)"/><text text-anchor="left" x="663.00" y="511.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_bytes::h11928082a49a725a (24 samples, 0.24%)</title><rect x="661" y="485" width="2" height="15" fill="rgb(206,84,15)"/><text text-anchor="left" x="664.00" y="495.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="663" y="469" width="0" height="15" fill="rgb(252,52,51)"/><text text-anchor="left" x="666.00" y="479.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h40caf59cafb99e4f (2 samples, 0.02%)</title><rect x="663" y="549" width="1" height="15" fill="rgb(217,168,30)"/><text text-anchor="left" x="666.00" y="559.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hc93083f71ae07af7 (2 samples, 0.02%)</title><rect x="664" y="549" width="0" height="15" fill="rgb(245,128,23)"/><text text-anchor="left" x="667.00" y="559.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::he672b7a23458b7d1 (1 samples, 0.01%)</title><rect x="664" y="533" width="0" height="15" fill="rgb(206,110,44)"/><text text-anchor="left" x="667.00" y="543.50" 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>deno_core_http_bench`deno_core_http_bench_bin::dispatch::_$u7b$$u7b$closure$u7d$$u7d$::hea54cddd5c85a0e3 (2 samples, 0.02%)</title><rect x="664" y="549" width="0" height="15" fill="rgb(249,2,26)"/><text text-anchor="left" x="667.00" y="559.50" 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>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::ha4d900ef48310d82 (3,668 samples, 35.98%)</title><rect x="240" y="565" width="424" height="15" fill="rgb(233,81,37)"/><text text-anchor="left" x="243.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::future::chain::Chain$LT$A$C..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::hcdbd718b6900f602 (3 samples, 0.03%)</title><rect x="664" y="549" width="0" height="15" fill="rgb(218,35,2)"/><text text-anchor="left" x="667.00" y="559.50" 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>deno_core_http_bench`_$LT$futures..future..then..Then$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he1c36dc6df7cb833 (3,678 samples, 36.08%)</title><rect x="239" y="581" width="425" height="15" fill="rgb(226,25,23)"/><text text-anchor="left" x="242.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..future..then..Then$LT$A..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="664" y="565" width="0" height="15" fill="rgb(235,211,25)"/><text text-anchor="left" x="667.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h0b68c7d2a9471547 (3,693 samples, 36.22%)</title><rect x="237" y="597" width="428" height="15" fill="rgb(249,161,35)"/><text text-anchor="left" x="240.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$a..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::future::chain::Chain$LT$A$C$B$C$C$GT$::poll::ha4d900ef48310d82 (2 samples, 0.02%)</title><rect x="664" y="581" width="1" height="15" fill="rgb(224,220,37)"/><text text-anchor="left" x="667.00" y="591.50" 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>deno_core_http_bench`_$LT$futures..future..then..Then$LT$A$C$B$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::he1c36dc6df7cb833 (2 samples, 0.02%)</title><rect x="665" y="597" width="0" height="15" fill="rgb(226,205,43)"/><text text-anchor="left" x="668.00" y="607.50" 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>deno_core_http_bench`core::mem::replace::hb001ecacecd07b52 (7 samples, 0.07%)</title><rect x="665" y="597" width="1" height="15" fill="rgb(247,127,46)"/><text text-anchor="left" x="668.00" y="607.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::hd405bfb0a8fa7f2f (5 samples, 0.05%)</title><rect x="666" y="597" width="0" height="15" fill="rgb(226,211,5)"/><text text-anchor="left" x="669.00" y="607.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::h8b1595fc10f0492a (1 samples, 0.01%)</title><rect x="666" y="597" width="0" height="15" fill="rgb(210,75,48)"/><text text-anchor="left" x="669.00" y="607.50" 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>deno_core_http_bench`core::mem::size_of::hcd0a1d4089c0ba57 (4 samples, 0.04%)</title><rect x="667" y="549" width="0" height="15" fill="rgb(245,79,37)"/><text text-anchor="left" x="670.00" y="559.50" 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>deno_core_http_bench`core::ptr::read::hb4e3c2af2af33d0a (3 samples, 0.03%)</title><rect x="667" y="549" width="1" height="15" fill="rgb(223,218,18)"/><text text-anchor="left" x="670.00" y="559.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h255dbf32fa2ffa31 (3 samples, 0.03%)</title><rect x="668" y="533" width="0" height="15" fill="rgb(235,202,10)"/><text text-anchor="left" x="671.00" y="543.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="668" y="517" width="0" height="15" fill="rgb(245,96,25)"/><text text-anchor="left" x="671.00" y="527.50" 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>deno_core_http_bench`core::mem::size_of::hcd0a1d4089c0ba57 (3 samples, 0.03%)</title><rect x="668" y="533" width="1" height="15" fill="rgb(246,47,44)"/><text text-anchor="left" x="671.00" y="543.50" 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>deno_core_http_bench`core::mem::swap::h2cc8ceb43039c465 (25 samples, 0.25%)</title><rect x="667" y="565" width="2" height="15" fill="rgb(227,12,50)"/><text text-anchor="left" x="670.00" y="575.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h3aeb67ac0e465d32 (15 samples, 0.15%)</title><rect x="668" y="549" width="1" height="15" fill="rgb(212,185,50)"/><text text-anchor="left" x="671.00" y="559.50" 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>deno_core_http_bench`core::ptr::read::hb4e3c2af2af33d0a (8 samples, 0.08%)</title><rect x="669" y="533" width="0" height="15" fill="rgb(206,218,8)"/><text text-anchor="left" x="672.00" y="543.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::h255dbf32fa2ffa31 (3 samples, 0.03%)</title><rect x="669" y="517" width="0" height="15" fill="rgb(234,62,30)"/><text text-anchor="left" x="672.00" y="527.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="669" y="501" width="0" height="15" fill="rgb(225,197,46)"/><text text-anchor="left" x="672.00" y="511.50" 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>deno_core_http_bench`core::mem::replace::hb001ecacecd07b52 (26 samples, 0.26%)</title><rect x="667" y="581" width="3" height="15" fill="rgb(242,11,53)"/><text text-anchor="left" x="670.00" y="591.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h3aeb67ac0e465d32 (1 samples, 0.01%)</title><rect x="669" y="565" width="1" height="15" fill="rgb(214,5,34)"/><text text-anchor="left" x="672.00" y="575.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::take::h6ef67306bf73335c (28 samples, 0.27%)</title><rect x="666" y="597" width="4" height="15" fill="rgb(228,71,47)"/><text text-anchor="left" x="669.00" y="607.50" 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>deno_core_http_bench`core::mem::swap::h2cc8ceb43039c465 (1 samples, 0.01%)</title><rect x="670" y="581" width="0" height="15" fill="rgb(218,215,50)"/><text text-anchor="left" x="673.00" y="591.50" 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>deno_core_http_bench`core::ops::function::FnOnce::call_once::hd405bfb0a8fa7f2f (4 samples, 0.04%)</title><rect x="670" y="581" width="1" height="15" fill="rgb(223,199,48)"/><text text-anchor="left" x="673.00" y="591.50" 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>deno_core_http_bench`futures::poll::Async::Ready::hd3b39588ce95e761 (1 samples, 0.01%)</title><rect x="671" y="565" width="0" height="15" fill="rgb(249,57,44)"/><text text-anchor="left" x="674.00" y="575.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h15d6cce343628011 (10 samples, 0.10%)</title><rect x="670" y="597" width="1" height="15" fill="rgb(253,138,47)"/><text text-anchor="left" x="673.00" y="607.50" 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>deno_core_http_bench`futures::poll::Async::Ready::hd3b39588ce95e761 (1 samples, 0.01%)</title><rect x="671" y="581" width="0" height="15" fill="rgb(243,112,41)"/><text text-anchor="left" x="674.00" y="591.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h2401fbe83bac66c4 (1 samples, 0.01%)</title><rect x="671" y="597" width="0" height="15" fill="rgb(234,166,54)"/><text text-anchor="left" x="674.00" y="607.50" 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>deno_core_http_bench`deno::isolate::Isolate::pre_dispatch::_$u7b$$u7b$closure$u7d$$u7d$::h4491f8a9cd742741 (1 samples, 0.01%)</title><rect x="671" y="581" width="0" height="15" fill="rgb(249,173,13)"/><text text-anchor="left" x="674.00" y="591.50" 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>deno_core_http_bench`_$LT$futures..future..map..Map$LT$A$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h83e0c77409a37ffc (3,771 samples, 36.99%)</title><rect x="235" y="613" width="436" height="15" fill="rgb(242,229,39)"/><text text-anchor="left" x="238.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..future..map..Map$LT$A$C$..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`deno::isolate::Isolate::pre_dispatch::_$u7b$$u7b$closure$u7d$$u7d$::h4491f8a9cd742741 (1 samples, 0.01%)</title><rect x="671" y="597" width="0" height="15" fill="rgb(232,66,21)"/><text text-anchor="left" x="674.00" y="607.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::expect::h8b1595fc10f0492a (5 samples, 0.05%)</title><rect x="671" y="613" width="1" height="15" fill="rgb(212,62,48)"/><text text-anchor="left" x="674.00" y="623.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h15d6cce343628011 (4 samples, 0.04%)</title><rect x="672" y="613" width="0" height="15" fill="rgb(244,212,6)"/><text text-anchor="left" x="675.00" y="623.50" 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>deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h4276ddca95faa5fa (3,788 samples, 37.16%)</title><rect x="234" y="629" width="438" height="15" fill="rgb(250,70,37)"/><text text-anchor="left" x="237.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$alloc..boxed..Box$LT$F$GT$$u20$as..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::map::h2401fbe83bac66c4 (2 samples, 0.02%)</title><rect x="672" y="613" width="0" height="15" fill="rgb(215,219,39)"/><text text-anchor="left" x="675.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..stream..futures_unordered..FuturesUnordered$LT$T$GT$$u20$as$u20$futures..stream..Stream$GT$::poll::_$u7b$$u7b$closure$u7d$$u7d$::heced5e1aa3334971 (3,796 samples, 37.23%)</title><rect x="234" y="645" width="439" height="15" fill="rgb(246,13,25)"/><text text-anchor="left" x="237.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..stream..futures_unordered..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`_$LT$futures..future..map..Map$LT$A$C$F$GT$$u20$as$u20$futures..future..Future$GT$::poll::h83e0c77409a37ffc (5 samples, 0.05%)</title><rect x="672" y="629" width="1" height="15" fill="rgb(235,115,17)"/><text text-anchor="left" x="675.00" y="639.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..set..Reset$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb7240288445b4783 (3 samples, 0.03%)</title><rect x="673" y="645" width="0" height="15" fill="rgb(229,159,48)"/><text text-anchor="left" x="676.00" y="655.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::get::h995bcaa03b9e1b22 (2 samples, 0.02%)</title><rect x="673" y="645" width="1" height="15" fill="rgb(241,56,4)"/><text text-anchor="left" x="676.00" y="655.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb9274ff275e36e81 (1 samples, 0.01%)</title><rect x="674" y="565" width="0" height="15" fill="rgb(224,144,36)"/><text text-anchor="left" x="677.00" y="575.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="674" y="549" width="0" height="15" fill="rgb(252,0,16)"/><text text-anchor="left" x="677.00" y="559.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb9274ff275e36e81 (3 samples, 0.03%)</title><rect x="675" y="549" width="0" height="15" fill="rgb(222,164,31)"/><text text-anchor="left" x="678.00" y="559.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (3 samples, 0.03%)</title><rect x="675" y="533" width="0" height="15" fill="rgb(238,114,42)"/><text text-anchor="left" x="678.00" y="543.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (14 samples, 0.14%)</title><rect x="674" y="597" width="2" height="15" fill="rgb(252,149,32)"/><text text-anchor="left" x="677.00" y="607.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (14 samples, 0.14%)</title><rect x="674" y="581" width="2" height="15" fill="rgb(228,187,8)"/><text text-anchor="left" x="677.00" y="591.50" 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>deno_core_http_bench`core::ptr::read::h4ec8a9a29f67cf99 (10 samples, 0.10%)</title><rect x="674" y="565" width="2" height="15" fill="rgb(208,184,36)"/><text text-anchor="left" x="677.00" y="575.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="675" y="549" width="1" height="15" fill="rgb(240,36,12)"/><text text-anchor="left" x="678.00" y="559.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h30391eb5e5850985 (18 samples, 0.18%)</title><rect x="674" y="629" width="2" height="15" fill="rgb(236,184,0)"/><text text-anchor="left" x="677.00" y="639.50" 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>deno_core_http_bench`core::mem::replace::h7717fd64d3136c91 (17 samples, 0.17%)</title><rect x="674" y="613" width="2" height="15" fill="rgb(232,127,46)"/><text text-anchor="left" x="677.00" y="623.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (2 samples, 0.02%)</title><rect x="676" y="597" width="0" height="15" fill="rgb(212,84,10)"/><text text-anchor="left" x="679.00" y="607.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (21 samples, 0.21%)</title><rect x="674" y="645" width="2" height="15" fill="rgb(217,72,44)"/><text text-anchor="left" x="677.00" y="655.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hb3d053de19504f67 (1 samples, 0.01%)</title><rect x="676" y="629" width="0" height="15" fill="rgb(224,0,48)"/><text text-anchor="left" x="679.00" y="639.50" 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>deno_core_http_bench`core::ptr::read::h4ec8a9a29f67cf99 (1 samples, 0.01%)</title><rect x="677" y="549" width="0" height="15" fill="rgb(252,13,18)"/><text text-anchor="left" x="680.00" y="559.50" 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>deno_core_http_bench`core::mem::size_of::h9d22e669f0ee8b20 (2 samples, 0.02%)</title><rect x="677" y="533" width="0" height="15" fill="rgb(238,100,17)"/><text text-anchor="left" x="680.00" y="543.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (7 samples, 0.07%)</title><rect x="677" y="565" width="0" height="15" fill="rgb(247,48,47)"/><text text-anchor="left" x="680.00" y="575.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (6 samples, 0.06%)</title><rect x="677" y="549" width="0" height="15" fill="rgb(250,102,47)"/><text text-anchor="left" x="680.00" y="559.50" 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>deno_core_http_bench`core::ptr::read::h4ec8a9a29f67cf99 (4 samples, 0.04%)</title><rect x="677" y="533" width="0" height="15" fill="rgb(219,171,9)"/><text text-anchor="left" x="680.00" y="543.50" 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>deno_core_http_bench`core::intrinsics::copy_nonoverlapping::hb9274ff275e36e81 (2 samples, 0.02%)</title><rect x="677" y="517" width="0" height="15" fill="rgb(219,108,10)"/><text text-anchor="left" x="680.00" y="527.50" 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>libsystem_platform.dylib`_platform_memmove$VARIANT$Haswell (1 samples, 0.01%)</title><rect x="677" y="501" width="0" height="15" fill="rgb(243,49,34)"/><text text-anchor="left" x="680.00" y="511.50" 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>deno_core_http_bench`core::mem::replace::h7717fd64d3136c91 (8 samples, 0.08%)</title><rect x="677" y="581" width="1" height="15" fill="rgb(251,105,24)"/><text text-anchor="left" x="680.00" y="591.50" 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>deno_core_http_bench`core::ptr::swap_nonoverlapping_one::h210283b73ff792d3 (1 samples, 0.01%)</title><rect x="677" y="565" width="1" height="15" fill="rgb(209,154,38)"/><text text-anchor="left" x="680.00" y="575.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::replace::h30391eb5e5850985 (12 samples, 0.12%)</title><rect x="676" y="597" width="2" height="15" fill="rgb(237,227,6)"/><text text-anchor="left" x="679.00" y="607.50" 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>deno_core_http_bench`core::mem::swap::h5b03ed4031eb65de (1 samples, 0.01%)</title><rect x="678" y="581" width="0" height="15" fill="rgb(234,203,42)"/><text text-anchor="left" x="681.00" y="591.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hb6736f2f1bb93929 (16 samples, 0.16%)</title><rect x="676" y="645" width="2" height="15" fill="rgb(230,120,41)"/><text text-anchor="left" x="679.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..set..Reset$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb7240288445b4783 (15 samples, 0.15%)</title><rect x="676" y="629" width="2" height="15" fill="rgb(239,220,18)"/><text text-anchor="left" x="679.00" y="639.50" 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>deno_core_http_bench`core::cell::Cell$LT$T$GT$::set::h5ce9d228ae36bf1b (13 samples, 0.13%)</title><rect x="676" y="613" width="2" height="15" fill="rgb(224,139,47)"/><text text-anchor="left" x="679.00" y="623.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hb3d053de19504f67 (1 samples, 0.01%)</title><rect x="678" y="597" width="0" height="15" fill="rgb(210,177,16)"/><text text-anchor="left" x="681.00" y="607.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::ha88cb65c5129a5cb (1 samples, 0.01%)</title><rect x="678" y="629" width="0" height="15" fill="rgb(208,123,33)"/><text text-anchor="left" x="681.00" y="639.50" 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>deno_core_http_bench`futures::task_impl::core::is_get_ptr::h4c1ceab7554afa12 (6 samples, 0.06%)</title><rect x="678" y="645" width="0" height="15" fill="rgb(237,69,51)"/><text text-anchor="left" x="681.00" y="655.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h81b41f99937c71df (3 samples, 0.03%)</title><rect x="678" y="629" width="0" height="15" fill="rgb(213,68,9)"/><text text-anchor="left" x="681.00" y="639.50" 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>deno_core_http_bench`core::result::Result$LT$T$C$E$GT$::expect::ha97937dd93e94084 (2 samples, 0.02%)</title><rect x="679" y="613" width="0" height="15" fill="rgb(212,197,14)"/><text text-anchor="left" x="682.00" y="623.50" 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>deno_core_http_bench`_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::ha20f105ec4bea74b (1 samples, 0.01%)</title><rect x="681" y="597" width="0" height="15" fill="rgb(209,67,37)"/><text text-anchor="left" x="684.00" y="607.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h53cc5144d170e7cc (1 samples, 0.01%)</title><rect x="681" y="597" width="0" height="15" fill="rgb(227,75,44)"/><text text-anchor="left" x="684.00" y="607.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::ok_or::h6d072c2623d0dad5 (4 samples, 0.04%)</title><rect x="681" y="597" width="0" height="15" fill="rgb(223,198,27)"/><text text-anchor="left" x="684.00" y="607.50" 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>deno_core_http_bench`core::mem::needs_drop::ha960c2c7c684b405 (1 samples, 0.01%)</title><rect x="681" y="565" width="0" height="15" fill="rgb(210,126,47)"/><text text-anchor="left" x="684.00" y="575.50" 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>deno_core_http_bench`futures::task_impl::std::tls_slot::h9fb7a1242b75dbb6 (27 samples, 0.26%)</title><rect x="678" y="645" width="4" height="15" fill="rgb(207,81,42)"/><text text-anchor="left" x="681.00" y="655.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::with::h64bc61652f2f8abd (25 samples, 0.25%)</title><rect x="679" y="629" width="3" height="15" fill="rgb(221,129,39)"/><text text-anchor="left" x="682.00" y="639.50" 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>deno_core_http_bench`std::thread::local::LocalKey$LT$T$GT$::try_with::ha72bdb65e2a80aa0 (19 samples, 0.19%)</title><rect x="679" y="613" width="3" height="15" fill="rgb(215,153,46)"/><text text-anchor="left" x="682.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::std::CURRENT_TASK::__getit::ha94fa0f4e059698a (3 samples, 0.03%)</title><rect x="681" y="597" width="1" height="15" fill="rgb(229,114,17)"/><text text-anchor="left" x="684.00" y="607.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::get::h6438aae71122f2d0 (3 samples, 0.03%)</title><rect x="681" y="581" width="1" height="15" fill="rgb(244,92,37)"/><text text-anchor="left" x="684.00" y="591.50" 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>deno_core_http_bench`std::thread::local::fast::Key$LT$T$GT$::register_dtor::h52fa5f04dd86ad97 (2 samples, 0.02%)</title><rect x="681" y="565" width="1" height="15" fill="rgb(237,79,38)"/><text text-anchor="left" x="684.00" y="575.50" 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>deno_core_http_bench`std::sync::once::Once::call_once::h8cb0d5a4b2f0da00 (8 samples, 0.08%)</title><rect x="682" y="645" width="1" height="15" fill="rgb(207,180,43)"/><text text-anchor="left" x="685.00" y="655.50" 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>deno_core_http_bench`std::sync::once::Once::is_completed::h6cae5449555d1824 (7 samples, 0.07%)</title><rect x="682" y="629" width="1" height="15" fill="rgb(214,41,25)"/><text text-anchor="left" x="685.00" y="639.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h81b41f99937c71df (5 samples, 0.05%)</title><rect x="682" y="613" width="1" height="15" fill="rgb(252,174,44)"/><text text-anchor="left" x="685.00" y="623.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (2 samples, 0.02%)</title><rect x="682" y="597" width="1" height="15" fill="rgb(208,139,32)"/><text text-anchor="left" x="685.00" y="607.50" 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>deno_core_http_bench`futures::task_impl::std::set::hd9961e8bc58b5a99 (3,892 samples, 38.18%)</title><rect x="232" y="661" width="451" height="15" fill="rgb(223,34,54)"/><text text-anchor="left" x="235.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::task_impl::std::set::hd9961e8bc..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::sync::once::Once::is_completed::h6cae5449555d1824 (1 samples, 0.01%)</title><rect x="683" y="645" width="0" height="15" fill="rgb(247,39,51)"/><text text-anchor="left" x="686.00" y="655.50" 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>deno_core_http_bench`futures::task_impl::std::tls_slot::h9fb7a1242b75dbb6 (2 samples, 0.02%)</title><rect x="683" y="661" width="0" height="15" fill="rgb(211,225,37)"/><text text-anchor="left" x="686.00" y="671.50" 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>deno_core_http_bench`futures::task_impl::with::hc7899dc9e2c3a52d (3,957 samples, 38.81%)</title><rect x="225" y="693" width="458" height="15" fill="rgb(224,60,25)"/><text text-anchor="left" x="228.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::task_impl::with::hc7899dc9e2c3a5..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::task_impl::with_notify::_$u7b$$u7b$closure$u7d$$u7d$::h44278678524f2931 (3,913 samples, 38.38%)</title><rect x="230" y="677" width="453" height="15" fill="rgb(229,132,10)"/><text text-anchor="left" x="233.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::task_impl::with_notify::_$u7b$$..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`std::sync::once::Once::call_once::h8cb0d5a4b2f0da00 (2 samples, 0.02%)</title><rect x="683" y="661" width="0" height="15" fill="rgb(219,164,3)"/><text text-anchor="left" x="686.00" y="671.50" 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>deno_core_http_bench`_$LT$futures..stream..futures_unordered..FuturesUnordered$LT$T$GT$$u20$as$u20$futures..stream..Stream$GT$::poll::hb8a2f96773a0dae5 (4,706 samples, 46.16%)</title><rect x="139" y="725" width="544" height="15" fill="rgb(210,70,3)"/><text text-anchor="left" x="142.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`_$LT$futures..stream..futures_unordered..FuturesUnord..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::task_impl::with_notify::h0c8ab7c4ffa12957 (3,960 samples, 38.84%)</title><rect x="225" y="709" width="458" height="15" fill="rgb(212,36,38)"/><text text-anchor="left" x="228.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">deno_core_http_bench`futures::task_impl::with_notify::h0c8ab7c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>deno_core_http_bench`futures::task_impl::with_notify::_$u7b$$u7b$closure$u7d$$u7d$::h44278678524f2931 (1 samples, 0.01%)</title><rect x="683" y="693" width="0" height="15" fill="rgb(240,83,19)"/><text text-anchor="left" x="686.00" y="703.50" 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>deno_core_http_bench`alloc::alloc::box_free::h92bcd4e184f32af5 (3 samples, 0.03%)</title><rect x="683" y="725" width="1" height="15" fill="rgb(253,207,46)"/><text text-anchor="left" x="686.00" y="735.50" 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>libsystem_malloc.dylib`default_zone_free_definite_size (1 samples, 0.01%)</title><rect x="684" y="645" width="0" height="15" fill="rgb(210,64,10)"/><text text-anchor="left" x="687.00" y="655.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.01%)</title><rect x="684" y="629" width="0" height="15" fill="rgb(247,113,18)"/><text text-anchor="left" x="687.00" y="639.50" 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>deno_core_http_bench`operator delete(void*) (4 samples, 0.04%)</title><rect x="684" y="661" width="0" height="15" fill="rgb(229,8,33)"/><text text-anchor="left" x="687.00" y="671.50" 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>libsystem_malloc.dylib`free_tiny (3 samples, 0.03%)</title><rect x="684" y="645" width="0" height="15" fill="rgb(214,126,8)"/><text text-anchor="left" x="687.00" y="655.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (2 samples, 0.02%)</title><rect x="684" y="629" width="0" height="15" fill="rgb(232,100,49)"/><text text-anchor="left" x="687.00" y="639.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.01%)</title><rect x="684" y="613" width="0" height="15" fill="rgb(210,52,32)"/><text text-anchor="left" x="687.00" y="623.50" 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>libsystem_malloc.dylib`small_size (1 samples, 0.01%)</title><rect x="685" y="565" width="0" height="15" fill="rgb(212,116,6)"/><text text-anchor="left" x="688.00" y="575.50" 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>libsystem_malloc.dylib`free (6 samples, 0.06%)</title><rect x="684" y="581" width="1" height="15" fill="rgb(215,198,18)"/><text text-anchor="left" x="687.00" y="591.50" 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>libsystem_malloc.dylib`tiny_size (1 samples, 0.01%)</title><rect x="685" y="565" width="0" height="15" fill="rgb(207,18,51)"/><text text-anchor="left" x="688.00" y="575.50" 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>libsystem_malloc.dylib`free_small (1 samples, 0.01%)</title><rect x="685" y="581" width="0" height="15" fill="rgb(240,79,12)"/><text text-anchor="left" x="688.00" y="591.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (2 samples, 0.02%)</title><rect x="685" y="565" width="1" height="15" fill="rgb(207,85,34)"/><text text-anchor="left" x="688.00" y="575.50" 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>libsystem_malloc.dylib`free_tiny (5 samples, 0.05%)</title><rect x="685" y="581" width="1" height="15" fill="rgb(223,148,4)"/><text text-anchor="left" x="688.00" y="591.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (1 samples, 0.01%)</title><rect x="686" y="565" width="0" height="15" fill="rgb(231,98,21)"/><text text-anchor="left" x="689.00" y="575.50" 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>deno_core_http_bench`operator delete(void*) (13 samples, 0.13%)</title><rect x="684" y="597" width="2" height="15" fill="rgb(250,23,15)"/><text text-anchor="left" x="687.00" y="607.50" 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>libsystem_malloc.dylib`szone_size (1 samples, 0.01%)</title><rect x="686" y="581" width="0" height="15" fill="rgb(205,142,13)"/><text text-anchor="left" x="689.00" y="591.50" 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>deno_core_http_bench`v8::internal::HandleScopeImplementer::Free (16 samples, 0.16%)</title><rect x="684" y="629" width="2" height="15" fill="rgb(206,13,24)"/><text text-anchor="left" x="687.00" y="639.50" 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>deno_core_http_bench`operator delete[](void*) (16 samples, 0.16%)</title><rect x="684" y="613" width="2" height="15" fill="rgb(209,138,14)"/><text text-anchor="left" x="687.00" y="623.50" 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>libsystem_malloc.dylib`free (1 samples, 0.01%)</title><rect x="686" y="597" width="0" height="15" fill="rgb(216,7,34)"/><text text-anchor="left" x="689.00" y="607.50" 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>deno_core_http_bench`v8::base::Mutex::Lock (1 samples, 0.01%)</title><rect x="686" y="613" width="0" height="15" fill="rgb(224,61,21)"/><text text-anchor="left" x="689.00" y="623.50" 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>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (1 samples, 0.01%)</title><rect x="686" y="597" width="0" height="15" fill="rgb(237,0,52)"/><text text-anchor="left" x="689.00" y="607.50" 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>libsystem_pthread.dylib`_pthread_mutex_firstfit_unlock_slow (1 samples, 0.01%)</title><rect x="686" y="597" width="0" height="15" fill="rgb(206,171,21)"/><text text-anchor="left" x="689.00" y="607.50" 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>deno_core_http_bench`v8::base::Mutex::Unlock (2 samples, 0.02%)</title><rect x="686" y="613" width="1" height="15" fill="rgb(207,167,0)"/><text text-anchor="left" x="689.00" y="623.50" 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>libsystem_pthread.dylib`_pthread_mutex_unlock_init_slow (1 samples, 0.01%)</title><rect x="686" y="597" width="1" height="15" fill="rgb(240,10,32)"/><text text-anchor="left" x="689.00" y="607.50" 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>deno_core_http_bench`v8::Locker::~Locker (23 samples, 0.23%)</title><rect x="684" y="661" width="3" height="15" fill="rgb(224,65,24)"/><text text-anchor="left" x="687.00" y="671.50" 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>deno_core_http_bench`v8::internal::ThreadManager::FreeThreadResources (23 samples, 0.23%)</title><rect x="684" y="645" width="3" height="15" fill="rgb(243,127,30)"/><text text-anchor="left" x="687.00" y="655.50" 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>deno_core_http_bench`v8::internal::Isolate::FindOrAllocatePerThreadDataForThisThread (6 samples, 0.06%)</title><rect x="686" y="629" width="1" height="15" fill="rgb(236,118,12)"/><text text-anchor="left" x="689.00" y="639.50" 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>libsystem_pthread.dylib`_pthread_mutex_firstfit_lock_slow (1 samples, 0.01%)</title><rect x="687" y="613" width="0" height="15" fill="rgb(254,221,5)"/><text text-anchor="left" x="690.00" y="623.50" 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>deno_core_http_bench`v8::base::Mutex::Unlock (1 samples, 0.01%)</title><rect x="687" y="661" width="0" height="15" fill="rgb(253,109,32)"/><text text-anchor="left" x="690.00" y="671.50" 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>deno_core_http_bench`core::mem::drop::h8d8a285b838af537 (29 samples, 0.28%)</title><rect x="684" y="725" width="3" height="15" fill="rgb(234,75,34)"/><text text-anchor="left" x="687.00" y="735.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hd972c1a0bb934be6 (29 samples, 0.28%)</title><rect x="684" y="709" width="3" height="15" fill="rgb(211,148,11)"/><text text-anchor="left" x="687.00" y="719.50" 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>deno_core_http_bench`_$LT$deno..isolate..LockerScope$u20$as$u20$core..ops..drop..Drop$GT$::drop::h888d28b7b25bf934 (29 samples, 0.28%)</title><rect x="684" y="693" width="3" height="15" fill="rgb(207,90,39)"/><text text-anchor="left" x="687.00" y="703.50" 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>deno_core_http_bench`deno_unlock (29 samples, 0.28%)</title><rect x="684" y="677" width="3" height="15" fill="rgb(228,95,45)"/><text text-anchor="left" x="687.00" y="687.50" 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>libsystem_pthread.dylib`pthread_mutex_unlock (1 samples, 0.01%)</title><rect x="687" y="661" width="0" height="15" fill="rgb(213,107,17)"/><text text-anchor="left" x="690.00" y="671.50" 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>deno_core_http_bench`core::option::Option$LT$T$GT$::as_ref::h5f43121f855e84fb (4 samples, 0.04%)</title><rect x="687" y="725" width="0" height="15" fill="rgb(215,140,36)"/><text text-anchor="left" x="690.00" y="735.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h1e40752b2895adca (1 samples, 0.01%)</title><rect x="687" y="725" width="1" height="15" fill="rgb(232,171,10)"/><text text-anchor="left" x="690.00" y="735.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h2e81b2b8f4e2a018 (1 samples, 0.01%)</title><rect x="688" y="725" width="0" height="15" fill="rgb(241,229,6)"/><text text-anchor="left" x="691.00" y="735.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..ops..drop..Drop$GT$::drop::h820059682a2e68f5 (1 samples, 0.01%)</title><rect x="688" y="677" width="0" height="15" fill="rgb(225,71,48)"/><text text-anchor="left" x="691.00" y="687.50" 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>deno_core_http_bench`futures::task_impl::Notify::drop_id::h1c5f2d9f016305ec (1 samples, 0.01%)</title><rect x="688" y="661" width="0" height="15" fill="rgb(205,174,34)"/><text text-anchor="left" x="691.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h51007a548b721ef2 (6 samples, 0.06%)</title><rect x="688" y="725" width="0" height="15" fill="rgb(241,148,15)"/><text text-anchor="left" x="691.00" y="735.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h1e40752b2895adca (3 samples, 0.03%)</title><rect x="688" y="709" width="0" height="15" fill="rgb(251,2,21)"/><text text-anchor="left" x="691.00" y="719.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h9eea34b4a91ba538 (3 samples, 0.03%)</title><rect x="688" y="693" width="0" height="15" fill="rgb(226,108,38)"/><text text-anchor="left" x="691.00" y="703.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h2a675f435c34ca42 (2 samples, 0.02%)</title><rect x="688" y="677" width="0" height="15" fill="rgb(251,188,8)"/><text text-anchor="left" x="691.00" y="687.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..ops..drop..Drop$GT$::drop::h9557032614a3d20b (2 samples, 0.02%)</title><rect x="688" y="661" width="0" height="15" fill="rgb(237,37,12)"/><text text-anchor="left" x="691.00" y="671.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::drop_raw::h576b11225d7a8d58 (2 samples, 0.02%)</title><rect x="688" y="645" width="0" height="15" fill="rgb(223,98,0)"/><text text-anchor="left" x="691.00" y="655.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h224f31a42e7530a3 (1 samples, 0.01%)</title><rect x="688" y="629" width="0" height="15" fill="rgb(237,23,43)"/><text text-anchor="left" x="691.00" y="639.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::ha7bb13f216f7771d (1 samples, 0.01%)</title><rect x="688" y="613" width="0" height="15" fill="rgb(207,54,43)"/><text text-anchor="left" x="691.00" y="623.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (1 samples, 0.01%)</title><rect x="688" y="597" width="0" height="15" fill="rgb(237,4,42)"/><text text-anchor="left" x="691.00" y="607.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (1 samples, 0.01%)</title><rect x="688" y="581" width="0" height="15" fill="rgb(238,223,5)"/><text text-anchor="left" x="691.00" y="591.50" 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>deno_core_http_bench`core::alloc::Layout::align::h60b221be8e5992c1 (2 samples, 0.02%)</title><rect x="689" y="677" width="0" height="15" fill="rgb(240,28,3)"/><text text-anchor="left" x="692.00" y="687.50" 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>deno_core_http_bench`core::alloc::Layout::size::h66eb832906c6978f (1 samples, 0.01%)</title><rect x="689" y="677" width="0" height="15" fill="rgb(227,73,26)"/><text text-anchor="left" x="692.00" y="687.50" 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>libsystem_malloc.dylib`szone_size (1 samples, 0.01%)</title><rect x="689" y="661" width="0" height="15" fill="rgb(222,21,3)"/><text text-anchor="left" x="692.00" y="671.50" 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>libsystem_malloc.dylib`free (6 samples, 0.06%)</title><rect x="689" y="677" width="1" height="15" fill="rgb(235,8,27)"/><text text-anchor="left" x="692.00" y="687.50" 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>libsystem_malloc.dylib`tiny_size (3 samples, 0.03%)</title><rect x="689" y="661" width="1" height="15" fill="rgb(205,90,39)"/><text text-anchor="left" x="692.00" y="671.50" 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>libsystem_malloc.dylib`tiny_free_list_add_ptr (1 samples, 0.01%)</title><rect x="691" y="661" width="0" height="15" fill="rgb(224,153,46)"/><text text-anchor="left" x="694.00" y="671.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (1 samples, 0.01%)</title><rect x="691" y="661" width="0" height="15" fill="rgb(238,200,20)"/><text text-anchor="left" x="694.00" y="671.50" 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>deno_core_http_bench`alloc::alloc::dealloc::h0b14a5cbf50c8c98 (34 samples, 0.33%)</title><rect x="689" y="693" width="3" height="15" fill="rgb(222,192,42)"/><text text-anchor="left" x="692.00" y="703.50" 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>libsystem_malloc.dylib`free_tiny (23 samples, 0.23%)</title><rect x="690" y="677" width="2" height="15" fill="rgb(222,190,7)"/><text text-anchor="left" x="693.00" y="687.50" 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>libsystem_malloc.dylib`tiny_free_no_lock (13 samples, 0.13%)</title><rect x="691" y="661" width="1" height="15" fill="rgb(214,13,51)"/><text text-anchor="left" x="694.00" y="671.50" 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>libsystem_malloc.dylib`tiny_free_list_remove_ptr (5 samples, 0.05%)</title><rect x="692" y="645" width="0" height="15" fill="rgb(222,116,45)"/><text text-anchor="left" x="695.00" y="655.50" 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>deno_core_http_bench`core::alloc::Layout::from_size_align_unchecked::hef1a0a68644d8719 (1 samples, 0.01%)</title><rect x="692" y="693" width="1" height="15" fill="rgb(230,227,44)"/><text text-anchor="left" x="695.00" y="703.50" 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>deno_core_http_bench`alloc::alloc::box_free::h92bcd4e184f32af5 (40 samples, 0.39%)</title><rect x="688" y="709" width="5" height="15" fill="rgb(254,28,16)"/><text text-anchor="left" x="691.00" y="719.50" 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>deno_core_http_bench`core::num::NonZeroUsize::new_unchecked::he18e14c9c66a649d (3 samples, 0.03%)</title><rect x="693" y="693" width="0" height="15" fill="rgb(247,122,47)"/><text text-anchor="left" x="696.00" y="703.50" 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>deno_core_http_bench`alloc::alloc::dealloc::h0b14a5cbf50c8c98 (1 samples, 0.01%)</title><rect x="693" y="709" width="0" height="15" fill="rgb(234,0,2)"/><text text-anchor="left" x="696.00" y="719.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h7531f9cb373ff43a (45 samples, 0.44%)</title><rect x="688" y="725" width="6" height="15" fill="rgb(225,165,10)"/><text text-anchor="left" x="691.00" y="735.50" 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>deno_core_http_bench`core::ptr::Unique$LT$T$GT$::as_ptr::hd233bc5344d9c852 (4 samples, 0.04%)</title><rect x="693" y="709" width="1" height="15" fill="rgb(250,141,18)"/><text text-anchor="left" x="696.00" y="719.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h962d1fff6c17ea14 (1 samples, 0.01%)</title><rect x="694" y="725" width="0" height="15" fill="rgb(211,82,17)"/><text text-anchor="left" x="697.00" y="735.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::hab57b8b1f1fe5944 (4 samples, 0.04%)</title><rect x="694" y="725" width="0" height="15" fill="rgb(252,138,20)"/><text text-anchor="left" x="697.00" y="735.50" 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>deno_core_http_bench`core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hb03b0d53f4d87843 (2 samples, 0.02%)</title><rect x="694" y="725" width="0" height="15" fill="rgb(232,181,13)"/><text text-anchor="left" x="697.00" y="735.50" 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>deno_core_http_bench`core::sync::atomic::AtomicBool::swap::h5109fc7540466c70 (1 samples, 0.01%)</title><rect x="694" y="725" width="0" height="15" fill="rgb(229,18,23)"/><text text-anchor="left" x="697.00" y="735.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::load::h81b41f99937c71df (1 samples, 0.01%)</title><rect x="694" y="725" width="1" height="15" fill="rgb(206,44,52)"/><text text-anchor="left" x="697.00" y="735.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h60eacefd17eaad61 (1 samples, 0.01%)</title><rect x="698" y="661" width="0" height="15" fill="rgb(251,158,8)"/><text text-anchor="left" x="701.00" y="671.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h942ea73a87e4e2c8 (12 samples, 0.12%)</title><rect x="698" y="677" width="1" height="15" fill="rgb(252,99,18)"/><text text-anchor="left" x="701.00" y="687.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h0b443432aeade03a (9 samples, 0.09%)</title><rect x="698" y="661" width="1" height="15" fill="rgb(234,88,8)"/><text text-anchor="left" x="701.00" y="671.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h60eacefd17eaad61 (4 samples, 0.04%)</title><rect x="699" y="645" width="0" height="15" fill="rgb(225,227,1)"/><text text-anchor="left" x="702.00" y="655.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h0d0df0ee5db5b895 (15 samples, 0.15%)</title><rect x="698" y="693" width="2" height="15" fill="rgb(223,181,43)"/><text text-anchor="left" x="701.00" y="703.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h0b443432aeade03a (2 samples, 0.02%)</title><rect x="699" y="677" width="1" height="15" fill="rgb(210,128,3)"/><text text-anchor="left" x="702.00" y="687.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h942ea73a87e4e2c8 (1 samples, 0.01%)</title><rect x="700" y="693" width="0" height="15" fill="rgb(241,210,54)"/><text text-anchor="left" x="703.00" y="703.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::hf3ff0f67df509c0d (1 samples, 0.01%)</title><rect x="700" y="693" width="0" height="15" fill="rgb(248,5,48)"/><text text-anchor="left" x="703.00" y="703.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h4dbf8ec413014d9b (2 samples, 0.02%)</title><rect x="700" y="693" width="0" height="15" fill="rgb(239,216,37)"/><text text-anchor="left" x="703.00" y="703.50" 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>deno_core_http_bench`futures::stream::futures_unordered::FuturesUnordered$LT$T$GT$::is_empty::he147e76566a0aa2d (4 samples, 0.04%)</title><rect x="700" y="693" width="0" height="15" fill="rgb(223,64,54)"/><text text-anchor="left" x="703.00" y="703.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h78640b7a8d6cfa3e (1 samples, 0.01%)</title><rect x="701" y="677" width="0" height="15" fill="rgb(207,194,21)"/><text text-anchor="left" x="704.00" y="687.50" 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>deno_core_http_bench`core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::is_null::h4dbf8ec413014d9b (4 samples, 0.04%)</title><rect x="701" y="677" width="1" height="15" fill="rgb(211,190,37)"/><text text-anchor="left" x="704.00" y="687.50" 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>deno_core_http_bench`core::ptr::null_mut::hafe5309f60d5a634 (2 samples, 0.02%)</title><rect x="702" y="677" width="0" height="15" fill="rgb(240,175,30)"/><text text-anchor="left" x="705.00" y="687.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h78640b7a8d6cfa3e (1 samples, 0.01%)</title><rect x="702" y="661" width="0" height="15" fill="rgb(251,211,26)"/><text text-anchor="left" x="705.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::AtomicPtr$LT$T$GT$::load::h560103452346444f (10 samples, 0.10%)</title><rect x="702" y="677" width="1" height="15" fill="rgb(205,102,43)"/><text text-anchor="left" x="705.00" y="687.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (7 samples, 0.07%)</title><rect x="702" y="661" width="1" height="15" fill="rgb(228,18,46)"/><text text-anchor="left" x="705.00" y="671.50" 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>deno_core_http_bench`core::sync::atomic::atomic_load::h3d19faa918da7fe2 (1 samples, 0.01%)</title><rect x="703" y="677" width="0" height="15" fill="rgb(234,47,47)"/><text text-anchor="left" x="706.00" y="687.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::ha5b3f6fd142777c1 (3 samples, 0.03%)</title><rect x="704" y="661" width="0" height="15" fill="rgb(242,197,16)"/><text text-anchor="left" x="707.00" y="671.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h1f9ac52b231d9411 (1 samples, 0.01%)</title><rect x="704" y="645" width="0" height="15" fill="rgb(215,95,33)"/><text text-anchor="left" x="707.00" y="655.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h9f4bcf1de39da064 (1 samples, 0.01%)</title><rect x="704" y="629" width="0" height="15" fill="rgb(254,20,28)"/><text text-anchor="left" x="707.00" y="639.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::dequeue::h46ade5de9cc37627 (31 samples, 0.30%)</title><rect x="700" y="693" width="4" height="15" fill="rgb(224,84,52)"/><text text-anchor="left" x="703.00" y="703.50" 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>deno_core_http_bench`futures::stream::futures_unordered::Inner$LT$T$GT$::stub::h65ccb756b97b3016 (6 samples, 0.06%)</title><rect x="703" y="677" width="1" height="15" fill="rgb(220,48,29)"/><text text-anchor="left" x="706.00" y="687.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h1f9ac52b231d9411 (1 samples, 0.01%)</title><rect x="704" y="661" width="0" height="15" fill="rgb(251,29,34)"/><text text-anchor="left" x="707.00" y="671.50" 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>deno_core_http_bench`_$LT$futures..task_impl..Task$u20$as$u20$core..clone..Clone$GT$::clone::ha81d9992e0288099 (1 samples, 0.01%)</title><rect x="704" y="677" width="0" height="15" fill="rgb(207,83,14)"/><text text-anchor="left" x="707.00" y="687.50" 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>deno_core_http_bench`core::cell::UnsafeCell$LT$T$GT$::get::h23d6b248e306bc1f (3 samples, 0.03%)</title><rect x="704" y="677" width="1" height="15" fill="rgb(222,90,42)"/><text text-anchor="left" x="707.00" y="687.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::h992f1f3d9ec507fd (3 samples, 0.03%)</title><rect x="706" y="645" width="1" height="15" fill="rgb(234,141,51)"/><text text-anchor="left" x="709.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..clone..Clone$GT$::clone::h72a4ce2093e467ad (1 samples, 0.01%)</title><rect x="707" y="629" width="0" height="15" fill="rgb(219,160,26)"/><text text-anchor="left" x="710.00" y="639.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (5 samples, 0.05%)</title><rect x="708" y="533" width="1" height="15" fill="rgb(217,226,31)"/><text text-anchor="left" x="711.00" y="543.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (5 samples, 0.05%)</title><rect x="708" y="517" width="1" height="15" fill="rgb(253,227,43)"/><text text-anchor="left" x="711.00" y="527.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ptr::h82f55c9d768ca6a7 (2 samples, 0.02%)</title><rect x="709" y="501" width="0" height="15" fill="rgb(248,168,21)"/><text text-anchor="left" x="712.00" y="511.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h32bbcc8044f25157 (10 samples, 0.10%)</title><rect x="708" y="549" width="1" height="15" fill="rgb(211,58,24)"/><text text-anchor="left" x="711.00" y="559.50" 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>deno_core_http_bench`core::sync::atomic::AtomicUsize::fetch_add::hd0a9c2195b5e909d (3 samples, 0.03%)</title><rect x="709" y="533" width="0" height="15" fill="rgb(211,105,15)"/><text text-anchor="left" x="712.00" y="543.50" 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>deno_core_http_bench`core::sync::atomic::atomic_add::h4e00f29987451464 (1 samples, 0.01%)</title><rect x="709" y="517" width="0" height="15" fill="rgb(231,9,47)"/><text text-anchor="left" x="712.00" y="527.50" 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>deno_core_http_bench`_$LT$futures..task_impl..NotifyHandle$u20$as$u20$core..clone..Clone$GT$::clone::h72a4ce2093e467ad (23 samples, 0.23%)</title><rect x="707" y="613" width="3" height="15" fill="rgb(212,23,49)"/><text text-anchor="left" x="710.00" y="623.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::clone_raw::h6328c48d92268eeb (20 samples, 0.20%)</title><rect x="708" y="597" width="2" height="15" fill="rgb(212,14,46)"/><text text-anchor="left" x="711.00" y="607.50" 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>deno_core_http_bench`_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h326fb267ef943534 (18 samples, 0.18%)</title><rect x="708" y="581" width="2" height="15" fill="rgb(227,48,1)"/><text text-anchor="left" x="711.00" y="591.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::_$LT$impl$u20$core..convert..From$LT$tokio_current_thread..scheduler..Notify$LT$U$GT$$GT$$u20$for$u20$futures..task_impl..NotifyHandle$GT$::from::h845262dfb4482f6e (17 samples, 0.17%)</title><rect x="708" y="565" width="2" height="15" fill="rgb(234,85,3)"/><text text-anchor="left" x="711.00" y="575.50" 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>deno_core_http_bench`tokio_current_thread::scheduler::hide_lt::h297f987ca8df0af8 (6 samples, 0.06%)</title><rect x="709" y="549" width="1" height="15" fill="rgb(246,16,14)"/><text text-anchor="left" x="712.00" y="559.50" 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>deno_core_http_bench`_$LT$tokio_current_thread..scheduler..ArcNode$LT$U$GT$$u20$as$u20$futures..task_impl..UnsafeNotify$GT$::clone_raw::h6328c48d92268eeb (3 samples, 0.03%)</title><rect x="710" y="613" width="0" height="15" fill="rgb(230,125,41)"/><text text-anchor="left" x="713.00" y="623.50" 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>deno_core_http_bench`futures::task_impl::Notify::clone_id::h0d0b11e894f63817 (1 samples, 0.01%)</title><rect x="710" y="613" width="0" height="15" fill="rgb(213,195,6)"/><text text-anchor="left" x="713.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::hae03e262f1efd836 (36 samples, 0.35%)</title><rect x="707" y="645" width="4" height="15" fill="rgb(211,172,0)"/><text text-anchor="left" x="710.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::h992f1f3d9ec507fd (29 samples, 0.28%)</title><rect x="707" y="629" width="4" height="15" fill="rgb(249,131,17)"/><text text-anchor="left" x="710.00" y="639.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::clone_id::h53b7f29beb511ba1 (2 samples, 0.02%)</title><rect x="710" y="613" width="1" height="15" fill="rgb(245,192,28)"/><text text-anchor="left" x="713.00" y="623.50" 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>deno_core_http_bench`_$LT$futures..task_impl..Task$u20$as$u20$core..clone..Clone$GT$::clone::ha81d9992e0288099 (44 samples, 0.43%)</title><rect x="706" y="661" width="5" height="15" fill="rgb(223,92,53)"/><text text-anchor="left" x="709.00" y="671.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..UnparkEvents$u20$as$u20$core..clone..Clone$GT$::clone::hfe2b7e01c8c17569 (1 samples, 0.01%)</title><rect x="711" y="645" width="0" height="15" fill="rgb(218,196,53)"/><text text-anchor="left" x="714.00" y="655.50" 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>deno_core_http_bench`_$LT$futures..task_impl..std..TaskUnpark$u20$as$u20$core..clone..Clone$GT$::clone::hae03e262f1efd836 (3 samples, 0.03%)</title><rect x="711" y="661" width="0" height="15" fill="rgb(212,65,1)"/><text text-anchor="left" x="714.00" y="671.50" 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>deno_core_http_bench`core::clone::impls::_$LT$impl$u20$core..clone..Clone$u20$for$u20$usize$GT$::clone::hb58799435d4ab72e (2 samples, 0.02%)</title><rect x="711" y="661" width="0" height="15" fill="rgb(236,176,53)"/><text text-anchor="left" x="714.00" y="671.50" 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>deno_core_http_bench`core::ptr::real_drop_in_place::h05d997f84d862816 (4 samples, 0.04%)</title><rect x="712" y="629" width="1" height="15" fill="rgb(231,209,10)"/><text text-anchor="left" x="715.00" y="639.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..ops..drop..Drop$GT$::drop::h820059682a2e68f5 (2 samples, 0.02%)</title><rect x="713" y="613" width="0" height="15" fill="rgb(250,141,25)"/><text text-anchor="left" x="716.00" y="623.50" 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>deno_core_http_bench`core::mem::drop::h7200c5928b3b61e8 (1 samples, 0.01%)</title><rect x="714" y="565" width="0" height="15" fill="rgb(224,121,53)"/><text text-anchor="left" x="717.00" y="575.50" 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>deno_core_http_bench`_$LT$futures..task_impl..core..TaskUnpark$u20$as$u20$core..ops..drop..Drop$GT$::drop::h820059682a2e68f5 (8 samples, 0.08%)</title><rect x="713" y="597" width="1" height="15" fill="rgb(248,2,50)"/><text text-anchor="left" x="716.00" y="607.50" 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>deno_core_http_bench`futures::task_impl::NotifyHandle::drop_id::h835632e4d1ed6b3d (5 samples, 0.05%)</title><rect x="714" y="581" width="0" height="15" fill="rgb(209,33,26)"/><text text-anchor="left" x="717.00" y="591.50" 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>deno_core_http_bench`futures::task_impl::Notify::drop_id::h1c5f2d9f016305ec (1 samples, 0.01%)</title><rect x="714" y="565" width="0" height="15" fill="rgb(238,83,7)"/><text text-anchor="left" x="717.00" y="575.50" 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>deno_core_http_bench`_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::ha7bb13f216f7771d (3 samples, 0.03%)</title><rect x="715" y="549" width="0" height="15" fill="rgb(206,164,35)"/><text text-anchor="left" x="718.00" y="559.50" 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>deno_core_http_bench`alloc::sync::Arc$LT$T$GT$::inner::h7e13c8a79bb731f0 (5 samples, 0.05%)</title><rect x="716" y="517" width="0" height="15" fill="rgb(240,61,39)"/><text text-anchor="left" x="719.00" y="527.50" 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>deno_core_http_bench`core::ptr::NonNull$LT$T$GT$::as_ref::h1336285faaac8694 (3 samples, 0.03%)</title><rect x="716" y="501" width="0" height="15" fill="rgb(237,70,24
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

@bartlomieju
Copy link
Author

You need to open Instruments program and load uzipped profiles there

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment