Skip to content

Instantly share code, notes, and snippets.

@icristescu
Created March 27, 2020 09:51
Show Gist options
  • Save icristescu/7ec9ea73d780447e7ac44f7b31329502 to your computer and use it in GitHub Desktop.
Save icristescu/7ec9ea73d780447e7ac44f7b31329502 to your computer and use it in GitHub Desktop.
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="2134" onload="init(evt)" viewBox="0 0 1200 2134" 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. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) -3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = parseFloat(r.attributes.x.value) + 3;
// Smaller than this size won't fit anything
if (w < 2 * 12 * 0.59) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = (parseFloat(e.attributes.x.value) - x - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 3;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseFloat(e.attributes.width.value) * ratio;
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 2);
}
}
if (e.childNodes == undefined) return;
for (var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr.y.value);
var ratio = (svg.width.baseVal.value - 2 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
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);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = "rgb(230,0,230)";
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
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.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="2134.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="2117" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="matched" x="1090.00" y="2117" > </text>
<g id="frames">
<g >
<title>camlIndex__Io_array__get_1270 (2,218 samples, 0.18%)</title><rect x="211.3" y="1189" width="2.2" height="15.0" fill="rgb(239,229,13)" rx="2" ry="2" />
<text x="214.34" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__get_command_3541 (4,023 samples, 0.33%)</title><rect x="157.6" y="1381" width="3.9" height="15.0" fill="rgb(211,159,4)" rx="2" ry="2" />
<text x="160.55" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (135 samples, 0.01%)</title><rect x="52.9" y="1893" width="0.2" height="15.0" fill="rgb(243,5,38)" rx="2" ry="2" />
<text x="55.95" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Type__list_3633 (1,115 samples, 0.09%)</title><rect x="354.4" y="1221" width="1.1" height="15.0" fill="rgb(223,208,1)" rx="2" ry="2" />
<text x="357.37" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (178 samples, 0.01%)</title><rect x="588.3" y="1109" width="0.1" height="15.0" fill="rgb(226,216,39)" rx="2" ry="2" />
<text x="591.26" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (149 samples, 0.01%)</title><rect x="891.0" y="1141" width="0.1" height="15.0" fill="rgb(229,3,33)" rx="2" ry="2" />
<text x="893.99" y="1151.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (145 samples, 0.01%)</title><rect x="636.6" y="1205" width="0.2" height="15.0" fill="rgb(246,201,3)" rx="2" ry="2" />
<text x="639.62" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (1,841 samples, 0.15%)</title><rect x="897.8" y="1205" width="1.8" height="15.0" fill="rgb(246,73,19)" rx="2" ry="2" />
<text x="900.83" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (4,682 samples, 0.38%)</title><rect x="453.4" y="1109" width="4.5" height="15.0" fill="rgb(242,188,52)" rx="2" ry="2" />
<text x="456.41" y="1119.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (319 samples, 0.03%)</title><rect x="1183.7" y="1717" width="0.3" height="15.0" fill="rgb(253,17,21)" rx="2" ry="2" />
<text x="1186.66" y="1727.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter2_1195 (210 samples, 0.02%)</title><rect x="1177.5" y="1301" width="0.2" height="15.0" fill="rgb(225,129,31)" rx="2" ry="2" />
<text x="1180.53" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6706 (1,472 samples, 0.12%)</title><rect x="1176.1" y="1349" width="1.4" height="15.0" fill="rgb(210,211,2)" rx="2" ry="2" />
<text x="1179.07" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="917" width="1.6" height="15.0" fill="rgb(211,100,44)" rx="2" ry="2" />
<text x="1189.27" y="927.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__add_string_29879 (133 samples, 0.01%)</title><rect x="1176.1" y="1317" width="0.1" height="15.0" fill="rgb(214,211,42)" rx="2" ry="2" />
<text x="1179.08" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (121 samples, 0.01%)</title><rect x="551.0" y="1253" width="0.2" height="15.0" fill="rgb(239,82,38)" rx="2" ry="2" />
<text x="554.04" y="1263.5" ></text>
</g>
<g >
<title>_IO_old_init (160 samples, 0.01%)</title><rect x="162.9" y="1253" width="0.1" height="15.0" fill="rgb(205,145,12)" rx="2" ry="2" />
<text x="165.89" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7292 (122 samples, 0.01%)</title><rect x="445.0" y="1205" width="0.1" height="15.0" fill="rgb(226,58,52)" rx="2" ry="2" />
<text x="447.96" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (127 samples, 0.01%)</title><rect x="900.1" y="1221" width="0.1" height="15.0" fill="rgb(250,135,30)" rx="2" ry="2" />
<text x="903.08" y="1231.5" ></text>
</g>
<g >
<title>futex_wait_cancelable (165 samples, 0.01%)</title><rect x="90.8" y="1973" width="0.1" height="15.0" fill="rgb(233,109,15)" rx="2" ry="2" />
<text x="93.78" y="1983.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (717 samples, 0.06%)</title><rect x="340.7" y="1157" width="0.7" height="15.0" fill="rgb(251,216,11)" rx="2" ry="2" />
<text x="343.74" y="1167.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (141 samples, 0.01%)</title><rect x="320.9" y="1269" width="0.1" height="15.0" fill="rgb(246,177,10)" rx="2" ry="2" />
<text x="323.91" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (964 samples, 0.08%)</title><rect x="542.0" y="1141" width="0.9" height="15.0" fill="rgb(207,163,21)" rx="2" ry="2" />
<text x="544.96" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="805" width="1.6" height="15.0" fill="rgb(246,137,5)" rx="2" ry="2" />
<text x="1189.27" y="815.5" ></text>
</g>
<g >
<title>caml_call_gc (151 samples, 0.01%)</title><rect x="897.3" y="1221" width="0.2" height="15.0" fill="rgb(234,145,54)" rx="2" ry="2" />
<text x="900.33" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (439 samples, 0.04%)</title><rect x="804.2" y="1205" width="0.5" height="15.0" fill="rgb(239,75,9)" rx="2" ry="2" />
<text x="807.25" y="1215.5" ></text>
</g>
<g >
<title>mdb_page_split (6,596 samples, 0.54%)</title><rect x="1061.9" y="1333" width="6.4" height="15.0" fill="rgb(253,188,1)" rx="2" ry="2" />
<text x="1064.86" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3768 (156 samples, 0.01%)</title><rect x="458.9" y="1173" width="0.2" height="15.0" fill="rgb(209,193,23)" rx="2" ry="2" />
<text x="461.91" y="1183.5" ></text>
</g>
<g >
<title>mdb_page_malloc (190 samples, 0.02%)</title><rect x="1067.5" y="1285" width="0.2" height="15.0" fill="rgb(226,107,2)" rx="2" ry="2" />
<text x="1070.55" y="1295.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (140 samples, 0.01%)</title><rect x="685.2" y="1221" width="0.1" height="15.0" fill="rgb(221,135,26)" rx="2" ry="2" />
<text x="688.18" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (178 samples, 0.01%)</title><rect x="73.1" y="1845" width="0.2" height="15.0" fill="rgb(214,177,53)" rx="2" ry="2" />
<text x="76.10" y="1855.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,179 samples, 0.18%)</title><rect x="942.1" y="1093" width="2.1" height="15.0" fill="rgb(253,110,14)" rx="2" ry="2" />
<text x="945.08" y="1103.5" ></text>
</g>
<g >
<title>memcpy (2,518 samples, 0.21%)</title><rect x="1064.7" y="1301" width="2.4" height="15.0" fill="rgb(237,110,37)" rx="2" ry="2" />
<text x="1067.66" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_7369 (213 samples, 0.02%)</title><rect x="93.4" y="1205" width="0.2" height="15.0" fill="rgb(248,70,5)" rx="2" ry="2" />
<text x="96.37" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (374 samples, 0.03%)</title><rect x="74.6" y="1925" width="0.4" height="15.0" fill="rgb(221,177,3)" rx="2" ry="2" />
<text x="77.62" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (109 samples, 0.01%)</title><rect x="1184.5" y="1317" width="0.1" height="15.0" fill="rgb(251,41,5)" rx="2" ry="2" />
<text x="1187.45" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_9722 (775 samples, 0.06%)</title><rect x="384.1" y="1221" width="0.7" height="15.0" fill="rgb(250,155,33)" rx="2" ry="2" />
<text x="387.08" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3806 (113 samples, 0.01%)</title><rect x="179.5" y="1125" width="0.1" height="15.0" fill="rgb(231,152,29)" rx="2" ry="2" />
<text x="182.50" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__format__make_formatter_2194 (831 samples, 0.07%)</title><rect x="1166.6" y="1493" width="0.9" height="15.0" fill="rgb(214,133,29)" rx="2" ry="2" />
<text x="1169.65" y="1503.5" ></text>
</g>
<g >
<title>rotr64 (173 samples, 0.01%)</title><rect x="503.4" y="1125" width="0.2" height="15.0" fill="rgb(222,168,29)" rx="2" ry="2" />
<text x="506.45" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,115,268 samples, 91.65%)</title><rect x="92.4" y="1685" width="1081.4" height="15.0" fill="rgb(242,50,28)" rx="2" ry="2" />
<text x="95.38" y="1695.5" >camlLwt__iter_callback_list_2247</text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (1,130 samples, 0.09%)</title><rect x="896.5" y="1253" width="1.1" height="15.0" fill="rgb(216,110,32)" rx="2" ry="2" />
<text x="899.52" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (294 samples, 0.02%)</title><rect x="326.6" y="1285" width="0.3" height="15.0" fill="rgb(223,127,50)" rx="2" ry="2" />
<text x="329.58" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (149 samples, 0.01%)</title><rect x="904.4" y="1205" width="0.1" height="15.0" fill="rgb(208,122,33)" rx="2" ry="2" />
<text x="907.36" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (202 samples, 0.02%)</title><rect x="1177.5" y="1269" width="0.2" height="15.0" fill="rgb(211,138,43)" rx="2" ry="2" />
<text x="1180.54" y="1279.5" ></text>
</g>
<g >
<title>lwt_unix_send_notification (752 samples, 0.06%)</title><rect x="91.4" y="2005" width="0.8" height="15.0" fill="rgb(207,66,0)" rx="2" ry="2" />
<text x="94.44" y="2015.5" ></text>
</g>
<g >
<title>camlStdlib__format__flush_buffer_formatter_2237 (1,083 samples, 0.09%)</title><rect x="1162.0" y="1509" width="1.0" height="15.0" fill="rgb(216,131,38)" rx="2" ry="2" />
<text x="1164.98" y="1519.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (2,745 samples, 0.23%)</title><rect x="735.6" y="1237" width="2.6" height="15.0" fill="rgb(247,137,7)" rx="2" ry="2" />
<text x="738.56" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (814 samples, 0.07%)</title><rect x="126.1" y="1077" width="0.8" height="15.0" fill="rgb(236,169,44)" rx="2" ry="2" />
<text x="129.07" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (1,070 samples, 0.09%)</title><rect x="398.5" y="1125" width="1.1" height="15.0" fill="rgb(242,144,9)" rx="2" ry="2" />
<text x="401.52" y="1135.5" ></text>
</g>
<g >
<title>sweep_slice (136 samples, 0.01%)</title><rect x="914.4" y="1253" width="0.2" height="15.0" fill="rgb(208,137,22)" rx="2" ry="2" />
<text x="917.43" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_feed_bytes_1716 (146 samples, 0.01%)</title><rect x="364.6" y="1173" width="0.1" height="15.0" fill="rgb(234,59,39)" rx="2" ry="2" />
<text x="367.60" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (137 samples, 0.01%)</title><rect x="236.2" y="1221" width="0.1" height="15.0" fill="rgb(248,78,35)" rx="2" ry="2" />
<text x="239.18" y="1231.5" ></text>
</g>
<g >
<title>vsnprintf (832 samples, 0.07%)</title><rect x="900.7" y="1205" width="0.9" height="15.0" fill="rgb(230,217,1)" rx="2" ry="2" />
<text x="903.75" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (1,266 samples, 0.10%)</title><rect x="1171.0" y="1557" width="1.2" height="15.0" fill="rgb(213,132,4)" rx="2" ry="2" />
<text x="1173.99" y="1567.5" ></text>
</g>
<g >
<title>mark_slice_darken (132 samples, 0.01%)</title><rect x="988.2" y="1253" width="0.1" height="15.0" fill="rgb(220,42,4)" rx="2" ry="2" />
<text x="991.19" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3927 (172 samples, 0.01%)</title><rect x="397.1" y="1093" width="0.2" height="15.0" fill="rgb(238,126,17)" rx="2" ry="2" />
<text x="400.10" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (106 samples, 0.01%)</title><rect x="280.5" y="1285" width="0.1" height="15.0" fill="rgb(219,189,19)" rx="2" ry="2" />
<text x="283.51" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__string__sum_lengths_1085 (2,311 samples, 0.19%)</title><rect x="1071.9" y="1381" width="2.2" height="15.0" fill="rgb(234,31,9)" rx="2" ry="2" />
<text x="1074.88" y="1391.5" ></text>
</g>
<g >
<title>caml_string_equal (337 samples, 0.03%)</title><rect x="192.0" y="1237" width="0.3" height="15.0" fill="rgb(229,186,3)" rx="2" ry="2" />
<text x="194.96" y="1247.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (140 samples, 0.01%)</title><rect x="131.3" y="1205" width="0.2" height="15.0" fill="rgb(238,187,15)" rx="2" ry="2" />
<text x="134.33" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (550 samples, 0.05%)</title><rect x="532.1" y="1061" width="0.5" height="15.0" fill="rgb(252,186,50)" rx="2" ry="2" />
<text x="535.08" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_string (151 samples, 0.01%)</title><rect x="519.2" y="917" width="0.2" height="15.0" fill="rgb(254,91,36)" rx="2" ry="2" />
<text x="522.25" y="927.5" ></text>
</g>
<g >
<title>uECC_verify_stub (206 samples, 0.02%)</title><rect x="1173.3" y="741" width="0.2" height="15.0" fill="rgb(230,22,2)" rx="2" ry="2" />
<text x="1176.28" y="751.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (345 samples, 0.03%)</title><rect x="712.1" y="1285" width="0.3" height="15.0" fill="rgb(210,123,12)" rx="2" ry="2" />
<text x="715.10" y="1295.5" ></text>
</g>
<g >
<title>_IO_no_init (228 samples, 0.02%)</title><rect x="162.8" y="1269" width="0.2" height="15.0" fill="rgb(220,216,32)" rx="2" ry="2" />
<text x="165.83" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (122 samples, 0.01%)</title><rect x="525.8" y="965" width="0.1" height="15.0" fill="rgb(241,172,34)" rx="2" ry="2" />
<text x="528.77" y="975.5" ></text>
</g>
<g >
<title>blake2b_compress (538 samples, 0.04%)</title><rect x="564.9" y="1093" width="0.5" height="15.0" fill="rgb(234,23,10)" rx="2" ry="2" />
<text x="567.85" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (126 samples, 0.01%)</title><rect x="742.1" y="1253" width="0.1" height="15.0" fill="rgb(205,163,11)" rx="2" ry="2" />
<text x="745.11" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3611 (185 samples, 0.02%)</title><rect x="443.6" y="1205" width="0.2" height="15.0" fill="rgb(209,227,30)" rx="2" ry="2" />
<text x="446.65" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__run_callback_or_defer_it_inner_4254 (233 samples, 0.02%)</title><rect x="992.1" y="1445" width="0.2" height="15.0" fill="rgb(234,20,45)" rx="2" ry="2" />
<text x="995.07" y="1455.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (307 samples, 0.03%)</title><rect x="837.9" y="1093" width="0.3" height="15.0" fill="rgb(242,25,16)" rx="2" ry="2" />
<text x="840.95" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (10,854 samples, 0.89%)</title><rect x="205.4" y="1269" width="10.5" height="15.0" fill="rgb(251,218,30)" rx="2" ry="2" />
<text x="208.37" y="1279.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (244 samples, 0.02%)</title><rect x="379.2" y="1157" width="0.2" height="15.0" fill="rgb(230,102,50)" rx="2" ry="2" />
<text x="382.17" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (139 samples, 0.01%)</title><rect x="213.0" y="1125" width="0.1" height="15.0" fill="rgb(239,122,4)" rx="2" ry="2" />
<text x="215.99" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (291 samples, 0.02%)</title><rect x="428.9" y="1189" width="0.3" height="15.0" fill="rgb(225,216,28)" rx="2" ry="2" />
<text x="431.95" y="1199.5" ></text>
</g>
<g >
<title>memcpy (112 samples, 0.01%)</title><rect x="336.0" y="1173" width="0.1" height="15.0" fill="rgb(231,60,22)" rx="2" ry="2" />
<text x="339.00" y="1183.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (124 samples, 0.01%)</title><rect x="495.6" y="1269" width="0.1" height="15.0" fill="rgb(221,70,2)" rx="2" ry="2" />
<text x="498.58" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (424 samples, 0.03%)</title><rect x="523.1" y="981" width="0.4" height="15.0" fill="rgb(246,17,3)" rx="2" ry="2" />
<text x="526.05" y="991.5" ></text>
</g>
<g >
<title>memmove (169 samples, 0.01%)</title><rect x="135.9" y="1317" width="0.2" height="15.0" fill="rgb(212,99,8)" rx="2" ry="2" />
<text x="138.92" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (305 samples, 0.03%)</title><rect x="515.5" y="933" width="0.3" height="15.0" fill="rgb(229,29,53)" rx="2" ry="2" />
<text x="518.48" y="943.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_7395 (511 samples, 0.04%)</title><rect x="93.6" y="1189" width="0.5" height="15.0" fill="rgb(250,9,16)" rx="2" ry="2" />
<text x="96.60" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (228 samples, 0.02%)</title><rect x="418.7" y="1173" width="0.2" height="15.0" fill="rgb(250,167,5)" rx="2" ry="2" />
<text x="421.70" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (635 samples, 0.05%)</title><rect x="355.6" y="1221" width="0.6" height="15.0" fill="rgb(245,78,40)" rx="2" ry="2" />
<text x="358.62" y="1231.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1670 (104 samples, 0.01%)</title><rect x="188.7" y="1237" width="0.1" height="15.0" fill="rgb(223,90,53)" rx="2" ry="2" />
<text x="191.65" y="1247.5" ></text>
</g>
<g >
<title>mdb_mid2l_insert (125 samples, 0.01%)</title><rect x="1146.4" y="1317" width="0.1" height="15.0" fill="rgb(252,62,21)" rx="2" ry="2" />
<text x="1149.41" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (560 samples, 0.05%)</title><rect x="514.0" y="997" width="0.5" height="15.0" fill="rgb(226,130,10)" rx="2" ry="2" />
<text x="516.97" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (391 samples, 0.03%)</title><rect x="261.1" y="1141" width="0.4" height="15.0" fill="rgb(242,54,27)" rx="2" ry="2" />
<text x="264.13" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (179 samples, 0.01%)</title><rect x="539.6" y="1141" width="0.2" height="15.0" fill="rgb(216,72,28)" rx="2" ry="2" />
<text x="542.64" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (252 samples, 0.02%)</title><rect x="206.3" y="1157" width="0.3" height="15.0" fill="rgb(237,93,42)" rx="2" ry="2" />
<text x="209.33" y="1167.5" ></text>
</g>
<g >
<title>sweep_slice (246 samples, 0.02%)</title><rect x="961.1" y="1061" width="0.2" height="15.0" fill="rgb(225,131,21)" rx="2" ry="2" />
<text x="964.06" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (106 samples, 0.01%)</title><rect x="609.9" y="1221" width="0.1" height="15.0" fill="rgb(217,66,30)" rx="2" ry="2" />
<text x="612.88" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (356 samples, 0.03%)</title><rect x="210.6" y="1125" width="0.4" height="15.0" fill="rgb(231,108,29)" rx="2" ry="2" />
<text x="213.65" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3998 (171 samples, 0.01%)</title><rect x="102.8" y="1189" width="0.2" height="15.0" fill="rgb(232,53,15)" rx="2" ry="2" />
<text x="105.82" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (137 samples, 0.01%)</title><rect x="616.7" y="1205" width="0.1" height="15.0" fill="rgb(207,103,4)" rx="2" ry="2" />
<text x="619.71" y="1215.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (407 samples, 0.03%)</title><rect x="159.8" y="1269" width="0.4" height="15.0" fill="rgb(208,195,48)" rx="2" ry="2" />
<text x="162.84" y="1279.5" ></text>
</g>
<g >
<title>caml_blit_bytes (238 samples, 0.02%)</title><rect x="244.2" y="1269" width="0.2" height="15.0" fill="rgb(234,124,9)" rx="2" ry="2" />
<text x="247.21" y="1279.5" ></text>
</g>
<g >
<title>ml_blake2b_update (127 samples, 0.01%)</title><rect x="548.9" y="1189" width="0.1" height="15.0" fill="rgb(248,191,46)" rx="2" ry="2" />
<text x="551.87" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (692 samples, 0.06%)</title><rect x="445.1" y="1237" width="0.7" height="15.0" fill="rgb(243,127,12)" rx="2" ry="2" />
<text x="448.10" y="1247.5" ></text>
</g>
<g >
<title>caml_pread (445 samples, 0.04%)</title><rect x="213.7" y="1141" width="0.5" height="15.0" fill="rgb(248,187,34)" rx="2" ry="2" />
<text x="216.73" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (363 samples, 0.03%)</title><rect x="330.5" y="1285" width="0.4" height="15.0" fill="rgb(254,97,9)" rx="2" ry="2" />
<text x="333.55" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (784 samples, 0.06%)</title><rect x="422.4" y="1173" width="0.8" height="15.0" fill="rgb(243,205,15)" rx="2" ry="2" />
<text x="425.44" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Bytes_encodings__set_int32_be_1119 (187 samples, 0.02%)</title><rect x="736.8" y="1205" width="0.1" height="15.0" fill="rgb(226,75,46)" rx="2" ry="2" />
<text x="739.76" y="1215.5" ></text>
</g>
<g >
<title>caml_start_program (1,127,733 samples, 92.67%)</title><rect x="92.2" y="1957" width="1093.5" height="15.0" fill="rgb(239,229,20)" rx="2" ry="2" />
<text x="95.23" y="1967.5" >caml_start_program</text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_9250 (105 samples, 0.01%)</title><rect x="1176.8" y="1253" width="0.1" height="15.0" fill="rgb(225,85,18)" rx="2" ry="2" />
<text x="1179.82" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (17,881 samples, 1.47%)</title><rect x="716.0" y="1317" width="17.3" height="15.0" fill="rgb(219,110,53)" rx="2" ry="2" />
<text x="719.00" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (143 samples, 0.01%)</title><rect x="912.7" y="1173" width="0.1" height="15.0" fill="rgb(232,113,25)" rx="2" ry="2" />
<text x="915.71" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (125 samples, 0.01%)</title><rect x="846.2" y="1237" width="0.1" height="15.0" fill="rgb(236,1,10)" rx="2" ry="2" />
<text x="849.22" y="1247.5" ></text>
</g>
<g >
<title>store64 (208 samples, 0.02%)</title><rect x="707.1" y="1253" width="0.2" height="15.0" fill="rgb(247,81,12)" rx="2" ry="2" />
<text x="710.08" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (209 samples, 0.02%)</title><rect x="1179.5" y="1141" width="0.2" height="15.0" fill="rgb(234,75,5)" rx="2" ry="2" />
<text x="1182.54" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (173 samples, 0.01%)</title><rect x="988.7" y="1365" width="0.1" height="15.0" fill="rgb(236,88,16)" rx="2" ry="2" />
<text x="991.67" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_one (698 samples, 0.06%)</title><rect x="676.0" y="1221" width="0.7" height="15.0" fill="rgb(235,68,28)" rx="2" ry="2" />
<text x="679.05" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (7,150 samples, 0.59%)</title><rect x="515.1" y="981" width="6.9" height="15.0" fill="rgb(253,124,36)" rx="2" ry="2" />
<text x="518.07" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_small (207 samples, 0.02%)</title><rect x="1005.1" y="1317" width="0.3" height="15.0" fill="rgb(215,32,22)" rx="2" ry="2" />
<text x="1008.15" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (155 samples, 0.01%)</title><rect x="61.7" y="1813" width="0.1" height="15.0" fill="rgb(226,79,7)" rx="2" ry="2" />
<text x="64.69" y="1823.5" ></text>
</g>
<g >
<title>mark_slice (433 samples, 0.04%)</title><rect x="53.4" y="1845" width="0.5" height="15.0" fill="rgb(218,156,18)" rx="2" ry="2" />
<text x="56.44" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__callback_3196 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1669" width="1.3" height="15.0" fill="rgb(216,33,13)" rx="2" ry="2" />
<text x="1175.52" y="1679.5" ></text>
</g>
<g >
<title>mark_slice (827 samples, 0.07%)</title><rect x="685.3" y="1205" width="0.8" height="15.0" fill="rgb(226,11,23)" rx="2" ry="2" />
<text x="688.31" y="1215.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (955 samples, 0.08%)</title><rect x="725.7" y="1157" width="0.9" height="15.0" fill="rgb(243,62,34)" rx="2" ry="2" />
<text x="728.69" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (920 samples, 0.08%)</title><rect x="75.5" y="1957" width="0.9" height="15.0" fill="rgb(207,229,3)" rx="2" ry="2" />
<text x="78.53" y="1967.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (2,116 samples, 0.17%)</title><rect x="968.8" y="1141" width="2.1" height="15.0" fill="rgb(209,214,9)" rx="2" ry="2" />
<text x="971.84" y="1151.5" ></text>
</g>
<g >
<title>caml_blit_bytes (173 samples, 0.01%)</title><rect x="967.5" y="1141" width="0.2" height="15.0" fill="rgb(242,137,54)" rx="2" ry="2" />
<text x="970.49" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (295 samples, 0.02%)</title><rect x="606.2" y="1237" width="0.3" height="15.0" fill="rgb(244,22,44)" rx="2" ry="2" />
<text x="609.24" y="1247.5" ></text>
</g>
<g >
<title>mdb_cursor_touch (3,597 samples, 0.30%)</title><rect x="1143.4" y="1381" width="3.5" height="15.0" fill="rgb(229,49,29)" rx="2" ry="2" />
<text x="1146.43" y="1391.5" ></text>
</g>
<g >
<title>mdb_page_spill (147 samples, 0.01%)</title><rect x="870.9" y="1205" width="0.1" height="15.0" fill="rgb(213,103,35)" rx="2" ry="2" />
<text x="873.87" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (167 samples, 0.01%)</title><rect x="480.1" y="1285" width="0.1" height="15.0" fill="rgb(232,64,31)" rx="2" ry="2" />
<text x="483.07" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (6,005 samples, 0.49%)</title><rect x="640.0" y="1253" width="5.8" height="15.0" fill="rgb(234,117,0)" rx="2" ry="2" />
<text x="642.99" y="1263.5" ></text>
</g>
<g >
<title>ml_blake2b_final (609 samples, 0.05%)</title><rect x="566.3" y="1093" width="0.6" height="15.0" fill="rgb(208,160,19)" rx="2" ry="2" />
<text x="569.28" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (118 samples, 0.01%)</title><rect x="618.4" y="1285" width="0.1" height="15.0" fill="rgb(238,87,12)" rx="2" ry="2" />
<text x="621.37" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (307 samples, 0.03%)</title><rect x="382.1" y="1237" width="0.3" height="15.0" fill="rgb(220,91,39)" rx="2" ry="2" />
<text x="385.15" y="1247.5" ></text>
</g>
<g >
<title>apparmor_file_permission (173 samples, 0.01%)</title><rect x="314.6" y="1045" width="0.1" height="15.0" fill="rgb(214,189,4)" rx="2" ry="2" />
<text x="317.58" y="1055.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (238 samples, 0.02%)</title><rect x="589.4" y="1077" width="0.2" height="15.0" fill="rgb(224,36,2)" rx="2" ry="2" />
<text x="592.41" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_9686 (126 samples, 0.01%)</title><rect x="1173.7" y="613" width="0.1" height="15.0" fill="rgb(228,107,21)" rx="2" ry="2" />
<text x="1176.68" y="623.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (143 samples, 0.01%)</title><rect x="888.4" y="1221" width="0.1" height="15.0" fill="rgb(214,55,14)" rx="2" ry="2" />
<text x="891.37" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (132 samples, 0.01%)</title><rect x="103.5" y="1157" width="0.1" height="15.0" fill="rgb(216,147,22)" rx="2" ry="2" />
<text x="106.52" y="1167.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (270 samples, 0.02%)</title><rect x="941.8" y="1077" width="0.3" height="15.0" fill="rgb(252,153,7)" rx="2" ry="2" />
<text x="944.81" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (367 samples, 0.03%)</title><rect x="61.6" y="1877" width="0.3" height="15.0" fill="rgb(209,194,0)" rx="2" ry="2" />
<text x="64.57" y="1887.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (21,976 samples, 1.81%)</title><rect x="821.6" y="1173" width="21.3" height="15.0" fill="rgb(237,111,43)" rx="2" ry="2" />
<text x="824.59" y="1183.5" >c..</text>
</g>
<g >
<title>mark_slice (282 samples, 0.02%)</title><rect x="345.4" y="981" width="0.3" height="15.0" fill="rgb(205,140,23)" rx="2" ry="2" />
<text x="348.44" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__save_9703 (114 samples, 0.01%)</title><rect x="385.3" y="1285" width="0.1" height="15.0" fill="rgb(213,170,8)" rx="2" ry="2" />
<text x="388.30" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (578 samples, 0.05%)</title><rect x="332.0" y="1301" width="0.5" height="15.0" fill="rgb(210,176,39)" rx="2" ry="2" />
<text x="334.99" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (107 samples, 0.01%)</title><rect x="547.1" y="1189" width="0.1" height="15.0" fill="rgb(249,106,2)" rx="2" ry="2" />
<text x="550.14" y="1199.5" ></text>
</g>
<g >
<title>caml_tuplify3 (1,374 samples, 0.11%)</title><rect x="63.2" y="1909" width="1.4" height="15.0" fill="rgb(243,174,42)" rx="2" ry="2" />
<text x="66.23" y="1919.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (149 samples, 0.01%)</title><rect x="736.0" y="1221" width="0.2" height="15.0" fill="rgb(235,210,52)" rx="2" ry="2" />
<text x="739.03" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_final (713 samples, 0.06%)</title><rect x="561.6" y="1189" width="0.7" height="15.0" fill="rgb(245,44,16)" rx="2" ry="2" />
<text x="564.65" y="1199.5" ></text>
</g>
<g >
<title>blake2b_final (486 samples, 0.04%)</title><rect x="512.8" y="965" width="0.4" height="15.0" fill="rgb(244,46,37)" rx="2" ry="2" />
<text x="515.75" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (637 samples, 0.05%)</title><rect x="987.2" y="1317" width="0.7" height="15.0" fill="rgb(205,206,8)" rx="2" ry="2" />
<text x="990.24" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (782 samples, 0.06%)</title><rect x="991.2" y="1445" width="0.7" height="15.0" fill="rgb(243,147,3)" rx="2" ry="2" />
<text x="994.18" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__decode_bin_12179 (1,590 samples, 0.13%)</title><rect x="215.9" y="1269" width="1.5" height="15.0" fill="rgb(244,192,8)" rx="2" ry="2" />
<text x="218.89" y="1279.5" ></text>
</g>
<g >
<title>memcpy (134 samples, 0.01%)</title><rect x="877.2" y="1157" width="0.1" height="15.0" fill="rgb(226,39,9)" rx="2" ry="2" />
<text x="880.18" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (747 samples, 0.06%)</title><rect x="102.0" y="1141" width="0.7" height="15.0" fill="rgb(232,1,39)" rx="2" ry="2" />
<text x="104.99" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3394 (137 samples, 0.01%)</title><rect x="187.0" y="1189" width="0.2" height="15.0" fill="rgb(228,0,42)" rx="2" ry="2" />
<text x="190.04" y="1199.5" ></text>
</g>
<g >
<title>caml_string_compare (428 samples, 0.04%)</title><rect x="236.8" y="1253" width="0.5" height="15.0" fill="rgb(226,140,27)" rx="2" ry="2" />
<text x="239.84" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (4,123 samples, 0.34%)</title><rect x="515.5" y="965" width="4.0" height="15.0" fill="rgb(207,79,23)" rx="2" ry="2" />
<text x="518.47" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (1,873 samples, 0.15%)</title><rect x="459.6" y="1157" width="1.8" height="15.0" fill="rgb(222,152,37)" rx="2" ry="2" />
<text x="462.58" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__map__find_1120 (186 samples, 0.02%)</title><rect x="877.9" y="1253" width="0.2" height="15.0" fill="rgb(241,182,30)" rx="2" ry="2" />
<text x="880.91" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (142 samples, 0.01%)</title><rect x="95.2" y="1269" width="0.1" height="15.0" fill="rgb(252,144,35)" rx="2" ry="2" />
<text x="98.15" y="1279.5" ></text>
</g>
<g >
<title>camlBigstring__init_1315 (160 samples, 0.01%)</title><rect x="488.6" y="1269" width="0.2" height="15.0" fill="rgb(248,76,24)" rx="2" ry="2" />
<text x="491.64" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_base__Block_header__hash_2844 (4,560 samples, 0.37%)</title><rect x="490.0" y="1381" width="4.4" height="15.0" fill="rgb(248,53,47)" rx="2" ry="2" />
<text x="493.02" y="1391.5" ></text>
</g>
<g >
<title>mark_slice (260 samples, 0.02%)</title><rect x="885.3" y="1205" width="0.3" height="15.0" fill="rgb(250,30,43)" rx="2" ry="2" />
<text x="888.33" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (124 samples, 0.01%)</title><rect x="526.3" y="997" width="0.1" height="15.0" fill="rgb(249,22,7)" rx="2" ry="2" />
<text x="529.27" y="1007.5" ></text>
</g>
<g >
<title>caml_alloc_string (418 samples, 0.03%)</title><rect x="804.8" y="1221" width="0.4" height="15.0" fill="rgb(214,86,6)" rx="2" ry="2" />
<text x="807.80" y="1231.5" ></text>
</g>
<g >
<title>sys_pread64 (137 samples, 0.01%)</title><rect x="467.9" y="917" width="0.2" height="15.0" fill="rgb(218,209,3)" rx="2" ry="2" />
<text x="470.93" y="927.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (131 samples, 0.01%)</title><rect x="499.3" y="1269" width="0.2" height="15.0" fill="rgb(213,15,34)" rx="2" ry="2" />
<text x="502.34" y="1279.5" ></text>
</g>
<g >
<title>sweep_slice (510 samples, 0.04%)</title><rect x="909.7" y="1125" width="0.5" height="15.0" fill="rgb(241,153,27)" rx="2" ry="2" />
<text x="912.68" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_11965 (131 samples, 0.01%)</title><rect x="202.5" y="1205" width="0.1" height="15.0" fill="rgb(246,144,3)" rx="2" ry="2" />
<text x="205.46" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__init_1018 (145 samples, 0.01%)</title><rect x="1172.5" y="805" width="0.2" height="15.0" fill="rgb(212,27,28)" rx="2" ry="2" />
<text x="1175.55" y="815.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (114 samples, 0.01%)</title><rect x="703.2" y="1317" width="0.1" height="15.0" fill="rgb(235,178,1)" rx="2" ry="2" />
<text x="706.24" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (237 samples, 0.02%)</title><rect x="1182.3" y="1653" width="0.2" height="15.0" fill="rgb(248,190,34)" rx="2" ry="2" />
<text x="1185.25" y="1663.5" ></text>
</g>
<g >
<title>caml_alloc_string (127 samples, 0.01%)</title><rect x="160.5" y="1349" width="0.1" height="15.0" fill="rgb(222,144,14)" rx="2" ry="2" />
<text x="163.46" y="1359.5" ></text>
</g>
<g >
<title>do_compaction (985 samples, 0.08%)</title><rect x="287.6" y="1109" width="1.0" height="15.0" fill="rgb(233,216,36)" rx="2" ry="2" />
<text x="290.60" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (3,003 samples, 0.25%)</title><rect x="491.2" y="1333" width="3.0" height="15.0" fill="rgb(209,34,28)" rx="2" ry="2" />
<text x="494.25" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8022 (151 samples, 0.01%)</title><rect x="399.3" y="1093" width="0.2" height="15.0" fill="rgb(232,75,31)" rx="2" ry="2" />
<text x="402.34" y="1103.5" ></text>
</g>
<g >
<title>caml_string_length (144 samples, 0.01%)</title><rect x="1006.9" y="1365" width="0.1" height="15.0" fill="rgb(228,87,42)" rx="2" ry="2" />
<text x="1009.88" y="1375.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (121 samples, 0.01%)</title><rect x="1184.6" y="1429" width="0.1" height="15.0" fill="rgb(206,220,6)" rx="2" ry="2" />
<text x="1187.60" y="1439.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3432 (1,525 samples, 0.13%)</title><rect x="1148.7" y="1461" width="1.5" height="15.0" fill="rgb(209,123,41)" rx="2" ry="2" />
<text x="1151.68" y="1471.5" ></text>
</g>
<g >
<title>mdb_page_search_root (388 samples, 0.03%)</title><rect x="487.3" y="1173" width="0.4" height="15.0" fill="rgb(209,87,54)" rx="2" ry="2" />
<text x="490.28" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_9707 (152 samples, 0.01%)</title><rect x="93.6" y="1141" width="0.2" height="15.0" fill="rgb(218,6,54)" rx="2" ry="2" />
<text x="96.62" y="1151.5" ></text>
</g>
<g >
<title>caml_blit_bytes (112 samples, 0.01%)</title><rect x="801.2" y="1237" width="0.1" height="15.0" fill="rgb(254,37,9)" rx="2" ry="2" />
<text x="804.15" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (235 samples, 0.02%)</title><rect x="427.8" y="1077" width="0.2" height="15.0" fill="rgb(215,201,19)" rx="2" ry="2" />
<text x="430.78" y="1087.5" ></text>
</g>
<g >
<title>caml_apply2 (203 samples, 0.02%)</title><rect x="240.4" y="1333" width="0.2" height="15.0" fill="rgb(249,4,52)" rx="2" ry="2" />
<text x="243.36" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (245 samples, 0.02%)</title><rect x="118.7" y="1189" width="0.2" height="15.0" fill="rgb(251,178,5)" rx="2" ry="2" />
<text x="121.68" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (324 samples, 0.03%)</title><rect x="708.2" y="1285" width="0.3" height="15.0" fill="rgb(231,84,24)" rx="2" ry="2" />
<text x="711.21" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (5,183 samples, 0.43%)</title><rect x="733.7" y="1285" width="5.1" height="15.0" fill="rgb(247,166,1)" rx="2" ry="2" />
<text x="736.74" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (208 samples, 0.02%)</title><rect x="467.9" y="1029" width="0.2" height="15.0" fill="rgb(252,215,9)" rx="2" ry="2" />
<text x="470.89" y="1039.5" ></text>
</g>
<g >
<title>_int_malloc (621 samples, 0.05%)</title><rect x="856.9" y="1189" width="0.6" height="15.0" fill="rgb(219,41,38)" rx="2" ry="2" />
<text x="859.93" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (303 samples, 0.02%)</title><rect x="71.8" y="1845" width="0.3" height="15.0" fill="rgb(240,81,24)" rx="2" ry="2" />
<text x="74.81" y="1855.5" ></text>
</g>
<g >
<title>mark_slice_darken (213 samples, 0.02%)</title><rect x="957.2" y="1125" width="0.2" height="15.0" fill="rgb(225,160,26)" rx="2" ry="2" />
<text x="960.18" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_11520 (1,332 samples, 0.11%)</title><rect x="368.7" y="1205" width="1.3" height="15.0" fill="rgb(234,150,6)" rx="2" ry="2" />
<text x="371.73" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (1,141 samples, 0.09%)</title><rect x="300.3" y="1157" width="1.1" height="15.0" fill="rgb(229,170,23)" rx="2" ry="2" />
<text x="303.34" y="1167.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (161 samples, 0.01%)</title><rect x="1184.3" y="1381" width="0.1" height="15.0" fill="rgb(253,127,37)" rx="2" ry="2" />
<text x="1187.28" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7532 (349 samples, 0.03%)</title><rect x="421.9" y="1173" width="0.4" height="15.0" fill="rgb(212,95,41)" rx="2" ry="2" />
<text x="424.92" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (280 samples, 0.02%)</title><rect x="281.0" y="1333" width="0.3" height="15.0" fill="rgb(218,53,36)" rx="2" ry="2" />
<text x="284.03" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (3,808 samples, 0.31%)</title><rect x="465.0" y="1109" width="3.7" height="15.0" fill="rgb(237,157,6)" rx="2" ry="2" />
<text x="467.98" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (980 samples, 0.08%)</title><rect x="592.7" y="1061" width="0.9" height="15.0" fill="rgb(213,179,17)" rx="2" ry="2" />
<text x="595.66" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (834 samples, 0.07%)</title><rect x="828.9" y="1045" width="0.8" height="15.0" fill="rgb(205,206,47)" rx="2" ry="2" />
<text x="831.88" y="1055.5" ></text>
</g>
<g >
<title>ml_blake2b_final (235 samples, 0.02%)</title><rect x="573.7" y="917" width="0.2" height="15.0" fill="rgb(253,165,37)" rx="2" ry="2" />
<text x="576.67" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (51,651 samples, 4.24%)</title><rect x="500.6" y="1285" width="50.1" height="15.0" fill="rgb(237,160,32)" rx="2" ry="2" />
<text x="503.65" y="1295.5" >camlS..</text>
</g>
<g >
<title>caml_oldify_mopup (248 samples, 0.02%)</title><rect x="941.8" y="1061" width="0.3" height="15.0" fill="rgb(233,200,9)" rx="2" ry="2" />
<text x="944.84" y="1071.5" ></text>
</g>
<g >
<title>memcpy (734 samples, 0.06%)</title><rect x="789.7" y="1173" width="0.7" height="15.0" fill="rgb(208,100,22)" rx="2" ry="2" />
<text x="792.70" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3806 (171 samples, 0.01%)</title><rect x="310.7" y="1157" width="0.1" height="15.0" fill="rgb(214,229,3)" rx="2" ry="2" />
<text x="313.68" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (866 samples, 0.07%)</title><rect x="114.9" y="1141" width="0.8" height="15.0" fill="rgb(247,84,11)" rx="2" ry="2" />
<text x="117.86" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (108 samples, 0.01%)</title><rect x="1177.8" y="1109" width="0.1" height="15.0" fill="rgb(250,207,26)" rx="2" ry="2" />
<text x="1180.77" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_9795 (2,372 samples, 0.19%)</title><rect x="125.9" y="1173" width="2.3" height="15.0" fill="rgb(248,91,9)" rx="2" ry="2" />
<text x="128.89" y="1183.5" ></text>
</g>
<g >
<title>memmove (108 samples, 0.01%)</title><rect x="421.5" y="1125" width="0.1" height="15.0" fill="rgb(246,104,52)" rx="2" ry="2" />
<text x="424.51" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (688 samples, 0.06%)</title><rect x="546.7" y="1237" width="0.7" height="15.0" fill="rgb(209,199,25)" rx="2" ry="2" />
<text x="549.69" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1333" width="1.6" height="15.0" fill="rgb(240,201,31)" rx="2" ry="2" />
<text x="1189.27" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (172 samples, 0.01%)</title><rect x="989.3" y="1349" width="0.2" height="15.0" fill="rgb(241,25,39)" rx="2" ry="2" />
<text x="992.32" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (252 samples, 0.02%)</title><rect x="463.2" y="1141" width="0.2" height="15.0" fill="rgb(251,228,14)" rx="2" ry="2" />
<text x="466.18" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (63,159 samples, 5.19%)</title><rect x="557.5" y="1317" width="61.2" height="15.0" fill="rgb(227,136,53)" rx="2" ry="2" />
<text x="560.46" y="1327.5" >camlSt..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1029" width="1.6" height="15.0" fill="rgb(223,29,27)" rx="2" ry="2" />
<text x="1189.27" y="1039.5" ></text>
</g>
<g >
<title>camlIndex__compare_2487 (223 samples, 0.02%)</title><rect x="183.9" y="1205" width="0.2" height="15.0" fill="rgb(214,229,47)" rx="2" ry="2" />
<text x="186.91" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (114 samples, 0.01%)</title><rect x="254.5" y="1189" width="0.1" height="15.0" fill="rgb(246,67,43)" rx="2" ry="2" />
<text x="257.48" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (684 samples, 0.06%)</title><rect x="512.1" y="1045" width="0.6" height="15.0" fill="rgb(213,17,42)" rx="2" ry="2" />
<text x="515.05" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (9,040 samples, 0.74%)</title><rect x="1087.8" y="1397" width="8.8" height="15.0" fill="rgb(243,134,49)" rx="2" ry="2" />
<text x="1090.83" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (677 samples, 0.06%)</title><rect x="1163.0" y="1509" width="0.7" height="15.0" fill="rgb(237,5,29)" rx="2" ry="2" />
<text x="1166.03" y="1519.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (124 samples, 0.01%)</title><rect x="1176.6" y="1189" width="0.1" height="15.0" fill="rgb(206,79,15)" rx="2" ry="2" />
<text x="1179.60" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__return_2462 (262 samples, 0.02%)</title><rect x="848.6" y="1285" width="0.2" height="15.0" fill="rgb(237,219,38)" rx="2" ry="2" />
<text x="851.55" y="1295.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (118 samples, 0.01%)</title><rect x="516.2" y="901" width="0.1" height="15.0" fill="rgb(242,117,8)" rx="2" ry="2" />
<text x="519.15" y="911.5" ></text>
</g>
<g >
<title>mdb_txn_commit (209 samples, 0.02%)</title><rect x="46.5" y="2037" width="0.2" height="15.0" fill="rgb(249,10,51)" rx="2" ry="2" />
<text x="49.51" y="2047.5" ></text>
</g>
<g >
<title>ml_blake2b_update (1,550 samples, 0.13%)</title><rect x="688.4" y="1253" width="1.5" height="15.0" fill="rgb(242,184,20)" rx="2" ry="2" />
<text x="691.40" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (1,182 samples, 0.10%)</title><rect x="404.6" y="1157" width="1.1" height="15.0" fill="rgb(227,193,32)" rx="2" ry="2" />
<text x="407.56" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,107 samples, 0.09%)</title><rect x="473.0" y="1285" width="1.0" height="15.0" fill="rgb(239,31,44)" rx="2" ry="2" />
<text x="475.95" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (199 samples, 0.02%)</title><rect x="741.9" y="1253" width="0.2" height="15.0" fill="rgb(224,114,43)" rx="2" ry="2" />
<text x="744.86" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,108 samples, 0.09%)</title><rect x="516.4" y="597" width="1.1" height="15.0" fill="rgb(220,196,33)" rx="2" ry="2" />
<text x="519.45" y="607.5" ></text>
</g>
<g >
<title>caml_alloc_string (265 samples, 0.02%)</title><rect x="1113.7" y="1349" width="0.3" height="15.0" fill="rgb(222,162,18)" rx="2" ry="2" />
<text x="1116.69" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (643 samples, 0.05%)</title><rect x="375.3" y="1141" width="0.7" height="15.0" fill="rgb(219,56,12)" rx="2" ry="2" />
<text x="378.34" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (2,140 samples, 0.18%)</title><rect x="350.6" y="1237" width="2.1" height="15.0" fill="rgb(220,80,30)" rx="2" ry="2" />
<text x="353.63" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (282 samples, 0.02%)</title><rect x="475.6" y="1301" width="0.3" height="15.0" fill="rgb(215,73,8)" rx="2" ry="2" />
<text x="478.60" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (744 samples, 0.06%)</title><rect x="440.4" y="1253" width="0.7" height="15.0" fill="rgb(205,83,23)" rx="2" ry="2" />
<text x="443.43" y="1263.5" ></text>
</g>
<g >
<title>mdb_page_spill (138 samples, 0.01%)</title><rect x="788.8" y="1205" width="0.2" height="15.0" fill="rgb(222,190,5)" rx="2" ry="2" />
<text x="791.84" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__to_bin_v_9526 (172 samples, 0.01%)</title><rect x="378.6" y="1253" width="0.2" height="15.0" fill="rgb(250,195,1)" rx="2" ry="2" />
<text x="381.59" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (152 samples, 0.01%)</title><rect x="532.5" y="1013" width="0.1" height="15.0" fill="rgb(215,103,42)" rx="2" ry="2" />
<text x="535.46" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (23,746 samples, 1.95%)</title><rect x="509.8" y="1093" width="23.0" height="15.0" fill="rgb(225,184,51)" rx="2" ry="2" />
<text x="512.76" y="1103.5" >c..</text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__iter_s_3227 (1,487 samples, 0.12%)</title><rect x="130.3" y="1285" width="1.4" height="15.0" fill="rgb(249,111,13)" rx="2" ry="2" />
<text x="133.29" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (469 samples, 0.04%)</title><rect x="131.3" y="1237" width="0.4" height="15.0" fill="rgb(219,93,48)" rx="2" ry="2" />
<text x="134.28" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="949" width="1.6" height="15.0" fill="rgb(210,131,39)" rx="2" ry="2" />
<text x="1189.27" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,014 samples, 0.08%)</title><rect x="516.5" y="517" width="0.9" height="15.0" fill="rgb(234,51,2)" rx="2" ry="2" />
<text x="519.46" y="527.5" ></text>
</g>
<g >
<title>caml_call_gc (573 samples, 0.05%)</title><rect x="985.2" y="1349" width="0.5" height="15.0" fill="rgb(208,27,53)" rx="2" ry="2" />
<text x="988.16" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (1,106 samples, 0.09%)</title><rect x="461.9" y="1109" width="1.1" height="15.0" fill="rgb(223,186,6)" rx="2" ry="2" />
<text x="464.89" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (124 samples, 0.01%)</title><rect x="499.5" y="1285" width="0.1" height="15.0" fill="rgb(210,99,6)" rx="2" ry="2" />
<text x="502.47" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (172 samples, 0.01%)</title><rect x="986.7" y="1333" width="0.2" height="15.0" fill="rgb(233,211,52)" rx="2" ry="2" />
<text x="989.71" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_9239 (153 samples, 0.01%)</title><rect x="127.4" y="1093" width="0.1" height="15.0" fill="rgb(248,6,31)" rx="2" ry="2" />
<text x="130.40" y="1103.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (7,958 samples, 0.65%)</title><rect x="450.8" y="1141" width="7.7" height="15.0" fill="rgb(229,143,44)" rx="2" ry="2" />
<text x="453.81" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (310 samples, 0.03%)</title><rect x="713.2" y="1221" width="0.3" height="15.0" fill="rgb(232,32,21)" rx="2" ry="2" />
<text x="716.21" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (762 samples, 0.06%)</title><rect x="520.5" y="885" width="0.8" height="15.0" fill="rgb(231,196,4)" rx="2" ry="2" />
<text x="523.52" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (117 samples, 0.01%)</title><rect x="802.5" y="1253" width="0.1" height="15.0" fill="rgb(228,41,0)" rx="2" ry="2" />
<text x="805.48" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (342 samples, 0.03%)</title><rect x="691.6" y="1189" width="0.3" height="15.0" fill="rgb(217,184,40)" rx="2" ry="2" />
<text x="694.61" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (123 samples, 0.01%)</title><rect x="438.5" y="1221" width="0.1" height="15.0" fill="rgb(219,82,37)" rx="2" ry="2" />
<text x="441.47" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3601 (111 samples, 0.01%)</title><rect x="355.1" y="1205" width="0.2" height="15.0" fill="rgb(234,163,6)" rx="2" ry="2" />
<text x="358.14" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (159 samples, 0.01%)</title><rect x="109.2" y="1141" width="0.2" height="15.0" fill="rgb(231,97,42)" rx="2" ry="2" />
<text x="112.23" y="1151.5" ></text>
</g>
<g >
<title>memcpy (111 samples, 0.01%)</title><rect x="133.3" y="1301" width="0.1" height="15.0" fill="rgb(206,124,20)" rx="2" ry="2" />
<text x="136.31" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (154 samples, 0.01%)</title><rect x="278.9" y="1189" width="0.1" height="15.0" fill="rgb(205,68,15)" rx="2" ry="2" />
<text x="281.90" y="1199.5" ></text>
</g>
<g >
<title>blake2b_init (111 samples, 0.01%)</title><rect x="611.7" y="1157" width="0.1" height="15.0" fill="rgb(236,129,10)" rx="2" ry="2" />
<text x="614.70" y="1167.5" ></text>
</g>
<g >
<title>blake2b_update (517 samples, 0.04%)</title><rect x="607.8" y="1189" width="0.5" height="15.0" fill="rgb(212,101,1)" rx="2" ry="2" />
<text x="610.83" y="1199.5" ></text>
</g>
<g >
<title>blake2b_compress (594 samples, 0.05%)</title><rect x="500.7" y="1189" width="0.6" height="15.0" fill="rgb(224,18,2)" rx="2" ry="2" />
<text x="503.72" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (335 samples, 0.03%)</title><rect x="102.1" y="1093" width="0.3" height="15.0" fill="rgb(245,170,11)" rx="2" ry="2" />
<text x="105.06" y="1103.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (305 samples, 0.03%)</title><rect x="524.6" y="997" width="0.3" height="15.0" fill="rgb(220,145,53)" rx="2" ry="2" />
<text x="527.64" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (334 samples, 0.03%)</title><rect x="429.8" y="1189" width="0.4" height="15.0" fill="rgb(241,34,11)" rx="2" ry="2" />
<text x="432.83" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (176 samples, 0.01%)</title><rect x="75.8" y="1861" width="0.2" height="15.0" fill="rgb(208,113,51)" rx="2" ry="2" />
<text x="78.80" y="1871.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (1,147 samples, 0.09%)</title><rect x="898.5" y="1157" width="1.1" height="15.0" fill="rgb(205,13,6)" rx="2" ry="2" />
<text x="901.50" y="1167.5" ></text>
</g>
<g >
<title>vsnprintf (1,440 samples, 0.12%)</title><rect x="809.8" y="1189" width="1.4" height="15.0" fill="rgb(211,105,27)" rx="2" ry="2" />
<text x="812.82" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1525 (438 samples, 0.04%)</title><rect x="183.4" y="1189" width="0.4" height="15.0" fill="rgb(253,147,28)" rx="2" ry="2" />
<text x="186.39" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (156 samples, 0.01%)</title><rect x="87.6" y="1909" width="0.1" height="15.0" fill="rgb(235,216,30)" rx="2" ry="2" />
<text x="90.59" y="1919.5" ></text>
</g>
<g >
<title>mark_slice_darken (104 samples, 0.01%)</title><rect x="554.4" y="1221" width="0.1" height="15.0" fill="rgb(206,91,43)" rx="2" ry="2" />
<text x="557.44" y="1231.5" ></text>
</g>
<g >
<title>__GI___clone (45,887 samples, 3.77%)</title><rect x="47.7" y="2053" width="44.5" height="15.0" fill="rgb(248,211,3)" rx="2" ry="2" />
<text x="50.67" y="2063.5" >__GI..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_atom_1078 (122 samples, 0.01%)</title><rect x="144.4" y="1333" width="0.1" height="15.0" fill="rgb(206,166,26)" rx="2" ry="2" />
<text x="147.42" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (110 samples, 0.01%)</title><rect x="491.6" y="1269" width="0.1" height="15.0" fill="rgb(237,103,38)" rx="2" ry="2" />
<text x="494.56" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (666 samples, 0.05%)</title><rect x="620.5" y="1285" width="0.6" height="15.0" fill="rgb(229,174,38)" rx="2" ry="2" />
<text x="623.46" y="1295.5" ></text>
</g>
<g >
<title>blake2b_compress (167 samples, 0.01%)</title><rect x="379.2" y="1125" width="0.2" height="15.0" fill="rgb(244,212,29)" rx="2" ry="2" />
<text x="382.19" y="1135.5" ></text>
</g>
<g >
<title>memcpy (127 samples, 0.01%)</title><rect x="1147.0" y="1365" width="0.1" height="15.0" fill="rgb(213,1,50)" rx="2" ry="2" />
<text x="1150.02" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (350 samples, 0.03%)</title><rect x="127.7" y="1077" width="0.4" height="15.0" fill="rgb(232,110,11)" rx="2" ry="2" />
<text x="130.74" y="1087.5" ></text>
</g>
<g >
<title>mdb_page_search_root (207 samples, 0.02%)</title><rect x="486.0" y="1205" width="0.2" height="15.0" fill="rgb(222,96,37)" rx="2" ry="2" />
<text x="488.97" y="1215.5" ></text>
</g>
<g >
<title>caml_modify (155 samples, 0.01%)</title><rect x="878.4" y="1253" width="0.1" height="15.0" fill="rgb(224,160,27)" rx="2" ry="2" />
<text x="881.39" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (205 samples, 0.02%)</title><rect x="1149.0" y="1429" width="0.2" height="15.0" fill="rgb(222,223,24)" rx="2" ry="2" />
<text x="1152.00" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (384 samples, 0.03%)</title><rect x="175.4" y="1189" width="0.4" height="15.0" fill="rgb(251,53,50)" rx="2" ry="2" />
<text x="178.42" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (207 samples, 0.02%)</title><rect x="619.7" y="1269" width="0.2" height="15.0" fill="rgb(225,76,9)" rx="2" ry="2" />
<text x="622.74" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1845" width="1.6" height="15.0" fill="rgb(237,33,40)" rx="2" ry="2" />
<text x="1189.27" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (105 samples, 0.01%)</title><rect x="480.0" y="1285" width="0.1" height="15.0" fill="rgb(241,107,19)" rx="2" ry="2" />
<text x="482.97" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (291 samples, 0.02%)</title><rect x="540.5" y="1141" width="0.3" height="15.0" fill="rgb(209,112,54)" rx="2" ry="2" />
<text x="543.50" y="1151.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (324 samples, 0.03%)</title><rect x="1183.1" y="1765" width="0.4" height="15.0" fill="rgb(206,36,39)" rx="2" ry="2" />
<text x="1186.15" y="1775.5" ></text>
</g>
<g >
<title>caml_garbage_collection (234 samples, 0.02%)</title><rect x="1167.2" y="1461" width="0.2" height="15.0" fill="rgb(228,34,40)" rx="2" ry="2" />
<text x="1170.22" y="1471.5" ></text>
</g>
<g >
<title>caml_stash_backtrace (1,061 samples, 0.09%)</title><rect x="1188.0" y="2037" width="1.1" height="15.0" fill="rgb(246,224,53)" rx="2" ry="2" />
<text x="1191.03" y="2047.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (534 samples, 0.04%)</title><rect x="601.2" y="1205" width="0.5" height="15.0" fill="rgb(209,80,5)" rx="2" ry="2" />
<text x="604.21" y="1215.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (2,566 samples, 0.21%)</title><rect x="1143.7" y="1349" width="2.5" height="15.0" fill="rgb(207,144,6)" rx="2" ry="2" />
<text x="1146.69" y="1359.5" ></text>
</g>
<g >
<title>caml_make_vect (1,380 samples, 0.11%)</title><rect x="329.6" y="1317" width="1.3" height="15.0" fill="rgb(252,13,49)" rx="2" ry="2" />
<text x="332.57" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (792 samples, 0.07%)</title><rect x="593.8" y="1157" width="0.8" height="15.0" fill="rgb(224,13,26)" rx="2" ry="2" />
<text x="596.81" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3357 (735 samples, 0.06%)</title><rect x="882.5" y="1285" width="0.7" height="15.0" fill="rgb(240,70,3)" rx="2" ry="2" />
<text x="885.50" y="1295.5" ></text>
</g>
<g >
<title>caml_blit_bytes (108 samples, 0.01%)</title><rect x="1092.7" y="1365" width="0.1" height="15.0" fill="rgb(248,55,28)" rx="2" ry="2" />
<text x="1095.71" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (129 samples, 0.01%)</title><rect x="378.0" y="1141" width="0.1" height="15.0" fill="rgb(205,59,3)" rx="2" ry="2" />
<text x="381.00" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (171 samples, 0.01%)</title><rect x="99.4" y="1125" width="0.2" height="15.0" fill="rgb(230,196,33)" rx="2" ry="2" />
<text x="102.41" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7532 (240 samples, 0.02%)</title><rect x="59.1" y="1877" width="0.2" height="15.0" fill="rgb(227,75,4)" rx="2" ry="2" />
<text x="62.09" y="1887.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (688 samples, 0.06%)</title><rect x="640.4" y="1237" width="0.6" height="15.0" fill="rgb(250,169,41)" rx="2" ry="2" />
<text x="643.35" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (115 samples, 0.01%)</title><rect x="105.6" y="1189" width="0.1" height="15.0" fill="rgb(251,71,38)" rx="2" ry="2" />
<text x="108.59" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (164 samples, 0.01%)</title><rect x="576.1" y="949" width="0.2" height="15.0" fill="rgb(211,33,46)" rx="2" ry="2" />
<text x="579.11" y="959.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (164 samples, 0.01%)</title><rect x="182.3" y="1157" width="0.1" height="15.0" fill="rgb(250,117,53)" rx="2" ry="2" />
<text x="185.25" y="1167.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (19,443 samples, 1.60%)</title><rect x="354.1" y="1253" width="18.9" height="15.0" fill="rgb(246,208,43)" rx="2" ry="2" />
<text x="357.14" y="1263.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (309 samples, 0.03%)</title><rect x="1182.7" y="1717" width="0.3" height="15.0" fill="rgb(231,37,39)" rx="2" ry="2" />
<text x="1185.67" y="1727.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (451 samples, 0.04%)</title><rect x="522.5" y="981" width="0.4" height="15.0" fill="rgb(221,213,10)" rx="2" ry="2" />
<text x="525.46" y="991.5" ></text>
</g>
<g >
<title>parse_format (130 samples, 0.01%)</title><rect x="986.5" y="1317" width="0.1" height="15.0" fill="rgb(212,41,5)" rx="2" ry="2" />
<text x="989.52" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__catch_2720 (1,055 samples, 0.09%)</title><rect x="93.1" y="1333" width="1.0" height="15.0" fill="rgb(217,19,47)" rx="2" ry="2" />
<text x="96.09" y="1343.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (117 samples, 0.01%)</title><rect x="1184.6" y="1397" width="0.1" height="15.0" fill="rgb(240,24,26)" rx="2" ry="2" />
<text x="1187.60" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (130 samples, 0.01%)</title><rect x="311.5" y="1077" width="0.1" height="15.0" fill="rgb(242,126,19)" rx="2" ry="2" />
<text x="314.46" y="1087.5" ></text>
</g>
<g >
<title>do_syscall_64 (316 samples, 0.03%)</title><rect x="89.4" y="1973" width="0.3" height="15.0" fill="rgb(222,106,41)" rx="2" ry="2" />
<text x="92.38" y="1983.5" ></text>
</g>
<g >
<title>mark_slice (243 samples, 0.02%)</title><rect x="882.9" y="1205" width="0.2" height="15.0" fill="rgb(232,61,10)" rx="2" ry="2" />
<text x="885.91" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (695 samples, 0.06%)</title><rect x="669.9" y="1253" width="0.6" height="15.0" fill="rgb(213,34,47)" rx="2" ry="2" />
<text x="672.86" y="1263.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (449 samples, 0.04%)</title><rect x="986.1" y="1269" width="0.4" height="15.0" fill="rgb(222,164,18)" rx="2" ry="2" />
<text x="989.09" y="1279.5" ></text>
</g>
<g >
<title>vsnprintf (421 samples, 0.03%)</title><rect x="990.3" y="1461" width="0.4" height="15.0" fill="rgb(208,78,48)" rx="2" ry="2" />
<text x="993.26" y="1471.5" ></text>
</g>
<g >
<title>blake2b_final (567 samples, 0.05%)</title><rect x="505.3" y="1109" width="0.6" height="15.0" fill="rgb(228,102,42)" rx="2" ry="2" />
<text x="508.33" y="1119.5" ></text>
</g>
<g >
<title>__pthread_mutex_unlock_usercnt (162 samples, 0.01%)</title><rect x="90.3" y="1989" width="0.2" height="15.0" fill="rgb(236,132,20)" rx="2" ry="2" />
<text x="93.32" y="1999.5" ></text>
</g>
<g >
<title>caml_call_gc (112 samples, 0.01%)</title><rect x="481.8" y="1333" width="0.1" height="15.0" fill="rgb(229,79,28)" rx="2" ry="2" />
<text x="484.75" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (120 samples, 0.01%)</title><rect x="816.2" y="1205" width="0.1" height="15.0" fill="rgb(205,171,9)" rx="2" ry="2" />
<text x="819.18" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (138 samples, 0.01%)</title><rect x="966.4" y="1093" width="0.1" height="15.0" fill="rgb(217,202,12)" rx="2" ry="2" />
<text x="969.41" y="1103.5" ></text>
</g>
<g >
<title>ml_blake2b_final (355 samples, 0.03%)</title><rect x="573.2" y="933" width="0.4" height="15.0" fill="rgb(238,50,8)" rx="2" ry="2" />
<text x="576.22" y="943.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (202 samples, 0.02%)</title><rect x="518.6" y="917" width="0.2" height="15.0" fill="rgb(231,185,44)" rx="2" ry="2" />
<text x="521.61" y="927.5" ></text>
</g>
<g >
<title>caml_call_gc (263 samples, 0.02%)</title><rect x="87.3" y="1893" width="0.3" height="15.0" fill="rgb(218,38,3)" rx="2" ry="2" />
<text x="90.30" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (150 samples, 0.01%)</title><rect x="127.6" y="1109" width="0.1" height="15.0" fill="rgb(230,73,48)" rx="2" ry="2" />
<text x="130.59" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__node_5019 (120 samples, 0.01%)</title><rect x="617.0" y="1269" width="0.1" height="15.0" fill="rgb(216,209,8)" rx="2" ry="2" />
<text x="619.96" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (880 samples, 0.07%)</title><rect x="473.0" y="1269" width="0.8" height="15.0" fill="rgb(229,156,4)" rx="2" ry="2" />
<text x="475.98" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8280 (114 samples, 0.01%)</title><rect x="296.8" y="1157" width="0.1" height="15.0" fill="rgb(238,138,19)" rx="2" ry="2" />
<text x="299.77" y="1167.5" ></text>
</g>
<g >
<title>mdb_node_search (120 samples, 0.01%)</title><rect x="486.0" y="1189" width="0.1" height="15.0" fill="rgb(248,56,11)" rx="2" ry="2" />
<text x="489.02" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (768 samples, 0.06%)</title><rect x="567.0" y="1125" width="0.7" height="15.0" fill="rgb(207,174,26)" rx="2" ry="2" />
<text x="570.00" y="1135.5" ></text>
</g>
<g >
<title>caml_tuplify2 (147 samples, 0.01%)</title><rect x="402.9" y="1125" width="0.1" height="15.0" fill="rgb(220,151,40)" rx="2" ry="2" />
<text x="405.87" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (203 samples, 0.02%)</title><rect x="113.8" y="1269" width="0.2" height="15.0" fill="rgb(235,109,20)" rx="2" ry="2" />
<text x="116.83" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (165 samples, 0.01%)</title><rect x="577.6" y="949" width="0.1" height="15.0" fill="rgb(238,108,20)" rx="2" ry="2" />
<text x="580.58" y="959.5" ></text>
</g>
<g >
<title>_start (1,127,796 samples, 92.68%)</title><rect x="92.2" y="2053" width="1093.6" height="15.0" fill="rgb(228,170,46)" rx="2" ry="2" />
<text x="95.23" y="2063.5" >_start</text>
</g>
<g >
<title>mark_slice (413 samples, 0.03%)</title><rect x="826.0" y="1061" width="0.4" height="15.0" fill="rgb(226,199,25)" rx="2" ry="2" />
<text x="829.02" y="1071.5" ></text>
</g>
<g >
<title>caml_blit_bytes (168 samples, 0.01%)</title><rect x="297.3" y="1109" width="0.2" height="15.0" fill="rgb(209,95,41)" rx="2" ry="2" />
<text x="300.31" y="1119.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (3,707 samples, 0.30%)</title><rect x="465.1" y="1093" width="3.6" height="15.0" fill="rgb(254,43,10)" rx="2" ry="2" />
<text x="468.06" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (222 samples, 0.02%)</title><rect x="169.9" y="1365" width="0.2" height="15.0" fill="rgb(242,211,4)" rx="2" ry="2" />
<text x="172.93" y="1375.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (2,632 samples, 0.22%)</title><rect x="105.2" y="1253" width="2.6" height="15.0" fill="rgb(233,36,42)" rx="2" ry="2" />
<text x="108.20" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__fun_32605 (1,184 samples, 0.10%)</title><rect x="152.8" y="1285" width="1.1" height="15.0" fill="rgb(234,135,29)" rx="2" ry="2" />
<text x="155.76" y="1295.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (324 samples, 0.03%)</title><rect x="1183.1" y="1733" width="0.4" height="15.0" fill="rgb(237,47,39)" rx="2" ry="2" />
<text x="1186.15" y="1743.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (744 samples, 0.06%)</title><rect x="708.8" y="1253" width="0.7" height="15.0" fill="rgb(213,82,23)" rx="2" ry="2" />
<text x="711.76" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (706 samples, 0.06%)</title><rect x="503.0" y="1205" width="0.7" height="15.0" fill="rgb(212,190,31)" rx="2" ry="2" />
<text x="506.00" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7329 (149 samples, 0.01%)</title><rect x="447.5" y="1221" width="0.1" height="15.0" fill="rgb(218,77,53)" rx="2" ry="2" />
<text x="450.50" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (203 samples, 0.02%)</title><rect x="57.1" y="1845" width="0.2" height="15.0" fill="rgb(243,228,30)" rx="2" ry="2" />
<text x="60.11" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__import_7323 (10,208 samples, 0.84%)</title><rect x="220.0" y="1301" width="9.9" height="15.0" fill="rgb(213,138,48)" rx="2" ry="2" />
<text x="223.02" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_6658 (130 samples, 0.01%)</title><rect x="482.3" y="1317" width="0.1" height="15.0" fill="rgb(207,18,32)" rx="2" ry="2" />
<text x="485.26" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (321 samples, 0.03%)</title><rect x="71.8" y="1877" width="0.3" height="15.0" fill="rgb(219,127,8)" rx="2" ry="2" />
<text x="74.81" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_6676 (6,519 samples, 0.54%)</title><rect x="269.4" y="1301" width="6.3" height="15.0" fill="rgb(216,228,49)" rx="2" ry="2" />
<text x="272.35" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (113 samples, 0.01%)</title><rect x="475.0" y="1253" width="0.1" height="15.0" fill="rgb(242,208,47)" rx="2" ry="2" />
<text x="477.98" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (60,720 samples, 4.99%)</title><rect x="558.3" y="1301" width="58.9" height="15.0" fill="rgb(216,209,13)" rx="2" ry="2" />
<text x="561.29" y="1311.5" >camlSt..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (126 samples, 0.01%)</title><rect x="129.7" y="1173" width="0.1" height="15.0" fill="rgb(231,227,11)" rx="2" ry="2" />
<text x="132.65" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (666 samples, 0.05%)</title><rect x="535.6" y="1109" width="0.6" height="15.0" fill="rgb(225,55,45)" rx="2" ry="2" />
<text x="538.56" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (715 samples, 0.06%)</title><rect x="207.9" y="1141" width="0.7" height="15.0" fill="rgb(224,74,17)" rx="2" ry="2" />
<text x="210.93" y="1151.5" ></text>
</g>
<g >
<title>sweep_slice (150 samples, 0.01%)</title><rect x="808.1" y="1189" width="0.1" height="15.0" fill="rgb(222,114,47)" rx="2" ry="2" />
<text x="811.08" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (249 samples, 0.02%)</title><rect x="96.0" y="1189" width="0.2" height="15.0" fill="rgb(233,226,25)" rx="2" ry="2" />
<text x="99.00" y="1199.5" ></text>
</g>
<g >
<title>page_fault (107 samples, 0.01%)</title><rect x="1189.9" y="2053" width="0.1" height="15.0" fill="rgb(250,159,31)" rx="2" ry="2" />
<text x="1192.87" y="2063.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_6658 (126 samples, 0.01%)</title><rect x="1173.7" y="661" width="0.1" height="15.0" fill="rgb(235,81,46)" rx="2" ry="2" />
<text x="1176.68" y="671.5" ></text>
</g>
<g >
<title>caml_call_gc (198 samples, 0.02%)</title><rect x="989.6" y="1557" width="0.1" height="15.0" fill="rgb(206,63,37)" rx="2" ry="2" />
<text x="992.55" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (132 samples, 0.01%)</title><rect x="308.9" y="1141" width="0.2" height="15.0" fill="rgb(252,38,8)" rx="2" ry="2" />
<text x="311.92" y="1151.5" ></text>
</g>
<g >
<title>do_compaction (905 samples, 0.07%)</title><rect x="426.8" y="1109" width="0.9" height="15.0" fill="rgb(239,206,23)" rx="2" ry="2" />
<text x="429.84" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__int_1156 (159 samples, 0.01%)</title><rect x="492.3" y="1301" width="0.1" height="15.0" fill="rgb(224,222,12)" rx="2" ry="2" />
<text x="495.26" y="1311.5" ></text>
</g>
<g >
<title>sys_pread64 (323 samples, 0.03%)</title><rect x="213.8" y="1077" width="0.3" height="15.0" fill="rgb(241,132,46)" rx="2" ry="2" />
<text x="216.83" y="1087.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (181 samples, 0.01%)</title><rect x="1185.2" y="1493" width="0.2" height="15.0" fill="rgb(243,94,16)" rx="2" ry="2" />
<text x="1188.25" y="1503.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_18369 (297 samples, 0.02%)</title><rect x="1173.5" y="981" width="0.3" height="15.0" fill="rgb(214,46,33)" rx="2" ry="2" />
<text x="1176.51" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_string (136 samples, 0.01%)</title><rect x="521.7" y="933" width="0.2" height="15.0" fill="rgb(239,0,36)" rx="2" ry="2" />
<text x="524.74" y="943.5" ></text>
</g>
<g >
<title>mark_slice (113 samples, 0.01%)</title><rect x="802.3" y="1205" width="0.1" height="15.0" fill="rgb(220,30,22)" rx="2" ry="2" />
<text x="805.31" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (116 samples, 0.01%)</title><rect x="341.1" y="1109" width="0.1" height="15.0" fill="rgb(205,59,53)" rx="2" ry="2" />
<text x="344.11" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6062 (2,303 samples, 0.19%)</title><rect x="158.4" y="1365" width="2.3" height="15.0" fill="rgb(211,210,18)" rx="2" ry="2" />
<text x="161.44" y="1375.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__make_int_padding_precision_3713 (124 samples, 0.01%)</title><rect x="1165.5" y="1509" width="0.1" height="15.0" fill="rgb(236,73,16)" rx="2" ry="2" />
<text x="1168.46" y="1519.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (129 samples, 0.01%)</title><rect x="702.0" y="1253" width="0.1" height="15.0" fill="rgb(251,106,13)" rx="2" ry="2" />
<text x="704.98" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (107 samples, 0.01%)</title><rect x="552.9" y="1221" width="0.1" height="15.0" fill="rgb(217,112,39)" rx="2" ry="2" />
<text x="555.91" y="1231.5" ></text>
</g>
<g >
<title>caml_lessequal (401 samples, 0.03%)</title><rect x="823.5" y="1141" width="0.4" height="15.0" fill="rgb(225,147,28)" rx="2" ry="2" />
<text x="826.51" y="1151.5" ></text>
</g>
<g >
<title>secure_zero_memory (117 samples, 0.01%)</title><rect x="634.2" y="1205" width="0.1" height="15.0" fill="rgb(240,64,28)" rx="2" ry="2" />
<text x="637.18" y="1215.5" ></text>
</g>
<g >
<title>mdb_page_search (9,483 samples, 0.78%)</title><rect x="776.8" y="1189" width="9.2" height="15.0" fill="rgb(221,80,27)" rx="2" ry="2" />
<text x="779.76" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (786 samples, 0.06%)</title><rect x="494.9" y="1349" width="0.8" height="15.0" fill="rgb(221,6,32)" rx="2" ry="2" />
<text x="497.95" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (237 samples, 0.02%)</title><rect x="451.7" y="1061" width="0.2" height="15.0" fill="rgb(211,205,14)" rx="2" ry="2" />
<text x="454.68" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (237 samples, 0.02%)</title><rect x="540.6" y="1125" width="0.2" height="15.0" fill="rgb(212,80,48)" rx="2" ry="2" />
<text x="543.55" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (153 samples, 0.01%)</title><rect x="1176.6" y="1205" width="0.2" height="15.0" fill="rgb(229,110,51)" rx="2" ry="2" />
<text x="1179.60" y="1215.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (313 samples, 0.03%)</title><rect x="990.4" y="1429" width="0.3" height="15.0" fill="rgb(242,202,9)" rx="2" ry="2" />
<text x="993.37" y="1439.5" ></text>
</g>
<g >
<title>caml_blit_bytes (311 samples, 0.03%)</title><rect x="1113.4" y="1333" width="0.3" height="15.0" fill="rgb(251,144,39)" rx="2" ry="2" />
<text x="1116.37" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__fun_4338 (920 samples, 0.08%)</title><rect x="75.5" y="1941" width="0.9" height="15.0" fill="rgb(254,50,11)" rx="2" ry="2" />
<text x="78.53" y="1951.5" ></text>
</g>
<g >
<title>caml_apply2 (273 samples, 0.02%)</title><rect x="400.2" y="1109" width="0.2" height="15.0" fill="rgb(239,92,20)" rx="2" ry="2" />
<text x="403.17" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (321 samples, 0.03%)</title><rect x="798.1" y="1205" width="0.3" height="15.0" fill="rgb(222,32,48)" rx="2" ry="2" />
<text x="801.09" y="1215.5" ></text>
</g>
<g >
<title>camlResto_directory__register_3308 (397 samples, 0.03%)</title><rect x="1182.7" y="1861" width="0.3" height="15.0" fill="rgb(251,211,40)" rx="2" ry="2" />
<text x="1185.65" y="1871.5" ></text>
</g>
<g >
<title>caml_apply2 (181 samples, 0.01%)</title><rect x="1071.1" y="1365" width="0.2" height="15.0" fill="rgb(212,143,20)" rx="2" ry="2" />
<text x="1074.08" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (309 samples, 0.03%)</title><rect x="376.6" y="1237" width="0.3" height="15.0" fill="rgb(231,52,15)" rx="2" ry="2" />
<text x="379.59" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,354 samples, 0.11%)</title><rect x="426.8" y="1141" width="1.4" height="15.0" fill="rgb(226,20,7)" rx="2" ry="2" />
<text x="429.84" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3768 (261 samples, 0.02%)</title><rect x="247.5" y="1237" width="0.3" height="15.0" fill="rgb(217,20,11)" rx="2" ry="2" />
<text x="250.53" y="1247.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (239 samples, 0.02%)</title><rect x="485.7" y="1285" width="0.2" height="15.0" fill="rgb(235,21,15)" rx="2" ry="2" />
<text x="488.68" y="1295.5" ></text>
</g>
<g >
<title>mdb_node_add (2,562 samples, 0.21%)</title><rect x="786.4" y="1205" width="2.4" height="15.0" fill="rgb(251,227,33)" rx="2" ry="2" />
<text x="789.35" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (310 samples, 0.03%)</title><rect x="488.3" y="1253" width="0.3" height="15.0" fill="rgb(220,139,4)" rx="2" ry="2" />
<text x="491.28" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (119 samples, 0.01%)</title><rect x="744.0" y="1253" width="0.1" height="15.0" fill="rgb(239,87,52)" rx="2" ry="2" />
<text x="746.99" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (127 samples, 0.01%)</title><rect x="356.6" y="1157" width="0.1" height="15.0" fill="rgb(211,149,16)" rx="2" ry="2" />
<text x="359.58" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (825 samples, 0.07%)</title><rect x="693.0" y="1301" width="0.8" height="15.0" fill="rgb(253,226,11)" rx="2" ry="2" />
<text x="695.98" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (1,554 samples, 0.13%)</title><rect x="1096.6" y="1397" width="1.5" height="15.0" fill="rgb(254,188,18)" rx="2" ry="2" />
<text x="1099.60" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (227 samples, 0.02%)</title><rect x="550.2" y="1221" width="0.2" height="15.0" fill="rgb(219,226,52)" rx="2" ry="2" />
<text x="553.17" y="1231.5" ></text>
</g>
<g >
<title>sweep_slice (323 samples, 0.03%)</title><rect x="672.0" y="1253" width="0.3" height="15.0" fill="rgb(239,24,3)" rx="2" ry="2" />
<text x="675.00" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (143 samples, 0.01%)</title><rect x="55.0" y="1877" width="0.1" height="15.0" fill="rgb(219,45,3)" rx="2" ry="2" />
<text x="57.96" y="1887.5" ></text>
</g>
<g >
<title>caml_garbage_collection (166 samples, 0.01%)</title><rect x="702.4" y="1269" width="0.2" height="15.0" fill="rgb(207,24,21)" rx="2" ry="2" />
<text x="705.44" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (141 samples, 0.01%)</title><rect x="538.8" y="1093" width="0.2" height="15.0" fill="rgb(210,11,45)" rx="2" ry="2" />
<text x="541.84" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_9795 (766 samples, 0.06%)</title><rect x="384.1" y="1205" width="0.7" height="15.0" fill="rgb(224,212,35)" rx="2" ry="2" />
<text x="387.08" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (8,874 samples, 0.73%)</title><rect x="416.8" y="1221" width="8.6" height="15.0" fill="rgb(211,83,0)" rx="2" ry="2" />
<text x="419.75" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (237 samples, 0.02%)</title><rect x="71.1" y="1941" width="0.2" height="15.0" fill="rgb(207,204,18)" rx="2" ry="2" />
<text x="74.10" y="1951.5" ></text>
</g>
<g >
<title>mark_slice (149 samples, 0.01%)</title><rect x="858.3" y="1205" width="0.2" height="15.0" fill="rgb(242,70,36)" rx="2" ry="2" />
<text x="861.34" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (623 samples, 0.05%)</title><rect x="507.5" y="1077" width="0.6" height="15.0" fill="rgb(243,89,46)" rx="2" ry="2" />
<text x="510.50" y="1087.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (238 samples, 0.02%)</title><rect x="1182.3" y="1685" width="0.2" height="15.0" fill="rgb(211,187,20)" rx="2" ry="2" />
<text x="1185.25" y="1695.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_004_Pt24m4xi__Alpha_services__register_16837 (474 samples, 0.04%)</title><rect x="1183.6" y="1909" width="0.4" height="15.0" fill="rgb(225,191,19)" rx="2" ry="2" />
<text x="1186.58" y="1919.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (255 samples, 0.02%)</title><rect x="690.1" y="1221" width="0.2" height="15.0" fill="rgb(219,5,44)" rx="2" ry="2" />
<text x="693.06" y="1231.5" ></text>
</g>
<g >
<title>mdb_node_search (23,652 samples, 1.94%)</title><rect x="1024.8" y="1285" width="23.0" height="15.0" fill="rgb(232,48,3)" rx="2" ry="2" />
<text x="1027.83" y="1295.5" >m..</text>
</g>
<g >
<title>__memmove_ssse3 (200 samples, 0.02%)</title><rect x="1148.0" y="1381" width="0.2" height="15.0" fill="rgb(206,14,0)" rx="2" ry="2" />
<text x="1151.05" y="1391.5" ></text>
</g>
<g >
<title>caml_compact_heap (1,057 samples, 0.09%)</title><rect x="519.5" y="901" width="1.0" height="15.0" fill="rgb(240,220,7)" rx="2" ry="2" />
<text x="522.50" y="911.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1173" width="1.3" height="15.0" fill="rgb(223,223,21)" rx="2" ry="2" />
<text x="1175.52" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (274 samples, 0.02%)</title><rect x="153.6" y="1253" width="0.2" height="15.0" fill="rgb(208,69,35)" rx="2" ry="2" />
<text x="156.57" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (366 samples, 0.03%)</title><rect x="733.4" y="1285" width="0.3" height="15.0" fill="rgb(237,220,24)" rx="2" ry="2" />
<text x="736.39" y="1295.5" ></text>
</g>
<g >
<title>do_syscall_64 (345 samples, 0.03%)</title><rect x="213.8" y="1093" width="0.3" height="15.0" fill="rgb(236,37,34)" rx="2" ry="2" />
<text x="216.81" y="1103.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (615 samples, 0.05%)</title><rect x="565.6" y="1125" width="0.6" height="15.0" fill="rgb(215,57,32)" rx="2" ry="2" />
<text x="568.56" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (25,113 samples, 2.06%)</title><rect x="929.9" y="1205" width="24.3" height="15.0" fill="rgb(249,225,19)" rx="2" ry="2" />
<text x="932.87" y="1215.5" >c..</text>
</g>
<g >
<title>camlLwt__resolve_2309 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1653" width="1.3" height="15.0" fill="rgb(206,104,10)" rx="2" ry="2" />
<text x="1175.52" y="1663.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (7,928 samples, 0.65%)</title><rect x="1122.7" y="1349" width="7.7" height="15.0" fill="rgb(229,171,49)" rx="2" ry="2" />
<text x="1125.74" y="1359.5" ></text>
</g>
<g >
<title>caml_apply2 (166 samples, 0.01%)</title><rect x="227.7" y="1205" width="0.1" height="15.0" fill="rgb(238,8,34)" rx="2" ry="2" />
<text x="230.66" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (163 samples, 0.01%)</title><rect x="774.0" y="1189" width="0.1" height="15.0" fill="rgb(234,28,24)" rx="2" ry="2" />
<text x="776.95" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (304 samples, 0.02%)</title><rect x="847.7" y="1237" width="0.3" height="15.0" fill="rgb(228,41,7)" rx="2" ry="2" />
<text x="850.66" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (144 samples, 0.01%)</title><rect x="714.6" y="1333" width="0.1" height="15.0" fill="rgb(207,46,50)" rx="2" ry="2" />
<text x="717.61" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (198 samples, 0.02%)</title><rect x="848.6" y="1253" width="0.2" height="15.0" fill="rgb(212,97,29)" rx="2" ry="2" />
<text x="851.61" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__stack__push_1012 (122 samples, 0.01%)</title><rect x="333.4" y="1317" width="0.1" height="15.0" fill="rgb(239,58,51)" rx="2" ry="2" />
<text x="336.36" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_7303 (805 samples, 0.07%)</title><rect x="232.1" y="1317" width="0.8" height="15.0" fill="rgb(220,156,15)" rx="2" ry="2" />
<text x="235.10" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,116 samples, 0.09%)</title><rect x="527.1" y="1013" width="1.0" height="15.0" fill="rgb(248,111,7)" rx="2" ry="2" />
<text x="530.07" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__map_2683 (186 samples, 0.02%)</title><rect x="231.0" y="1317" width="0.1" height="15.0" fill="rgb(208,158,14)" rx="2" ry="2" />
<text x="233.97" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (665 samples, 0.05%)</title><rect x="586.9" y="1093" width="0.6" height="15.0" fill="rgb(225,32,23)" rx="2" ry="2" />
<text x="589.86" y="1103.5" ></text>
</g>
<g >
<title>caml_apply2 (361 samples, 0.03%)</title><rect x="305.8" y="1173" width="0.3" height="15.0" fill="rgb(219,228,47)" rx="2" ry="2" />
<text x="308.80" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (111 samples, 0.01%)</title><rect x="1185.1" y="1317" width="0.1" height="15.0" fill="rgb(234,167,10)" rx="2" ry="2" />
<text x="1188.09" y="1327.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (793 samples, 0.07%)</title><rect x="599.5" y="1125" width="0.8" height="15.0" fill="rgb(245,174,45)" rx="2" ry="2" />
<text x="602.55" y="1135.5" ></text>
</g>
<g >
<title>__libc_write (106 samples, 0.01%)</title><rect x="91.7" y="1973" width="0.1" height="15.0" fill="rgb(243,179,12)" rx="2" ry="2" />
<text x="94.74" y="1983.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (173 samples, 0.01%)</title><rect x="1184.3" y="1477" width="0.1" height="15.0" fill="rgb(251,22,44)" rx="2" ry="2" />
<text x="1187.27" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (39,211 samples, 3.22%)</title><rect x="282.3" y="1269" width="38.0" height="15.0" fill="rgb(246,196,26)" rx="2" ry="2" />
<text x="285.30" y="1279.5" >cam..</text>
</g>
<g >
<title>caml_apply2 (107 samples, 0.01%)</title><rect x="219.6" y="1317" width="0.1" height="15.0" fill="rgb(212,176,53)" rx="2" ry="2" />
<text x="222.57" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (321 samples, 0.03%)</title><rect x="1092.4" y="1365" width="0.3" height="15.0" fill="rgb(218,178,13)" rx="2" ry="2" />
<text x="1095.40" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (313 samples, 0.03%)</title><rect x="1183.7" y="1637" width="0.3" height="15.0" fill="rgb(224,195,45)" rx="2" ry="2" />
<text x="1186.66" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_14214 (3,640 samples, 0.30%)</title><rect x="378.9" y="1253" width="3.5" height="15.0" fill="rgb(239,188,25)" rx="2" ry="2" />
<text x="381.92" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (323 samples, 0.03%)</title><rect x="300.0" y="1157" width="0.3" height="15.0" fill="rgb(207,10,33)" rx="2" ry="2" />
<text x="303.03" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (2,073 samples, 0.17%)</title><rect x="451.3" y="1077" width="2.0" height="15.0" fill="rgb(224,74,47)" rx="2" ry="2" />
<text x="454.27" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (260 samples, 0.02%)</title><rect x="595.6" y="1141" width="0.2" height="15.0" fill="rgb(210,7,5)" rx="2" ry="2" />
<text x="598.58" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (105 samples, 0.01%)</title><rect x="557.4" y="1301" width="0.1" height="15.0" fill="rgb(237,128,4)" rx="2" ry="2" />
<text x="560.36" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (728 samples, 0.06%)</title><rect x="709.7" y="1253" width="0.7" height="15.0" fill="rgb(209,114,17)" rx="2" ry="2" />
<text x="712.70" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (494 samples, 0.04%)</title><rect x="960.6" y="1045" width="0.5" height="15.0" fill="rgb(232,162,24)" rx="2" ry="2" />
<text x="963.59" y="1055.5" ></text>
</g>
<g >
<title>rotr64 (138 samples, 0.01%)</title><rect x="557.1" y="1221" width="0.1" height="15.0" fill="rgb(235,152,1)" rx="2" ry="2" />
<text x="560.07" y="1231.5" ></text>
</g>
<g >
<title>blake2b_final (796 samples, 0.07%)</title><rect x="558.4" y="1221" width="0.7" height="15.0" fill="rgb(238,203,34)" rx="2" ry="2" />
<text x="561.37" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (46,567 samples, 3.83%)</title><rect x="502.2" y="1253" width="45.2" height="15.0" fill="rgb(234,156,0)" rx="2" ry="2" />
<text x="505.24" y="1263.5" >caml..</text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__node_5019 (2,017 samples, 0.17%)</title><rect x="693.8" y="1317" width="1.9" height="15.0" fill="rgb(241,227,21)" rx="2" ry="2" />
<text x="696.78" y="1327.5" ></text>
</g>
<g >
<title>memmove (113 samples, 0.01%)</title><rect x="250.8" y="1205" width="0.1" height="15.0" fill="rgb(226,25,11)" rx="2" ry="2" />
<text x="253.80" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (110 samples, 0.01%)</title><rect x="1184.6" y="1317" width="0.1" height="15.0" fill="rgb(211,24,23)" rx="2" ry="2" />
<text x="1187.60" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,465 samples, 0.12%)</title><rect x="895.1" y="1205" width="1.4" height="15.0" fill="rgb(245,223,50)" rx="2" ry="2" />
<text x="898.10" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (137 samples, 0.01%)</title><rect x="121.7" y="1045" width="0.1" height="15.0" fill="rgb(209,32,25)" rx="2" ry="2" />
<text x="124.67" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="515.8" y="917" width="0.1" height="15.0" fill="rgb(247,45,13)" rx="2" ry="2" />
<text x="518.79" y="927.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (153 samples, 0.01%)</title><rect x="182.7" y="1157" width="0.2" height="15.0" fill="rgb(236,78,7)" rx="2" ry="2" />
<text x="185.74" y="1167.5" ></text>
</g>
<g >
<title>blake2b_final (485 samples, 0.04%)</title><rect x="572.2" y="949" width="0.4" height="15.0" fill="rgb(223,215,22)" rx="2" ry="2" />
<text x="575.17" y="959.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (211 samples, 0.02%)</title><rect x="720.0" y="1205" width="0.2" height="15.0" fill="rgb(234,150,23)" rx="2" ry="2" />
<text x="723.01" y="1215.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (755 samples, 0.06%)</title><rect x="1179.0" y="1173" width="0.7" height="15.0" fill="rgb(243,179,44)" rx="2" ry="2" />
<text x="1182.01" y="1183.5" ></text>
</g>
<g >
<title>memmove (188 samples, 0.02%)</title><rect x="1116.0" y="1333" width="0.2" height="15.0" fill="rgb(207,71,39)" rx="2" ry="2" />
<text x="1119.03" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (117 samples, 0.01%)</title><rect x="835.8" y="1045" width="0.2" height="15.0" fill="rgb(218,117,29)" rx="2" ry="2" />
<text x="838.84" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (191 samples, 0.02%)</title><rect x="79.7" y="1765" width="0.2" height="15.0" fill="rgb(250,218,12)" rx="2" ry="2" />
<text x="82.74" y="1775.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,312 samples, 0.11%)</title><rect x="541.8" y="1189" width="1.3" height="15.0" fill="rgb(217,208,52)" rx="2" ry="2" />
<text x="544.79" y="1199.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (1,252 samples, 0.10%)</title><rect x="357.3" y="1189" width="1.2" height="15.0" fill="rgb(238,192,47)" rx="2" ry="2" />
<text x="360.31" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7452 (201 samples, 0.02%)</title><rect x="424.0" y="1173" width="0.2" height="15.0" fill="rgb(217,186,32)" rx="2" ry="2" />
<text x="426.99" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7176 (219 samples, 0.02%)</title><rect x="368.4" y="1189" width="0.2" height="15.0" fill="rgb(219,75,44)" rx="2" ry="2" />
<text x="371.36" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__encode_bin_5937 (3,687 samples, 0.30%)</title><rect x="247.4" y="1253" width="3.5" height="15.0" fill="rgb(254,26,28)" rx="2" ry="2" />
<text x="250.35" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (730 samples, 0.06%)</title><rect x="543.1" y="1205" width="0.7" height="15.0" fill="rgb(211,77,21)" rx="2" ry="2" />
<text x="546.10" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (418 samples, 0.03%)</title><rect x="492.4" y="1301" width="0.5" height="15.0" fill="rgb(232,159,5)" rx="2" ry="2" />
<text x="495.44" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (329 samples, 0.03%)</title><rect x="734.5" y="1205" width="0.3" height="15.0" fill="rgb(234,24,40)" rx="2" ry="2" />
<text x="737.50" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (133 samples, 0.01%)</title><rect x="160.2" y="1317" width="0.2" height="15.0" fill="rgb(226,38,11)" rx="2" ry="2" />
<text x="163.24" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (949 samples, 0.08%)</title><rect x="686.4" y="1237" width="0.9" height="15.0" fill="rgb(215,36,40)" rx="2" ry="2" />
<text x="689.40" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (3,347 samples, 0.28%)</title><rect x="20.2" y="2021" width="3.2" height="15.0" fill="rgb(229,11,12)" rx="2" ry="2" />
<text x="23.17" y="2031.5" ></text>
</g>
<g >
<title>generic_perform_write (2,132 samples, 0.18%)</title><rect x="1157.6" y="1285" width="2.0" height="15.0" fill="rgb(206,167,40)" rx="2" ry="2" />
<text x="1160.57" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (134 samples, 0.01%)</title><rect x="464.1" y="1029" width="0.1" height="15.0" fill="rgb(222,123,24)" rx="2" ry="2" />
<text x="467.09" y="1039.5" ></text>
</g>
<g >
<title>caml_blit_bytes (534 samples, 0.04%)</title><rect x="1104.6" y="1333" width="0.5" height="15.0" fill="rgb(245,213,33)" rx="2" ry="2" />
<text x="1107.58" y="1343.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (193 samples, 0.02%)</title><rect x="1176.6" y="1237" width="0.2" height="15.0" fill="rgb(220,14,25)" rx="2" ry="2" />
<text x="1179.56" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (323 samples, 0.03%)</title><rect x="804.4" y="1189" width="0.3" height="15.0" fill="rgb(213,226,44)" rx="2" ry="2" />
<text x="807.36" y="1199.5" ></text>
</g>
<g >
<title>ml_blake2b_final (3,241 samples, 0.27%)</title><rect x="704.2" y="1285" width="3.1" height="15.0" fill="rgb(224,102,52)" rx="2" ry="2" />
<text x="707.19" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,807 samples, 0.15%)</title><rect x="1178.0" y="1205" width="1.7" height="15.0" fill="rgb(216,127,46)" rx="2" ry="2" />
<text x="1180.99" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7414 (132 samples, 0.01%)</title><rect x="380.8" y="1189" width="0.1" height="15.0" fill="rgb(245,121,4)" rx="2" ry="2" />
<text x="383.79" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (123 samples, 0.01%)</title><rect x="381.8" y="1157" width="0.1" height="15.0" fill="rgb(218,144,23)" rx="2" ry="2" />
<text x="384.77" y="1167.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (951 samples, 0.08%)</title><rect x="363.7" y="1141" width="0.9" height="15.0" fill="rgb(229,176,6)" rx="2" ry="2" />
<text x="366.68" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,269 samples, 0.10%)</title><rect x="79.7" y="1781" width="1.3" height="15.0" fill="rgb(221,183,19)" rx="2" ry="2" />
<text x="82.74" y="1791.5" ></text>
</g>
<g >
<title>ml_blake2b_final (654 samples, 0.05%)</title><rect x="503.8" y="1157" width="0.6" height="15.0" fill="rgb(220,191,46)" rx="2" ry="2" />
<text x="506.80" y="1167.5" ></text>
</g>
<g >
<title>sweep_slice (120 samples, 0.01%)</title><rect x="801.0" y="1205" width="0.2" height="15.0" fill="rgb(226,227,29)" rx="2" ry="2" />
<text x="804.04" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,805 samples, 0.15%)</title><rect x="1178.0" y="1189" width="1.7" height="15.0" fill="rgb(206,72,14)" rx="2" ry="2" />
<text x="1180.99" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (119 samples, 0.01%)</title><rect x="1162.7" y="1429" width="0.1" height="15.0" fill="rgb(253,132,46)" rx="2" ry="2" />
<text x="1165.66" y="1439.5" ></text>
</g>
<g >
<title>blake2b_update (256 samples, 0.02%)</title><rect x="605.4" y="1173" width="0.2" height="15.0" fill="rgb(215,74,54)" rx="2" ry="2" />
<text x="608.36" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (125 samples, 0.01%)</title><rect x="312.5" y="1189" width="0.1" height="15.0" fill="rgb(245,85,15)" rx="2" ry="2" />
<text x="315.48" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_small (309 samples, 0.03%)</title><rect x="773.2" y="1189" width="0.3" height="15.0" fill="rgb(239,6,7)" rx="2" ry="2" />
<text x="776.20" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (181 samples, 0.01%)</title><rect x="467.3" y="997" width="0.2" height="15.0" fill="rgb(236,204,5)" rx="2" ry="2" />
<text x="470.30" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,668 samples, 0.14%)</title><rect x="1186.3" y="2005" width="1.6" height="15.0" fill="rgb(212,193,34)" rx="2" ry="2" />
<text x="1189.26" y="2015.5" ></text>
</g>
<g >
<title>mdb_cursor_set (11,498 samples, 0.94%)</title><rect x="774.8" y="1205" width="11.2" height="15.0" fill="rgb(247,173,34)" rx="2" ry="2" />
<text x="777.81" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (720 samples, 0.06%)</title><rect x="126.1" y="1061" width="0.7" height="15.0" fill="rgb(209,28,48)" rx="2" ry="2" />
<text x="129.10" y="1071.5" ></text>
</g>
<g >
<title>caml_blit_bytes (104 samples, 0.01%)</title><rect x="65.2" y="1909" width="0.1" height="15.0" fill="rgb(206,202,36)" rx="2" ry="2" />
<text x="68.22" y="1919.5" ></text>
</g>
<g >
<title>mdb_cursor_touch (415 samples, 0.03%)</title><rect x="869.4" y="1205" width="0.4" height="15.0" fill="rgb(211,12,48)" rx="2" ry="2" />
<text x="872.44" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (331 samples, 0.03%)</title><rect x="521.7" y="965" width="0.3" height="15.0" fill="rgb(226,152,9)" rx="2" ry="2" />
<text x="524.67" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (252 samples, 0.02%)</title><rect x="601.3" y="1173" width="0.3" height="15.0" fill="rgb(217,74,48)" rx="2" ry="2" />
<text x="604.34" y="1183.5" ></text>
</g>
<g >
<title>caml_blit_bytes (295 samples, 0.02%)</title><rect x="905.5" y="1173" width="0.3" height="15.0" fill="rgb(249,98,5)" rx="2" ry="2" />
<text x="908.55" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (120 samples, 0.01%)</title><rect x="483.4" y="1333" width="0.1" height="15.0" fill="rgb(230,12,48)" rx="2" ry="2" />
<text x="486.42" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (11,635 samples, 0.96%)</title><rect x="357.0" y="1205" width="11.3" height="15.0" fill="rgb(239,92,17)" rx="2" ry="2" />
<text x="360.02" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,237 samples, 0.10%)</title><rect x="433.1" y="1237" width="1.2" height="15.0" fill="rgb(220,155,28)" rx="2" ry="2" />
<text x="436.06" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (1,695 samples, 0.14%)</title><rect x="949.6" y="1045" width="1.6" height="15.0" fill="rgb(247,180,24)" rx="2" ry="2" />
<text x="952.56" y="1055.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (746 samples, 0.06%)</title><rect x="971.0" y="1141" width="0.7" height="15.0" fill="rgb(217,167,16)" rx="2" ry="2" />
<text x="973.99" y="1151.5" ></text>
</g>
<g >
<title>blake2b_final (169 samples, 0.01%)</title><rect x="515.9" y="869" width="0.2" height="15.0" fill="rgb(236,27,52)" rx="2" ry="2" />
<text x="518.93" y="879.5" ></text>
</g>
<g >
<title>camlLwt__return_2462 (134 samples, 0.01%)</title><rect x="198.6" y="1333" width="0.1" height="15.0" fill="rgb(247,168,31)" rx="2" ry="2" />
<text x="201.58" y="1343.5" ></text>
</g>
<g >
<title>__do_page_fault (165 samples, 0.01%)</title><rect x="923.2" y="1253" width="0.2" height="15.0" fill="rgb(236,111,40)" rx="2" ry="2" />
<text x="926.20" y="1263.5" ></text>
</g>
<g >
<title>caml_oldify_one (123 samples, 0.01%)</title><rect x="708.6" y="1237" width="0.2" height="15.0" fill="rgb(205,116,20)" rx="2" ry="2" />
<text x="711.64" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3778 (324 samples, 0.03%)</title><rect x="1180.9" y="1237" width="0.3" height="15.0" fill="rgb(225,131,23)" rx="2" ry="2" />
<text x="1183.86" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (250 samples, 0.02%)</title><rect x="891.2" y="1157" width="0.3" height="15.0" fill="rgb(251,63,0)" rx="2" ry="2" />
<text x="894.22" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (597 samples, 0.05%)</title><rect x="546.1" y="1221" width="0.5" height="15.0" fill="rgb(224,160,19)" rx="2" ry="2" />
<text x="549.06" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (824 samples, 0.07%)</title><rect x="516.5" y="197" width="0.8" height="15.0" fill="rgb(212,114,27)" rx="2" ry="2" />
<text x="519.55" y="207.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (691 samples, 0.06%)</title><rect x="739.4" y="1221" width="0.7" height="15.0" fill="rgb(246,7,38)" rx="2" ry="2" />
<text x="742.42" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (247 samples, 0.02%)</title><rect x="938.6" y="1077" width="0.2" height="15.0" fill="rgb(219,77,42)" rx="2" ry="2" />
<text x="941.55" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (175 samples, 0.01%)</title><rect x="924.1" y="1381" width="0.1" height="15.0" fill="rgb(211,175,41)" rx="2" ry="2" />
<text x="927.06" y="1391.5" ></text>
</g>
<g >
<title>blake2b_final (464 samples, 0.04%)</title><rect x="514.0" y="933" width="0.4" height="15.0" fill="rgb(244,45,45)" rx="2" ry="2" />
<text x="516.99" y="943.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9242 (186 samples, 0.02%)</title><rect x="848.8" y="1285" width="0.2" height="15.0" fill="rgb(213,149,52)" rx="2" ry="2" />
<text x="851.81" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (1,167 samples, 0.10%)</title><rect x="979.4" y="1333" width="1.1" height="15.0" fill="rgb(249,84,52)" rx="2" ry="2" />
<text x="982.40" y="1343.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (370 samples, 0.03%)</title><rect x="1182.7" y="1797" width="0.3" height="15.0" fill="rgb(248,192,14)" rx="2" ry="2" />
<text x="1185.67" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (155 samples, 0.01%)</title><rect x="206.9" y="1189" width="0.1" height="15.0" fill="rgb(222,218,54)" rx="2" ry="2" />
<text x="209.88" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (31,279 samples, 2.57%)</title><rect x="289.8" y="1253" width="30.4" height="15.0" fill="rgb(230,181,5)" rx="2" ry="2" />
<text x="292.85" y="1263.5" >ca..</text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (128 samples, 0.01%)</title><rect x="1185.4" y="1381" width="0.1" height="15.0" fill="rgb(229,218,19)" rx="2" ry="2" />
<text x="1188.43" y="1391.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (125 samples, 0.01%)</title><rect x="987.6" y="1269" width="0.2" height="15.0" fill="rgb(226,36,47)" rx="2" ry="2" />
<text x="990.65" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Closeable__find_3943 (129 samples, 0.01%)</title><rect x="199.3" y="1317" width="0.1" height="15.0" fill="rgb(218,226,26)" rx="2" ry="2" />
<text x="202.27" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7176 (177 samples, 0.01%)</title><rect x="447.3" y="1221" width="0.2" height="15.0" fill="rgb(242,56,22)" rx="2" ry="2" />
<text x="450.33" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_final (560 samples, 0.05%)</title><rect x="509.8" y="1029" width="0.5" height="15.0" fill="rgb(233,15,13)" rx="2" ry="2" />
<text x="512.80" y="1039.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (1,296 samples, 0.11%)</title><rect x="133.1" y="1333" width="1.3" height="15.0" fill="rgb(225,188,19)" rx="2" ry="2" />
<text x="136.13" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (450 samples, 0.04%)</title><rect x="930.5" y="1157" width="0.5" height="15.0" fill="rgb(242,86,39)" rx="2" ry="2" />
<text x="933.52" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__len_3839 (122 samples, 0.01%)</title><rect x="298.4" y="1125" width="0.1" height="15.0" fill="rgb(235,159,36)" rx="2" ry="2" />
<text x="301.43" y="1135.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (2,091 samples, 0.17%)</title><rect x="1173.9" y="1669" width="2.0" height="15.0" fill="rgb(236,139,5)" rx="2" ry="2" />
<text x="1176.86" y="1679.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (237 samples, 0.02%)</title><rect x="417.4" y="1189" width="0.2" height="15.0" fill="rgb(234,137,16)" rx="2" ry="2" />
<text x="420.41" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (191 samples, 0.02%)</title><rect x="606.3" y="1205" width="0.2" height="15.0" fill="rgb(238,124,42)" rx="2" ry="2" />
<text x="609.34" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBABY5H__Main__entry (813 samples, 0.07%)</title><rect x="1184.1" y="1925" width="0.8" height="15.0" fill="rgb(242,29,28)" rx="2" ry="2" />
<text x="1187.09" y="1935.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (214 samples, 0.02%)</title><rect x="81.0" y="1909" width="0.2" height="15.0" fill="rgb(233,5,17)" rx="2" ry="2" />
<text x="83.97" y="1919.5" ></text>
</g>
<g >
<title>blake2b_init_param (138 samples, 0.01%)</title><rect x="615.7" y="1173" width="0.1" height="15.0" fill="rgb(212,6,1)" rx="2" ry="2" />
<text x="618.66" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (205 samples, 0.02%)</title><rect x="57.1" y="1861" width="0.2" height="15.0" fill="rgb(212,113,34)" rx="2" ry="2" />
<text x="60.11" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (245 samples, 0.02%)</title><rect x="210.0" y="1125" width="0.3" height="15.0" fill="rgb(226,90,47)" rx="2" ry="2" />
<text x="213.03" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__fun_4396 (264 samples, 0.02%)</title><rect x="383.1" y="1205" width="0.3" height="15.0" fill="rgb(246,107,4)" rx="2" ry="2" />
<text x="386.10" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (149 samples, 0.01%)</title><rect x="848.6" y="1221" width="0.2" height="15.0" fill="rgb(227,74,27)" rx="2" ry="2" />
<text x="851.62" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (180 samples, 0.01%)</title><rect x="527.9" y="981" width="0.2" height="15.0" fill="rgb(254,192,15)" rx="2" ry="2" />
<text x="530.93" y="991.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (707 samples, 0.06%)</title><rect x="817.7" y="1141" width="0.7" height="15.0" fill="rgb(217,204,14)" rx="2" ry="2" />
<text x="820.72" y="1151.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (384 samples, 0.03%)</title><rect x="1183.1" y="1797" width="0.4" height="15.0" fill="rgb(239,43,34)" rx="2" ry="2" />
<text x="1186.15" y="1807.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (665 samples, 0.05%)</title><rect x="503.8" y="1189" width="0.6" height="15.0" fill="rgb(251,170,34)" rx="2" ry="2" />
<text x="506.79" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (120 samples, 0.01%)</title><rect x="490.1" y="1333" width="0.1" height="15.0" fill="rgb(229,123,45)" rx="2" ry="2" />
<text x="493.11" y="1343.5" ></text>
</g>
<g >
<title>blake2b_compress (568 samples, 0.05%)</title><rect x="567.8" y="1029" width="0.5" height="15.0" fill="rgb(250,203,37)" rx="2" ry="2" />
<text x="570.79" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__int_1156 (127 samples, 0.01%)</title><rect x="736.2" y="1221" width="0.1" height="15.0" fill="rgb(215,176,8)" rx="2" ry="2" />
<text x="739.17" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (124 samples, 0.01%)</title><rect x="542.4" y="1061" width="0.1" height="15.0" fill="rgb(228,170,45)" rx="2" ry="2" />
<text x="545.40" y="1071.5" ></text>
</g>
<g >
<title>mdb_cursor_set (46,462 samples, 3.82%)</title><rect x="1009.2" y="1333" width="45.1" height="15.0" fill="rgb(213,85,49)" rx="2" ry="2" />
<text x="1012.21" y="1343.5" >mdb_..</text>
</g>
<g >
<title>camlBlake2__update_1079 (1,187 samples, 0.10%)</title><rect x="712.4" y="1301" width="1.2" height="15.0" fill="rgb(250,65,29)" rx="2" ry="2" />
<text x="715.43" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (541 samples, 0.04%)</title><rect x="347.1" y="1125" width="0.6" height="15.0" fill="rgb(241,136,14)" rx="2" ry="2" />
<text x="350.13" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__bigarray__create_1241 (158 samples, 0.01%)</title><rect x="1134.4" y="1429" width="0.1" height="15.0" fill="rgb(213,66,33)" rx="2" ry="2" />
<text x="1137.36" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="693" width="1.6" height="15.0" fill="rgb(253,61,19)" rx="2" ry="2" />
<text x="1189.27" y="703.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (177 samples, 0.01%)</title><rect x="206.1" y="1173" width="0.2" height="15.0" fill="rgb(225,203,30)" rx="2" ry="2" />
<text x="209.08" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (215 samples, 0.02%)</title><rect x="481.2" y="1301" width="0.2" height="15.0" fill="rgb(216,99,45)" rx="2" ry="2" />
<text x="484.22" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (145 samples, 0.01%)</title><rect x="477.1" y="1269" width="0.2" height="15.0" fill="rgb(212,150,9)" rx="2" ry="2" />
<text x="480.13" y="1279.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (264 samples, 0.02%)</title><rect x="114.2" y="1205" width="0.3" height="15.0" fill="rgb(250,52,2)" rx="2" ry="2" />
<text x="117.22" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__format__scan_push_1920 (348 samples, 0.03%)</title><rect x="140.4" y="1349" width="0.3" height="15.0" fill="rgb(225,121,47)" rx="2" ry="2" />
<text x="143.35" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9236 (946 samples, 0.08%)</title><rect x="1180.3" y="1285" width="0.9" height="15.0" fill="rgb(242,86,15)" rx="2" ry="2" />
<text x="1183.26" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (114 samples, 0.01%)</title><rect x="129.8" y="1205" width="0.1" height="15.0" fill="rgb(210,103,20)" rx="2" ry="2" />
<text x="132.80" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (1,263 samples, 0.10%)</title><rect x="1171.0" y="1525" width="1.2" height="15.0" fill="rgb(234,174,53)" rx="2" ry="2" />
<text x="1173.99" y="1535.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11293 (536 samples, 0.04%)</title><rect x="482.0" y="1333" width="0.5" height="15.0" fill="rgb(217,142,14)" rx="2" ry="2" />
<text x="484.99" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (592 samples, 0.05%)</title><rect x="1185.0" y="1653" width="0.5" height="15.0" fill="rgb(209,13,25)" rx="2" ry="2" />
<text x="1187.98" y="1663.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (907 samples, 0.07%)</title><rect x="611.6" y="1237" width="0.9" height="15.0" fill="rgb(234,89,8)" rx="2" ry="2" />
<text x="614.62" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (992 samples, 0.08%)</title><rect x="516.5" y="501" width="0.9" height="15.0" fill="rgb(253,155,8)" rx="2" ry="2" />
<text x="519.46" y="511.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (148 samples, 0.01%)</title><rect x="616.6" y="1237" width="0.1" height="15.0" fill="rgb(205,13,11)" rx="2" ry="2" />
<text x="619.56" y="1247.5" ></text>
</g>
<g >
<title>caml_string_equal (171 samples, 0.01%)</title><rect x="217.9" y="1237" width="0.2" height="15.0" fill="rgb(241,17,24)" rx="2" ry="2" />
<text x="220.93" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (166 samples, 0.01%)</title><rect x="900.2" y="1253" width="0.2" height="15.0" fill="rgb(235,132,25)" rx="2" ry="2" />
<text x="903.21" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (193 samples, 0.02%)</title><rect x="596.7" y="1173" width="0.2" height="15.0" fill="rgb(215,0,2)" rx="2" ry="2" />
<text x="599.73" y="1183.5" ></text>
</g>
<g >
<title>ml_blake2b_final (490 samples, 0.04%)</title><rect x="572.2" y="965" width="0.4" height="15.0" fill="rgb(243,91,8)" rx="2" ry="2" />
<text x="575.17" y="975.5" ></text>
</g>
<g >
<title>blake2b_update (297 samples, 0.02%)</title><rect x="1187.5" y="53" width="0.3" height="15.0" fill="rgb(233,12,31)" rx="2" ry="2" />
<text x="1190.48" y="63.5" ></text>
</g>
<g >
<title>caml_program (1,127,733 samples, 92.67%)</title><rect x="92.2" y="1941" width="1093.5" height="15.0" fill="rgb(215,16,44)" rx="2" ry="2" />
<text x="95.23" y="1951.5" >caml_program</text>
</g>
<g >
<title>mark_slice (510 samples, 0.04%)</title><rect x="608.7" y="1189" width="0.5" height="15.0" fill="rgb(251,128,51)" rx="2" ry="2" />
<text x="611.69" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__pre_hash_3776 (369 samples, 0.03%)</title><rect x="68.1" y="1925" width="0.4" height="15.0" fill="rgb(210,22,47)" rx="2" ry="2" />
<text x="71.13" y="1935.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (139 samples, 0.01%)</title><rect x="636.2" y="1205" width="0.2" height="15.0" fill="rgb(225,138,9)" rx="2" ry="2" />
<text x="639.23" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (467 samples, 0.04%)</title><rect x="188.8" y="1221" width="0.5" height="15.0" fill="rgb(216,201,11)" rx="2" ry="2" />
<text x="191.82" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (148 samples, 0.01%)</title><rect x="544.0" y="1125" width="0.2" height="15.0" fill="rgb(243,91,13)" rx="2" ry="2" />
<text x="547.03" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_1294 (484 samples, 0.04%)</title><rect x="1172.8" y="789" width="0.4" height="15.0" fill="rgb(240,204,34)" rx="2" ry="2" />
<text x="1175.77" y="799.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (155 samples, 0.01%)</title><rect x="538.3" y="1141" width="0.1" height="15.0" fill="rgb(223,50,27)" rx="2" ry="2" />
<text x="541.29" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (113 samples, 0.01%)</title><rect x="375.7" y="1093" width="0.1" height="15.0" fill="rgb(237,9,2)" rx="2" ry="2" />
<text x="378.69" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_string (142 samples, 0.01%)</title><rect x="536.9" y="1109" width="0.2" height="15.0" fill="rgb(230,213,10)" rx="2" ry="2" />
<text x="539.93" y="1119.5" ></text>
</g>
<g >
<title>caml_alloc_string (263 samples, 0.02%)</title><rect x="534.9" y="1077" width="0.3" height="15.0" fill="rgb(251,195,12)" rx="2" ry="2" />
<text x="537.91" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (525 samples, 0.04%)</title><rect x="530.1" y="965" width="0.5" height="15.0" fill="rgb(214,34,39)" rx="2" ry="2" />
<text x="533.10" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (259 samples, 0.02%)</title><rect x="988.2" y="1285" width="0.2" height="15.0" fill="rgb(210,73,41)" rx="2" ry="2" />
<text x="991.15" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (225 samples, 0.02%)</title><rect x="949.3" y="1045" width="0.3" height="15.0" fill="rgb(211,19,45)" rx="2" ry="2" />
<text x="952.34" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3927 (501 samples, 0.04%)</title><rect x="73.7" y="1893" width="0.4" height="15.0" fill="rgb(237,205,12)" rx="2" ry="2" />
<text x="76.65" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (110 samples, 0.01%)</title><rect x="488.0" y="1253" width="0.1" height="15.0" fill="rgb(234,33,17)" rx="2" ry="2" />
<text x="491.01" y="1263.5" ></text>
</g>
<g >
<title>blake2b_compress (1,765 samples, 0.15%)</title><rect x="370.4" y="1173" width="1.7" height="15.0" fill="rgb(218,192,38)" rx="2" ry="2" />
<text x="373.37" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (110 samples, 0.01%)</title><rect x="577.2" y="981" width="0.1" height="15.0" fill="rgb(227,168,42)" rx="2" ry="2" />
<text x="580.16" y="991.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (309 samples, 0.03%)</title><rect x="891.7" y="1205" width="0.3" height="15.0" fill="rgb(253,125,7)" rx="2" ry="2" />
<text x="894.74" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (992 samples, 0.08%)</title><rect x="177.9" y="1157" width="1.0" height="15.0" fill="rgb(226,219,32)" rx="2" ry="2" />
<text x="180.92" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (219 samples, 0.02%)</title><rect x="539.6" y="1157" width="0.2" height="15.0" fill="rgb(253,165,13)" rx="2" ry="2" />
<text x="542.62" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (141 samples, 0.01%)</title><rect x="575.6" y="933" width="0.1" height="15.0" fill="rgb(206,188,9)" rx="2" ry="2" />
<text x="578.56" y="943.5" ></text>
</g>
<g >
<title>caml_alloc_string (433 samples, 0.04%)</title><rect x="1104.2" y="1333" width="0.4" height="15.0" fill="rgb(228,71,45)" rx="2" ry="2" />
<text x="1107.16" y="1343.5" ></text>
</g>
<g >
<title>__libc_pread64 (402 samples, 0.03%)</title><rect x="348.8" y="1093" width="0.4" height="15.0" fill="rgb(222,117,44)" rx="2" ry="2" />
<text x="351.83" y="1103.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (208 samples, 0.02%)</title><rect x="923.7" y="1285" width="0.3" height="15.0" fill="rgb(240,7,10)" rx="2" ry="2" />
<text x="926.75" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__append_entry_fanout_3009 (126 samples, 0.01%)</title><rect x="52.5" y="1925" width="0.1" height="15.0" fill="rgb(233,47,0)" rx="2" ry="2" />
<text x="55.51" y="1935.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_2491 (147 samples, 0.01%)</title><rect x="214.6" y="1189" width="0.2" height="15.0" fill="rgb(209,113,15)" rx="2" ry="2" />
<text x="217.64" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2720 (177 samples, 0.01%)</title><rect x="144.2" y="1317" width="0.2" height="15.0" fill="rgb(209,199,39)" rx="2" ry="2" />
<text x="147.23" y="1327.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (617 samples, 0.05%)</title><rect x="1184.2" y="1781" width="0.6" height="15.0" fill="rgb(249,87,22)" rx="2" ry="2" />
<text x="1187.18" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_rec_2258 (109 samples, 0.01%)</title><rect x="289.6" y="1221" width="0.1" height="15.0" fill="rgb(251,132,20)" rx="2" ry="2" />
<text x="292.60" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (286 samples, 0.02%)</title><rect x="837.5" y="1029" width="0.3" height="15.0" fill="rgb(249,100,30)" rx="2" ry="2" />
<text x="840.50" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__fun_9992 (1,931 samples, 0.16%)</title><rect x="1177.9" y="1253" width="1.9" height="15.0" fill="rgb(231,172,9)" rx="2" ry="2" />
<text x="1180.92" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__of_bytes_exn_1750 (544 samples, 0.04%)</title><rect x="989.0" y="1445" width="0.5" height="15.0" fill="rgb(220,129,48)" rx="2" ry="2" />
<text x="991.96" y="1455.5" ></text>
</g>
<g >
<title>caml_fl_allocate (2,097 samples, 0.17%)</title><rect x="36.7" y="1973" width="2.1" height="15.0" fill="rgb(222,127,26)" rx="2" ry="2" />
<text x="39.73" y="1983.5" ></text>
</g>
<g >
<title>caml_call_gc (112 samples, 0.01%)</title><rect x="457.8" y="1093" width="0.1" height="15.0" fill="rgb(208,5,4)" rx="2" ry="2" />
<text x="460.83" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (165 samples, 0.01%)</title><rect x="175.9" y="1205" width="0.2" height="15.0" fill="rgb(234,111,0)" rx="2" ry="2" />
<text x="178.93" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (140 samples, 0.01%)</title><rect x="588.6" y="1045" width="0.2" height="15.0" fill="rgb(245,166,9)" rx="2" ry="2" />
<text x="591.64" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7497 (142 samples, 0.01%)</title><rect x="359.3" y="1157" width="0.1" height="15.0" fill="rgb(221,129,24)" rx="2" ry="2" />
<text x="362.29" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (512 samples, 0.04%)</title><rect x="377.6" y="1189" width="0.5" height="15.0" fill="rgb(249,205,48)" rx="2" ry="2" />
<text x="380.63" y="1199.5" ></text>
</g>
<g >
<title>caml_oldify_one (208 samples, 0.02%)</title><rect x="941.9" y="1045" width="0.2" height="15.0" fill="rgb(247,69,47)" rx="2" ry="2" />
<text x="944.87" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (206 samples, 0.02%)</title><rect x="577.9" y="933" width="0.2" height="15.0" fill="rgb(209,216,26)" rx="2" ry="2" />
<text x="580.91" y="943.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBABY5H__Helpers_services__register_19375 (729 samples, 0.06%)</title><rect x="1184.1" y="1893" width="0.7" height="15.0" fill="rgb(252,60,24)" rx="2" ry="2" />
<text x="1187.12" y="1903.5" ></text>
</g>
<g >
<title>caml_alloc_string (172 samples, 0.01%)</title><rect x="499.3" y="1285" width="0.2" height="15.0" fill="rgb(209,169,11)" rx="2" ry="2" />
<text x="502.30" y="1295.5" ></text>
</g>
<g >
<title>caml_modify (248 samples, 0.02%)</title><rect x="429.4" y="1205" width="0.2" height="15.0" fill="rgb(226,189,21)" rx="2" ry="2" />
<text x="432.39" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_9229 (1,055 samples, 0.09%)</title><rect x="93.1" y="1301" width="1.0" height="15.0" fill="rgb(215,44,49)" rx="2" ry="2" />
<text x="96.09" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,394 samples, 0.20%)</title><rect x="78.6" y="1877" width="2.4" height="15.0" fill="rgb(233,126,20)" rx="2" ry="2" />
<text x="81.65" y="1887.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1525 (238 samples, 0.02%)</title><rect x="457.0" y="1061" width="0.2" height="15.0" fill="rgb(211,116,32)" rx="2" ry="2" />
<text x="459.96" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (548 samples, 0.05%)</title><rect x="826.0" y="1109" width="0.5" height="15.0" fill="rgb(221,78,37)" rx="2" ry="2" />
<text x="828.99" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_loop_1883 (409 samples, 0.03%)</title><rect x="94.6" y="1253" width="0.4" height="15.0" fill="rgb(205,228,0)" rx="2" ry="2" />
<text x="97.58" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,670 samples, 0.14%)</title><rect x="1186.3" y="2053" width="1.6" height="15.0" fill="rgb(213,189,48)" rx="2" ry="2" />
<text x="1189.26" y="2063.5" ></text>
</g>
<g >
<title>mdb_put (429 samples, 0.04%)</title><rect x="485.9" y="1269" width="0.4" height="15.0" fill="rgb(221,98,18)" rx="2" ry="2" />
<text x="488.92" y="1279.5" ></text>
</g>
<g >
<title>do_compaction (1,050 samples, 0.09%)</title><rect x="1178.0" y="1157" width="1.0" height="15.0" fill="rgb(249,138,36)" rx="2" ry="2" />
<text x="1180.99" y="1167.5" ></text>
</g>
<g >
<title>blake2b_compress (823 samples, 0.07%)</title><rect x="498.3" y="1221" width="0.8" height="15.0" fill="rgb(231,139,33)" rx="2" ry="2" />
<text x="501.35" y="1231.5" ></text>
</g>
<g >
<title>caml_fl_allocate (141 samples, 0.01%)</title><rect x="23.6" y="1973" width="0.1" height="15.0" fill="rgb(244,97,19)" rx="2" ry="2" />
<text x="26.57" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (1,231 samples, 0.10%)</title><rect x="294.4" y="1157" width="1.2" height="15.0" fill="rgb(251,8,45)" rx="2" ry="2" />
<text x="297.39" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (617 samples, 0.05%)</title><rect x="506.8" y="1125" width="0.6" height="15.0" fill="rgb(238,183,0)" rx="2" ry="2" />
<text x="509.78" y="1135.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (640 samples, 0.05%)</title><rect x="1169.1" y="1477" width="0.6" height="15.0" fill="rgb(254,133,19)" rx="2" ry="2" />
<text x="1172.06" y="1487.5" ></text>
</g>
<g >
<title>mark_slice_darken (356 samples, 0.03%)</title><rect x="195.8" y="1253" width="0.4" height="15.0" fill="rgb(220,35,3)" rx="2" ry="2" />
<text x="198.83" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (130 samples, 0.01%)</title><rect x="615.4" y="1221" width="0.2" height="15.0" fill="rgb(224,50,30)" rx="2" ry="2" />
<text x="618.43" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (469 samples, 0.04%)</title><rect x="454.7" y="981" width="0.5" height="15.0" fill="rgb(232,105,14)" rx="2" ry="2" />
<text x="457.72" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (364 samples, 0.03%)</title><rect x="574.5" y="837" width="0.3" height="15.0" fill="rgb(231,210,9)" rx="2" ry="2" />
<text x="577.46" y="847.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (982 samples, 0.08%)</title><rect x="558.4" y="1285" width="0.9" height="15.0" fill="rgb(245,9,13)" rx="2" ry="2" />
<text x="561.35" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (160 samples, 0.01%)</title><rect x="198.2" y="1253" width="0.1" height="15.0" fill="rgb(230,4,24)" rx="2" ry="2" />
<text x="201.16" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (175 samples, 0.01%)</title><rect x="574.5" y="549" width="0.2" height="15.0" fill="rgb(254,64,1)" rx="2" ry="2" />
<text x="577.52" y="559.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (106 samples, 0.01%)</title><rect x="499.5" y="1253" width="0.1" height="15.0" fill="rgb(234,196,51)" rx="2" ry="2" />
<text x="502.49" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (4,349 samples, 0.36%)</title><rect x="335.4" y="1285" width="4.2" height="15.0" fill="rgb(247,19,5)" rx="2" ry="2" />
<text x="338.36" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (142 samples, 0.01%)</title><rect x="601.6" y="1189" width="0.1" height="15.0" fill="rgb(212,179,5)" rx="2" ry="2" />
<text x="604.59" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (2,626 samples, 0.22%)</title><rect x="591.3" y="1141" width="2.5" height="15.0" fill="rgb(206,183,15)" rx="2" ry="2" />
<text x="594.26" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (322 samples, 0.03%)</title><rect x="1183.2" y="1637" width="0.3" height="15.0" fill="rgb(224,60,3)" rx="2" ry="2" />
<text x="1186.15" y="1647.5" ></text>
</g>
<g >
<title>camlIndex__fun_4396 (14,227 samples, 1.17%)</title><rect x="416.5" y="1237" width="13.8" height="15.0" fill="rgb(248,209,6)" rx="2" ry="2" />
<text x="419.46" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7697 (151 samples, 0.01%)</title><rect x="300.2" y="1141" width="0.1" height="15.0" fill="rgb(229,23,30)" rx="2" ry="2" />
<text x="303.17" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="701.8" y="1253" width="0.1" height="15.0" fill="rgb(234,171,28)" rx="2" ry="2" />
<text x="704.80" y="1263.5" ></text>
</g>
<g >
<title>mdb_node_add (235 samples, 0.02%)</title><rect x="1146.9" y="1381" width="0.2" height="15.0" fill="rgb(245,77,30)" rx="2" ry="2" />
<text x="1149.92" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__fun_4745 (104 samples, 0.01%)</title><rect x="131.7" y="1301" width="0.1" height="15.0" fill="rgb(220,135,4)" rx="2" ry="2" />
<text x="134.73" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (52,761 samples, 4.34%)</title><rect x="926.8" y="1381" width="51.2" height="15.0" fill="rgb(239,221,51)" rx="2" ry="2" />
<text x="929.84" y="1391.5" >camlT..</text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6706 (885 samples, 0.07%)</title><rect x="93.3" y="1253" width="0.8" height="15.0" fill="rgb(243,101,26)" rx="2" ry="2" />
<text x="96.25" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3768 (231 samples, 0.02%)</title><rect x="358.9" y="1173" width="0.2" height="15.0" fill="rgb(235,193,21)" rx="2" ry="2" />
<text x="361.88" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__step_4316 (197 samples, 0.02%)</title><rect x="1179.8" y="1285" width="0.2" height="15.0" fill="rgb(216,48,4)" rx="2" ry="2" />
<text x="1182.80" y="1295.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (1,376 samples, 0.11%)</title><rect x="860.2" y="1173" width="1.3" height="15.0" fill="rgb(225,9,42)" rx="2" ry="2" />
<text x="863.15" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (108 samples, 0.01%)</title><rect x="988.4" y="1333" width="0.1" height="15.0" fill="rgb(225,129,5)" rx="2" ry="2" />
<text x="991.40" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (312 samples, 0.03%)</title><rect x="1169.8" y="1445" width="0.3" height="15.0" fill="rgb(205,50,52)" rx="2" ry="2" />
<text x="1172.78" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (146 samples, 0.01%)</title><rect x="597.4" y="1141" width="0.1" height="15.0" fill="rgb(215,18,3)" rx="2" ry="2" />
<text x="600.36" y="1151.5" ></text>
</g>
<g >
<title>caml_apply2 (793 samples, 0.07%)</title><rect x="447.2" y="1237" width="0.7" height="15.0" fill="rgb(212,49,12)" rx="2" ry="2" />
<text x="450.17" y="1247.5" ></text>
</g>
<g >
<title>ml_blake2b_final (624 samples, 0.05%)</title><rect x="506.0" y="1109" width="0.6" height="15.0" fill="rgb(245,160,31)" rx="2" ry="2" />
<text x="509.04" y="1119.5" ></text>
</g>
<g >
<title>caml_oldify_one (129 samples, 0.01%)</title><rect x="669.5" y="1237" width="0.2" height="15.0" fill="rgb(232,220,21)" rx="2" ry="2" />
<text x="672.53" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (183 samples, 0.02%)</title><rect x="612.6" y="1269" width="0.2" height="15.0" fill="rgb(236,183,3)" rx="2" ry="2" />
<text x="615.58" y="1279.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,158 samples, 0.10%)</title><rect x="592.7" y="1077" width="1.1" height="15.0" fill="rgb(224,8,16)" rx="2" ry="2" />
<text x="595.66" y="1087.5" ></text>
</g>
<g >
<title>caml_string_compare (104 samples, 0.01%)</title><rect x="262.4" y="1221" width="0.1" height="15.0" fill="rgb(223,60,13)" rx="2" ry="2" />
<text x="265.42" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (610 samples, 0.05%)</title><rect x="92.4" y="1397" width="0.6" height="15.0" fill="rgb(242,217,0)" rx="2" ry="2" />
<text x="95.39" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (257 samples, 0.02%)</title><rect x="1183.7" y="1541" width="0.3" height="15.0" fill="rgb(240,31,32)" rx="2" ry="2" />
<text x="1186.72" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_6697 (130 samples, 0.01%)</title><rect x="1173.7" y="885" width="0.1" height="15.0" fill="rgb(214,187,23)" rx="2" ry="2" />
<text x="1176.67" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (109 samples, 0.01%)</title><rect x="169.4" y="1365" width="0.1" height="15.0" fill="rgb(232,58,2)" rx="2" ry="2" />
<text x="172.38" y="1375.5" ></text>
</g>
<g >
<title>camlResto_directory__register_3308 (328 samples, 0.03%)</title><rect x="1182.2" y="1861" width="0.4" height="15.0" fill="rgb(225,84,17)" rx="2" ry="2" />
<text x="1185.24" y="1871.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__iter_s_3227 (1,769 samples, 0.15%)</title><rect x="1180.0" y="1301" width="1.8" height="15.0" fill="rgb(225,111,1)" rx="2" ry="2" />
<text x="1183.05" y="1311.5" ></text>
</g>
<g >
<title>caml_ba_alloc (2,238 samples, 0.18%)</title><rect x="771.4" y="1221" width="2.1" height="15.0" fill="rgb(209,73,6)" rx="2" ry="2" />
<text x="774.37" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (3,632 samples, 0.30%)</title><rect x="973.5" y="1221" width="3.5" height="15.0" fill="rgb(234,12,17)" rx="2" ry="2" />
<text x="976.51" y="1231.5" ></text>
</g>
<g >
<title>caml_blit_bytes (111 samples, 0.01%)</title><rect x="273.9" y="1237" width="0.1" height="15.0" fill="rgb(228,14,27)" rx="2" ry="2" />
<text x="276.89" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (24,401 samples, 2.01%)</title><rect x="242.0" y="1301" width="23.6" height="15.0" fill="rgb(252,88,34)" rx="2" ry="2" />
<text x="244.96" y="1311.5" >c..</text>
</g>
<g >
<title>__libc_pread64 (147 samples, 0.01%)</title><rect x="121.7" y="1061" width="0.1" height="15.0" fill="rgb(207,121,52)" rx="2" ry="2" />
<text x="124.66" y="1071.5" ></text>
</g>
<g >
<title>mdb_page_malloc (238 samples, 0.02%)</title><rect x="876.8" y="1157" width="0.3" height="15.0" fill="rgb(219,186,27)" rx="2" ry="2" />
<text x="879.83" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (1,690 samples, 0.14%)</title><rect x="908.0" y="1125" width="1.7" height="15.0" fill="rgb(229,120,34)" rx="2" ry="2" />
<text x="911.04" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__loop_7395 (165 samples, 0.01%)</title><rect x="1173.5" y="821" width="0.2" height="15.0" fill="rgb(212,154,24)" rx="2" ry="2" />
<text x="1176.51" y="831.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (4,048 samples, 0.33%)</title><rect x="780.3" y="1141" width="3.9" height="15.0" fill="rgb(246,212,51)" rx="2" ry="2" />
<text x="783.30" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (653 samples, 0.05%)</title><rect x="806.6" y="1205" width="0.7" height="15.0" fill="rgb(244,26,47)" rx="2" ry="2" />
<text x="809.63" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (131 samples, 0.01%)</title><rect x="1185.4" y="1429" width="0.1" height="15.0" fill="rgb(213,22,1)" rx="2" ry="2" />
<text x="1188.42" y="1439.5" ></text>
</g>
<g >
<title>__indirect_thunk_start (194 samples, 0.02%)</title><rect x="1156.3" y="1333" width="0.1" height="15.0" fill="rgb(248,209,9)" rx="2" ry="2" />
<text x="1159.25" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Bytes_encodings__get_int32_be_1098 (284 samples, 0.02%)</title><rect x="148.0" y="1253" width="0.3" height="15.0" fill="rgb(233,100,48)" rx="2" ry="2" />
<text x="151.01" y="1263.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (601 samples, 0.05%)</title><rect x="947.4" y="1077" width="0.6" height="15.0" fill="rgb(229,105,32)" rx="2" ry="2" />
<text x="950.41" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (150 samples, 0.01%)</title><rect x="455.5" y="1013" width="0.2" height="15.0" fill="rgb(241,64,22)" rx="2" ry="2" />
<text x="458.54" y="1023.5" ></text>
</g>
<g >
<title>blake2b_final (595 samples, 0.05%)</title><rect x="508.2" y="1045" width="0.6" height="15.0" fill="rgb(216,189,1)" rx="2" ry="2" />
<text x="511.24" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (181 samples, 0.01%)</title><rect x="73.1" y="1861" width="0.2" height="15.0" fill="rgb(209,23,25)" rx="2" ry="2" />
<text x="76.09" y="1871.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_4203 (18,820 samples, 1.55%)</title><rect x="1114.5" y="1413" width="18.2" height="15.0" fill="rgb(236,161,44)" rx="2" ry="2" />
<text x="1117.45" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (2,468 samples, 0.20%)</title><rect x="382.4" y="1253" width="2.4" height="15.0" fill="rgb(247,3,20)" rx="2" ry="2" />
<text x="385.45" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (147 samples, 0.01%)</title><rect x="131.1" y="1125" width="0.1" height="15.0" fill="rgb(247,180,8)" rx="2" ry="2" />
<text x="134.07" y="1135.5" ></text>
</g>
<g >
<title>caml_fl_add_blocks (159 samples, 0.01%)</title><rect x="87.8" y="1909" width="0.1" height="15.0" fill="rgb(210,132,40)" rx="2" ry="2" />
<text x="90.79" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (330 samples, 0.03%)</title><rect x="605.3" y="1237" width="0.3" height="15.0" fill="rgb(231,103,25)" rx="2" ry="2" />
<text x="608.33" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (3,855 samples, 0.32%)</title><rect x="734.8" y="1253" width="3.8" height="15.0" fill="rgb(245,209,28)" rx="2" ry="2" />
<text x="737.82" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (135 samples, 0.01%)</title><rect x="955.0" y="1141" width="0.2" height="15.0" fill="rgb(234,164,13)" rx="2" ry="2" />
<text x="958.04" y="1151.5" ></text>
</g>
<g >
<title>blake2b_compress (854 samples, 0.07%)</title><rect x="559.4" y="1189" width="0.8" height="15.0" fill="rgb(220,112,17)" rx="2" ry="2" />
<text x="562.40" y="1199.5" ></text>
</g>
<g >
<title>caml_equal (207 samples, 0.02%)</title><rect x="476.5" y="1285" width="0.2" height="15.0" fill="rgb(228,11,19)" rx="2" ry="2" />
<text x="479.49" y="1295.5" ></text>
</g>
<g >
<title>caml_garbage_collection (251 samples, 0.02%)</title><rect x="976.5" y="1093" width="0.2" height="15.0" fill="rgb(248,94,1)" rx="2" ry="2" />
<text x="979.46" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (116 samples, 0.01%)</title><rect x="443.1" y="1205" width="0.1" height="15.0" fill="rgb(251,89,33)" rx="2" ry="2" />
<text x="446.07" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (631 samples, 0.05%)</title><rect x="195.7" y="1349" width="0.6" height="15.0" fill="rgb(238,167,51)" rx="2" ry="2" />
<text x="198.72" y="1359.5" ></text>
</g>
<g >
<title>caml_alloc_shr (168 samples, 0.01%)</title><rect x="87.8" y="1941" width="0.2" height="15.0" fill="rgb(206,56,46)" rx="2" ry="2" />
<text x="90.79" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (257 samples, 0.02%)</title><rect x="554.0" y="1253" width="0.2" height="15.0" fill="rgb(245,41,5)" rx="2" ry="2" />
<text x="557.00" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (784 samples, 0.06%)</title><rect x="888.0" y="1269" width="0.7" height="15.0" fill="rgb(226,93,21)" rx="2" ry="2" />
<text x="890.98" y="1279.5" ></text>
</g>
<g >
<title>caml_apply2 (117 samples, 0.01%)</title><rect x="180.9" y="1157" width="0.1" height="15.0" fill="rgb(207,209,45)" rx="2" ry="2" />
<text x="183.88" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (247 samples, 0.02%)</title><rect x="217.9" y="1253" width="0.2" height="15.0" fill="rgb(234,108,23)" rx="2" ry="2" />
<text x="220.85" y="1263.5" ></text>
</g>
<g >
<title>caml_string_equal (511 samples, 0.04%)</title><rect x="174.9" y="1173" width="0.5" height="15.0" fill="rgb(206,123,4)" rx="2" ry="2" />
<text x="177.92" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__format__k_2506 (8,044 samples, 0.66%)</title><rect x="135.0" y="1381" width="7.8" height="15.0" fill="rgb(222,78,1)" rx="2" ry="2" />
<text x="138.01" y="1391.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (127 samples, 0.01%)</title><rect x="489.0" y="1141" width="0.1" height="15.0" fill="rgb(241,224,29)" rx="2" ry="2" />
<text x="492.01" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (106 samples, 0.01%)</title><rect x="914.3" y="1221" width="0.1" height="15.0" fill="rgb(220,153,41)" rx="2" ry="2" />
<text x="917.32" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (381 samples, 0.03%)</title><rect x="740.2" y="1285" width="0.4" height="15.0" fill="rgb(227,124,2)" rx="2" ry="2" />
<text x="743.18" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_bytes_2180 (155 samples, 0.01%)</title><rect x="911.4" y="1173" width="0.2" height="15.0" fill="rgb(220,40,16)" rx="2" ry="2" />
<text x="914.45" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (1,230 samples, 0.10%)</title><rect x="1116.2" y="1365" width="1.2" height="15.0" fill="rgb(243,205,25)" rx="2" ry="2" />
<text x="1119.21" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (358 samples, 0.03%)</title><rect x="835.6" y="1061" width="0.4" height="15.0" fill="rgb(215,11,13)" rx="2" ry="2" />
<text x="838.61" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_string (106 samples, 0.01%)</title><rect x="576.2" y="933" width="0.1" height="15.0" fill="rgb(221,143,21)" rx="2" ry="2" />
<text x="579.15" y="943.5" ></text>
</g>
<g >
<title>sweep_slice (116 samples, 0.01%)</title><rect x="818.3" y="1125" width="0.1" height="15.0" fill="rgb(239,111,6)" rx="2" ry="2" />
<text x="821.30" y="1135.5" ></text>
</g>
<g >
<title>blake2b_final (563 samples, 0.05%)</title><rect x="569.3" y="1013" width="0.6" height="15.0" fill="rgb(205,174,8)" rx="2" ry="2" />
<text x="572.34" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (114 samples, 0.01%)</title><rect x="714.4" y="1349" width="0.1" height="15.0" fill="rgb(217,57,22)" rx="2" ry="2" />
<text x="717.42" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__set_int_1105 (248 samples, 0.02%)</title><rect x="904.5" y="1221" width="0.2" height="15.0" fill="rgb(225,48,35)" rx="2" ry="2" />
<text x="907.51" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (1,295 samples, 0.11%)</title><rect x="614.1" y="1237" width="1.2" height="15.0" fill="rgb(228,60,32)" rx="2" ry="2" />
<text x="617.07" y="1247.5" ></text>
</g>
<g >
<title>caml_ba_alloc (517 samples, 0.04%)</title><rect x="718.2" y="1253" width="0.5" height="15.0" fill="rgb(246,50,33)" rx="2" ry="2" />
<text x="721.21" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (480 samples, 0.04%)</title><rect x="461.9" y="1093" width="0.5" height="15.0" fill="rgb(236,218,29)" rx="2" ry="2" />
<text x="464.91" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__aux_6676 (606 samples, 0.05%)</title><rect x="107.8" y="1237" width="0.6" height="15.0" fill="rgb(234,210,47)" rx="2" ry="2" />
<text x="110.82" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,341 samples, 0.11%)</title><rect x="970.9" y="1173" width="1.3" height="15.0" fill="rgb(252,54,1)" rx="2" ry="2" />
<text x="973.92" y="1183.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (391 samples, 0.03%)</title><rect x="1135.6" y="1349" width="0.3" height="15.0" fill="rgb(248,208,46)" rx="2" ry="2" />
<text x="1138.55" y="1359.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1515 (1,273 samples, 0.10%)</title><rect x="410.6" y="1157" width="1.3" height="15.0" fill="rgb(221,47,13)" rx="2" ry="2" />
<text x="413.64" y="1167.5" ></text>
</g>
<g >
<title>blake2b_compress (559 samples, 0.05%)</title><rect x="503.8" y="1125" width="0.6" height="15.0" fill="rgb(215,65,50)" rx="2" ry="2" />
<text x="506.83" y="1135.5" ></text>
</g>
<g >
<title>tcache_get (138 samples, 0.01%)</title><rect x="857.5" y="1189" width="0.2" height="15.0" fill="rgb(232,41,29)" rx="2" ry="2" />
<text x="860.54" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__case_v_3672 (885 samples, 0.07%)</title><rect x="441.2" y="1237" width="0.9" height="15.0" fill="rgb(214,75,28)" rx="2" ry="2" />
<text x="444.21" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (540 samples, 0.04%)</title><rect x="480.9" y="1333" width="0.5" height="15.0" fill="rgb(254,142,52)" rx="2" ry="2" />
<text x="483.91" y="1343.5" ></text>
</g>
<g >
<title>memset (208 samples, 0.02%)</title><rect x="708.3" y="1205" width="0.2" height="15.0" fill="rgb(222,27,6)" rx="2" ry="2" />
<text x="711.32" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (116 samples, 0.01%)</title><rect x="218.7" y="1189" width="0.1" height="15.0" fill="rgb(248,3,37)" rx="2" ry="2" />
<text x="221.70" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (104 samples, 0.01%)</title><rect x="131.9" y="1141" width="0.1" height="15.0" fill="rgb(236,154,25)" rx="2" ry="2" />
<text x="134.87" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (772 samples, 0.06%)</title><rect x="941.0" y="1093" width="0.7" height="15.0" fill="rgb(239,166,29)" rx="2" ry="2" />
<text x="943.98" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,260 samples, 0.10%)</title><rect x="516.4" y="677" width="1.2" height="15.0" fill="rgb(219,125,35)" rx="2" ry="2" />
<text x="519.43" y="687.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (189 samples, 0.02%)</title><rect x="451.9" y="1061" width="0.2" height="15.0" fill="rgb(225,182,16)" rx="2" ry="2" />
<text x="454.91" y="1071.5" ></text>
</g>
<g >
<title>__fdget_pos (119 samples, 0.01%)</title><rect x="922.1" y="1221" width="0.1" height="15.0" fill="rgb(231,47,24)" rx="2" ry="2" />
<text x="925.08" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (577 samples, 0.05%)</title><rect x="607.2" y="1253" width="0.6" height="15.0" fill="rgb(209,203,35)" rx="2" ry="2" />
<text x="610.24" y="1263.5" ></text>
</g>
<g >
<title>memcpy (122 samples, 0.01%)</title><rect x="556.0" y="1205" width="0.1" height="15.0" fill="rgb(227,202,17)" rx="2" ry="2" />
<text x="559.03" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (300 samples, 0.02%)</title><rect x="988.1" y="1301" width="0.3" height="15.0" fill="rgb(247,185,43)" rx="2" ry="2" />
<text x="991.11" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (532 samples, 0.04%)</title><rect x="332.0" y="1285" width="0.5" height="15.0" fill="rgb(238,223,42)" rx="2" ry="2" />
<text x="335.02" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (104 samples, 0.01%)</title><rect x="888.5" y="1205" width="0.1" height="15.0" fill="rgb(237,187,45)" rx="2" ry="2" />
<text x="891.51" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (197 samples, 0.02%)</title><rect x="531.8" y="1029" width="0.2" height="15.0" fill="rgb(221,20,48)" rx="2" ry="2" />
<text x="534.77" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2651 (108 samples, 0.01%)</title><rect x="148.3" y="1269" width="0.1" height="15.0" fill="rgb(252,205,21)" rx="2" ry="2" />
<text x="151.34" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (143 samples, 0.01%)</title><rect x="589.4" y="1045" width="0.2" height="15.0" fill="rgb(253,62,19)" rx="2" ry="2" />
<text x="592.45" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1909" width="1.6" height="15.0" fill="rgb(249,101,5)" rx="2" ry="2" />
<text x="1189.27" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_output_string_1764 (162 samples, 0.01%)</title><rect x="139.5" y="1285" width="0.1" height="15.0" fill="rgb(251,21,24)" rx="2" ry="2" />
<text x="142.45" y="1295.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (879 samples, 0.07%)</title><rect x="960.5" y="1093" width="0.8" height="15.0" fill="rgb(212,51,7)" rx="2" ry="2" />
<text x="963.45" y="1103.5" ></text>
</g>
<g >
<title>caml_tuplify2 (156 samples, 0.01%)</title><rect x="305.4" y="1157" width="0.2" height="15.0" fill="rgb(208,14,43)" rx="2" ry="2" />
<text x="308.41" y="1167.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (2,230 samples, 0.18%)</title><rect x="865.9" y="1125" width="2.1" height="15.0" fill="rgb(232,135,15)" rx="2" ry="2" />
<text x="868.88" y="1135.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (370 samples, 0.03%)</title><rect x="102.0" y="1125" width="0.4" height="15.0" fill="rgb(234,49,9)" rx="2" ry="2" />
<text x="105.03" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_contents_7343 (1,904 samples, 0.16%)</title><rect x="114.2" y="1253" width="1.8" height="15.0" fill="rgb(238,22,40)" rx="2" ry="2" />
<text x="117.16" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Apply__fun_12941 (726 samples, 0.06%)</title><rect x="1172.8" y="837" width="0.7" height="15.0" fill="rgb(237,0,17)" rx="2" ry="2" />
<text x="1175.77" y="847.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (254 samples, 0.02%)</title><rect x="607.5" y="1221" width="0.2" height="15.0" fill="rgb(240,27,14)" rx="2" ry="2" />
<text x="610.49" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3393 (817 samples, 0.07%)</title><rect x="56.1" y="1893" width="0.8" height="15.0" fill="rgb(205,168,48)" rx="2" ry="2" />
<text x="59.14" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (548 samples, 0.05%)</title><rect x="989.0" y="1461" width="0.5" height="15.0" fill="rgb(248,92,31)" rx="2" ry="2" />
<text x="991.96" y="1471.5" ></text>
</g>
<g >
<title>blake2b_compress (209 samples, 0.02%)</title><rect x="107.4" y="1173" width="0.2" height="15.0" fill="rgb(217,84,26)" rx="2" ry="2" />
<text x="110.42" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (166 samples, 0.01%)</title><rect x="485.3" y="1301" width="0.2" height="15.0" fill="rgb(215,85,5)" rx="2" ry="2" />
<text x="488.30" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (197 samples, 0.02%)</title><rect x="405.2" y="1109" width="0.2" height="15.0" fill="rgb(218,116,53)" rx="2" ry="2" />
<text x="408.20" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_1014 (399 samples, 0.03%)</title><rect x="254.4" y="1205" width="0.4" height="15.0" fill="rgb(226,40,13)" rx="2" ry="2" />
<text x="257.36" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (657 samples, 0.05%)</title><rect x="531.4" y="1061" width="0.6" height="15.0" fill="rgb(250,96,24)" rx="2" ry="2" />
<text x="534.40" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (105 samples, 0.01%)</title><rect x="584.6" y="997" width="0.1" height="15.0" fill="rgb(229,5,36)" rx="2" ry="2" />
<text x="587.61" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__fun_4360 (129 samples, 0.01%)</title><rect x="991.9" y="1445" width="0.2" height="15.0" fill="rgb(254,225,45)" rx="2" ry="2" />
<text x="994.94" y="1455.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (138 samples, 0.01%)</title><rect x="326.7" y="1253" width="0.1" height="15.0" fill="rgb(225,218,9)" rx="2" ry="2" />
<text x="329.70" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (230 samples, 0.02%)</title><rect x="1182.3" y="1605" width="0.2" height="15.0" fill="rgb(217,186,45)" rx="2" ry="2" />
<text x="1185.26" y="1615.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (572 samples, 0.05%)</title><rect x="121.0" y="1109" width="0.6" height="15.0" fill="rgb(208,208,45)" rx="2" ry="2" />
<text x="124.02" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (110 samples, 0.01%)</title><rect x="570.6" y="1045" width="0.2" height="15.0" fill="rgb(209,54,50)" rx="2" ry="2" />
<text x="573.65" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__iteri_1153 (2,374 samples, 0.20%)</title><rect x="610.3" y="1269" width="2.3" height="15.0" fill="rgb(227,137,27)" rx="2" ry="2" />
<text x="613.27" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (2,740 samples, 0.23%)</title><rect x="836.1" y="1141" width="2.7" height="15.0" fill="rgb(214,36,52)" rx="2" ry="2" />
<text x="839.12" y="1151.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (119 samples, 0.01%)</title><rect x="201.6" y="1189" width="0.1" height="15.0" fill="rgb(241,152,41)" rx="2" ry="2" />
<text x="204.56" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (263 samples, 0.02%)</title><rect x="1162.5" y="1477" width="0.3" height="15.0" fill="rgb(220,62,23)" rx="2" ry="2" />
<text x="1165.52" y="1487.5" ></text>
</g>
<g >
<title>memcpy (210 samples, 0.02%)</title><rect x="242.8" y="1221" width="0.2" height="15.0" fill="rgb(234,220,11)" rx="2" ry="2" />
<text x="245.75" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (176 samples, 0.01%)</title><rect x="377.0" y="1221" width="0.1" height="15.0" fill="rgb(244,197,27)" rx="2" ry="2" />
<text x="379.96" y="1231.5" ></text>
</g>
<g >
<title>sweep_slice (138 samples, 0.01%)</title><rect x="895.8" y="1157" width="0.1" height="15.0" fill="rgb(209,170,42)" rx="2" ry="2" />
<text x="898.76" y="1167.5" ></text>
</g>
<g >
<title>caml_blit_bytes (139 samples, 0.01%)</title><rect x="359.8" y="1125" width="0.1" height="15.0" fill="rgb(206,157,28)" rx="2" ry="2" />
<text x="362.75" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_9686 (130 samples, 0.01%)</title><rect x="1173.7" y="853" width="0.1" height="15.0" fill="rgb(246,53,2)" rx="2" ry="2" />
<text x="1176.67" y="863.5" ></text>
</g>
<g >
<title>mark_slice (142 samples, 0.01%)</title><rect x="546.9" y="1173" width="0.1" height="15.0" fill="rgb(220,154,36)" rx="2" ry="2" />
<text x="549.88" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (10,495 samples, 0.86%)</title><rect x="340.5" y="1237" width="10.1" height="15.0" fill="rgb(242,40,12)" rx="2" ry="2" />
<text x="343.45" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,322 samples, 0.11%)</title><rect x="690.7" y="1205" width="1.3" height="15.0" fill="rgb(232,217,20)" rx="2" ry="2" />
<text x="693.68" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__check_operations_consistency_5495 (2,578 samples, 0.21%)</title><rect x="1177.5" y="1317" width="2.5" height="15.0" fill="rgb(205,141,22)" rx="2" ry="2" />
<text x="1180.53" y="1327.5" ></text>
</g>
<g >
<title>caml_blit_bytes (203 samples, 0.02%)</title><rect x="147.6" y="1253" width="0.1" height="15.0" fill="rgb(241,96,52)" rx="2" ry="2" />
<text x="150.55" y="1263.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (239 samples, 0.02%)</title><rect x="223.9" y="1173" width="0.3" height="15.0" fill="rgb(246,187,9)" rx="2" ry="2" />
<text x="226.94" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (681 samples, 0.06%)</title><rect x="469.4" y="1141" width="0.6" height="15.0" fill="rgb(210,32,1)" rx="2" ry="2" />
<text x="472.39" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (199 samples, 0.02%)</title><rect x="738.3" y="1157" width="0.2" height="15.0" fill="rgb(220,83,41)" rx="2" ry="2" />
<text x="741.32" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (392 samples, 0.03%)</title><rect x="462.0" y="1061" width="0.3" height="15.0" fill="rgb(207,54,28)" rx="2" ry="2" />
<text x="464.96" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (156 samples, 0.01%)</title><rect x="532.5" y="1045" width="0.1" height="15.0" fill="rgb(249,198,40)" rx="2" ry="2" />
<text x="535.46" y="1055.5" ></text>
</g>
<g >
<title>caml_apply2 (194 samples, 0.02%)</title><rect x="428.4" y="1189" width="0.2" height="15.0" fill="rgb(245,203,47)" rx="2" ry="2" />
<text x="431.36" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (388 samples, 0.03%)</title><rect x="126.4" y="1045" width="0.4" height="15.0" fill="rgb(217,93,51)" rx="2" ry="2" />
<text x="129.40" y="1055.5" ></text>
</g>
<g >
<title>caml_alloc_string (260 samples, 0.02%)</title><rect x="618.1" y="1269" width="0.2" height="15.0" fill="rgb(207,77,41)" rx="2" ry="2" />
<text x="621.08" y="1279.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (324 samples, 0.03%)</title><rect x="1183.1" y="1749" width="0.4" height="15.0" fill="rgb(231,72,4)" rx="2" ry="2" />
<text x="1186.15" y="1759.5" ></text>
</g>
<g >
<title>parse_format (523 samples, 0.04%)</title><rect x="811.2" y="1205" width="0.5" height="15.0" fill="rgb(240,132,11)" rx="2" ry="2" />
<text x="814.21" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_initialized_string (351 samples, 0.03%)</title><rect x="809.5" y="1189" width="0.3" height="15.0" fill="rgb(235,212,45)" rx="2" ry="2" />
<text x="812.48" y="1199.5" ></text>
</g>
<g >
<title>rotr64 (676 samples, 0.06%)</title><rect x="698.9" y="1205" width="0.6" height="15.0" fill="rgb(250,138,35)" rx="2" ry="2" />
<text x="701.86" y="1215.5" ></text>
</g>
<g >
<title>blake2b_compress (162 samples, 0.01%)</title><rect x="114.5" y="1141" width="0.2" height="15.0" fill="rgb(210,104,3)" rx="2" ry="2" />
<text x="117.50" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (107 samples, 0.01%)</title><rect x="518.7" y="853" width="0.1" height="15.0" fill="rgb(227,131,8)" rx="2" ry="2" />
<text x="521.67" y="863.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (417 samples, 0.03%)</title><rect x="574.4" y="885" width="0.4" height="15.0" fill="rgb(246,38,4)" rx="2" ry="2" />
<text x="577.44" y="895.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (260 samples, 0.02%)</title><rect x="98.4" y="1269" width="0.2" height="15.0" fill="rgb(227,59,4)" rx="2" ry="2" />
<text x="101.37" y="1279.5" ></text>
</g>
<g >
<title>compare_val (290 samples, 0.02%)</title><rect x="478.3" y="1269" width="0.3" height="15.0" fill="rgb(206,2,14)" rx="2" ry="2" />
<text x="481.34" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,984 samples, 0.25%)</title><rect x="959.1" y="1125" width="2.9" height="15.0" fill="rgb(223,84,17)" rx="2" ry="2" />
<text x="962.09" y="1135.5" ></text>
</g>
<g >
<title>ml_Hacl_Ed25519_verify (108 samples, 0.01%)</title><rect x="1173.0" y="725" width="0.1" height="15.0" fill="rgb(231,28,16)" rx="2" ry="2" />
<text x="1176.00" y="735.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (3,193 samples, 0.26%)</title><rect x="162.1" y="1317" width="3.1" height="15.0" fill="rgb(226,158,31)" rx="2" ry="2" />
<text x="165.09" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (65,684 samples, 5.40%)</title><rect x="556.6" y="1333" width="63.7" height="15.0" fill="rgb(229,211,26)" rx="2" ry="2" />
<text x="559.64" y="1343.5" >camlSt..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="421" width="1.6" height="15.0" fill="rgb(219,149,21)" rx="2" ry="2" />
<text x="1189.27" y="431.5" ></text>
</g>
<g >
<title>caml_call_gc (325 samples, 0.03%)</title><rect x="68.2" y="1909" width="0.3" height="15.0" fill="rgb(249,70,28)" rx="2" ry="2" />
<text x="71.17" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1125" width="1.6" height="15.0" fill="rgb(211,211,25)" rx="2" ry="2" />
<text x="1189.27" y="1135.5" ></text>
</g>
<g >
<title>security_file_permission (359 samples, 0.03%)</title><rect x="314.5" y="1061" width="0.4" height="15.0" fill="rgb(249,119,34)" rx="2" ry="2" />
<text x="317.54" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (220 samples, 0.02%)</title><rect x="402.1" y="1109" width="0.2" height="15.0" fill="rgb(210,86,28)" rx="2" ry="2" />
<text x="405.13" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (124 samples, 0.01%)</title><rect x="94.8" y="1205" width="0.1" height="15.0" fill="rgb(224,154,9)" rx="2" ry="2" />
<text x="97.79" y="1215.5" ></text>
</g>
<g >
<title>caml_hash (124 samples, 0.01%)</title><rect x="223.5" y="1109" width="0.2" height="15.0" fill="rgb(231,88,10)" rx="2" ry="2" />
<text x="226.53" y="1119.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (118 samples, 0.01%)</title><rect x="1147.0" y="1349" width="0.1" height="15.0" fill="rgb(234,198,16)" rx="2" ry="2" />
<text x="1150.03" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (300 samples, 0.02%)</title><rect x="488.3" y="1237" width="0.3" height="15.0" fill="rgb(224,10,48)" rx="2" ry="2" />
<text x="491.29" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_variable_pair_1525 (154 samples, 0.01%)</title><rect x="1181.8" y="1253" width="0.2" height="15.0" fill="rgb(239,131,14)" rx="2" ry="2" />
<text x="1184.83" y="1263.5" ></text>
</g>
<g >
<title>caml_fl_allocate (3,347 samples, 0.28%)</title><rect x="20.2" y="1973" width="3.2" height="15.0" fill="rgb(216,71,41)" rx="2" ry="2" />
<text x="23.17" y="1983.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__fun_32626 (375 samples, 0.03%)</title><rect x="104.2" y="1269" width="0.4" height="15.0" fill="rgb(235,47,22)" rx="2" ry="2" />
<text x="107.23" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (249 samples, 0.02%)</title><rect x="574.5" y="677" width="0.2" height="15.0" fill="rgb(222,23,6)" rx="2" ry="2" />
<text x="577.49" y="687.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (616 samples, 0.05%)</title><rect x="954.3" y="1173" width="0.6" height="15.0" fill="rgb(237,215,51)" rx="2" ry="2" />
<text x="957.28" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Operation_repr__check_6967 (242 samples, 0.02%)</title><rect x="1173.2" y="773" width="0.3" height="15.0" fill="rgb(223,120,36)" rx="2" ry="2" />
<text x="1176.24" y="783.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (394 samples, 0.03%)</title><rect x="581.5" y="1029" width="0.4" height="15.0" fill="rgb(246,55,23)" rx="2" ry="2" />
<text x="584.52" y="1039.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (104 samples, 0.01%)</title><rect x="613.2" y="1253" width="0.1" height="15.0" fill="rgb(237,63,45)" rx="2" ry="2" />
<text x="616.17" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (164 samples, 0.01%)</title><rect x="577.4" y="965" width="0.1" height="15.0" fill="rgb(231,87,39)" rx="2" ry="2" />
<text x="580.36" y="975.5" ></text>
</g>
<g >
<title>caml_hash (600 samples, 0.05%)</title><rect x="226.5" y="1173" width="0.6" height="15.0" fill="rgb(214,188,4)" rx="2" ry="2" />
<text x="229.54" y="1183.5" ></text>
</g>
<g >
<title>do_page_fault (151 samples, 0.01%)</title><rect x="1161.8" y="1413" width="0.1" height="15.0" fill="rgb(220,213,30)" rx="2" ry="2" />
<text x="1164.77" y="1423.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (826 samples, 0.07%)</title><rect x="675.9" y="1237" width="0.8" height="15.0" fill="rgb(231,121,33)" rx="2" ry="2" />
<text x="678.92" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (570 samples, 0.05%)</title><rect x="985.2" y="1317" width="0.5" height="15.0" fill="rgb(205,49,0)" rx="2" ry="2" />
<text x="988.17" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (242 samples, 0.02%)</title><rect x="581.6" y="1013" width="0.2" height="15.0" fill="rgb(225,22,38)" rx="2" ry="2" />
<text x="584.60" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11090 (129 samples, 0.01%)</title><rect x="129.0" y="1237" width="0.1" height="15.0" fill="rgb(251,120,42)" rx="2" ry="2" />
<text x="132.01" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (433 samples, 0.04%)</title><rect x="838.3" y="1077" width="0.4" height="15.0" fill="rgb(225,108,35)" rx="2" ry="2" />
<text x="841.26" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (865 samples, 0.07%)</title><rect x="600.3" y="1221" width="0.9" height="15.0" fill="rgb(215,133,21)" rx="2" ry="2" />
<text x="603.34" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (345 samples, 0.03%)</title><rect x="518.9" y="949" width="0.3" height="15.0" fill="rgb(217,82,40)" rx="2" ry="2" />
<text x="521.86" y="959.5" ></text>
</g>
<g >
<title>caml_call_gc (152 samples, 0.01%)</title><rect x="75.8" y="1829" width="0.2" height="15.0" fill="rgb(254,65,33)" rx="2" ry="2" />
<text x="78.83" y="1839.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (246 samples, 0.02%)</title><rect x="573.9" y="949" width="0.3" height="15.0" fill="rgb(249,124,9)" rx="2" ry="2" />
<text x="576.94" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (1,269 samples, 0.10%)</title><rect x="435.3" y="1269" width="1.2" height="15.0" fill="rgb(247,194,4)" rx="2" ry="2" />
<text x="438.28" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (166 samples, 0.01%)</title><rect x="381.6" y="1109" width="0.1" height="15.0" fill="rgb(241,81,40)" rx="2" ry="2" />
<text x="384.58" y="1119.5" ></text>
</g>
<g >
<title>caml_alloc_string (107 samples, 0.01%)</title><rect x="738.6" y="1269" width="0.1" height="15.0" fill="rgb(206,74,36)" rx="2" ry="2" />
<text x="741.60" y="1279.5" ></text>
</g>
<g >
<title>sweep_slice (174 samples, 0.01%)</title><rect x="649.0" y="1221" width="0.2" height="15.0" fill="rgb(237,48,13)" rx="2" ry="2" />
<text x="652.03" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8059 (178 samples, 0.01%)</title><rect x="302.2" y="1125" width="0.2" height="15.0" fill="rgb(236,175,0)" rx="2" ry="2" />
<text x="305.22" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3601 (158 samples, 0.01%)</title><rect x="243.4" y="1269" width="0.1" height="15.0" fill="rgb(218,132,2)" rx="2" ry="2" />
<text x="246.36" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (134 samples, 0.01%)</title><rect x="608.5" y="1205" width="0.1" height="15.0" fill="rgb(221,151,25)" rx="2" ry="2" />
<text x="611.45" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (10,009 samples, 0.82%)</title><rect x="675.4" y="1285" width="9.7" height="15.0" fill="rgb(210,172,10)" rx="2" ry="2" />
<text x="678.44" y="1295.5" ></text>
</g>
<g >
<title>mdb_page_search (415 samples, 0.03%)</title><rect x="487.3" y="1189" width="0.4" height="15.0" fill="rgb(241,141,34)" rx="2" ry="2" />
<text x="490.25" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (196 samples, 0.02%)</title><rect x="399.0" y="1109" width="0.2" height="15.0" fill="rgb(252,177,40)" rx="2" ry="2" />
<text x="402.02" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_stdlib__TzList__last_exn_1080 (138 samples, 0.01%)</title><rect x="650.7" y="1317" width="0.1" height="15.0" fill="rgb(210,10,17)" rx="2" ry="2" />
<text x="653.67" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (134 samples, 0.01%)</title><rect x="740.6" y="1269" width="0.1" height="15.0" fill="rgb(237,19,53)" rx="2" ry="2" />
<text x="743.55" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (214 samples, 0.02%)</title><rect x="431.1" y="1269" width="0.2" height="15.0" fill="rgb(215,179,38)" rx="2" ry="2" />
<text x="434.08" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (267 samples, 0.02%)</title><rect x="99.8" y="1173" width="0.3" height="15.0" fill="rgb(229,140,5)" rx="2" ry="2" />
<text x="102.84" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,352 samples, 0.11%)</title><rect x="516.4" y="789" width="1.3" height="15.0" fill="rgb(222,1,45)" rx="2" ry="2" />
<text x="519.41" y="799.5" ></text>
</g>
<g >
<title>caml_alloc_small (484 samples, 0.04%)</title><rect x="330.4" y="1301" width="0.5" height="15.0" fill="rgb(249,148,45)" rx="2" ry="2" />
<text x="333.43" y="1311.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_s_1068 (164,210 samples, 13.49%)</title><rect x="991.0" y="1493" width="159.2" height="15.0" fill="rgb(243,33,39)" rx="2" ry="2" />
<text x="993.99" y="1503.5" >camlLwt_list__iter_s..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (984 samples, 0.08%)</title><rect x="516.5" y="485" width="0.9" height="15.0" fill="rgb(251,198,26)" rx="2" ry="2" />
<text x="519.46" y="495.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6062 (218 samples, 0.02%)</title><rect x="97.0" y="1301" width="0.2" height="15.0" fill="rgb(248,45,2)" rx="2" ry="2" />
<text x="99.96" y="1311.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (104 samples, 0.01%)</title><rect x="1180.1" y="1253" width="0.1" height="15.0" fill="rgb(254,68,39)" rx="2" ry="2" />
<text x="1183.07" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (170 samples, 0.01%)</title><rect x="268.4" y="1285" width="0.2" height="15.0" fill="rgb(215,37,28)" rx="2" ry="2" />
<text x="271.44" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (16,447 samples, 1.35%)</title><rect x="956.7" y="1221" width="15.9" height="15.0" fill="rgb(227,56,47)" rx="2" ry="2" />
<text x="959.66" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter2_1195 (162 samples, 0.01%)</title><rect x="129.6" y="1285" width="0.2" height="15.0" fill="rgb(219,43,51)" rx="2" ry="2" />
<text x="132.64" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (928 samples, 0.08%)</title><rect x="798.7" y="1237" width="0.9" height="15.0" fill="rgb(221,210,1)" rx="2" ry="2" />
<text x="801.75" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (141 samples, 0.01%)</title><rect x="127.4" y="1077" width="0.1" height="15.0" fill="rgb(222,51,25)" rx="2" ry="2" />
<text x="130.41" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (1,297 samples, 0.11%)</title><rect x="819.6" y="1157" width="1.2" height="15.0" fill="rgb(215,177,7)" rx="2" ry="2" />
<text x="822.57" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (272 samples, 0.02%)</title><rect x="322.8" y="1221" width="0.3" height="15.0" fill="rgb(250,186,14)" rx="2" ry="2" />
<text x="325.84" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (26,919 samples, 2.21%)</title><rect x="388.9" y="1221" width="26.1" height="15.0" fill="rgb(213,129,7)" rx="2" ry="2" />
<text x="391.94" y="1231.5" >c..</text>
</g>
<g >
<title>mdb_put (418 samples, 0.03%)</title><rect x="488.8" y="1237" width="0.4" height="15.0" fill="rgb(217,46,42)" rx="2" ry="2" />
<text x="491.81" y="1247.5" ></text>
</g>
<g >
<title>__GI___tcgetattr (506 samples, 0.04%)</title><rect x="978.1" y="1333" width="0.5" height="15.0" fill="rgb(248,65,28)" rx="2" ry="2" />
<text x="981.07" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (276 samples, 0.02%)</title><rect x="611.9" y="1173" width="0.2" height="15.0" fill="rgb(234,107,35)" rx="2" ry="2" />
<text x="614.87" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (372 samples, 0.03%)</title><rect x="708.2" y="1301" width="0.3" height="15.0" fill="rgb(237,203,49)" rx="2" ry="2" />
<text x="711.17" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (155 samples, 0.01%)</title><rect x="127.4" y="1109" width="0.1" height="15.0" fill="rgb(248,18,52)" rx="2" ry="2" />
<text x="130.39" y="1119.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (198 samples, 0.02%)</title><rect x="163.0" y="1269" width="0.2" height="15.0" fill="rgb(230,175,29)" rx="2" ry="2" />
<text x="166.05" y="1279.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (2,333 samples, 0.19%)</title><rect x="874.1" y="1157" width="2.2" height="15.0" fill="rgb(206,136,10)" rx="2" ry="2" />
<text x="877.07" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (160 samples, 0.01%)</title><rect x="742.4" y="1317" width="0.2" height="15.0" fill="rgb(211,173,3)" rx="2" ry="2" />
<text x="745.43" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (1,101 samples, 0.09%)</title><rect x="1171.0" y="1477" width="1.1" height="15.0" fill="rgb(205,72,53)" rx="2" ry="2" />
<text x="1174.01" y="1487.5" ></text>
</g>
<g >
<title>ml_blake2b_update (564 samples, 0.05%)</title><rect x="555.6" y="1237" width="0.6" height="15.0" fill="rgb(217,163,3)" rx="2" ry="2" />
<text x="558.62" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (743 samples, 0.06%)</title><rect x="647.6" y="1221" width="0.7" height="15.0" fill="rgb(244,185,25)" rx="2" ry="2" />
<text x="650.56" y="1231.5" ></text>
</g>
<g >
<title>IO_validate_vtable (119 samples, 0.01%)</title><rect x="1128.9" y="1285" width="0.1" height="15.0" fill="rgb(234,177,10)" rx="2" ry="2" />
<text x="1131.87" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (288 samples, 0.02%)</title><rect x="68.2" y="1861" width="0.2" height="15.0" fill="rgb(235,133,42)" rx="2" ry="2" />
<text x="71.17" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (397 samples, 0.03%)</title><rect x="311.2" y="1157" width="0.4" height="15.0" fill="rgb(220,59,9)" rx="2" ry="2" />
<text x="314.23" y="1167.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (121 samples, 0.01%)</title><rect x="1173.7" y="549" width="0.1" height="15.0" fill="rgb(213,103,37)" rx="2" ry="2" />
<text x="1176.68" y="559.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3806 (141 samples, 0.01%)</title><rect x="407.9" y="1125" width="0.2" height="15.0" fill="rgb(216,150,40)" rx="2" ry="2" />
<text x="410.93" y="1135.5" ></text>
</g>
<g >
<title>caml_alloc_string (167 samples, 0.01%)</title><rect x="1172.4" y="1637" width="0.1" height="15.0" fill="rgb(208,1,10)" rx="2" ry="2" />
<text x="1175.36" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin__Type__variant_3671 (949 samples, 0.08%)</title><rect x="445.8" y="1237" width="0.9" height="15.0" fill="rgb(235,148,0)" rx="2" ry="2" />
<text x="448.77" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (126 samples, 0.01%)</title><rect x="171.0" y="1269" width="0.1" height="15.0" fill="rgb(218,161,44)" rx="2" ry="2" />
<text x="173.97" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__string__unsafe_blits_1092 (10,781 samples, 0.89%)</title><rect x="1074.1" y="1381" width="10.5" height="15.0" fill="rgb(251,122,48)" rx="2" ry="2" />
<text x="1077.12" y="1391.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (309 samples, 0.03%)</title><rect x="1182.7" y="1733" width="0.3" height="15.0" fill="rgb(246,221,44)" rx="2" ry="2" />
<text x="1185.67" y="1743.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (409 samples, 0.03%)</title><rect x="99.0" y="1125" width="0.4" height="15.0" fill="rgb(222,174,33)" rx="2" ry="2" />
<text x="101.99" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_rpc__RPC_encoding__schema_1497 (397 samples, 0.03%)</title><rect x="1182.7" y="1845" width="0.3" height="15.0" fill="rgb(208,92,34)" rx="2" ry="2" />
<text x="1185.65" y="1855.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (135 samples, 0.01%)</title><rect x="81.2" y="1909" width="0.1" height="15.0" fill="rgb(251,88,27)" rx="2" ry="2" />
<text x="84.18" y="1919.5" ></text>
</g>
<g >
<title>caml_garbage_collection (112 samples, 0.01%)</title><rect x="493.6" y="1221" width="0.1" height="15.0" fill="rgb(248,74,26)" rx="2" ry="2" />
<text x="496.61" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (110 samples, 0.01%)</title><rect x="519.0" y="917" width="0.1" height="15.0" fill="rgb(230,48,45)" rx="2" ry="2" />
<text x="522.00" y="927.5" ></text>
</g>
<g >
<title>caml_mutex_lock (183 samples, 0.02%)</title><rect x="430.3" y="1237" width="0.1" height="15.0" fill="rgb(236,73,54)" rx="2" ry="2" />
<text x="433.27" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (178 samples, 0.01%)</title><rect x="805.4" y="1189" width="0.2" height="15.0" fill="rgb(252,188,10)" rx="2" ry="2" />
<text x="808.43" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (263 samples, 0.02%)</title><rect x="488.3" y="1205" width="0.3" height="15.0" fill="rgb(212,93,7)" rx="2" ry="2" />
<text x="491.31" y="1215.5" ></text>
</g>
<g >
<title>caml_make_vect (366 samples, 0.03%)</title><rect x="81.0" y="1941" width="0.3" height="15.0" fill="rgb(241,182,54)" rx="2" ry="2" />
<text x="83.97" y="1951.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (15,194 samples, 1.25%)</title><rect x="756.5" y="1253" width="14.7" height="15.0" fill="rgb(254,36,41)" rx="2" ry="2" />
<text x="759.45" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (2,450 samples, 0.20%)</title><rect x="941.8" y="1125" width="2.4" height="15.0" fill="rgb(215,182,52)" rx="2" ry="2" />
<text x="944.81" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (332 samples, 0.03%)</title><rect x="154.2" y="1317" width="0.3" height="15.0" fill="rgb(243,227,11)" rx="2" ry="2" />
<text x="157.21" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (378 samples, 0.03%)</title><rect x="525.7" y="1013" width="0.3" height="15.0" fill="rgb(243,99,38)" rx="2" ry="2" />
<text x="528.67" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (807 samples, 0.07%)</title><rect x="538.3" y="1157" width="0.8" height="15.0" fill="rgb(216,39,19)" rx="2" ry="2" />
<text x="541.28" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (1,356 samples, 0.11%)</title><rect x="426.8" y="1173" width="1.4" height="15.0" fill="rgb(252,111,1)" rx="2" ry="2" />
<text x="429.84" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (917 samples, 0.08%)</title><rect x="516.5" y="309" width="0.9" height="15.0" fill="rgb(212,34,9)" rx="2" ry="2" />
<text x="519.48" y="319.5" ></text>
</g>
<g >
<title>memcpy (207 samples, 0.02%)</title><rect x="354.6" y="1157" width="0.2" height="15.0" fill="rgb(250,46,16)" rx="2" ry="2" />
<text x="357.64" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__compare_2487 (179 samples, 0.01%)</title><rect x="349.4" y="1157" width="0.2" height="15.0" fill="rgb(207,15,50)" rx="2" ry="2" />
<text x="352.45" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (822 samples, 0.07%)</title><rect x="739.4" y="1285" width="0.8" height="15.0" fill="rgb(242,74,11)" rx="2" ry="2" />
<text x="742.39" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (236 samples, 0.02%)</title><rect x="167.2" y="1317" width="0.2" height="15.0" fill="rgb(253,188,27)" rx="2" ry="2" />
<text x="170.17" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (120 samples, 0.01%)</title><rect x="1172.1" y="1509" width="0.1" height="15.0" fill="rgb(233,159,17)" rx="2" ry="2" />
<text x="1175.08" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (269 samples, 0.02%)</title><rect x="574.5" y="709" width="0.2" height="15.0" fill="rgb(220,168,29)" rx="2" ry="2" />
<text x="577.48" y="719.5" ></text>
</g>
<g >
<title>caml_alloc_string (112 samples, 0.01%)</title><rect x="532.8" y="1061" width="0.1" height="15.0" fill="rgb(223,194,25)" rx="2" ry="2" />
<text x="535.82" y="1071.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (116 samples, 0.01%)</title><rect x="554.8" y="1253" width="0.1" height="15.0" fill="rgb(244,36,33)" rx="2" ry="2" />
<text x="557.80" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__list_3633 (783 samples, 0.06%)</title><rect x="438.2" y="1253" width="0.8" height="15.0" fill="rgb(248,110,48)" rx="2" ry="2" />
<text x="441.22" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_stdlib_unix__Utils__prnt_1089 (266 samples, 0.02%)</title><rect x="96.6" y="1317" width="0.2" height="15.0" fill="rgb(208,161,51)" rx="2" ry="2" />
<text x="99.59" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (3,467 samples, 0.28%)</title><rect x="973.6" y="1173" width="3.4" height="15.0" fill="rgb(210,124,37)" rx="2" ry="2" />
<text x="976.63" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8141 (206 samples, 0.02%)</title><rect x="217.2" y="1253" width="0.2" height="15.0" fill="rgb(206,207,44)" rx="2" ry="2" />
<text x="220.17" y="1263.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (166 samples, 0.01%)</title><rect x="1185.1" y="1365" width="0.1" height="15.0" fill="rgb(223,185,5)" rx="2" ry="2" />
<text x="1188.08" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (1,039 samples, 0.09%)</title><rect x="375.1" y="1173" width="1.0" height="15.0" fill="rgb(246,214,35)" rx="2" ry="2" />
<text x="378.08" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (244 samples, 0.02%)</title><rect x="456.2" y="1045" width="0.2" height="15.0" fill="rgb(248,162,54)" rx="2" ry="2" />
<text x="459.16" y="1055.5" ></text>
</g>
<g >
<title>sys_pread64 (943 samples, 0.08%)</title><rect x="410.9" y="1077" width="0.9" height="15.0" fill="rgb(214,91,40)" rx="2" ry="2" />
<text x="413.89" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (123 samples, 0.01%)</title><rect x="455.2" y="1013" width="0.2" height="15.0" fill="rgb(247,64,11)" rx="2" ry="2" />
<text x="458.25" y="1023.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (795 samples, 0.07%)</title><rect x="503.0" y="1221" width="0.8" height="15.0" fill="rgb(223,221,15)" rx="2" ry="2" />
<text x="505.99" y="1231.5" ></text>
</g>
<g >
<title>mdb_cursor_touch (159 samples, 0.01%)</title><rect x="486.2" y="1237" width="0.1" height="15.0" fill="rgb(243,150,46)" rx="2" ry="2" />
<text x="489.17" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (176 samples, 0.01%)</title><rect x="593.8" y="1141" width="0.2" height="15.0" fill="rgb(205,15,3)" rx="2" ry="2" />
<text x="596.81" y="1151.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (612 samples, 0.05%)</title><rect x="1110.6" y="1317" width="0.6" height="15.0" fill="rgb(232,150,3)" rx="2" ry="2" />
<text x="1113.64" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (120 samples, 0.01%)</title><rect x="960.9" y="1029" width="0.2" height="15.0" fill="rgb(232,0,29)" rx="2" ry="2" />
<text x="963.94" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__check_allowed_bytes_1069 (593 samples, 0.05%)</title><rect x="837.3" y="1109" width="0.6" height="15.0" fill="rgb(216,203,54)" rx="2" ry="2" />
<text x="840.33" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (786 samples, 0.06%)</title><rect x="844.4" y="1157" width="0.8" height="15.0" fill="rgb(250,205,51)" rx="2" ry="2" />
<text x="847.41" y="1167.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (124 samples, 0.01%)</title><rect x="226.7" y="1157" width="0.1" height="15.0" fill="rgb(242,20,29)" rx="2" ry="2" />
<text x="229.72" y="1167.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (171 samples, 0.01%)</title><rect x="1185.1" y="1429" width="0.1" height="15.0" fill="rgb(248,48,52)" rx="2" ry="2" />
<text x="1188.08" y="1439.5" ></text>
</g>
<g >
<title>sweep_slice (251 samples, 0.02%)</title><rect x="845.2" y="1173" width="0.2" height="15.0" fill="rgb(218,201,43)" rx="2" ry="2" />
<text x="848.17" y="1183.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (132 samples, 0.01%)</title><rect x="84.9" y="1861" width="0.1" height="15.0" fill="rgb(248,213,33)" rx="2" ry="2" />
<text x="87.89" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (169 samples, 0.01%)</title><rect x="475.7" y="1253" width="0.1" height="15.0" fill="rgb(221,26,1)" rx="2" ry="2" />
<text x="478.66" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (572 samples, 0.05%)</title><rect x="509.8" y="1061" width="0.5" height="15.0" fill="rgb(246,175,14)" rx="2" ry="2" />
<text x="512.79" y="1071.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (15,040 samples, 1.24%)</title><rect x="292.2" y="1221" width="14.6" height="15.0" fill="rgb(222,166,39)" rx="2" ry="2" />
<text x="295.18" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (127 samples, 0.01%)</title><rect x="189.7" y="1173" width="0.2" height="15.0" fill="rgb(211,89,38)" rx="2" ry="2" />
<text x="192.74" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__format__add_queue_1744 (108 samples, 0.01%)</title><rect x="142.2" y="1285" width="0.1" height="15.0" fill="rgb(215,11,23)" rx="2" ry="2" />
<text x="145.22" y="1295.5" ></text>
</g>
<g >
<title>camlLmdb__return_inner_2980 (120 samples, 0.01%)</title><rect x="877.6" y="1269" width="0.1" height="15.0" fill="rgb(229,215,10)" rx="2" ry="2" />
<text x="880.56" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,141 samples, 0.09%)</title><rect x="116.4" y="1141" width="1.1" height="15.0" fill="rgb(245,169,13)" rx="2" ry="2" />
<text x="119.41" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_flush_queue_2026 (4,043 samples, 0.33%)</title><rect x="136.1" y="1349" width="3.9" height="15.0" fill="rgb(205,84,17)" rx="2" ry="2" />
<text x="139.09" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (441 samples, 0.04%)</title><rect x="408.5" y="1141" width="0.4" height="15.0" fill="rgb(230,126,9)" rx="2" ry="2" />
<text x="411.46" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (123 samples, 0.01%)</title><rect x="973.4" y="1173" width="0.1" height="15.0" fill="rgb(242,31,48)" rx="2" ry="2" />
<text x="976.39" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__clear_map_6572 (138 samples, 0.01%)</title><rect x="472.3" y="1285" width="0.1" height="15.0" fill="rgb(241,156,2)" rx="2" ry="2" />
<text x="475.27" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (349 samples, 0.03%)</title><rect x="342.7" y="1093" width="0.3" height="15.0" fill="rgb(222,57,53)" rx="2" ry="2" />
<text x="345.71" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_6402 (4,540 samples, 0.37%)</title><rect x="269.7" y="1285" width="4.4" height="15.0" fill="rgb(231,7,3)" rx="2" ry="2" />
<text x="272.74" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (137 samples, 0.01%)</title><rect x="546.5" y="1189" width="0.1" height="15.0" fill="rgb(217,21,3)" rx="2" ry="2" />
<text x="549.46" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (109 samples, 0.01%)</title><rect x="532.6" y="1061" width="0.1" height="15.0" fill="rgb(250,173,10)" rx="2" ry="2" />
<text x="535.61" y="1071.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (641 samples, 0.05%)</title><rect x="288.6" y="1109" width="0.6" height="15.0" fill="rgb(241,168,21)" rx="2" ry="2" />
<text x="291.55" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6720 (139 samples, 0.01%)</title><rect x="418.5" y="1189" width="0.1" height="15.0" fill="rgb(205,48,21)" rx="2" ry="2" />
<text x="421.51" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (943 samples, 0.08%)</title><rect x="975.2" y="1141" width="1.0" height="15.0" fill="rgb(221,143,40)" rx="2" ry="2" />
<text x="978.25" y="1151.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (107 samples, 0.01%)</title><rect x="891.6" y="1173" width="0.1" height="15.0" fill="rgb(230,196,42)" rx="2" ry="2" />
<text x="894.56" y="1183.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (160 samples, 0.01%)</title><rect x="708.6" y="1269" width="0.2" height="15.0" fill="rgb(246,130,17)" rx="2" ry="2" />
<text x="711.60" y="1279.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (117 samples, 0.01%)</title><rect x="1184.6" y="1381" width="0.1" height="15.0" fill="rgb(235,145,34)" rx="2" ry="2" />
<text x="1187.60" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (334 samples, 0.03%)</title><rect x="249.7" y="1221" width="0.3" height="15.0" fill="rgb(234,122,7)" rx="2" ry="2" />
<text x="252.65" y="1231.5" ></text>
</g>
<g >
<title>memcpy (121 samples, 0.01%)</title><rect x="270.2" y="1173" width="0.1" height="15.0" fill="rgb(232,32,30)" rx="2" ry="2" />
<text x="273.19" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (170 samples, 0.01%)</title><rect x="131.9" y="1317" width="0.1" height="15.0" fill="rgb(229,106,47)" rx="2" ry="2" />
<text x="134.85" y="1327.5" ></text>
</g>
<g >
<title>ml_blake2b_final (602 samples, 0.05%)</title><rect x="557.5" y="1253" width="0.6" height="15.0" fill="rgb(221,214,39)" rx="2" ry="2" />
<text x="560.53" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (12,959 samples, 1.06%)</title><rect x="245.4" y="1269" width="12.6" height="15.0" fill="rgb(219,38,44)" rx="2" ry="2" />
<text x="248.39" y="1279.5" ></text>
</g>
<g >
<title>rotr64 (137 samples, 0.01%)</title><rect x="505.0" y="1093" width="0.1" height="15.0" fill="rgb(229,196,10)" rx="2" ry="2" />
<text x="507.99" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (644 samples, 0.05%)</title><rect x="577.2" y="997" width="0.6" height="15.0" fill="rgb(250,219,20)" rx="2" ry="2" />
<text x="580.16" y="1007.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (320 samples, 0.03%)</title><rect x="539.1" y="1141" width="0.3" height="15.0" fill="rgb(209,56,28)" rx="2" ry="2" />
<text x="542.10" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (550 samples, 0.05%)</title><rect x="200.6" y="1253" width="0.5" height="15.0" fill="rgb(252,169,39)" rx="2" ry="2" />
<text x="203.60" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (541 samples, 0.04%)</title><rect x="1184.2" y="1541" width="0.5" height="15.0" fill="rgb(224,109,8)" rx="2" ry="2" />
<text x="1187.19" y="1551.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (130 samples, 0.01%)</title><rect x="1173.7" y="869" width="0.1" height="15.0" fill="rgb(239,199,21)" rx="2" ry="2" />
<text x="1176.67" y="879.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (247 samples, 0.02%)</title><rect x="344.2" y="1093" width="0.3" height="15.0" fill="rgb(234,13,53)" rx="2" ry="2" />
<text x="347.21" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (151 samples, 0.01%)</title><rect x="897.3" y="1205" width="0.2" height="15.0" fill="rgb(234,24,26)" rx="2" ry="2" />
<text x="900.33" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (20,130 samples, 1.65%)</title><rect x="200.0" y="1317" width="19.5" height="15.0" fill="rgb(208,227,25)" rx="2" ry="2" />
<text x="203.00" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__compute_4367 (32,090 samples, 2.64%)</title><rect x="620.3" y="1333" width="31.1" height="15.0" fill="rgb(232,133,32)" rx="2" ry="2" />
<text x="623.33" y="1343.5" >ca..</text>
</g>
<g >
<title>caml_compact_heap_maybe (550 samples, 0.05%)</title><rect x="985.2" y="1301" width="0.5" height="15.0" fill="rgb(217,84,16)" rx="2" ry="2" />
<text x="988.17" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (294 samples, 0.02%)</title><rect x="947.1" y="1077" width="0.3" height="15.0" fill="rgb(208,137,12)" rx="2" ry="2" />
<text x="950.07" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,240 samples, 0.10%)</title><rect x="116.3" y="1157" width="1.2" height="15.0" fill="rgb(207,92,52)" rx="2" ry="2" />
<text x="119.34" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_9239 (9,005 samples, 0.74%)</title><rect x="450.0" y="1173" width="8.7" height="15.0" fill="rgb(226,174,20)" rx="2" ry="2" />
<text x="452.96" y="1183.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (170 samples, 0.01%)</title><rect x="694.5" y="1253" width="0.1" height="15.0" fill="rgb(227,198,52)" rx="2" ry="2" />
<text x="697.47" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (1,310 samples, 0.11%)</title><rect x="614.1" y="1253" width="1.2" height="15.0" fill="rgb(207,184,1)" rx="2" ry="2" />
<text x="617.06" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (3,983 samples, 0.33%)</title><rect x="973.3" y="1237" width="3.8" height="15.0" fill="rgb(244,90,10)" rx="2" ry="2" />
<text x="976.28" y="1247.5" ></text>
</g>
<g >
<title>camlLwt_engine__fun_3527 (1,117,557 samples, 91.83%)</title><rect x="92.2" y="1797" width="1083.7" height="15.0" fill="rgb(229,21,15)" rx="2" ry="2" />
<text x="95.25" y="1807.5" >camlLwt_engine__fun_3527</text>
</g>
<g >
<title>camlIndex_unix__aux_1515 (182 samples, 0.01%)</title><rect x="457.0" y="1045" width="0.1" height="15.0" fill="rgb(209,67,18)" rx="2" ry="2" />
<text x="459.96" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (940 samples, 0.08%)</title><rect x="1105.5" y="1365" width="1.0" height="15.0" fill="rgb(247,183,41)" rx="2" ry="2" />
<text x="1108.54" y="1375.5" ></text>
</g>
<g >
<title>caml_apply3 (154 samples, 0.01%)</title><rect x="913.4" y="1285" width="0.1" height="15.0" fill="rgb(225,164,26)" rx="2" ry="2" />
<text x="916.35" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (9,042 samples, 0.74%)</title><rect x="206.8" y="1221" width="8.8" height="15.0" fill="rgb(215,144,19)" rx="2" ry="2" />
<text x="209.80" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (405 samples, 0.03%)</title><rect x="896.0" y="1173" width="0.4" height="15.0" fill="rgb(246,205,22)" rx="2" ry="2" />
<text x="899.00" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8104 (224 samples, 0.02%)</title><rect x="396.3" y="1109" width="0.2" height="15.0" fill="rgb(210,188,17)" rx="2" ry="2" />
<text x="399.29" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_2491 (374 samples, 0.03%)</title><rect x="315.9" y="1221" width="0.3" height="15.0" fill="rgb(234,38,18)" rx="2" ry="2" />
<text x="318.87" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (122 samples, 0.01%)</title><rect x="534.6" y="1077" width="0.2" height="15.0" fill="rgb(235,202,41)" rx="2" ry="2" />
<text x="537.64" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (257 samples, 0.02%)</title><rect x="86.5" y="1861" width="0.2" height="15.0" fill="rgb(252,165,49)" rx="2" ry="2" />
<text x="89.49" y="1871.5" ></text>
</g>
<g >
<title>vfs_read (212 samples, 0.02%)</title><rect x="183.6" y="1077" width="0.2" height="15.0" fill="rgb(244,64,19)" rx="2" ry="2" />
<text x="186.58" y="1087.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (552 samples, 0.05%)</title><rect x="1184.2" y="1733" width="0.5" height="15.0" fill="rgb(221,25,43)" rx="2" ry="2" />
<text x="1187.18" y="1743.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (945 samples, 0.08%)</title><rect x="57.4" y="1829" width="0.9" height="15.0" fill="rgb(249,123,39)" rx="2" ry="2" />
<text x="60.42" y="1839.5" ></text>
</g>
<g >
<title>caml_call_gc (173 samples, 0.01%)</title><rect x="988.7" y="1381" width="0.1" height="15.0" fill="rgb(236,80,13)" rx="2" ry="2" />
<text x="991.67" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (196 samples, 0.02%)</title><rect x="554.4" y="1253" width="0.2" height="15.0" fill="rgb(221,192,0)" rx="2" ry="2" />
<text x="557.39" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,138 samples, 0.09%)</title><rect x="410.8" y="1109" width="1.1" height="15.0" fill="rgb(243,32,20)" rx="2" ry="2" />
<text x="413.77" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (250 samples, 0.02%)</title><rect x="857.9" y="1157" width="0.2" height="15.0" fill="rgb(222,226,20)" rx="2" ry="2" />
<text x="860.88" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__create_inner_2782 (1,613 samples, 0.13%)</title><rect x="329.3" y="1333" width="1.6" height="15.0" fill="rgb(210,46,30)" rx="2" ry="2" />
<text x="332.35" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (504 samples, 0.04%)</title><rect x="212.0" y="1157" width="0.5" height="15.0" fill="rgb(252,42,38)" rx="2" ry="2" />
<text x="215.00" y="1167.5" ></text>
</g>
<g >
<title>memcpy (195 samples, 0.02%)</title><rect x="647.1" y="1189" width="0.2" height="15.0" fill="rgb(232,73,9)" rx="2" ry="2" />
<text x="650.09" y="1199.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (434 samples, 0.04%)</title><rect x="485.9" y="1301" width="0.4" height="15.0" fill="rgb(245,115,16)" rx="2" ry="2" />
<text x="488.92" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (738 samples, 0.06%)</title><rect x="80.3" y="1733" width="0.7" height="15.0" fill="rgb(236,42,45)" rx="2" ry="2" />
<text x="83.25" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7497 (208 samples, 0.02%)</title><rect x="392.9" y="1125" width="0.2" height="15.0" fill="rgb(251,190,41)" rx="2" ry="2" />
<text x="395.85" y="1135.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (104 samples, 0.01%)</title><rect x="170.8" y="1285" width="0.1" height="15.0" fill="rgb(220,69,0)" rx="2" ry="2" />
<text x="173.76" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (115 samples, 0.01%)</title><rect x="541.6" y="1125" width="0.1" height="15.0" fill="rgb(248,76,24)" rx="2" ry="2" />
<text x="544.58" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (198 samples, 0.02%)</title><rect x="348.3" y="1109" width="0.2" height="15.0" fill="rgb(214,64,41)" rx="2" ry="2" />
<text x="351.28" y="1119.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (126 samples, 0.01%)</title><rect x="323.0" y="1189" width="0.1" height="15.0" fill="rgb(218,145,19)" rx="2" ry="2" />
<text x="325.95" y="1199.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (2,322 samples, 0.19%)</title><rect x="1064.8" y="1285" width="2.3" height="15.0" fill="rgb(247,226,8)" rx="2" ry="2" />
<text x="1067.85" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (13,233 samples, 1.09%)</title><rect x="958.1" y="1189" width="12.8" height="15.0" fill="rgb(224,129,22)" rx="2" ry="2" />
<text x="961.09" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (640 samples, 0.05%)</title><rect x="513.3" y="1013" width="0.7" height="15.0" fill="rgb(235,179,23)" rx="2" ry="2" />
<text x="516.35" y="1023.5" ></text>
</g>
<g >
<title>blake2b_final (168 samples, 0.01%)</title><rect x="610.1" y="1205" width="0.1" height="15.0" fill="rgb(228,119,49)" rx="2" ry="2" />
<text x="613.08" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (504 samples, 0.04%)</title><rect x="712.5" y="1205" width="0.5" height="15.0" fill="rgb(244,94,29)" rx="2" ry="2" />
<text x="715.52" y="1215.5" ></text>
</g>
<g >
<title>__fget_light (116 samples, 0.01%)</title><rect x="978.2" y="1253" width="0.1" height="15.0" fill="rgb(216,132,27)" rx="2" ry="2" />
<text x="981.22" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (4,484 samples, 0.37%)</title><rect x="108.8" y="1269" width="4.4" height="15.0" fill="rgb(247,210,13)" rx="2" ry="2" />
<text x="111.85" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (832 samples, 0.07%)</title><rect x="560.5" y="1237" width="0.8" height="15.0" fill="rgb(238,31,53)" rx="2" ry="2" />
<text x="563.53" y="1247.5" ></text>
</g>
<g >
<title>rotr64 (133 samples, 0.01%)</title><rect x="572.5" y="917" width="0.1" height="15.0" fill="rgb(253,41,40)" rx="2" ry="2" />
<text x="575.47" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (191 samples, 0.02%)</title><rect x="883.0" y="1189" width="0.1" height="15.0" fill="rgb(224,182,20)" rx="2" ry="2" />
<text x="885.96" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (225 samples, 0.02%)</title><rect x="341.1" y="1125" width="0.2" height="15.0" fill="rgb(209,18,36)" rx="2" ry="2" />
<text x="344.06" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (156 samples, 0.01%)</title><rect x="533.7" y="1013" width="0.1" height="15.0" fill="rgb(238,153,40)" rx="2" ry="2" />
<text x="536.69" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (227 samples, 0.02%)</title><rect x="211.7" y="1141" width="0.2" height="15.0" fill="rgb(241,161,11)" rx="2" ry="2" />
<text x="214.69" y="1151.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (466 samples, 0.04%)</title><rect x="580.2" y="1013" width="0.4" height="15.0" fill="rgb(240,210,24)" rx="2" ry="2" />
<text x="583.20" y="1023.5" ></text>
</g>
<g >
<title>caml_alloc_string (237 samples, 0.02%)</title><rect x="549.1" y="1237" width="0.3" height="15.0" fill="rgb(250,37,21)" rx="2" ry="2" />
<text x="552.13" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__fun_4396 (1,435 samples, 0.12%)</title><rect x="122.3" y="1173" width="1.4" height="15.0" fill="rgb(217,62,10)" rx="2" ry="2" />
<text x="125.27" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (426 samples, 0.04%)</title><rect x="265.1" y="1237" width="0.4" height="15.0" fill="rgb(229,218,39)" rx="2" ry="2" />
<text x="268.11" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (278 samples, 0.02%)</title><rect x="61.2" y="1813" width="0.2" height="15.0" fill="rgb(229,157,46)" rx="2" ry="2" />
<text x="64.16" y="1823.5" ></text>
</g>
<g >
<title>caml_apply2 (233 samples, 0.02%)</title><rect x="188.1" y="1205" width="0.2" height="15.0" fill="rgb(212,138,30)" rx="2" ry="2" />
<text x="191.11" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (721 samples, 0.06%)</title><rect x="561.6" y="1221" width="0.7" height="15.0" fill="rgb(242,125,43)" rx="2" ry="2" />
<text x="564.64" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (122 samples, 0.01%)</title><rect x="515.8" y="901" width="0.1" height="15.0" fill="rgb(248,211,31)" rx="2" ry="2" />
<text x="518.79" y="911.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (108 samples, 0.01%)</title><rect x="456.0" y="1029" width="0.1" height="15.0" fill="rgb(205,114,1)" rx="2" ry="2" />
<text x="459.01" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (136 samples, 0.01%)</title><rect x="465.9" y="965" width="0.2" height="15.0" fill="rgb(224,79,4)" rx="2" ry="2" />
<text x="468.93" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (305 samples, 0.03%)</title><rect x="297.2" y="1125" width="0.3" height="15.0" fill="rgb(236,223,46)" rx="2" ry="2" />
<text x="300.18" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (1,235 samples, 0.10%)</title><rect x="119.7" y="1093" width="1.2" height="15.0" fill="rgb(207,182,20)" rx="2" ry="2" />
<text x="122.74" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (493 samples, 0.04%)</title><rect x="586.2" y="1093" width="0.5" height="15.0" fill="rgb(219,40,54)" rx="2" ry="2" />
<text x="589.20" y="1103.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1670 (320 samples, 0.03%)</title><rect x="425.4" y="1221" width="0.3" height="15.0" fill="rgb(253,51,53)" rx="2" ry="2" />
<text x="428.42" y="1231.5" ></text>
</g>
<g >
<title>caml_apply3 (123 samples, 0.01%)</title><rect x="846.3" y="1285" width="0.2" height="15.0" fill="rgb(230,105,12)" rx="2" ry="2" />
<text x="849.34" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (168 samples, 0.01%)</title><rect x="955.0" y="1157" width="0.2" height="15.0" fill="rgb(206,75,33)" rx="2" ry="2" />
<text x="958.00" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (144 samples, 0.01%)</title><rect x="113.0" y="1221" width="0.2" height="15.0" fill="rgb(222,185,35)" rx="2" ry="2" />
<text x="116.04" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (298 samples, 0.02%)</title><rect x="277.9" y="1221" width="0.3" height="15.0" fill="rgb(237,130,16)" rx="2" ry="2" />
<text x="280.92" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (118 samples, 0.01%)</title><rect x="808.0" y="1157" width="0.1" height="15.0" fill="rgb(223,211,2)" rx="2" ry="2" />
<text x="810.96" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Closeable__add_3946 (108 samples, 0.01%)</title><rect x="170.4" y="1349" width="0.1" height="15.0" fill="rgb(227,92,38)" rx="2" ry="2" />
<text x="173.36" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3324 (317 samples, 0.03%)</title><rect x="486.4" y="1317" width="0.3" height="15.0" fill="rgb(207,72,17)" rx="2" ry="2" />
<text x="489.37" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (805 samples, 0.07%)</title><rect x="599.5" y="1173" width="0.8" height="15.0" fill="rgb(248,174,48)" rx="2" ry="2" />
<text x="602.55" y="1183.5" ></text>
</g>
<g >
<title>__vfs_write (889 samples, 0.07%)</title><rect x="921.0" y="1205" width="0.8" height="15.0" fill="rgb(248,80,18)" rx="2" ry="2" />
<text x="923.97" y="1215.5" ></text>
</g>
<g >
<title>sweep_slice (157 samples, 0.01%)</title><rect x="912.9" y="1205" width="0.1" height="15.0" fill="rgb(235,143,24)" rx="2" ry="2" />
<text x="915.86" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__get_command_3541 (486 samples, 0.04%)</title><rect x="96.8" y="1317" width="0.5" height="15.0" fill="rgb(228,77,24)" rx="2" ry="2" />
<text x="99.84" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__fun_4745 (119 samples, 0.01%)</title><rect x="489.9" y="1365" width="0.1" height="15.0" fill="rgb(209,91,5)" rx="2" ry="2" />
<text x="492.90" y="1375.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (592 samples, 0.05%)</title><rect x="1185.0" y="1701" width="0.5" height="15.0" fill="rgb(211,75,30)" rx="2" ry="2" />
<text x="1187.98" y="1711.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (1,013 samples, 0.08%)</title><rect x="775.8" y="1157" width="0.9" height="15.0" fill="rgb(208,84,36)" rx="2" ry="2" />
<text x="778.77" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (433 samples, 0.04%)</title><rect x="578.4" y="997" width="0.5" height="15.0" fill="rgb(213,38,36)" rx="2" ry="2" />
<text x="581.44" y="1007.5" ></text>
</g>
<g >
<title>caml_format_int (4,023 samples, 0.33%)</title><rect x="162.0" y="1333" width="3.9" height="15.0" fill="rgb(247,228,4)" rx="2" ry="2" />
<text x="165.01" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (644 samples, 0.05%)</title><rect x="563.3" y="1173" width="0.6" height="15.0" fill="rgb(243,34,24)" rx="2" ry="2" />
<text x="566.31" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (199 samples, 0.02%)</title><rect x="575.6" y="949" width="0.1" height="15.0" fill="rgb(249,207,52)" rx="2" ry="2" />
<text x="578.56" y="959.5" ></text>
</g>
<g >
<title>ml_blake2b_init (260 samples, 0.02%)</title><rect x="700.5" y="1237" width="0.3" height="15.0" fill="rgb(212,102,24)" rx="2" ry="2" />
<text x="703.54" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (105 samples, 0.01%)</title><rect x="523.8" y="981" width="0.1" height="15.0" fill="rgb(224,85,13)" rx="2" ry="2" />
<text x="526.78" y="991.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (40,256 samples, 3.31%)</title><rect x="93.0" y="1381" width="39.1" height="15.0" fill="rgb(249,155,54)" rx="2" ry="2" />
<text x="96.04" y="1391.5" >cam..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (166 samples, 0.01%)</title><rect x="131.9" y="1253" width="0.1" height="15.0" fill="rgb(240,30,9)" rx="2" ry="2" />
<text x="134.86" y="1263.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (405 samples, 0.03%)</title><rect x="1160.6" y="1413" width="0.4" height="15.0" fill="rgb(211,223,8)" rx="2" ry="2" />
<text x="1163.56" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (438 samples, 0.04%)</title><rect x="468.9" y="1093" width="0.4" height="15.0" fill="rgb(206,145,29)" rx="2" ry="2" />
<text x="471.91" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (900 samples, 0.07%)</title><rect x="737.1" y="1189" width="0.9" height="15.0" fill="rgb(247,190,39)" rx="2" ry="2" />
<text x="740.11" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (480 samples, 0.04%)</title><rect x="928.7" y="1205" width="0.5" height="15.0" fill="rgb(220,50,50)" rx="2" ry="2" />
<text x="931.74" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1429" width="1.6" height="15.0" fill="rgb(213,162,36)" rx="2" ry="2" />
<text x="1189.27" y="1439.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (299 samples, 0.02%)</title><rect x="604.2" y="1221" width="0.3" height="15.0" fill="rgb(243,108,21)" rx="2" ry="2" />
<text x="607.20" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (823 samples, 0.07%)</title><rect x="516.5" y="117" width="0.8" height="15.0" fill="rgb(213,18,48)" rx="2" ry="2" />
<text x="519.55" y="127.5" ></text>
</g>
<g >
<title>caml_blit_bytes (193 samples, 0.02%)</title><rect x="925.3" y="1253" width="0.2" height="15.0" fill="rgb(239,112,26)" rx="2" ry="2" />
<text x="928.28" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (258 samples, 0.02%)</title><rect x="421.4" y="1157" width="0.2" height="15.0" fill="rgb(219,187,43)" rx="2" ry="2" />
<text x="424.38" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (526 samples, 0.04%)</title><rect x="555.0" y="1253" width="0.5" height="15.0" fill="rgb(230,141,5)" rx="2" ry="2" />
<text x="558.00" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (824 samples, 0.07%)</title><rect x="516.5" y="165" width="0.8" height="15.0" fill="rgb(221,10,10)" rx="2" ry="2" />
<text x="519.55" y="175.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (18,718 samples, 1.54%)</title><rect x="568.6" y="1109" width="18.1" height="15.0" fill="rgb(234,66,24)" rx="2" ry="2" />
<text x="571.58" y="1119.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (592 samples, 0.05%)</title><rect x="1185.0" y="1717" width="0.5" height="15.0" fill="rgb(207,95,43)" rx="2" ry="2" />
<text x="1187.98" y="1727.5" ></text>
</g>
<g >
<title>blake2b_update (167 samples, 0.01%)</title><rect x="712.2" y="1253" width="0.1" height="15.0" fill="rgb(251,2,2)" rx="2" ry="2" />
<text x="715.17" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,029 samples, 0.08%)</title><rect x="323.7" y="1269" width="1.0" height="15.0" fill="rgb(233,85,32)" rx="2" ry="2" />
<text x="326.70" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (133 samples, 0.01%)</title><rect x="598.3" y="1173" width="0.1" height="15.0" fill="rgb(234,147,5)" rx="2" ry="2" />
<text x="601.26" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (107 samples, 0.01%)</title><rect x="331.3" y="1333" width="0.1" height="15.0" fill="rgb(235,54,33)" rx="2" ry="2" />
<text x="334.30" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (123 samples, 0.01%)</title><rect x="1162.5" y="1429" width="0.2" height="15.0" fill="rgb(251,102,26)" rx="2" ry="2" />
<text x="1165.54" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (239 samples, 0.02%)</title><rect x="441.3" y="1205" width="0.2" height="15.0" fill="rgb(240,166,35)" rx="2" ry="2" />
<text x="444.27" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (109 samples, 0.01%)</title><rect x="898.0" y="1173" width="0.1" height="15.0" fill="rgb(206,70,22)" rx="2" ry="2" />
<text x="900.98" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (415 samples, 0.03%)</title><rect x="542.1" y="1077" width="0.4" height="15.0" fill="rgb(218,36,24)" rx="2" ry="2" />
<text x="545.11" y="1087.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (242 samples, 0.02%)</title><rect x="1123.8" y="1301" width="0.3" height="15.0" fill="rgb(248,65,35)" rx="2" ry="2" />
<text x="1126.85" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (121 samples, 0.01%)</title><rect x="1114.3" y="1397" width="0.2" height="15.0" fill="rgb(228,52,11)" rx="2" ry="2" />
<text x="1117.34" y="1407.5" ></text>
</g>
<g >
<title>caml_oldify_one (374 samples, 0.03%)</title><rect x="1169.3" y="1429" width="0.4" height="15.0" fill="rgb(239,183,11)" rx="2" ry="2" />
<text x="1172.32" y="1439.5" ></text>
</g>
<g >
<title>caml_alloc_string (130 samples, 0.01%)</title><rect x="366.1" y="1141" width="0.1" height="15.0" fill="rgb(245,17,16)" rx="2" ry="2" />
<text x="369.05" y="1151.5" ></text>
</g>
<g >
<title>caml_apply2 (110 samples, 0.01%)</title><rect x="648.5" y="1269" width="0.1" height="15.0" fill="rgb(206,162,12)" rx="2" ry="2" />
<text x="651.51" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (114 samples, 0.01%)</title><rect x="1180.7" y="1221" width="0.1" height="15.0" fill="rgb(213,218,33)" rx="2" ry="2" />
<text x="1183.73" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (605 samples, 0.05%)</title><rect x="556.7" y="1285" width="0.6" height="15.0" fill="rgb(212,179,7)" rx="2" ry="2" />
<text x="559.70" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_initialized_string (213 samples, 0.02%)</title><rect x="900.5" y="1205" width="0.2" height="15.0" fill="rgb(223,33,40)" rx="2" ry="2" />
<text x="903.54" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (772 samples, 0.06%)</title><rect x="495.0" y="1333" width="0.7" height="15.0" fill="rgb(242,4,53)" rx="2" ry="2" />
<text x="497.96" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (39,745 samples, 3.27%)</title><rect x="504.6" y="1205" width="38.5" height="15.0" fill="rgb(225,91,25)" rx="2" ry="2" />
<text x="507.56" y="1215.5" >cam..</text>
</g>
<g >
<title>caml_major_collection_slice (273 samples, 0.02%)</title><rect x="605.0" y="1205" width="0.3" height="15.0" fill="rgb(207,179,39)" rx="2" ry="2" />
<text x="608.02" y="1215.5" ></text>
</g>
<g >
<title>rotr64 (157 samples, 0.01%)</title><rect x="568.2" y="1013" width="0.1" height="15.0" fill="rgb(241,171,38)" rx="2" ry="2" />
<text x="571.19" y="1023.5" ></text>
</g>
<g >
<title>do_syscall_64 (996 samples, 0.08%)</title><rect x="410.8" y="1093" width="1.0" height="15.0" fill="rgb(236,101,26)" rx="2" ry="2" />
<text x="413.84" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (186 samples, 0.02%)</title><rect x="87.4" y="1861" width="0.2" height="15.0" fill="rgb(211,60,37)" rx="2" ry="2" />
<text x="90.38" y="1871.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (155 samples, 0.01%)</title><rect x="1184.5" y="1429" width="0.1" height="15.0" fill="rgb(247,128,51)" rx="2" ry="2" />
<text x="1187.45" y="1439.5" ></text>
</g>
<g >
<title>mdb_node_add (428 samples, 0.04%)</title><rect x="731.7" y="1221" width="0.4" height="15.0" fill="rgb(222,20,36)" rx="2" ry="2" />
<text x="734.68" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (319 samples, 0.03%)</title><rect x="1183.7" y="1749" width="0.3" height="15.0" fill="rgb(252,17,20)" rx="2" ry="2" />
<text x="1186.66" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin__Type__list_3633 (1,432 samples, 0.12%)</title><rect x="242.4" y="1285" width="1.4" height="15.0" fill="rgb(248,84,39)" rx="2" ry="2" />
<text x="245.37" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (174 samples, 0.01%)</title><rect x="469.9" y="1045" width="0.1" height="15.0" fill="rgb(241,40,22)" rx="2" ry="2" />
<text x="472.88" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (297 samples, 0.02%)</title><rect x="427.7" y="1093" width="0.3" height="15.0" fill="rgb(224,151,19)" rx="2" ry="2" />
<text x="430.72" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_string (166 samples, 0.01%)</title><rect x="888.1" y="1221" width="0.2" height="15.0" fill="rgb(242,41,26)" rx="2" ry="2" />
<text x="891.13" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (170 samples, 0.01%)</title><rect x="437.0" y="1237" width="0.2" height="15.0" fill="rgb(246,165,31)" rx="2" ry="2" />
<text x="440.05" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (217 samples, 0.02%)</title><rect x="224.0" y="1141" width="0.2" height="15.0" fill="rgb(248,57,18)" rx="2" ry="2" />
<text x="226.96" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (168 samples, 0.01%)</title><rect x="603.8" y="1221" width="0.2" height="15.0" fill="rgb(235,204,46)" rx="2" ry="2" />
<text x="606.81" y="1231.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_s_1068 (1,318 samples, 0.11%)</title><rect x="488.6" y="1317" width="1.3" height="15.0" fill="rgb(239,218,25)" rx="2" ry="2" />
<text x="491.62" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (124 samples, 0.01%)</title><rect x="981.2" y="1269" width="0.1" height="15.0" fill="rgb(231,184,48)" rx="2" ry="2" />
<text x="984.16" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (353 samples, 0.03%)</title><rect x="894.2" y="1173" width="0.4" height="15.0" fill="rgb(250,217,20)" rx="2" ry="2" />
<text x="897.25" y="1183.5" ></text>
</g>
<g >
<title>blake2b_compress (520 samples, 0.04%)</title><rect x="557.5" y="1221" width="0.6" height="15.0" fill="rgb(230,33,28)" rx="2" ry="2" />
<text x="560.55" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__add_dir_29884 (45,842 samples, 3.77%)</title><rect x="196.4" y="1365" width="44.4" height="15.0" fill="rgb(225,58,12)" rx="2" ry="2" />
<text x="199.36" y="1375.5" >caml..</text>
</g>
<g >
<title>mdb_mid2l_search (1,152 samples, 0.09%)</title><rect x="726.7" y="1173" width="1.2" height="15.0" fill="rgb(225,187,29)" rx="2" ry="2" />
<text x="729.74" y="1183.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (658 samples, 0.05%)</title><rect x="712.5" y="1237" width="0.7" height="15.0" fill="rgb(228,76,39)" rx="2" ry="2" />
<text x="715.52" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (8,643 samples, 0.71%)</title><rect x="450.2" y="1157" width="8.4" height="15.0" fill="rgb(214,25,19)" rx="2" ry="2" />
<text x="453.25" y="1167.5" ></text>
</g>
<g >
<title>caml_blit_bytes (116 samples, 0.01%)</title><rect x="891.6" y="1205" width="0.1" height="15.0" fill="rgb(248,106,2)" rx="2" ry="2" />
<text x="894.55" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (243 samples, 0.02%)</title><rect x="707.7" y="1317" width="0.3" height="15.0" fill="rgb(211,142,19)" rx="2" ry="2" />
<text x="710.74" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (696 samples, 0.06%)</title><rect x="913.9" y="1333" width="0.7" height="15.0" fill="rgb(245,74,46)" rx="2" ry="2" />
<text x="916.92" y="1343.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (366 samples, 0.03%)</title><rect x="183.5" y="1125" width="0.3" height="15.0" fill="rgb(244,84,53)" rx="2" ry="2" />
<text x="186.46" y="1135.5" ></text>
</g>
<g >
<title>memcpy (247 samples, 0.02%)</title><rect x="731.9" y="1205" width="0.2" height="15.0" fill="rgb(223,128,17)" rx="2" ry="2" />
<text x="734.85" y="1215.5" ></text>
</g>
<g >
<title>blake2b_compress (533 samples, 0.04%)</title><rect x="506.8" y="1061" width="0.5" height="15.0" fill="rgb(222,9,10)" rx="2" ry="2" />
<text x="509.80" y="1071.5" ></text>
</g>
<g >
<title>mdb_node_add (473 samples, 0.04%)</title><rect x="731.1" y="1237" width="0.5" height="15.0" fill="rgb(252,49,49)" rx="2" ry="2" />
<text x="734.12" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (292 samples, 0.02%)</title><rect x="244.9" y="1237" width="0.3" height="15.0" fill="rgb(243,93,8)" rx="2" ry="2" />
<text x="247.92" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (111 samples, 0.01%)</title><rect x="1177.8" y="1125" width="0.1" height="15.0" fill="rgb(206,133,43)" rx="2" ry="2" />
<text x="1180.77" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (257 samples, 0.02%)</title><rect x="933.2" y="1173" width="0.2" height="15.0" fill="rgb(238,132,40)" rx="2" ry="2" />
<text x="936.19" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,142 samples, 0.67%)</title><rect x="207.1" y="1205" width="7.9" height="15.0" fill="rgb(230,71,36)" rx="2" ry="2" />
<text x="210.07" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (134 samples, 0.01%)</title><rect x="129.7" y="1205" width="0.1" height="15.0" fill="rgb(232,27,17)" rx="2" ry="2" />
<text x="132.65" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (620 samples, 0.05%)</title><rect x="477.7" y="1285" width="0.6" height="15.0" fill="rgb(248,68,52)" rx="2" ry="2" />
<text x="480.70" y="1295.5" ></text>
</g>
<g >
<title>memmove (108 samples, 0.01%)</title><rect x="273.9" y="1221" width="0.1" height="15.0" fill="rgb(210,137,23)" rx="2" ry="2" />
<text x="276.89" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__callback_3196 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1221" width="1.3" height="15.0" fill="rgb(211,136,6)" rx="2" ry="2" />
<text x="1175.52" y="1231.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_feed_bytes_1716 (116 samples, 0.01%)</title><rect x="243.0" y="1269" width="0.1" height="15.0" fill="rgb(254,122,40)" rx="2" ry="2" />
<text x="245.96" y="1279.5" ></text>
</g>
<g >
<title>__fdget_pos (156 samples, 0.01%)</title><rect x="1160.7" y="1365" width="0.1" height="15.0" fill="rgb(221,126,12)" rx="2" ry="2" />
<text x="1163.67" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (119 samples, 0.01%)</title><rect x="221.1" y="1205" width="0.1" height="15.0" fill="rgb(216,28,36)" rx="2" ry="2" />
<text x="224.10" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__make_int_padding_precision_3713 (194 samples, 0.02%)</title><rect x="986.7" y="1365" width="0.2" height="15.0" fill="rgb(222,182,10)" rx="2" ry="2" />
<text x="989.69" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__compare_entry_3108 (189 samples, 0.02%)</title><rect x="77.8" y="1909" width="0.2" height="15.0" fill="rgb(229,37,31)" rx="2" ry="2" />
<text x="80.84" y="1919.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (941 samples, 0.08%)</title><rect x="511.1" y="1013" width="0.9" height="15.0" fill="rgb(221,33,17)" rx="2" ry="2" />
<text x="514.12" y="1023.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (797 samples, 0.07%)</title><rect x="643.9" y="1189" width="0.8" height="15.0" fill="rgb(223,154,26)" rx="2" ry="2" />
<text x="646.91" y="1199.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (202 samples, 0.02%)</title><rect x="335.9" y="1221" width="0.2" height="15.0" fill="rgb(222,76,45)" rx="2" ry="2" />
<text x="338.91" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_6653 (28,218 samples, 2.32%)</title><rect x="241.7" y="1333" width="27.3" height="15.0" fill="rgb(244,64,25)" rx="2" ry="2" />
<text x="244.67" y="1343.5" >c..</text>
</g>
<g >
<title>camlStdlib__string__unsafe_blits_1092 (612 samples, 0.05%)</title><rect x="732.6" y="1285" width="0.5" height="15.0" fill="rgb(241,140,37)" rx="2" ry="2" />
<text x="735.55" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (113 samples, 0.01%)</title><rect x="973.8" y="1093" width="0.1" height="15.0" fill="rgb(254,97,34)" rx="2" ry="2" />
<text x="976.83" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (139 samples, 0.01%)</title><rect x="518.1" y="917" width="0.1" height="15.0" fill="rgb(242,178,35)" rx="2" ry="2" />
<text x="521.08" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (318 samples, 0.03%)</title><rect x="1183.7" y="1653" width="0.3" height="15.0" fill="rgb(228,202,6)" rx="2" ry="2" />
<text x="1186.66" y="1663.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (293 samples, 0.02%)</title><rect x="354.6" y="1189" width="0.2" height="15.0" fill="rgb(232,23,2)" rx="2" ry="2" />
<text x="357.56" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (439 samples, 0.04%)</title><rect x="62.8" y="1909" width="0.4" height="15.0" fill="rgb(217,176,11)" rx="2" ry="2" />
<text x="65.79" y="1919.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_2361 (105 samples, 0.01%)</title><rect x="227.5" y="1205" width="0.1" height="15.0" fill="rgb(221,26,2)" rx="2" ry="2" />
<text x="230.49" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1669" width="1.6" height="15.0" fill="rgb(246,4,43)" rx="2" ry="2" />
<text x="1189.27" y="1679.5" ></text>
</g>
<g >
<title>rotr64 (171 samples, 0.01%)</title><rect x="500.1" y="1189" width="0.2" height="15.0" fill="rgb(232,19,44)" rx="2" ry="2" />
<text x="503.11" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2839 (179 samples, 0.01%)</title><rect x="450.6" y="1141" width="0.2" height="15.0" fill="rgb(215,100,30)" rx="2" ry="2" />
<text x="453.64" y="1151.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (180 samples, 0.01%)</title><rect x="1185.1" y="1509" width="0.1" height="15.0" fill="rgb(249,201,46)" rx="2" ry="2" />
<text x="1188.07" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (133 samples, 0.01%)</title><rect x="382.2" y="1205" width="0.1" height="15.0" fill="rgb(244,113,45)" rx="2" ry="2" />
<text x="385.16" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (127 samples, 0.01%)</title><rect x="494.5" y="1349" width="0.1" height="15.0" fill="rgb(238,142,51)" rx="2" ry="2" />
<text x="497.53" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__with_value_2040 (4,630 samples, 0.38%)</title><rect x="485.5" y="1381" width="4.5" height="15.0" fill="rgb(209,111,47)" rx="2" ry="2" />
<text x="488.53" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (144 samples, 0.01%)</title><rect x="69.3" y="1893" width="0.2" height="15.0" fill="rgb(246,207,51)" rx="2" ry="2" />
<text x="72.34" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (719 samples, 0.06%)</title><rect x="580.8" y="1045" width="0.7" height="15.0" fill="rgb(232,202,1)" rx="2" ry="2" />
<text x="583.80" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (372 samples, 0.03%)</title><rect x="61.1" y="1861" width="0.4" height="15.0" fill="rgb(234,69,12)" rx="2" ry="2" />
<text x="64.09" y="1871.5" ></text>
</g>
<g >
<title>compare_val (128 samples, 0.01%)</title><rect x="463.3" y="1109" width="0.1" height="15.0" fill="rgb(254,102,39)" rx="2" ry="2" />
<text x="466.30" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (241 samples, 0.02%)</title><rect x="963.4" y="1077" width="0.2" height="15.0" fill="rgb(206,146,27)" rx="2" ry="2" />
<text x="966.39" y="1087.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (122 samples, 0.01%)</title><rect x="556.0" y="1189" width="0.1" height="15.0" fill="rgb(220,179,20)" rx="2" ry="2" />
<text x="559.03" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (532 samples, 0.04%)</title><rect x="961.3" y="1093" width="0.5" height="15.0" fill="rgb(251,203,30)" rx="2" ry="2" />
<text x="964.30" y="1103.5" ></text>
</g>
<g >
<title>sweep_slice (484 samples, 0.04%)</title><rect x="692.0" y="1221" width="0.4" height="15.0" fill="rgb(249,95,46)" rx="2" ry="2" />
<text x="694.97" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (186 samples, 0.02%)</title><rect x="1169.5" y="1397" width="0.2" height="15.0" fill="rgb(244,60,46)" rx="2" ry="2" />
<text x="1172.50" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_7369 (8,688 samples, 0.71%)</title><rect x="105.1" y="1285" width="8.4" height="15.0" fill="rgb(206,108,52)" rx="2" ry="2" />
<text x="108.11" y="1295.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (123 samples, 0.01%)</title><rect x="1111.4" y="1317" width="0.1" height="15.0" fill="rgb(222,163,43)" rx="2" ry="2" />
<text x="1114.40" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__raw_commit_inner_32356 (295 samples, 0.02%)</title><rect x="1173.5" y="949" width="0.3" height="15.0" fill="rgb(228,98,44)" rx="2" ry="2" />
<text x="1176.51" y="959.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (908 samples, 0.07%)</title><rect x="511.1" y="981" width="0.9" height="15.0" fill="rgb(214,191,53)" rx="2" ry="2" />
<text x="514.12" y="991.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (300 samples, 0.02%)</title><rect x="381.1" y="1189" width="0.3" height="15.0" fill="rgb(221,146,8)" rx="2" ry="2" />
<text x="384.08" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Node__add_5745 (196 samples, 0.02%)</title><rect x="470.9" y="1285" width="0.2" height="15.0" fill="rgb(246,215,4)" rx="2" ry="2" />
<text x="473.94" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_initialized_string (915 samples, 0.08%)</title><rect x="1123.2" y="1333" width="0.9" height="15.0" fill="rgb(228,21,18)" rx="2" ry="2" />
<text x="1126.20" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (114 samples, 0.01%)</title><rect x="696.0" y="1349" width="0.2" height="15.0" fill="rgb(226,68,10)" rx="2" ry="2" />
<text x="699.04" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1573" width="6.2" height="15.0" fill="rgb(206,79,1)" rx="2" ry="2" />
<text x="1178.90" y="1583.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (195 samples, 0.02%)</title><rect x="573.9" y="933" width="0.2" height="15.0" fill="rgb(213,151,34)" rx="2" ry="2" />
<text x="576.95" y="943.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (4,489 samples, 0.37%)</title><rect x="342.2" y="1157" width="4.3" height="15.0" fill="rgb(206,109,39)" rx="2" ry="2" />
<text x="345.17" y="1167.5" ></text>
</g>
<g >
<title>mdb_cursor_set (8,991 samples, 0.74%)</title><rect x="1134.7" y="1381" width="8.7" height="15.0" fill="rgb(242,34,43)" rx="2" ry="2" />
<text x="1137.71" y="1391.5" ></text>
</g>
<g >
<title>caml_blit_bytes (1,141 samples, 0.09%)</title><rect x="979.4" y="1317" width="1.1" height="15.0" fill="rgb(237,203,22)" rx="2" ry="2" />
<text x="982.42" y="1327.5" ></text>
</g>
<g >
<title>__libc_pread64 (434 samples, 0.04%)</title><rect x="213.7" y="1125" width="0.5" height="15.0" fill="rgb(239,193,32)" rx="2" ry="2" />
<text x="216.74" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (181 samples, 0.01%)</title><rect x="341.6" y="1173" width="0.2" height="15.0" fill="rgb(238,50,46)" rx="2" ry="2" />
<text x="344.58" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_bytes_3189 (192 samples, 0.02%)</title><rect x="131.0" y="1205" width="0.2" height="15.0" fill="rgb(243,199,19)" rx="2" ry="2" />
<text x="134.04" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6970 (209 samples, 0.02%)</title><rect x="354.9" y="1205" width="0.2" height="15.0" fill="rgb(246,164,52)" rx="2" ry="2" />
<text x="357.94" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (1,063 samples, 0.09%)</title><rect x="455.8" y="1077" width="1.1" height="15.0" fill="rgb(211,142,0)" rx="2" ry="2" />
<text x="458.85" y="1087.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (1,460 samples, 0.12%)</title><rect x="272.2" y="1221" width="1.4" height="15.0" fill="rgb(211,131,39)" rx="2" ry="2" />
<text x="275.18" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (1,833 samples, 0.15%)</title><rect x="181.3" y="1189" width="1.8" height="15.0" fill="rgb(210,96,14)" rx="2" ry="2" />
<text x="184.28" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (28,627 samples, 2.35%)</title><rect x="816.3" y="1237" width="27.8" height="15.0" fill="rgb(228,16,46)" rx="2" ry="2" />
<text x="819.29" y="1247.5" >c..</text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1266 (131 samples, 0.01%)</title><rect x="307.0" y="1205" width="0.2" height="15.0" fill="rgb(252,158,37)" rx="2" ry="2" />
<text x="310.04" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,073 samples, 0.09%)</title><rect x="79.9" y="1765" width="1.1" height="15.0" fill="rgb(242,198,15)" rx="2" ry="2" />
<text x="82.93" y="1775.5" ></text>
</g>
<g >
<title>caml_call_gc (120 samples, 0.01%)</title><rect x="816.2" y="1221" width="0.1" height="15.0" fill="rgb(230,110,5)" rx="2" ry="2" />
<text x="819.18" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (109 samples, 0.01%)</title><rect x="586.5" y="1077" width="0.1" height="15.0" fill="rgb(219,26,24)" rx="2" ry="2" />
<text x="589.54" y="1087.5" ></text>
</g>
<g >
<title>compare_val (116 samples, 0.01%)</title><rect x="878.2" y="1205" width="0.1" height="15.0" fill="rgb(222,49,20)" rx="2" ry="2" />
<text x="881.22" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (211 samples, 0.02%)</title><rect x="949.3" y="1029" width="0.3" height="15.0" fill="rgb(233,21,14)" rx="2" ry="2" />
<text x="952.35" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (160 samples, 0.01%)</title><rect x="742.4" y="1301" width="0.2" height="15.0" fill="rgb(239,113,17)" rx="2" ry="2" />
<text x="745.43" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="901" width="1.6" height="15.0" fill="rgb(253,158,34)" rx="2" ry="2" />
<text x="1189.27" y="911.5" ></text>
</g>
<g >
<title>caml_call_gc (334 samples, 0.03%)</title><rect x="71.8" y="1893" width="0.3" height="15.0" fill="rgb(238,203,4)" rx="2" ry="2" />
<text x="74.80" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (6,703 samples, 0.55%)</title><rect x="418.1" y="1205" width="6.5" height="15.0" fill="rgb(228,206,30)" rx="2" ry="2" />
<text x="421.08" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (130 samples, 0.01%)</title><rect x="1177.0" y="1221" width="0.2" height="15.0" fill="rgb(237,228,38)" rx="2" ry="2" />
<text x="1180.04" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (274 samples, 0.02%)</title><rect x="116.6" y="1109" width="0.3" height="15.0" fill="rgb(235,138,6)" rx="2" ry="2" />
<text x="119.59" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (286 samples, 0.02%)</title><rect x="519.2" y="949" width="0.3" height="15.0" fill="rgb(212,46,4)" rx="2" ry="2" />
<text x="522.19" y="959.5" ></text>
</g>
<g >
<title>ml_blake2b_final (438 samples, 0.04%)</title><rect x="514.5" y="933" width="0.5" height="15.0" fill="rgb(232,162,5)" rx="2" ry="2" />
<text x="517.55" y="943.5" ></text>
</g>
<g >
<title>mark_slice (171 samples, 0.01%)</title><rect x="913.6" y="1253" width="0.2" height="15.0" fill="rgb(221,164,18)" rx="2" ry="2" />
<text x="916.59" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (5,373 samples, 0.44%)</title><rect x="464.8" y="1173" width="5.2" height="15.0" fill="rgb(239,30,32)" rx="2" ry="2" />
<text x="467.84" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1509" width="1.3" height="15.0" fill="rgb(207,60,47)" rx="2" ry="2" />
<text x="1175.52" y="1519.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (193 samples, 0.02%)</title><rect x="114.5" y="1157" width="0.2" height="15.0" fill="rgb(224,126,11)" rx="2" ry="2" />
<text x="117.49" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (152 samples, 0.01%)</title><rect x="524.4" y="949" width="0.1" height="15.0" fill="rgb(252,6,7)" rx="2" ry="2" />
<text x="527.39" y="959.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (109 samples, 0.01%)</title><rect x="1187.1" y="85" width="0.1" height="15.0" fill="rgb(227,200,54)" rx="2" ry="2" />
<text x="1190.05" y="95.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (125 samples, 0.01%)</title><rect x="438.5" y="1237" width="0.1" height="15.0" fill="rgb(248,110,51)" rx="2" ry="2" />
<text x="441.46" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (868 samples, 0.07%)</title><rect x="602.9" y="1237" width="0.9" height="15.0" fill="rgb(213,108,6)" rx="2" ry="2" />
<text x="605.92" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (320 samples, 0.03%)</title><rect x="826.1" y="1045" width="0.3" height="15.0" fill="rgb(254,185,54)" rx="2" ry="2" />
<text x="829.11" y="1055.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (499 samples, 0.04%)</title><rect x="223.9" y="1189" width="0.5" height="15.0" fill="rgb(243,79,10)" rx="2" ry="2" />
<text x="226.92" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (186 samples, 0.02%)</title><rect x="535.4" y="1093" width="0.1" height="15.0" fill="rgb(221,197,11)" rx="2" ry="2" />
<text x="538.36" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,022 samples, 0.08%)</title><rect x="516.5" y="533" width="0.9" height="15.0" fill="rgb(214,147,52)" rx="2" ry="2" />
<text x="519.46" y="543.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1557" width="6.2" height="15.0" fill="rgb(218,138,47)" rx="2" ry="2" />
<text x="1178.90" y="1567.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_6909 (1,014 samples, 0.08%)</title><rect x="233.0" y="1301" width="1.0" height="15.0" fill="rgb(232,122,20)" rx="2" ry="2" />
<text x="235.99" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_rpc__RPC_encoding__schema_1497 (411 samples, 0.03%)</title><rect x="1183.6" y="1845" width="0.4" height="15.0" fill="rgb(212,106,17)" rx="2" ry="2" />
<text x="1186.64" y="1855.5" ></text>
</g>
<g >
<title>caml_alloc_string (106 samples, 0.01%)</title><rect x="924.6" y="1333" width="0.1" height="15.0" fill="rgb(229,141,44)" rx="2" ry="2" />
<text x="927.57" y="1343.5" ></text>
</g>
<g >
<title>caml_curry3_1 (145 samples, 0.01%)</title><rect x="62.4" y="1893" width="0.1" height="15.0" fill="rgb(207,143,43)" rx="2" ry="2" />
<text x="65.38" y="1903.5" ></text>
</g>
<g >
<title>caml_oldify_one (126 samples, 0.01%)</title><rect x="1165.8" y="1413" width="0.1" height="15.0" fill="rgb(215,104,6)" rx="2" ry="2" />
<text x="1168.80" y="1423.5" ></text>
</g>
<g >
<title>blake2b_compress (587 samples, 0.05%)</title><rect x="696.2" y="1253" width="0.6" height="15.0" fill="rgb(244,89,18)" rx="2" ry="2" />
<text x="699.25" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (315 samples, 0.03%)</title><rect x="574.5" y="789" width="0.3" height="15.0" fill="rgb(237,221,11)" rx="2" ry="2" />
<text x="577.47" y="799.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (221 samples, 0.02%)</title><rect x="30.3" y="2021" width="0.2" height="15.0" fill="rgb(225,58,20)" rx="2" ry="2" />
<text x="33.27" y="2031.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (167 samples, 0.01%)</title><rect x="131.9" y="1269" width="0.1" height="15.0" fill="rgb(250,212,26)" rx="2" ry="2" />
<text x="134.86" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (2,686 samples, 0.22%)</title><rect x="407.0" y="1157" width="2.6" height="15.0" fill="rgb(225,133,23)" rx="2" ry="2" />
<text x="410.00" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (3,806 samples, 0.31%)</title><rect x="934.7" y="1157" width="3.7" height="15.0" fill="rgb(246,138,35)" rx="2" ry="2" />
<text x="937.70" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (115 samples, 0.01%)</title><rect x="129.7" y="1141" width="0.1" height="15.0" fill="rgb(223,69,35)" rx="2" ry="2" />
<text x="132.66" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_1014 (203 samples, 0.02%)</title><rect x="448.2" y="1221" width="0.2" height="15.0" fill="rgb(220,12,14)" rx="2" ry="2" />
<text x="451.21" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__first_pass_4196 (174 samples, 0.01%)</title><rect x="1175.9" y="1349" width="0.2" height="15.0" fill="rgb(210,104,36)" rx="2" ry="2" />
<text x="1178.91" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1669" width="6.2" height="15.0" fill="rgb(235,32,10)" rx="2" ry="2" />
<text x="1178.90" y="1679.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (110 samples, 0.01%)</title><rect x="1176.1" y="1253" width="0.1" height="15.0" fill="rgb(231,91,17)" rx="2" ry="2" />
<text x="1179.10" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (484 samples, 0.04%)</title><rect x="831.4" y="1061" width="0.5" height="15.0" fill="rgb(224,134,51)" rx="2" ry="2" />
<text x="834.43" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_shr (3,347 samples, 0.28%)</title><rect x="20.2" y="2005" width="3.2" height="15.0" fill="rgb(236,60,15)" rx="2" ry="2" />
<text x="23.17" y="2015.5" ></text>
</g>
<g >
<title>caml_pread (1,263 samples, 0.10%)</title><rect x="410.6" y="1141" width="1.3" height="15.0" fill="rgb(219,16,22)" rx="2" ry="2" />
<text x="413.65" y="1151.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (144 samples, 0.01%)</title><rect x="685.2" y="1237" width="0.1" height="15.0" fill="rgb(216,146,8)" rx="2" ry="2" />
<text x="688.17" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,146 samples, 0.09%)</title><rect x="313.9" y="1141" width="1.1" height="15.0" fill="rgb(215,2,44)" rx="2" ry="2" />
<text x="316.85" y="1151.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (2,579 samples, 0.21%)</title><rect x="162.7" y="1285" width="2.5" height="15.0" fill="rgb(232,10,47)" rx="2" ry="2" />
<text x="165.68" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (137 samples, 0.01%)</title><rect x="616.7" y="1221" width="0.1" height="15.0" fill="rgb(239,68,32)" rx="2" ry="2" />
<text x="619.71" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="965" width="1.6" height="15.0" fill="rgb(251,94,21)" rx="2" ry="2" />
<text x="1189.27" y="975.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (141 samples, 0.01%)</title><rect x="517.0" y="69" width="0.1" height="15.0" fill="rgb(212,92,39)" rx="2" ry="2" />
<text x="520.00" y="79.5" ></text>
</g>
<g >
<title>mark_slice (134 samples, 0.01%)</title><rect x="587.3" y="1045" width="0.1" height="15.0" fill="rgb(253,163,23)" rx="2" ry="2" />
<text x="590.29" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (153 samples, 0.01%)</title><rect x="911.7" y="1141" width="0.1" height="15.0" fill="rgb(215,135,42)" rx="2" ry="2" />
<text x="914.69" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,000 samples, 0.08%)</title><rect x="551.7" y="1285" width="1.0" height="15.0" fill="rgb(244,152,12)" rx="2" ry="2" />
<text x="554.72" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (104 samples, 0.01%)</title><rect x="1165.5" y="1461" width="0.1" height="15.0" fill="rgb(217,105,43)" rx="2" ry="2" />
<text x="1168.48" y="1471.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (171 samples, 0.01%)</title><rect x="1185.3" y="1429" width="0.1" height="15.0" fill="rgb(212,75,28)" rx="2" ry="2" />
<text x="1188.26" y="1439.5" ></text>
</g>
<g >
<title>sweep_slice (178 samples, 0.01%)</title><rect x="941.6" y="1061" width="0.1" height="15.0" fill="rgb(231,0,27)" rx="2" ry="2" />
<text x="944.56" y="1071.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (624 samples, 0.05%)</title><rect x="111.2" y="1157" width="0.6" height="15.0" fill="rgb(223,90,7)" rx="2" ry="2" />
<text x="114.22" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (925,190 samples, 76.03%)</title><rect x="92.4" y="1541" width="897.1" height="15.0" fill="rgb(233,148,22)" rx="2" ry="2" />
<text x="95.38" y="1551.5" >camlLwt__callback_2614</text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (630 samples, 0.05%)</title><rect x="533.5" y="1093" width="0.6" height="15.0" fill="rgb(242,168,23)" rx="2" ry="2" />
<text x="536.50" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__replace_3149 (404 samples, 0.03%)</title><rect x="99.8" y="1221" width="0.4" height="15.0" fill="rgb(205,33,24)" rx="2" ry="2" />
<text x="102.82" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (111 samples, 0.01%)</title><rect x="239.9" y="1253" width="0.1" height="15.0" fill="rgb(246,163,18)" rx="2" ry="2" />
<text x="242.92" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (132 samples, 0.01%)</title><rect x="320.0" y="1237" width="0.1" height="15.0" fill="rgb(231,160,46)" rx="2" ry="2" />
<text x="322.99" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (182 samples, 0.01%)</title><rect x="858.3" y="1237" width="0.2" height="15.0" fill="rgb(239,170,11)" rx="2" ry="2" />
<text x="861.34" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_9196 (1,308 samples, 0.11%)</title><rect x="204.1" y="1269" width="1.3" height="15.0" fill="rgb(253,26,4)" rx="2" ry="2" />
<text x="207.10" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (200 samples, 0.02%)</title><rect x="414.0" y="1189" width="0.2" height="15.0" fill="rgb(233,18,27)" rx="2" ry="2" />
<text x="416.99" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,386 samples, 0.11%)</title><rect x="1094.6" y="1365" width="1.4" height="15.0" fill="rgb(228,191,38)" rx="2" ry="2" />
<text x="1097.63" y="1375.5" ></text>
</g>
<g >
<title>stub_mdb_txn_commit (104 samples, 0.01%)</title><rect x="131.7" y="1269" width="0.1" height="15.0" fill="rgb(228,83,50)" rx="2" ry="2" />
<text x="134.73" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1287 (642 samples, 0.05%)</title><rect x="409.9" y="1189" width="0.6" height="15.0" fill="rgb(252,8,46)" rx="2" ry="2" />
<text x="412.89" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (158 samples, 0.01%)</title><rect x="109.4" y="1141" width="0.1" height="15.0" fill="rgb(243,33,9)" rx="2" ry="2" />
<text x="112.38" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (1,298 samples, 0.11%)</title><rect x="742.8" y="1301" width="1.3" height="15.0" fill="rgb(215,54,10)" rx="2" ry="2" />
<text x="745.84" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (121 samples, 0.01%)</title><rect x="521.4" y="933" width="0.1" height="15.0" fill="rgb(238,38,10)" rx="2" ry="2" />
<text x="524.38" y="943.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (166 samples, 0.01%)</title><rect x="1184.3" y="1429" width="0.1" height="15.0" fill="rgb(241,121,49)" rx="2" ry="2" />
<text x="1187.28" y="1439.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (251 samples, 0.02%)</title><rect x="549.5" y="1237" width="0.3" height="15.0" fill="rgb(251,224,15)" rx="2" ry="2" />
<text x="552.53" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (204 samples, 0.02%)</title><rect x="907.5" y="1077" width="0.2" height="15.0" fill="rgb(216,78,36)" rx="2" ry="2" />
<text x="910.48" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (1,555 samples, 0.13%)</title><rect x="740.9" y="1301" width="1.5" height="15.0" fill="rgb(206,82,49)" rx="2" ry="2" />
<text x="743.89" y="1311.5" ></text>
</g>
<g >
<title>memmove (150 samples, 0.01%)</title><rect x="150.4" y="1205" width="0.1" height="15.0" fill="rgb(227,213,34)" rx="2" ry="2" />
<text x="153.39" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (731 samples, 0.06%)</title><rect x="502.3" y="1237" width="0.7" height="15.0" fill="rgb(215,74,10)" rx="2" ry="2" />
<text x="505.26" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__format__format_pp_token_1842 (709 samples, 0.06%)</title><rect x="924.9" y="1301" width="0.7" height="15.0" fill="rgb(240,176,8)" rx="2" ry="2" />
<text x="927.90" y="1311.5" ></text>
</g>
<g >
<title>blake2b_compress (563 samples, 0.05%)</title><rect x="501.5" y="1173" width="0.5" height="15.0" fill="rgb(230,137,43)" rx="2" ry="2" />
<text x="504.50" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (409 samples, 0.03%)</title><rect x="95.9" y="1205" width="0.4" height="15.0" fill="rgb(251,10,31)" rx="2" ry="2" />
<text x="98.92" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (363 samples, 0.03%)</title><rect x="584.9" y="1061" width="0.3" height="15.0" fill="rgb(221,28,41)" rx="2" ry="2" />
<text x="587.90" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (157 samples, 0.01%)</title><rect x="1111.4" y="1349" width="0.2" height="15.0" fill="rgb(248,197,41)" rx="2" ry="2" />
<text x="1114.40" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (122 samples, 0.01%)</title><rect x="92.0" y="1973" width="0.2" height="15.0" fill="rgb(206,117,21)" rx="2" ry="2" />
<text x="95.04" y="1983.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__to_bin_9539 (211 samples, 0.02%)</title><rect x="378.6" y="1269" width="0.2" height="15.0" fill="rgb(251,157,3)" rx="2" ry="2" />
<text x="381.57" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (347 samples, 0.03%)</title><rect x="225.4" y="1205" width="0.4" height="15.0" fill="rgb(253,39,34)" rx="2" ry="2" />
<text x="228.42" y="1215.5" ></text>
</g>
<g >
<title>mdb_page_split (6,735 samples, 0.55%)</title><rect x="871.0" y="1205" width="6.5" height="15.0" fill="rgb(218,60,49)" rx="2" ry="2" />
<text x="874.02" y="1215.5" ></text>
</g>
<g >
<title>caml_curry2_1 (779 samples, 0.06%)</title><rect x="1085.2" y="1397" width="0.7" height="15.0" fill="rgb(222,159,7)" rx="2" ry="2" />
<text x="1088.17" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7532 (475 samples, 0.04%)</title><rect x="359.4" y="1157" width="0.5" height="15.0" fill="rgb(232,57,42)" rx="2" ry="2" />
<text x="362.43" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_stdlib__Compare__$3d_1022 (104 samples, 0.01%)</title><rect x="714.1" y="1349" width="0.1" height="15.0" fill="rgb(226,101,11)" rx="2" ry="2" />
<text x="717.15" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Path__rdecons_1097 (129 samples, 0.01%)</title><rect x="231.8" y="1301" width="0.1" height="15.0" fill="rgb(241,145,45)" rx="2" ry="2" />
<text x="234.79" y="1311.5" ></text>
</g>
<g >
<title>new_sync_write (823 samples, 0.07%)</title><rect x="921.0" y="1189" width="0.8" height="15.0" fill="rgb(222,143,19)" rx="2" ry="2" />
<text x="924.03" y="1199.5" ></text>
</g>
<g >
<title>__libc_pread64 (165 samples, 0.01%)</title><rect x="457.0" y="1013" width="0.1" height="15.0" fill="rgb(241,1,53)" rx="2" ry="2" />
<text x="459.98" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (12,417 samples, 1.02%)</title><rect x="1099.5" y="1381" width="12.1" height="15.0" fill="rgb(239,11,34)" rx="2" ry="2" />
<text x="1102.51" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (800 samples, 0.07%)</title><rect x="604.0" y="1237" width="0.8" height="15.0" fill="rgb(237,135,8)" rx="2" ry="2" />
<text x="607.00" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (431 samples, 0.04%)</title><rect x="589.3" y="1109" width="0.4" height="15.0" fill="rgb(235,196,48)" rx="2" ry="2" />
<text x="592.26" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (409 samples, 0.03%)</title><rect x="1177.0" y="1237" width="0.4" height="15.0" fill="rgb(245,169,19)" rx="2" ry="2" />
<text x="1180.04" y="1247.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (117 samples, 0.01%)</title><rect x="635.6" y="1221" width="0.1" height="15.0" fill="rgb(211,213,53)" rx="2" ry="2" />
<text x="638.64" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (824 samples, 0.07%)</title><rect x="516.5" y="181" width="0.8" height="15.0" fill="rgb(217,61,48)" rx="2" ry="2" />
<text x="519.55" y="191.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (587 samples, 0.05%)</title><rect x="111.3" y="1141" width="0.5" height="15.0" fill="rgb(222,41,10)" rx="2" ry="2" />
<text x="114.26" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (104 samples, 0.01%)</title><rect x="612.6" y="1237" width="0.1" height="15.0" fill="rgb(217,197,4)" rx="2" ry="2" />
<text x="615.61" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (126 samples, 0.01%)</title><rect x="455.4" y="1013" width="0.1" height="15.0" fill="rgb(243,73,1)" rx="2" ry="2" />
<text x="458.40" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (214 samples, 0.02%)</title><rect x="397.4" y="1125" width="0.2" height="15.0" fill="rgb(243,216,10)" rx="2" ry="2" />
<text x="400.36" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (678 samples, 0.06%)</title><rect x="597.6" y="1189" width="0.6" height="15.0" fill="rgb(244,197,43)" rx="2" ry="2" />
<text x="600.55" y="1199.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (625 samples, 0.05%)</title><rect x="1169.1" y="1445" width="0.6" height="15.0" fill="rgb(209,156,30)" rx="2" ry="2" />
<text x="1172.07" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (426 samples, 0.04%)</title><rect x="798.9" y="1157" width="0.5" height="15.0" fill="rgb(228,89,43)" rx="2" ry="2" />
<text x="801.94" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_6909 (107 samples, 0.01%)</title><rect x="104.8" y="1237" width="0.1" height="15.0" fill="rgb(224,73,20)" rx="2" ry="2" />
<text x="107.85" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (728 samples, 0.06%)</title><rect x="504.6" y="1189" width="0.7" height="15.0" fill="rgb(237,39,29)" rx="2" ry="2" />
<text x="507.57" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (128 samples, 0.01%)</title><rect x="1180.1" y="1269" width="0.1" height="15.0" fill="rgb(232,68,31)" rx="2" ry="2" />
<text x="1183.05" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (301 samples, 0.02%)</title><rect x="963.3" y="1093" width="0.3" height="15.0" fill="rgb(249,67,5)" rx="2" ry="2" />
<text x="966.33" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (133 samples, 0.01%)</title><rect x="126.2" y="997" width="0.2" height="15.0" fill="rgb(225,127,5)" rx="2" ry="2" />
<text x="129.23" y="1007.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (3,801 samples, 0.31%)</title><rect x="490.5" y="1349" width="3.7" height="15.0" fill="rgb(245,145,21)" rx="2" ry="2" />
<text x="493.47" y="1359.5" ></text>
</g>
<g >
<title>caml_make_vect (451 samples, 0.04%)</title><rect x="703.5" y="1333" width="0.4" height="15.0" fill="rgb(226,146,15)" rx="2" ry="2" />
<text x="706.48" y="1343.5" ></text>
</g>
<g >
<title>memmove@plt (131 samples, 0.01%)</title><rect x="1084.3" y="1333" width="0.2" height="15.0" fill="rgb(213,178,16)" rx="2" ry="2" />
<text x="1087.33" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (249 samples, 0.02%)</title><rect x="389.2" y="1173" width="0.2" height="15.0" fill="rgb(243,133,34)" rx="2" ry="2" />
<text x="392.19" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (222 samples, 0.02%)</title><rect x="588.9" y="1093" width="0.2" height="15.0" fill="rgb(205,17,40)" rx="2" ry="2" />
<text x="591.92" y="1103.5" ></text>
</g>
<g >
<title>vfs_write (4,470 samples, 0.37%)</title><rect x="1156.1" y="1365" width="4.3" height="15.0" fill="rgb(226,96,21)" rx="2" ry="2" />
<text x="1159.11" y="1375.5" ></text>
</g>
<g >
<title>mdb_page_get (1,215 samples, 0.10%)</title><rect x="1142.2" y="1333" width="1.2" height="15.0" fill="rgb(254,218,2)" rx="2" ry="2" />
<text x="1145.23" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (3,346 samples, 0.27%)</title><rect x="296.2" y="1173" width="3.2" height="15.0" fill="rgb(207,143,0)" rx="2" ry="2" />
<text x="299.19" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_bytes_3189 (11,310 samples, 0.93%)</title><rect x="902.3" y="1269" width="11.0" height="15.0" fill="rgb(210,173,10)" rx="2" ry="2" />
<text x="905.29" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (153 samples, 0.01%)</title><rect x="377.5" y="1189" width="0.1" height="15.0" fill="rgb(219,25,43)" rx="2" ry="2" />
<text x="380.48" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1349" width="1.6" height="15.0" fill="rgb(227,85,8)" rx="2" ry="2" />
<text x="1189.27" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (219 samples, 0.02%)</title><rect x="617.2" y="1285" width="0.2" height="15.0" fill="rgb(253,203,43)" rx="2" ry="2" />
<text x="620.18" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (307 samples, 0.03%)</title><rect x="650.2" y="1269" width="0.3" height="15.0" fill="rgb(227,207,54)" rx="2" ry="2" />
<text x="653.17" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (339 samples, 0.03%)</title><rect x="964.3" y="1157" width="0.3" height="15.0" fill="rgb(217,20,22)" rx="2" ry="2" />
<text x="967.28" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (118 samples, 0.01%)</title><rect x="516.2" y="885" width="0.1" height="15.0" fill="rgb(217,212,20)" rx="2" ry="2" />
<text x="519.15" y="895.5" ></text>
</g>
<g >
<title>caml_alloc_string (123 samples, 0.01%)</title><rect x="808.8" y="1221" width="0.1" height="15.0" fill="rgb(241,16,29)" rx="2" ry="2" />
<text x="811.78" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (262 samples, 0.02%)</title><rect x="429.9" y="1157" width="0.2" height="15.0" fill="rgb(225,30,1)" rx="2" ry="2" />
<text x="432.86" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (120 samples, 0.01%)</title><rect x="62.4" y="1845" width="0.1" height="15.0" fill="rgb(249,129,10)" rx="2" ry="2" />
<text x="65.40" y="1855.5" ></text>
</g>
<g >
<title>caml_apply2 (137 samples, 0.01%)</title><rect x="692.8" y="1301" width="0.2" height="15.0" fill="rgb(207,121,33)" rx="2" ry="2" />
<text x="695.85" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (138 samples, 0.01%)</title><rect x="180.1" y="1093" width="0.1" height="15.0" fill="rgb(236,191,52)" rx="2" ry="2" />
<text x="183.08" y="1103.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (824 samples, 0.07%)</title><rect x="516.5" y="133" width="0.8" height="15.0" fill="rgb(233,53,28)" rx="2" ry="2" />
<text x="519.55" y="143.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (30,481 samples, 2.50%)</title><rect x="386.4" y="1269" width="29.6" height="15.0" fill="rgb(245,41,11)" rx="2" ry="2" />
<text x="389.40" y="1279.5" >ca..</text>
</g>
<g >
<title>caml_call_gc (362 samples, 0.03%)</title><rect x="984.5" y="1333" width="0.3" height="15.0" fill="rgb(213,218,53)" rx="2" ry="2" />
<text x="987.48" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (297 samples, 0.02%)</title><rect x="336.5" y="1253" width="0.3" height="15.0" fill="rgb(210,63,30)" rx="2" ry="2" />
<text x="339.55" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (315 samples, 0.03%)</title><rect x="1183.2" y="1557" width="0.3" height="15.0" fill="rgb(251,205,29)" rx="2" ry="2" />
<text x="1186.16" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__array__stable_sort_1813 (4,199 samples, 0.35%)</title><rect x="77.3" y="1957" width="4.0" height="15.0" fill="rgb(217,111,20)" rx="2" ry="2" />
<text x="80.25" y="1967.5" ></text>
</g>
<g >
<title>mark_slice_darken (609 samples, 0.05%)</title><rect x="842.0" y="1093" width="0.6" height="15.0" fill="rgb(218,161,18)" rx="2" ry="2" />
<text x="845.02" y="1103.5" ></text>
</g>
<g >
<title>security_file_permission (116 samples, 0.01%)</title><rect x="183.7" y="1045" width="0.1" height="15.0" fill="rgb(205,83,38)" rx="2" ry="2" />
<text x="186.68" y="1055.5" ></text>
</g>
<g >
<title>mdb_cursor_set (106 samples, 0.01%)</title><rect x="130.7" y="1141" width="0.1" height="15.0" fill="rgb(220,104,42)" rx="2" ry="2" />
<text x="133.72" y="1151.5" ></text>
</g>
<g >
<title>__lseek64 (491 samples, 0.04%)</title><rect x="1160.5" y="1429" width="0.5" height="15.0" fill="rgb(240,96,42)" rx="2" ry="2" />
<text x="1163.50" y="1439.5" ></text>
</g>
<g >
<title>caml_alloc_string (105 samples, 0.01%)</title><rect x="147.5" y="1253" width="0.1" height="15.0" fill="rgb(209,8,4)" rx="2" ry="2" />
<text x="150.45" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (616 samples, 0.05%)</title><rect x="619.6" y="1317" width="0.6" height="15.0" fill="rgb(228,219,12)" rx="2" ry="2" />
<text x="622.57" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="453" width="1.6" height="15.0" fill="rgb(245,132,50)" rx="2" ry="2" />
<text x="1189.27" y="463.5" ></text>
</g>
<g >
<title>do_syscall_64 (163 samples, 0.01%)</title><rect x="1155.5" y="1397" width="0.2" height="15.0" fill="rgb(216,51,39)" rx="2" ry="2" />
<text x="1158.51" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (184 samples, 0.02%)</title><rect x="595.3" y="1157" width="0.2" height="15.0" fill="rgb(237,229,49)" rx="2" ry="2" />
<text x="598.30" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__int_1156 (372 samples, 0.03%)</title><rect x="904.1" y="1221" width="0.4" height="15.0" fill="rgb(249,67,2)" rx="2" ry="2" />
<text x="907.15" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (2,265 samples, 0.19%)</title><rect x="519.5" y="965" width="2.2" height="15.0" fill="rgb(205,196,27)" rx="2" ry="2" />
<text x="522.47" y="975.5" ></text>
</g>
<g >
<title>caml_call_gc (121 samples, 0.01%)</title><rect x="62.4" y="1877" width="0.1" height="15.0" fill="rgb(227,13,12)" rx="2" ry="2" />
<text x="65.40" y="1887.5" ></text>
</g>
<g >
<title>mark_slice_darken (212 samples, 0.02%)</title><rect x="838.0" y="1045" width="0.2" height="15.0" fill="rgb(227,60,8)" rx="2" ry="2" />
<text x="841.01" y="1055.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (108 samples, 0.01%)</title><rect x="601.7" y="1173" width="0.1" height="15.0" fill="rgb(247,168,0)" rx="2" ry="2" />
<text x="604.74" y="1183.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (189 samples, 0.02%)</title><rect x="829.5" y="1029" width="0.2" height="15.0" fill="rgb(226,229,46)" rx="2" ry="2" />
<text x="832.50" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (149 samples, 0.01%)</title><rect x="168.2" y="1269" width="0.1" height="15.0" fill="rgb(250,155,46)" rx="2" ry="2" />
<text x="171.19" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (186 samples, 0.02%)</title><rect x="106.9" y="1189" width="0.2" height="15.0" fill="rgb(248,76,16)" rx="2" ry="2" />
<text x="109.92" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (115 samples, 0.01%)</title><rect x="384.2" y="1157" width="0.1" height="15.0" fill="rgb(247,57,7)" rx="2" ry="2" />
<text x="387.20" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (691 samples, 0.06%)</title><rect x="696.2" y="1301" width="0.7" height="15.0" fill="rgb(230,229,32)" rx="2" ry="2" />
<text x="699.23" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_string (316 samples, 0.03%)</title><rect x="532.2" y="1045" width="0.3" height="15.0" fill="rgb(219,26,44)" rx="2" ry="2" />
<text x="535.15" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1461" width="1.6" height="15.0" fill="rgb(251,5,23)" rx="2" ry="2" />
<text x="1189.27" y="1471.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_7966 (159 samples, 0.01%)</title><rect x="129.6" y="1269" width="0.2" height="15.0" fill="rgb(207,161,18)" rx="2" ry="2" />
<text x="132.64" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (612 samples, 0.05%)</title><rect x="537.1" y="1125" width="0.6" height="15.0" fill="rgb(237,127,41)" rx="2" ry="2" />
<text x="540.09" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (485 samples, 0.04%)</title><rect x="837.4" y="1077" width="0.5" height="15.0" fill="rgb(219,18,8)" rx="2" ry="2" />
<text x="840.41" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (740 samples, 0.06%)</title><rect x="814.4" y="1221" width="0.8" height="15.0" fill="rgb(224,164,30)" rx="2" ry="2" />
<text x="817.44" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_9686 (130 samples, 0.01%)</title><rect x="1173.7" y="693" width="0.1" height="15.0" fill="rgb(218,69,5)" rx="2" ry="2" />
<text x="1176.67" y="703.5" ></text>
</g>
<g >
<title>mark_slice (543 samples, 0.04%)</title><rect x="693.1" y="1253" width="0.5" height="15.0" fill="rgb(246,168,32)" rx="2" ry="2" />
<text x="696.06" y="1263.5" ></text>
</g>
<g >
<title>mdb_cursor_set (9,139 samples, 0.75%)</title><rect x="719.1" y="1237" width="8.8" height="15.0" fill="rgb(248,94,20)" rx="2" ry="2" />
<text x="722.06" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (387 samples, 0.03%)</title><rect x="576.8" y="981" width="0.3" height="15.0" fill="rgb(242,50,48)" rx="2" ry="2" />
<text x="579.77" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,859 samples, 0.15%)</title><rect x="1108.6" y="1349" width="1.8" height="15.0" fill="rgb(251,40,30)" rx="2" ry="2" />
<text x="1111.57" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__check_allowed_bytes_1069 (500 samples, 0.04%)</title><rect x="907.3" y="1157" width="0.5" height="15.0" fill="rgb(213,86,15)" rx="2" ry="2" />
<text x="910.33" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (166 samples, 0.01%)</title><rect x="967.1" y="1077" width="0.2" height="15.0" fill="rgb(238,149,1)" rx="2" ry="2" />
<text x="970.12" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_1361 (136 samples, 0.01%)</title><rect x="263.3" y="1205" width="0.2" height="15.0" fill="rgb(248,39,5)" rx="2" ry="2" />
<text x="266.32" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (1,289 samples, 0.11%)</title><rect x="614.1" y="1221" width="1.2" height="15.0" fill="rgb(218,125,23)" rx="2" ry="2" />
<text x="617.08" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,101 samples, 0.09%)</title><rect x="712.5" y="1253" width="1.1" height="15.0" fill="rgb(244,58,26)" rx="2" ry="2" />
<text x="715.52" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_atom_1078 (143 samples, 0.01%)</title><rect x="152.3" y="1237" width="0.1" height="15.0" fill="rgb(228,26,23)" rx="2" ry="2" />
<text x="155.26" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_9205 (115 samples, 0.01%)</title><rect x="1176.2" y="1237" width="0.1" height="15.0" fill="rgb(246,158,3)" rx="2" ry="2" />
<text x="1179.24" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (133 samples, 0.01%)</title><rect x="595.9" y="1141" width="0.1" height="15.0" fill="rgb(225,101,1)" rx="2" ry="2" />
<text x="598.86" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (157 samples, 0.01%)</title><rect x="407.3" y="1141" width="0.2" height="15.0" fill="rgb(253,151,46)" rx="2" ry="2" />
<text x="410.31" y="1151.5" ></text>
</g>
<g >
<title>mdb_node_add (4,554 samples, 0.37%)</title><rect x="1062.7" y="1317" width="4.4" height="15.0" fill="rgb(251,70,4)" rx="2" ry="2" />
<text x="1065.72" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__format__format_pp_token_1842 (295 samples, 0.02%)</title><rect x="94.7" y="1237" width="0.2" height="15.0" fill="rgb(235,205,52)" rx="2" ry="2" />
<text x="97.65" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (196 samples, 0.02%)</title><rect x="885.0" y="1221" width="0.2" height="15.0" fill="rgb(232,103,30)" rx="2" ry="2" />
<text x="888.01" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_9722 (2,425 samples, 0.20%)</title><rect x="125.9" y="1189" width="2.3" height="15.0" fill="rgb(239,11,27)" rx="2" ry="2" />
<text x="128.86" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (624 samples, 0.05%)</title><rect x="382.5" y="1205" width="0.6" height="15.0" fill="rgb(220,75,15)" rx="2" ry="2" />
<text x="385.48" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1477" width="1.6" height="15.0" fill="rgb(221,195,47)" rx="2" ry="2" />
<text x="1189.27" y="1487.5" ></text>
</g>
<g >
<title>caml_alloc_string (289 samples, 0.02%)</title><rect x="601.3" y="1189" width="0.3" height="15.0" fill="rgb(214,182,27)" rx="2" ry="2" />
<text x="604.31" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (147 samples, 0.01%)</title><rect x="117.4" y="1125" width="0.1" height="15.0" fill="rgb(252,128,28)" rx="2" ry="2" />
<text x="120.35" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,572 samples, 0.13%)</title><rect x="192.9" y="1285" width="1.5" height="15.0" fill="rgb(236,82,15)" rx="2" ry="2" />
<text x="195.85" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (2,174 samples, 0.18%)</title><rect x="260.0" y="1237" width="2.1" height="15.0" fill="rgb(236,75,3)" rx="2" ry="2" />
<text x="262.95" y="1247.5" ></text>
</g>
<g >
<title>_int_malloc (857 samples, 0.07%)</title><rect x="1003.6" y="1317" width="0.8" height="15.0" fill="rgb(239,113,4)" rx="2" ry="2" />
<text x="1006.61" y="1327.5" ></text>
</g>
<g >
<title>rotr64 (144 samples, 0.01%)</title><rect x="566.7" y="1045" width="0.1" height="15.0" fill="rgb(249,50,35)" rx="2" ry="2" />
<text x="569.66" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__record_3670 (482 samples, 0.04%)</title><rect x="356.4" y="1205" width="0.5" height="15.0" fill="rgb(211,214,35)" rx="2" ry="2" />
<text x="359.40" y="1215.5" ></text>
</g>
<g >
<title>caml_call_gc (118 samples, 0.01%)</title><rect x="556.2" y="1253" width="0.1" height="15.0" fill="rgb(218,34,37)" rx="2" ry="2" />
<text x="559.17" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (129 samples, 0.01%)</title><rect x="406.1" y="1109" width="0.2" height="15.0" fill="rgb(211,121,35)" rx="2" ry="2" />
<text x="409.14" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_find_9205 (19,771 samples, 1.62%)</title><rect x="200.2" y="1285" width="19.2" height="15.0" fill="rgb(210,107,2)" rx="2" ry="2" />
<text x="203.22" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__return_2462 (329 samples, 0.03%)</title><rect x="994.4" y="1413" width="0.3" height="15.0" fill="rgb(239,143,2)" rx="2" ry="2" />
<text x="997.37" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1077" width="1.6" height="15.0" fill="rgb(251,204,0)" rx="2" ry="2" />
<text x="1189.27" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (809 samples, 0.07%)</title><rect x="541.0" y="1189" width="0.8" height="15.0" fill="rgb(218,171,5)" rx="2" ry="2" />
<text x="544.01" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (517 samples, 0.04%)</title><rect x="571.5" y="997" width="0.5" height="15.0" fill="rgb(233,73,34)" rx="2" ry="2" />
<text x="574.53" y="1007.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (611 samples, 0.05%)</title><rect x="564.0" y="1173" width="0.6" height="15.0" fill="rgb(236,181,26)" rx="2" ry="2" />
<text x="567.01" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (317 samples, 0.03%)</title><rect x="926.4" y="1317" width="0.3" height="15.0" fill="rgb(247,150,20)" rx="2" ry="2" />
<text x="929.42" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (571 samples, 0.05%)</title><rect x="820.2" y="1125" width="0.6" height="15.0" fill="rgb(251,148,21)" rx="2" ry="2" />
<text x="823.21" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (706 samples, 0.06%)</title><rect x="587.5" y="1109" width="0.7" height="15.0" fill="rgb(208,178,43)" rx="2" ry="2" />
<text x="590.55" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (182 samples, 0.01%)</title><rect x="858.3" y="1253" width="0.2" height="15.0" fill="rgb(231,87,9)" rx="2" ry="2" />
<text x="861.34" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (117 samples, 0.01%)</title><rect x="972.1" y="1141" width="0.1" height="15.0" fill="rgb(220,9,21)" rx="2" ry="2" />
<text x="975.11" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__finalize_2904 (106 samples, 0.01%)</title><rect x="221.3" y="1285" width="0.1" height="15.0" fill="rgb(241,138,14)" rx="2" ry="2" />
<text x="224.25" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (132 samples, 0.01%)</title><rect x="129.8" y="1237" width="0.1" height="15.0" fill="rgb(210,226,30)" rx="2" ry="2" />
<text x="132.80" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_print_flush_2068 (1,097 samples, 0.09%)</title><rect x="1163.7" y="1509" width="1.1" height="15.0" fill="rgb(217,85,52)" rx="2" ry="2" />
<text x="1166.69" y="1519.5" ></text>
</g>
<g >
<title>blake2b_compress (1,221 samples, 0.10%)</title><rect x="337.8" y="1205" width="1.2" height="15.0" fill="rgb(237,146,24)" rx="2" ry="2" />
<text x="340.78" y="1215.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (104 samples, 0.01%)</title><rect x="116.4" y="1093" width="0.1" height="15.0" fill="rgb(253,20,50)" rx="2" ry="2" />
<text x="119.45" y="1103.5" ></text>
</g>
<g >
<title>invert_pointer_at (234 samples, 0.02%)</title><rect x="1178.7" y="1141" width="0.3" height="15.0" fill="rgb(215,74,11)" rx="2" ry="2" />
<text x="1181.74" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11364 (45,371 samples, 3.73%)</title><rect x="282.0" y="1317" width="44.0" height="15.0" fill="rgb(251,69,10)" rx="2" ry="2" />
<text x="284.97" y="1327.5" >caml..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (255 samples, 0.02%)</title><rect x="533.0" y="1061" width="0.3" height="15.0" fill="rgb(207,88,23)" rx="2" ry="2" />
<text x="536.05" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (109 samples, 0.01%)</title><rect x="62.0" y="1845" width="0.1" height="15.0" fill="rgb(217,122,34)" rx="2" ry="2" />
<text x="65.01" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (937 samples, 0.08%)</title><rect x="1180.3" y="1253" width="0.9" height="15.0" fill="rgb(237,193,20)" rx="2" ry="2" />
<text x="1183.27" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,506 samples, 0.12%)</title><rect x="895.1" y="1221" width="1.4" height="15.0" fill="rgb(244,228,7)" rx="2" ry="2" />
<text x="898.06" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (494 samples, 0.04%)</title><rect x="734.3" y="1237" width="0.5" height="15.0" fill="rgb(245,129,24)" rx="2" ry="2" />
<text x="737.34" y="1247.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (864 samples, 0.07%)</title><rect x="827.1" y="1077" width="0.8" height="15.0" fill="rgb(251,55,7)" rx="2" ry="2" />
<text x="830.06" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (433 samples, 0.04%)</title><rect x="817.9" y="1109" width="0.4" height="15.0" fill="rgb(214,88,18)" rx="2" ry="2" />
<text x="820.88" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,075 samples, 0.09%)</title><rect x="1186.3" y="133" width="1.0" height="15.0" fill="rgb(233,142,27)" rx="2" ry="2" />
<text x="1189.28" y="143.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__of_bytes_exn_1750 (170 samples, 0.01%)</title><rect x="131.9" y="1301" width="0.1" height="15.0" fill="rgb(251,84,27)" rx="2" ry="2" />
<text x="134.85" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (133 samples, 0.01%)</title><rect x="58.2" y="1813" width="0.1" height="15.0" fill="rgb(228,5,4)" rx="2" ry="2" />
<text x="61.20" y="1823.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (236 samples, 0.02%)</title><rect x="268.6" y="1253" width="0.2" height="15.0" fill="rgb(218,136,20)" rx="2" ry="2" />
<text x="271.61" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="132.3" y="1365" width="0.1" height="15.0" fill="rgb(236,186,26)" rx="2" ry="2" />
<text x="135.32" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (2,580 samples, 0.21%)</title><rect x="71.7" y="1925" width="2.5" height="15.0" fill="rgb(222,138,45)" rx="2" ry="2" />
<text x="74.73" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_loop_1883 (633 samples, 0.05%)</title><rect x="1163.8" y="1461" width="0.6" height="15.0" fill="rgb(236,227,15)" rx="2" ry="2" />
<text x="1166.82" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (303 samples, 0.02%)</title><rect x="361.6" y="1173" width="0.3" height="15.0" fill="rgb(243,107,34)" rx="2" ry="2" />
<text x="364.62" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (222 samples, 0.02%)</title><rect x="715.1" y="1253" width="0.2" height="15.0" fill="rgb(252,160,46)" rx="2" ry="2" />
<text x="718.07" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (139 samples, 0.01%)</title><rect x="347.9" y="1109" width="0.2" height="15.0" fill="rgb(221,28,1)" rx="2" ry="2" />
<text x="350.94" y="1119.5" ></text>
</g>
<g >
<title>caml_apply2 (277 samples, 0.02%)</title><rect x="399.2" y="1109" width="0.3" height="15.0" fill="rgb(222,71,48)" rx="2" ry="2" />
<text x="402.21" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (793 samples, 0.07%)</title><rect x="545.9" y="1237" width="0.8" height="15.0" fill="rgb(238,218,35)" rx="2" ry="2" />
<text x="548.92" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Bytes_encodings__get_int32_be_1098 (1,019 samples, 0.08%)</title><rect x="962.8" y="1157" width="1.0" height="15.0" fill="rgb(237,65,54)" rx="2" ry="2" />
<text x="965.76" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="499.5" y="1269" width="0.1" height="15.0" fill="rgb(253,2,44)" rx="2" ry="2" />
<text x="502.47" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (158 samples, 0.01%)</title><rect x="1111.4" y="1365" width="0.2" height="15.0" fill="rgb(242,83,47)" rx="2" ry="2" />
<text x="1114.40" y="1375.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (175 samples, 0.01%)</title><rect x="89.2" y="1989" width="0.1" height="15.0" fill="rgb(215,107,37)" rx="2" ry="2" />
<text x="92.18" y="1999.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (245 samples, 0.02%)</title><rect x="359.7" y="1141" width="0.2" height="15.0" fill="rgb(247,131,39)" rx="2" ry="2" />
<text x="362.65" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (216 samples, 0.02%)</title><rect x="408.7" y="1109" width="0.2" height="15.0" fill="rgb(230,198,46)" rx="2" ry="2" />
<text x="411.68" y="1119.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (225 samples, 0.02%)</title><rect x="519.2" y="933" width="0.2" height="15.0" fill="rgb(224,81,33)" rx="2" ry="2" />
<text x="522.21" y="943.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (226 samples, 0.02%)</title><rect x="210.4" y="1109" width="0.2" height="15.0" fill="rgb(244,204,49)" rx="2" ry="2" />
<text x="213.38" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1301" width="1.3" height="15.0" fill="rgb(210,166,43)" rx="2" ry="2" />
<text x="1175.52" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__with_value_2040 (215,337 samples, 17.70%)</title><rect x="714.6" y="1381" width="208.8" height="15.0" fill="rgb(208,132,28)" rx="2" ry="2" />
<text x="717.59" y="1391.5" >camlLwt__with_value_2040</text>
</g>
<g >
<title>camlLwt__fun_4551 (178 samples, 0.01%)</title><rect x="221.5" y="1285" width="0.1" height="15.0" fill="rgb(241,2,54)" rx="2" ry="2" />
<text x="224.46" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,335 samples, 0.11%)</title><rect x="516.4" y="773" width="1.3" height="15.0" fill="rgb(221,100,29)" rx="2" ry="2" />
<text x="519.42" y="783.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (313 samples, 0.03%)</title><rect x="1182.2" y="1813" width="0.3" height="15.0" fill="rgb(231,224,31)" rx="2" ry="2" />
<text x="1185.24" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__map__find_1120 (549 samples, 0.05%)</title><rect x="277.3" y="1221" width="0.5" height="15.0" fill="rgb(251,220,0)" rx="2" ry="2" />
<text x="280.26" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11447 (110 samples, 0.01%)</title><rect x="1176.1" y="1269" width="0.1" height="15.0" fill="rgb(251,160,21)" rx="2" ry="2" />
<text x="1179.10" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (211 samples, 0.02%)</title><rect x="1180.9" y="1141" width="0.2" height="15.0" fill="rgb(223,192,31)" rx="2" ry="2" />
<text x="1183.94" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (844 samples, 0.07%)</title><rect x="340.7" y="1189" width="0.8" height="15.0" fill="rgb(232,106,0)" rx="2" ry="2" />
<text x="343.70" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__format__kasprintf_2501 (2,072 samples, 0.17%)</title><rect x="1165.6" y="1509" width="2.0" height="15.0" fill="rgb(243,84,37)" rx="2" ry="2" />
<text x="1168.64" y="1519.5" ></text>
</g>
<g >
<title>mark_slice_darken (451 samples, 0.04%)</title><rect x="912.4" y="1189" width="0.5" height="15.0" fill="rgb(233,21,37)" rx="2" ry="2" />
<text x="915.42" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1125" width="1.3" height="15.0" fill="rgb(242,9,10)" rx="2" ry="2" />
<text x="1175.52" y="1135.5" ></text>
</g>
<g >
<title>uECC_verify (136 samples, 0.01%)</title><rect x="1173.1" y="709" width="0.1" height="15.0" fill="rgb(241,4,19)" rx="2" ry="2" />
<text x="1176.11" y="719.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (262 samples, 0.02%)</title><rect x="200.8" y="1221" width="0.2" height="15.0" fill="rgb(227,191,19)" rx="2" ry="2" />
<text x="203.78" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (862 samples, 0.07%)</title><rect x="351.3" y="1205" width="0.9" height="15.0" fill="rgb(224,97,19)" rx="2" ry="2" />
<text x="354.33" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (587 samples, 0.05%)</title><rect x="555.6" y="1269" width="0.6" height="15.0" fill="rgb(242,179,49)" rx="2" ry="2" />
<text x="558.60" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (125 samples, 0.01%)</title><rect x="973.0" y="1221" width="0.1" height="15.0" fill="rgb(205,53,40)" rx="2" ry="2" />
<text x="976.01" y="1231.5" ></text>
</g>
<g >
<title>blake2b_final (433 samples, 0.04%)</title><rect x="514.5" y="917" width="0.5" height="15.0" fill="rgb(252,184,45)" rx="2" ry="2" />
<text x="517.55" y="927.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (467 samples, 0.04%)</title><rect x="837.4" y="1061" width="0.5" height="15.0" fill="rgb(213,56,21)" rx="2" ry="2" />
<text x="840.43" y="1071.5" ></text>
</g>
<g >
<title>mdb_page_split (596 samples, 0.05%)</title><rect x="731.6" y="1237" width="0.6" height="15.0" fill="rgb(231,190,53)" rx="2" ry="2" />
<text x="734.61" y="1247.5" ></text>
</g>
<g >
<title>mdb_node_search (6,364 samples, 0.52%)</title><rect x="778.1" y="1157" width="6.1" height="15.0" fill="rgb(208,223,46)" rx="2" ry="2" />
<text x="781.06" y="1167.5" ></text>
</g>
<g >
<title>mark_slice (263 samples, 0.02%)</title><rect x="907.4" y="1093" width="0.3" height="15.0" fill="rgb(232,100,20)" rx="2" ry="2" />
<text x="910.43" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (132 samples, 0.01%)</title><rect x="585.1" y="1013" width="0.1" height="15.0" fill="rgb(211,41,13)" rx="2" ry="2" />
<text x="588.05" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (282 samples, 0.02%)</title><rect x="707.5" y="1301" width="0.2" height="15.0" fill="rgb(250,186,36)" rx="2" ry="2" />
<text x="710.46" y="1311.5" ></text>
</g>
<g >
<title>blake2b_update (531 samples, 0.04%)</title><rect x="555.6" y="1221" width="0.5" height="15.0" fill="rgb(239,86,26)" rx="2" ry="2" />
<text x="558.63" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (573 samples, 0.05%)</title><rect x="462.4" y="1093" width="0.5" height="15.0" fill="rgb(214,48,8)" rx="2" ry="2" />
<text x="465.38" y="1103.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (336 samples, 0.03%)</title><rect x="117.7" y="1173" width="0.3" height="15.0" fill="rgb(253,31,37)" rx="2" ry="2" />
<text x="120.69" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (3,877 samples, 0.32%)</title><rect x="464.9" y="1141" width="3.8" height="15.0" fill="rgb(205,167,53)" rx="2" ry="2" />
<text x="467.91" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (571 samples, 0.05%)</title><rect x="912.3" y="1205" width="0.6" height="15.0" fill="rgb(243,23,7)" rx="2" ry="2" />
<text x="915.31" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (166 samples, 0.01%)</title><rect x="588.1" y="1093" width="0.1" height="15.0" fill="rgb(210,195,29)" rx="2" ry="2" />
<text x="591.06" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (25,964 samples, 2.13%)</title><rect x="509.0" y="1109" width="25.1" height="15.0" fill="rgb(249,158,34)" rx="2" ry="2" />
<text x="511.97" y="1119.5" >c..</text>
</g>
<g >
<title>caml_alloc_string (159 samples, 0.01%)</title><rect x="733.1" y="1285" width="0.2" height="15.0" fill="rgb(249,76,38)" rx="2" ry="2" />
<text x="736.15" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (171 samples, 0.01%)</title><rect x="976.5" y="1061" width="0.1" height="15.0" fill="rgb(208,195,44)" rx="2" ry="2" />
<text x="979.48" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="581" width="1.6" height="15.0" fill="rgb(227,126,13)" rx="2" ry="2" />
<text x="1189.27" y="591.5" ></text>
</g>
<g >
<title>caml_call_gc (805 samples, 0.07%)</title><rect x="599.5" y="1189" width="0.8" height="15.0" fill="rgb(222,223,9)" rx="2" ry="2" />
<text x="602.55" y="1199.5" ></text>
</g>
<g >
<title>security_file_permission (353 samples, 0.03%)</title><rect x="1160.1" y="1333" width="0.3" height="15.0" fill="rgb(253,183,14)" rx="2" ry="2" />
<text x="1163.10" y="1343.5" ></text>
</g>
<g >
<title>caml_ba_create (2,390 samples, 0.20%)</title><rect x="771.2" y="1237" width="2.3" height="15.0" fill="rgb(214,80,36)" rx="2" ry="2" />
<text x="774.22" y="1247.5" ></text>
</g>
<g >
<title>compare_val (195 samples, 0.02%)</title><rect x="476.5" y="1269" width="0.2" height="15.0" fill="rgb(252,73,42)" rx="2" ry="2" />
<text x="479.50" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (131 samples, 0.01%)</title><rect x="470.1" y="1221" width="0.2" height="15.0" fill="rgb(228,94,23)" rx="2" ry="2" />
<text x="473.14" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,874 samples, 0.15%)</title><rect x="529.1" y="1029" width="1.9" height="15.0" fill="rgb(206,59,50)" rx="2" ry="2" />
<text x="532.14" y="1039.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (278 samples, 0.02%)</title><rect x="112.2" y="1173" width="0.3" height="15.0" fill="rgb(238,27,2)" rx="2" ry="2" />
<text x="115.24" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (233 samples, 0.02%)</title><rect x="740.3" y="1269" width="0.2" height="15.0" fill="rgb(240,25,54)" rx="2" ry="2" />
<text x="743.30" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (121 samples, 0.01%)</title><rect x="62.4" y="1861" width="0.1" height="15.0" fill="rgb(213,200,9)" rx="2" ry="2" />
<text x="65.40" y="1871.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (143 samples, 0.01%)</title><rect x="967.5" y="1109" width="0.2" height="15.0" fill="rgb(207,171,51)" rx="2" ry="2" />
<text x="970.52" y="1119.5" ></text>
</g>
<g >
<title>caml_garbage_collection (202 samples, 0.02%)</title><rect x="1167.5" y="1477" width="0.1" height="15.0" fill="rgb(242,28,24)" rx="2" ry="2" />
<text x="1170.45" y="1487.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_9239 (1,428 samples, 0.12%)</title><rect x="461.7" y="1157" width="1.4" height="15.0" fill="rgb(217,152,47)" rx="2" ry="2" />
<text x="464.68" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3395 (125 samples, 0.01%)</title><rect x="248.8" y="1221" width="0.1" height="15.0" fill="rgb(213,55,12)" rx="2" ry="2" />
<text x="251.76" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (276 samples, 0.02%)</title><rect x="575.8" y="949" width="0.3" height="15.0" fill="rgb(228,148,54)" rx="2" ry="2" />
<text x="578.82" y="959.5" ></text>
</g>
<g >
<title>mdb_put (19,123 samples, 1.57%)</title><rect x="859.0" y="1237" width="18.5" height="15.0" fill="rgb(206,161,37)" rx="2" ry="2" />
<text x="862.00" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (578 samples, 0.05%)</title><rect x="886.5" y="1205" width="0.5" height="15.0" fill="rgb(209,139,23)" rx="2" ry="2" />
<text x="889.45" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (28,680 samples, 2.36%)</title><rect x="927.7" y="1269" width="27.8" height="15.0" fill="rgb(210,116,47)" rx="2" ry="2" />
<text x="930.66" y="1279.5" >c..</text>
</g>
<g >
<title>camlBlake2__fun_1565 (1,116 samples, 0.09%)</title><rect x="610.3" y="1205" width="1.1" height="15.0" fill="rgb(224,217,45)" rx="2" ry="2" />
<text x="613.35" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,185 samples, 0.10%)</title><rect x="890.4" y="1189" width="1.2" height="15.0" fill="rgb(221,106,37)" rx="2" ry="2" />
<text x="893.40" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (104 samples, 0.01%)</title><rect x="585.1" y="997" width="0.1" height="15.0" fill="rgb(246,153,21)" rx="2" ry="2" />
<text x="588.08" y="1007.5" ></text>
</g>
<g >
<title>vsnprintf (318 samples, 0.03%)</title><rect x="97.4" y="1237" width="0.3" height="15.0" fill="rgb(234,43,46)" rx="2" ry="2" />
<text x="100.43" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (235 samples, 0.02%)</title><rect x="1182.3" y="1621" width="0.2" height="15.0" fill="rgb(241,153,47)" rx="2" ry="2" />
<text x="1185.25" y="1631.5" ></text>
</g>
<g >
<title>mark_slice_darken (183 samples, 0.02%)</title><rect x="532.2" y="997" width="0.2" height="15.0" fill="rgb(218,53,27)" rx="2" ry="2" />
<text x="535.22" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (723 samples, 0.06%)</title><rect x="225.1" y="1221" width="0.7" height="15.0" fill="rgb(234,209,20)" rx="2" ry="2" />
<text x="228.07" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (745 samples, 0.06%)</title><rect x="343.2" y="1109" width="0.8" height="15.0" fill="rgb(233,160,23)" rx="2" ry="2" />
<text x="346.24" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (207 samples, 0.02%)</title><rect x="462.4" y="1045" width="0.2" height="15.0" fill="rgb(208,144,25)" rx="2" ry="2" />
<text x="465.45" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (204 samples, 0.02%)</title><rect x="1167.7" y="1477" width="0.2" height="15.0" fill="rgb(210,152,42)" rx="2" ry="2" />
<text x="1170.65" y="1487.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (1,011 samples, 0.08%)</title><rect x="260.7" y="1189" width="1.0" height="15.0" fill="rgb(226,163,53)" rx="2" ry="2" />
<text x="263.75" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (363 samples, 0.03%)</title><rect x="954.4" y="1141" width="0.3" height="15.0" fill="rgb(226,132,53)" rx="2" ry="2" />
<text x="957.39" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (254 samples, 0.02%)</title><rect x="475.6" y="1285" width="0.3" height="15.0" fill="rgb(205,109,19)" rx="2" ry="2" />
<text x="478.61" y="1295.5" ></text>
</g>
<g >
<title>mdb_page_search_root (276 samples, 0.02%)</title><rect x="1171.2" y="1349" width="0.3" height="15.0" fill="rgb(231,215,52)" rx="2" ry="2" />
<text x="1174.20" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (414 samples, 0.03%)</title><rect x="801.3" y="1205" width="0.4" height="15.0" fill="rgb(246,97,43)" rx="2" ry="2" />
<text x="804.34" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_4610 (112 samples, 0.01%)</title><rect x="453.0" y="1045" width="0.1" height="15.0" fill="rgb(219,183,2)" rx="2" ry="2" />
<text x="455.98" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,009 samples, 0.08%)</title><rect x="601.9" y="1237" width="1.0" height="15.0" fill="rgb(238,98,32)" rx="2" ry="2" />
<text x="604.94" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (276 samples, 0.02%)</title><rect x="976.4" y="1125" width="0.3" height="15.0" fill="rgb(249,132,31)" rx="2" ry="2" />
<text x="979.43" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (647 samples, 0.05%)</title><rect x="170.7" y="1301" width="0.6" height="15.0" fill="rgb(243,95,43)" rx="2" ry="2" />
<text x="173.72" y="1311.5" ></text>
</g>
<g >
<title>copy_user_generic_string (183 samples, 0.02%)</title><rect x="1165.2" y="1333" width="0.2" height="15.0" fill="rgb(224,94,28)" rx="2" ry="2" />
<text x="1168.20" y="1343.5" ></text>
</g>
<g >
<title>blake2b_compress (615 samples, 0.05%)</title><rect x="172.1" y="1253" width="0.6" height="15.0" fill="rgb(212,93,1)" rx="2" ry="2" />
<text x="175.13" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (192 samples, 0.02%)</title><rect x="522.5" y="949" width="0.2" height="15.0" fill="rgb(238,163,34)" rx="2" ry="2" />
<text x="525.55" y="959.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (330 samples, 0.03%)</title><rect x="287.1" y="1173" width="0.4" height="15.0" fill="rgb(234,165,23)" rx="2" ry="2" />
<text x="290.15" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (374 samples, 0.03%)</title><rect x="298.6" y="1141" width="0.4" height="15.0" fill="rgb(243,150,44)" rx="2" ry="2" />
<text x="301.60" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (296 samples, 0.02%)</title><rect x="169.2" y="1381" width="0.3" height="15.0" fill="rgb(251,3,17)" rx="2" ry="2" />
<text x="172.20" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Apply__apply_operation_9533 (784 samples, 0.06%)</title><rect x="1172.7" y="853" width="0.8" height="15.0" fill="rgb(242,153,4)" rx="2" ry="2" />
<text x="1175.75" y="863.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (12,958 samples, 1.06%)</title><rect x="340.2" y="1285" width="12.6" height="15.0" fill="rgb(254,176,3)" rx="2" ry="2" />
<text x="343.22" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (218 samples, 0.02%)</title><rect x="574.5" y="645" width="0.2" height="15.0" fill="rgb(253,138,19)" rx="2" ry="2" />
<text x="577.51" y="655.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_14113 (133 samples, 0.01%)</title><rect x="279.6" y="1253" width="0.1" height="15.0" fill="rgb(216,213,14)" rx="2" ry="2" />
<text x="282.59" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (6,979 samples, 0.57%)</title><rect x="1115.4" y="1381" width="6.8" height="15.0" fill="rgb(213,11,26)" rx="2" ry="2" />
<text x="1118.44" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_base__Block_header__fun_3899 (155 samples, 0.01%)</title><rect x="491.5" y="1317" width="0.2" height="15.0" fill="rgb(211,189,8)" rx="2" ry="2" />
<text x="494.52" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (136 samples, 0.01%)</title><rect x="159.7" y="1301" width="0.1" height="15.0" fill="rgb(254,189,20)" rx="2" ry="2" />
<text x="162.68" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,327 samples, 0.11%)</title><rect x="516.4" y="757" width="1.3" height="15.0" fill="rgb(215,89,35)" rx="2" ry="2" />
<text x="519.42" y="767.5" ></text>
</g>
<g >
<title>caml_blit_bytes (976 samples, 0.08%)</title><rect x="822.4" y="1141" width="1.0" height="15.0" fill="rgb(206,97,44)" rx="2" ry="2" />
<text x="825.41" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (694 samples, 0.06%)</title><rect x="594.6" y="1157" width="0.6" height="15.0" fill="rgb(209,127,37)" rx="2" ry="2" />
<text x="597.57" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (204 samples, 0.02%)</title><rect x="703.0" y="1253" width="0.2" height="15.0" fill="rgb(222,131,19)" rx="2" ry="2" />
<text x="705.97" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (164,287 samples, 13.50%)</title><rect x="990.9" y="1509" width="159.3" height="15.0" fill="rgb(243,58,40)" rx="2" ry="2" />
<text x="993.92" y="1519.5" >camlLwt__try_bind_2801</text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_6658 (130 samples, 0.01%)</title><rect x="1173.7" y="821" width="0.1" height="15.0" fill="rgb(229,168,15)" rx="2" ry="2" />
<text x="1176.67" y="831.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3818 (169 samples, 0.01%)</title><rect x="311.8" y="1157" width="0.1" height="15.0" fill="rgb(214,23,43)" rx="2" ry="2" />
<text x="314.77" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,096 samples, 0.09%)</title><rect x="806.2" y="1221" width="1.1" height="15.0" fill="rgb(224,81,3)" rx="2" ry="2" />
<text x="809.20" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (219 samples, 0.02%)</title><rect x="580.3" y="965" width="0.2" height="15.0" fill="rgb(207,84,24)" rx="2" ry="2" />
<text x="583.31" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (306 samples, 0.03%)</title><rect x="1183.7" y="1573" width="0.3" height="15.0" fill="rgb(254,162,13)" rx="2" ry="2" />
<text x="1186.67" y="1583.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (573 samples, 0.05%)</title><rect x="1164.9" y="1461" width="0.5" height="15.0" fill="rgb(242,126,2)" rx="2" ry="2" />
<text x="1167.88" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__array__iter_1057 (408 samples, 0.03%)</title><rect x="118.5" y="1205" width="0.4" height="15.0" fill="rgb(249,137,8)" rx="2" ry="2" />
<text x="121.52" y="1215.5" ></text>
</g>
<g >
<title>camlResto_directory__register_3308 (751 samples, 0.06%)</title><rect x="1184.9" y="1845" width="0.8" height="15.0" fill="rgb(214,189,13)" rx="2" ry="2" />
<text x="1187.94" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (136 samples, 0.01%)</title><rect x="542.9" y="1173" width="0.1" height="15.0" fill="rgb(232,74,29)" rx="2" ry="2" />
<text x="545.92" y="1183.5" ></text>
</g>
<g >
<title>__read_chk (679 samples, 0.06%)</title><rect x="46.8" y="2021" width="0.6" height="15.0" fill="rgb(224,75,27)" rx="2" ry="2" />
<text x="49.76" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2775 (115 samples, 0.01%)</title><rect x="376.7" y="1221" width="0.1" height="15.0" fill="rgb(222,218,49)" rx="2" ry="2" />
<text x="379.67" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__values_9594 (205 samples, 0.02%)</title><rect x="278.2" y="1237" width="0.2" height="15.0" fill="rgb(234,45,7)" rx="2" ry="2" />
<text x="281.23" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (453 samples, 0.04%)</title><rect x="594.6" y="1141" width="0.4" height="15.0" fill="rgb(242,45,1)" rx="2" ry="2" />
<text x="597.60" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (295 samples, 0.02%)</title><rect x="395.9" y="1093" width="0.3" height="15.0" fill="rgb(215,86,12)" rx="2" ry="2" />
<text x="398.94" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,141 samples, 0.09%)</title><rect x="516.4" y="645" width="1.1" height="15.0" fill="rgb(215,148,23)" rx="2" ry="2" />
<text x="519.44" y="655.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (262 samples, 0.02%)</title><rect x="581.1" y="1013" width="0.2" height="15.0" fill="rgb(248,182,12)" rx="2" ry="2" />
<text x="584.06" y="1023.5" ></text>
</g>
<g >
<title>rotr64 (118 samples, 0.01%)</title><rect x="555.9" y="1189" width="0.1" height="15.0" fill="rgb(229,90,18)" rx="2" ry="2" />
<text x="558.91" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (2,854 samples, 0.23%)</title><rect x="222.0" y="1253" width="2.8" height="15.0" fill="rgb(254,31,33)" rx="2" ry="2" />
<text x="225.05" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (140 samples, 0.01%)</title><rect x="542.7" y="1125" width="0.1" height="15.0" fill="rgb(221,162,48)" rx="2" ry="2" />
<text x="545.70" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,763 samples, 0.14%)</title><rect x="155.8" y="1317" width="1.7" height="15.0" fill="rgb(239,125,51)" rx="2" ry="2" />
<text x="158.82" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (132 samples, 0.01%)</title><rect x="464.2" y="1045" width="0.2" height="15.0" fill="rgb(211,132,5)" rx="2" ry="2" />
<text x="467.22" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (617 samples, 0.05%)</title><rect x="598.4" y="1189" width="0.6" height="15.0" fill="rgb(205,55,47)" rx="2" ry="2" />
<text x="601.40" y="1199.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (167 samples, 0.01%)</title><rect x="1189.7" y="2053" width="0.2" height="15.0" fill="rgb(205,11,48)" rx="2" ry="2" />
<text x="1192.69" y="2063.5" ></text>
</g>
<g >
<title>caml_oldify_one (110 samples, 0.01%)</title><rect x="966.4" y="1077" width="0.1" height="15.0" fill="rgb(214,115,17)" rx="2" ry="2" />
<text x="969.43" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (124 samples, 0.01%)</title><rect x="574.5" y="453" width="0.2" height="15.0" fill="rgb(213,169,39)" rx="2" ry="2" />
<text x="577.53" y="463.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (110 samples, 0.01%)</title><rect x="278.0" y="1205" width="0.1" height="15.0" fill="rgb(216,105,27)" rx="2" ry="2" />
<text x="280.97" y="1215.5" ></text>
</g>
<g >
<title>__GI___tcgetattr (217 samples, 0.02%)</title><rect x="96.6" y="1269" width="0.2" height="15.0" fill="rgb(214,199,28)" rx="2" ry="2" />
<text x="99.63" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (231 samples, 0.02%)</title><rect x="913.6" y="1285" width="0.2" height="15.0" fill="rgb(210,217,41)" rx="2" ry="2" />
<text x="916.58" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (310 samples, 0.03%)</title><rect x="612.9" y="1253" width="0.3" height="15.0" fill="rgb(223,97,39)" rx="2" ry="2" />
<text x="615.87" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (145 samples, 0.01%)</title><rect x="129.8" y="1269" width="0.1" height="15.0" fill="rgb(237,89,6)" rx="2" ry="2" />
<text x="132.80" y="1279.5" ></text>
</g>
<g >
<title>do_compare_val (780 samples, 0.06%)</title><rect x="460.6" y="1109" width="0.8" height="15.0" fill="rgb(218,97,43)" rx="2" ry="2" />
<text x="463.64" y="1119.5" ></text>
</g>
<g >
<title>caml_hash (273 samples, 0.02%)</title><rect x="324.0" y="1221" width="0.3" height="15.0" fill="rgb(233,28,11)" rx="2" ry="2" />
<text x="326.99" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (212 samples, 0.02%)</title><rect x="350.9" y="1173" width="0.2" height="15.0" fill="rgb(239,205,36)" rx="2" ry="2" />
<text x="353.87" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__compare_2284 (933 samples, 0.08%)</title><rect x="496.9" y="1285" width="0.9" height="15.0" fill="rgb(214,76,39)" rx="2" ry="2" />
<text x="499.89" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (152 samples, 0.01%)</title><rect x="110.9" y="1093" width="0.2" height="15.0" fill="rgb(213,225,16)" rx="2" ry="2" />
<text x="113.93" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__find_1303 (289 samples, 0.02%)</title><rect x="144.1" y="1333" width="0.3" height="15.0" fill="rgb(245,121,22)" rx="2" ry="2" />
<text x="147.12" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (308 samples, 0.03%)</title><rect x="218.5" y="1221" width="0.3" height="15.0" fill="rgb(254,201,31)" rx="2" ry="2" />
<text x="221.52" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (1,732 samples, 0.14%)</title><rect x="387.1" y="1189" width="1.6" height="15.0" fill="rgb(208,60,35)" rx="2" ry="2" />
<text x="390.06" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2604 (306 samples, 0.03%)</title><rect x="957.5" y="1205" width="0.3" height="15.0" fill="rgb(238,125,24)" rx="2" ry="2" />
<text x="960.53" y="1215.5" ></text>
</g>
<g >
<title>unix_isatty (582 samples, 0.05%)</title><rect x="978.0" y="1365" width="0.6" height="15.0" fill="rgb(241,26,23)" rx="2" ry="2" />
<text x="981.03" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_bytes_2180 (301 samples, 0.02%)</title><rect x="841.5" y="1125" width="0.3" height="15.0" fill="rgb(208,195,37)" rx="2" ry="2" />
<text x="844.49" y="1135.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (365 samples, 0.03%)</title><rect x="381.4" y="1157" width="0.4" height="15.0" fill="rgb(240,131,32)" rx="2" ry="2" />
<text x="384.42" y="1167.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (149 samples, 0.01%)</title><rect x="1184.5" y="1349" width="0.1" height="15.0" fill="rgb(245,189,36)" rx="2" ry="2" />
<text x="1187.45" y="1359.5" ></text>
</g>
<g >
<title>ml_blake2b_final (469 samples, 0.04%)</title><rect x="514.0" y="949" width="0.4" height="15.0" fill="rgb(213,52,45)" rx="2" ry="2" />
<text x="516.99" y="959.5" ></text>
</g>
<g >
<title>blake2b_update (281 samples, 0.02%)</title><rect x="552.3" y="1205" width="0.2" height="15.0" fill="rgb(222,92,46)" rx="2" ry="2" />
<text x="555.27" y="1215.5" ></text>
</g>
<g >
<title>memmove (158 samples, 0.01%)</title><rect x="1106.3" y="1333" width="0.1" height="15.0" fill="rgb(240,190,34)" rx="2" ry="2" />
<text x="1109.26" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (166 samples, 0.01%)</title><rect x="1167.1" y="1429" width="0.1" height="15.0" fill="rgb(239,138,20)" rx="2" ry="2" />
<text x="1170.06" y="1439.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (155 samples, 0.01%)</title><rect x="740.4" y="1253" width="0.1" height="15.0" fill="rgb(209,136,29)" rx="2" ry="2" />
<text x="743.38" y="1263.5" ></text>
</g>
<g >
<title>caml_compare (130 samples, 0.01%)</title><rect x="463.3" y="1125" width="0.1" height="15.0" fill="rgb(215,210,42)" rx="2" ry="2" />
<text x="466.30" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (119 samples, 0.01%)</title><rect x="425.6" y="1205" width="0.1" height="15.0" fill="rgb(207,146,40)" rx="2" ry="2" />
<text x="428.60" y="1215.5" ></text>
</g>
<g >
<title>mdb_mid2l_search (189 samples, 0.02%)</title><rect x="777.0" y="1157" width="0.2" height="15.0" fill="rgb(209,44,22)" rx="2" ry="2" />
<text x="779.98" y="1167.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (243 samples, 0.02%)</title><rect x="903.5" y="1205" width="0.2" height="15.0" fill="rgb(219,168,4)" rx="2" ry="2" />
<text x="906.49" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,245 samples, 0.10%)</title><rect x="813.9" y="1237" width="1.3" height="15.0" fill="rgb(223,64,10)" rx="2" ry="2" />
<text x="816.95" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__find_2861 (245 samples, 0.02%)</title><rect x="450.4" y="1141" width="0.2" height="15.0" fill="rgb(238,188,35)" rx="2" ry="2" />
<text x="453.40" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (134 samples, 0.01%)</title><rect x="543.1" y="1189" width="0.1" height="15.0" fill="rgb(253,55,9)" rx="2" ry="2" />
<text x="546.10" y="1199.5" ></text>
</g>
<g >
<title>copy_user_generic_string (148 samples, 0.01%)</title><rect x="89.5" y="1941" width="0.2" height="15.0" fill="rgb(247,179,1)" rx="2" ry="2" />
<text x="92.54" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (251 samples, 0.02%)</title><rect x="594.1" y="1125" width="0.2" height="15.0" fill="rgb(232,156,36)" rx="2" ry="2" />
<text x="597.08" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (3,047 samples, 0.25%)</title><rect x="109.6" y="1189" width="2.9" height="15.0" fill="rgb(229,30,31)" rx="2" ry="2" />
<text x="112.57" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (318 samples, 0.03%)</title><rect x="586.2" y="1077" width="0.3" height="15.0" fill="rgb(206,33,17)" rx="2" ry="2" />
<text x="589.23" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (153 samples, 0.01%)</title><rect x="347.8" y="1109" width="0.1" height="15.0" fill="rgb(231,57,23)" rx="2" ry="2" />
<text x="350.79" y="1119.5" ></text>
</g>
<g >
<title>caml_alloc_string (189 samples, 0.02%)</title><rect x="577.6" y="965" width="0.1" height="15.0" fill="rgb(245,20,34)" rx="2" ry="2" />
<text x="580.55" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7616 (270 samples, 0.02%)</title><rect x="216.6" y="1237" width="0.3" height="15.0" fill="rgb(228,204,28)" rx="2" ry="2" />
<text x="219.63" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (112 samples, 0.01%)</title><rect x="745.9" y="1221" width="0.1" height="15.0" fill="rgb(250,62,8)" rx="2" ry="2" />
<text x="748.88" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="821" width="1.6" height="15.0" fill="rgb(220,110,37)" rx="2" ry="2" />
<text x="1189.27" y="831.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (443 samples, 0.04%)</title><rect x="468.9" y="1125" width="0.4" height="15.0" fill="rgb(224,41,51)" rx="2" ry="2" />
<text x="471.90" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (205 samples, 0.02%)</title><rect x="582.9" y="1013" width="0.2" height="15.0" fill="rgb(241,223,16)" rx="2" ry="2" />
<text x="585.90" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (287 samples, 0.02%)</title><rect x="574.5" y="741" width="0.3" height="15.0" fill="rgb(225,195,19)" rx="2" ry="2" />
<text x="577.48" y="751.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11273 (514 samples, 0.04%)</title><rect x="93.6" y="1205" width="0.5" height="15.0" fill="rgb(217,172,7)" rx="2" ry="2" />
<text x="96.60" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (165 samples, 0.01%)</title><rect x="805.0" y="1173" width="0.1" height="15.0" fill="rgb(211,137,34)" rx="2" ry="2" />
<text x="807.97" y="1183.5" ></text>
</g>
<g >
<title>camlLwt_unix__fun_4990 (2,139 samples, 0.18%)</title><rect x="1173.8" y="1733" width="2.1" height="15.0" fill="rgb(250,216,23)" rx="2" ry="2" />
<text x="1176.81" y="1743.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (409 samples, 0.03%)</title><rect x="135.7" y="1349" width="0.4" height="15.0" fill="rgb(234,120,17)" rx="2" ry="2" />
<text x="138.70" y="1359.5" ></text>
</g>
<g >
<title>rotr64 (181 samples, 0.01%)</title><rect x="504.2" y="1109" width="0.2" height="15.0" fill="rgb(241,17,8)" rx="2" ry="2" />
<text x="507.20" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_6653 (115 samples, 0.01%)</title><rect x="1176.4" y="1285" width="0.1" height="15.0" fill="rgb(251,114,30)" rx="2" ry="2" />
<text x="1179.41" y="1295.5" ></text>
</g>
<g >
<title>mdb_cursor_put (16,836 samples, 1.38%)</title><rect x="774.4" y="1221" width="16.3" height="15.0" fill="rgb(236,104,9)" rx="2" ry="2" />
<text x="777.42" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (196 samples, 0.02%)</title><rect x="594.3" y="1125" width="0.2" height="15.0" fill="rgb(253,75,3)" rx="2" ry="2" />
<text x="597.35" y="1135.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (158 samples, 0.01%)</title><rect x="69.1" y="1813" width="0.2" height="15.0" fill="rgb(226,139,29)" rx="2" ry="2" />
<text x="72.11" y="1823.5" ></text>
</g>
<g >
<title>mdb_put (63,149 samples, 5.19%)</title><rect x="1007.0" y="1365" width="61.3" height="15.0" fill="rgb(235,152,34)" rx="2" ry="2" />
<text x="1010.02" y="1375.5" >mdb_put</text>
</g>
<g >
<title>caml_hash (144 samples, 0.01%)</title><rect x="454.0" y="997" width="0.1" height="15.0" fill="rgb(249,28,21)" rx="2" ry="2" />
<text x="456.99" y="1007.5" ></text>
</g>
<g >
<title>__vfs_read (213 samples, 0.02%)</title><rect x="411.2" y="1045" width="0.2" height="15.0" fill="rgb(245,119,49)" rx="2" ry="2" />
<text x="414.18" y="1055.5" ></text>
</g>
<g >
<title>vfs_read (373 samples, 0.03%)</title><rect x="47.0" y="1957" width="0.4" height="15.0" fill="rgb(218,176,0)" rx="2" ry="2" />
<text x="50.01" y="1967.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (138 samples, 0.01%)</title><rect x="528.2" y="1029" width="0.1" height="15.0" fill="rgb(232,94,6)" rx="2" ry="2" />
<text x="531.17" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,198 samples, 0.10%)</title><rect x="574.2" y="949" width="1.1" height="15.0" fill="rgb(252,228,13)" rx="2" ry="2" />
<text x="577.18" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,743 samples, 0.39%)</title><rect x="1155.9" y="1413" width="4.6" height="15.0" fill="rgb(231,121,48)" rx="2" ry="2" />
<text x="1158.86" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (615 samples, 0.05%)</title><rect x="351.4" y="1189" width="0.6" height="15.0" fill="rgb(239,88,24)" rx="2" ry="2" />
<text x="354.36" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (244 samples, 0.02%)</title><rect x="72.5" y="1861" width="0.3" height="15.0" fill="rgb(237,202,16)" rx="2" ry="2" />
<text x="75.54" y="1871.5" ></text>
</g>
<g >
<title>caml_hash (1,139 samples, 0.09%)</title><rect x="294.5" y="1141" width="1.1" height="15.0" fill="rgb(228,30,26)" rx="2" ry="2" />
<text x="297.48" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (302 samples, 0.02%)</title><rect x="1182.7" y="1621" width="0.3" height="15.0" fill="rgb(254,201,35)" rx="2" ry="2" />
<text x="1185.67" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6720 (200 samples, 0.02%)</title><rect x="54.2" y="1893" width="0.2" height="15.0" fill="rgb(209,167,43)" rx="2" ry="2" />
<text x="57.20" y="1903.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (694 samples, 0.06%)</title><rect x="696.2" y="1317" width="0.7" height="15.0" fill="rgb(224,14,8)" rx="2" ry="2" />
<text x="699.23" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (316 samples, 0.03%)</title><rect x="1183.2" y="1589" width="0.3" height="15.0" fill="rgb(222,57,48)" rx="2" ry="2" />
<text x="1186.16" y="1599.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1285" width="1.6" height="15.0" fill="rgb(217,53,47)" rx="2" ry="2" />
<text x="1189.27" y="1295.5" ></text>
</g>
<g >
<title>caml_blit_bytes (105 samples, 0.01%)</title><rect x="255.6" y="1205" width="0.1" height="15.0" fill="rgb(231,106,26)" rx="2" ry="2" />
<text x="258.64" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (472 samples, 0.04%)</title><rect x="128.7" y="1253" width="0.5" height="15.0" fill="rgb(235,17,49)" rx="2" ry="2" />
<text x="131.74" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (335 samples, 0.03%)</title><rect x="989.0" y="1317" width="0.3" height="15.0" fill="rgb(247,147,35)" rx="2" ry="2" />
<text x="992.00" y="1327.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (882 samples, 0.07%)</title><rect x="937.5" y="1109" width="0.9" height="15.0" fill="rgb(220,75,8)" rx="2" ry="2" />
<text x="940.50" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (132 samples, 0.01%)</title><rect x="494.2" y="1333" width="0.2" height="15.0" fill="rgb(228,119,10)" rx="2" ry="2" />
<text x="497.25" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (194 samples, 0.02%)</title><rect x="311.4" y="1109" width="0.2" height="15.0" fill="rgb(251,39,46)" rx="2" ry="2" />
<text x="314.43" y="1119.5" ></text>
</g>
<g >
<title>stub_mdb_put (109 samples, 0.01%)</title><rect x="130.3" y="1221" width="0.1" height="15.0" fill="rgb(238,24,29)" rx="2" ry="2" />
<text x="133.32" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6706 (32,361 samples, 2.66%)</title><rect x="98.2" y="1333" width="31.4" height="15.0" fill="rgb(254,195,31)" rx="2" ry="2" />
<text x="101.18" y="1343.5" >ca..</text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (769 samples, 0.06%)</title><rect x="434.3" y="1253" width="0.7" height="15.0" fill="rgb(223,82,43)" rx="2" ry="2" />
<text x="437.29" y="1263.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (109 samples, 0.01%)</title><rect x="19.7" y="2037" width="0.1" height="15.0" fill="rgb(228,38,11)" rx="2" ry="2" />
<text x="22.66" y="2047.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6725 (237,597 samples, 19.52%)</title><rect x="484.1" y="1397" width="230.4" height="15.0" fill="rgb(235,189,12)" rx="2" ry="2" />
<text x="487.15" y="1407.5" >camlTezos_storage__Context_dum..</text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (1,382 samples, 0.11%)</title><rect x="226.1" y="1205" width="1.3" height="15.0" fill="rgb(239,24,32)" rx="2" ry="2" />
<text x="229.08" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (116 samples, 0.01%)</title><rect x="1185.1" y="1349" width="0.1" height="15.0" fill="rgb(247,128,7)" rx="2" ry="2" />
<text x="1188.08" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__mem_10594 (136 samples, 0.01%)</title><rect x="220.5" y="1285" width="0.2" height="15.0" fill="rgb(253,176,32)" rx="2" ry="2" />
<text x="223.54" y="1295.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (166 samples, 0.01%)</title><rect x="1184.3" y="1445" width="0.1" height="15.0" fill="rgb(209,144,6)" rx="2" ry="2" />
<text x="1187.28" y="1455.5" ></text>
</g>
<g >
<title>caml_call_gc (168 samples, 0.01%)</title><rect x="334.3" y="1333" width="0.2" height="15.0" fill="rgb(240,22,29)" rx="2" ry="2" />
<text x="337.32" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_9625 (265 samples, 0.02%)</title><rect x="278.4" y="1221" width="0.3" height="15.0" fill="rgb(226,202,4)" rx="2" ry="2" />
<text x="281.43" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_update (764 samples, 0.06%)</title><rect x="495.0" y="1317" width="0.7" height="15.0" fill="rgb(226,90,49)" rx="2" ry="2" />
<text x="497.97" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (152 samples, 0.01%)</title><rect x="620.0" y="1301" width="0.2" height="15.0" fill="rgb(229,220,31)" rx="2" ry="2" />
<text x="623.01" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (142 samples, 0.01%)</title><rect x="579.0" y="949" width="0.2" height="15.0" fill="rgb(238,8,11)" rx="2" ry="2" />
<text x="582.02" y="959.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (925,190 samples, 76.03%)</title><rect x="92.4" y="1557" width="897.1" height="15.0" fill="rgb(219,105,7)" rx="2" ry="2" />
<text x="95.38" y="1567.5" >camlLwt__iter_callback_list_2247</text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (126 samples, 0.01%)</title><rect x="607.3" y="1237" width="0.1" height="15.0" fill="rgb(212,75,38)" rx="2" ry="2" />
<text x="610.27" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (1,418 samples, 0.12%)</title><rect x="902.4" y="1253" width="1.3" height="15.0" fill="rgb(210,207,47)" rx="2" ry="2" />
<text x="905.36" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (439 samples, 0.04%)</title><rect x="290.0" y="1221" width="0.4" height="15.0" fill="rgb(244,182,38)" rx="2" ry="2" />
<text x="293.02" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (9,682 samples, 0.80%)</title><rect x="832.4" y="1157" width="9.4" height="15.0" fill="rgb(223,21,40)" rx="2" ry="2" />
<text x="835.40" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (1,374 samples, 0.11%)</title><rect x="109.9" y="1141" width="1.3" height="15.0" fill="rgb(241,133,20)" rx="2" ry="2" />
<text x="112.85" y="1151.5" ></text>
</g>
<g >
<title>caml_apply2 (264 samples, 0.02%)</title><rect x="301.1" y="1141" width="0.2" height="15.0" fill="rgb(231,49,6)" rx="2" ry="2" />
<text x="304.09" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (418 samples, 0.03%)</title><rect x="223.0" y="1157" width="0.4" height="15.0" fill="rgb(220,98,11)" rx="2" ry="2" />
<text x="226.00" y="1167.5" ></text>
</g>
<g >
<title>caml_compact_heap (905 samples, 0.07%)</title><rect x="426.8" y="1125" width="0.9" height="15.0" fill="rgb(221,222,10)" rx="2" ry="2" />
<text x="429.84" y="1135.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (194 samples, 0.02%)</title><rect x="894.8" y="1189" width="0.2" height="15.0" fill="rgb(210,151,13)" rx="2" ry="2" />
<text x="897.81" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (144 samples, 0.01%)</title><rect x="54.3" y="1829" width="0.1" height="15.0" fill="rgb(241,75,34)" rx="2" ry="2" />
<text x="57.26" y="1839.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (392 samples, 0.03%)</title><rect x="350.8" y="1205" width="0.4" height="15.0" fill="rgb(246,101,21)" rx="2" ry="2" />
<text x="353.78" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (493 samples, 0.04%)</title><rect x="527.3" y="933" width="0.4" height="15.0" fill="rgb(216,114,3)" rx="2" ry="2" />
<text x="530.26" y="943.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (196 samples, 0.02%)</title><rect x="774.0" y="1205" width="0.1" height="15.0" fill="rgb(206,164,3)" rx="2" ry="2" />
<text x="776.95" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (172 samples, 0.01%)</title><rect x="531.8" y="1013" width="0.1" height="15.0" fill="rgb(223,174,48)" rx="2" ry="2" />
<text x="534.77" y="1023.5" ></text>
</g>
<g >
<title>mark_slice_darken (232 samples, 0.02%)</title><rect x="798.2" y="1189" width="0.2" height="15.0" fill="rgb(228,211,14)" rx="2" ry="2" />
<text x="801.18" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_4610 (148 samples, 0.01%)</title><rect x="289.3" y="1189" width="0.2" height="15.0" fill="rgb(228,172,19)" rx="2" ry="2" />
<text x="292.33" y="1199.5" ></text>
</g>
<g >
<title>__libc_pread64 (219 samples, 0.02%)</title><rect x="15.7" y="2037" width="0.2" height="15.0" fill="rgb(234,26,27)" rx="2" ry="2" />
<text x="18.66" y="2047.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,711 samples, 0.14%)</title><rect x="893.1" y="1221" width="1.7" height="15.0" fill="rgb(218,107,19)" rx="2" ry="2" />
<text x="896.10" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (392 samples, 0.03%)</title><rect x="1180.3" y="1237" width="0.4" height="15.0" fill="rgb(232,110,26)" rx="2" ry="2" />
<text x="1183.28" y="1247.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__convert_int_3047 (4,341 samples, 0.36%)</title><rect x="161.7" y="1349" width="4.2" height="15.0" fill="rgb(205,83,10)" rx="2" ry="2" />
<text x="164.71" y="1359.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (522 samples, 0.04%)</title><rect x="97.3" y="1301" width="0.5" height="15.0" fill="rgb(233,213,28)" rx="2" ry="2" />
<text x="100.33" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (803 samples, 0.07%)</title><rect x="98.9" y="1157" width="0.8" height="15.0" fill="rgb(247,57,29)" rx="2" ry="2" />
<text x="101.93" y="1167.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7414 (305 samples, 0.03%)</title><rect x="117.7" y="1157" width="0.3" height="15.0" fill="rgb(205,5,53)" rx="2" ry="2" />
<text x="120.71" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (271 samples, 0.02%)</title><rect x="700.5" y="1253" width="0.3" height="15.0" fill="rgb(235,121,47)" rx="2" ry="2" />
<text x="703.53" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,267 samples, 0.10%)</title><rect x="516.4" y="693" width="1.3" height="15.0" fill="rgb(251,75,29)" rx="2" ry="2" />
<text x="519.42" y="703.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (152 samples, 0.01%)</title><rect x="575.1" y="917" width="0.1" height="15.0" fill="rgb(229,74,14)" rx="2" ry="2" />
<text x="578.10" y="927.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (221 samples, 0.02%)</title><rect x="525.2" y="997" width="0.3" height="15.0" fill="rgb(218,5,19)" rx="2" ry="2" />
<text x="528.24" y="1007.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3432 (359 samples, 0.03%)</title><rect x="487.9" y="1285" width="0.4" height="15.0" fill="rgb(217,205,0)" rx="2" ry="2" />
<text x="490.91" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (189 samples, 0.02%)</title><rect x="913.0" y="1237" width="0.2" height="15.0" fill="rgb(238,221,36)" rx="2" ry="2" />
<text x="916.04" y="1247.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (1,148 samples, 0.09%)</title><rect x="98.7" y="1205" width="1.1" height="15.0" fill="rgb(210,198,50)" rx="2" ry="2" />
<text x="101.71" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (117 samples, 0.01%)</title><rect x="447.8" y="1205" width="0.1" height="15.0" fill="rgb(208,177,48)" rx="2" ry="2" />
<text x="450.80" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_6601 (122 samples, 0.01%)</title><rect x="128.4" y="1237" width="0.1" height="15.0" fill="rgb(235,27,34)" rx="2" ry="2" />
<text x="131.38" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (150 samples, 0.01%)</title><rect x="1177.7" y="1205" width="0.2" height="15.0" fill="rgb(236,229,0)" rx="2" ry="2" />
<text x="1180.75" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (290 samples, 0.02%)</title><rect x="226.8" y="1157" width="0.3" height="15.0" fill="rgb(243,76,5)" rx="2" ry="2" />
<text x="229.84" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3652 (202 samples, 0.02%)</title><rect x="122.9" y="1125" width="0.1" height="15.0" fill="rgb(236,174,40)" rx="2" ry="2" />
<text x="125.85" y="1135.5" ></text>
</g>
<g >
<title>rotr64 (141 samples, 0.01%)</title><rect x="570.4" y="965" width="0.1" height="15.0" fill="rgb(221,183,21)" rx="2" ry="2" />
<text x="573.41" y="975.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (123 samples, 0.01%)</title><rect x="1111.4" y="1333" width="0.1" height="15.0" fill="rgb(229,224,11)" rx="2" ry="2" />
<text x="1114.40" y="1343.5" ></text>
</g>
<g >
<title>caml_call_gc (124 samples, 0.01%)</title><rect x="132.3" y="1381" width="0.1" height="15.0" fill="rgb(244,178,22)" rx="2" ry="2" />
<text x="135.32" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (109 samples, 0.01%)</title><rect x="802.5" y="1221" width="0.1" height="15.0" fill="rgb(247,36,45)" rx="2" ry="2" />
<text x="805.49" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (317 samples, 0.03%)</title><rect x="1183.2" y="1605" width="0.3" height="15.0" fill="rgb(254,118,20)" rx="2" ry="2" />
<text x="1186.16" y="1615.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (900 samples, 0.07%)</title><rect x="516.5" y="277" width="0.9" height="15.0" fill="rgb(243,35,23)" rx="2" ry="2" />
<text x="519.49" y="287.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (128 samples, 0.01%)</title><rect x="539.4" y="1141" width="0.1" height="15.0" fill="rgb(224,17,6)" rx="2" ry="2" />
<text x="542.41" y="1151.5" ></text>
</g>
<g >
<title>caml_string_compare (808 samples, 0.07%)</title><rect x="497.0" y="1269" width="0.8" height="15.0" fill="rgb(217,114,24)" rx="2" ry="2" />
<text x="500.01" y="1279.5" ></text>
</g>
<g >
<title>camlBigstring__init_1315 (28,267 samples, 2.32%)</title><rect x="746.2" y="1269" width="27.4" height="15.0" fill="rgb(214,63,37)" rx="2" ry="2" />
<text x="749.24" y="1279.5" >c..</text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (138 samples, 0.01%)</title><rect x="469.0" y="997" width="0.2" height="15.0" fill="rgb(225,193,19)" rx="2" ry="2" />
<text x="472.03" y="1007.5" ></text>
</g>
<g >
<title>page_fault (171 samples, 0.01%)</title><rect x="18.9" y="2021" width="0.2" height="15.0" fill="rgb(231,28,12)" rx="2" ry="2" />
<text x="21.93" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (172 samples, 0.01%)</title><rect x="456.2" y="1029" width="0.2" height="15.0" fill="rgb(218,121,44)" rx="2" ry="2" />
<text x="459.20" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (1,431 samples, 0.12%)</title><rect x="583.4" y="1061" width="1.4" height="15.0" fill="rgb(236,181,22)" rx="2" ry="2" />
<text x="586.41" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (194 samples, 0.02%)</title><rect x="814.2" y="1173" width="0.2" height="15.0" fill="rgb(214,201,33)" rx="2" ry="2" />
<text x="817.18" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__fun_4107 (108 samples, 0.01%)</title><rect x="977.0" y="1221" width="0.1" height="15.0" fill="rgb(232,225,10)" rx="2" ry="2" />
<text x="980.03" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (301 samples, 0.02%)</title><rect x="576.8" y="965" width="0.3" height="15.0" fill="rgb(234,65,41)" rx="2" ry="2" />
<text x="579.78" y="975.5" ></text>
</g>
<g >
<title>memmove (157 samples, 0.01%)</title><rect x="925.3" y="1237" width="0.2" height="15.0" fill="rgb(243,104,13)" rx="2" ry="2" />
<text x="928.32" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (153 samples, 0.01%)</title><rect x="377.6" y="1173" width="0.2" height="15.0" fill="rgb(231,9,10)" rx="2" ry="2" />
<text x="380.64" y="1183.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (551 samples, 0.05%)</title><rect x="358.0" y="1125" width="0.5" height="15.0" fill="rgb(230,30,38)" rx="2" ry="2" />
<text x="360.96" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__import_7323 (745 samples, 0.06%)</title><rect x="103.3" y="1237" width="0.7" height="15.0" fill="rgb(216,202,24)" rx="2" ry="2" />
<text x="106.32" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (690 samples, 0.06%)</title><rect x="985.9" y="1317" width="0.6" height="15.0" fill="rgb(246,93,31)" rx="2" ry="2" />
<text x="988.85" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (306 samples, 0.03%)</title><rect x="574.5" y="773" width="0.3" height="15.0" fill="rgb(218,88,34)" rx="2" ry="2" />
<text x="577.47" y="783.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (193 samples, 0.02%)</title><rect x="127.0" y="1093" width="0.2" height="15.0" fill="rgb(248,23,16)" rx="2" ry="2" />
<text x="129.99" y="1103.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (277 samples, 0.02%)</title><rect x="107.4" y="1205" width="0.3" height="15.0" fill="rgb(206,95,37)" rx="2" ry="2" />
<text x="110.39" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (174 samples, 0.01%)</title><rect x="79.4" y="1797" width="0.2" height="15.0" fill="rgb(252,84,29)" rx="2" ry="2" />
<text x="82.39" y="1807.5" ></text>
</g>
<g >
<title>rotr64 (326 samples, 0.03%)</title><rect x="614.9" y="1173" width="0.3" height="15.0" fill="rgb(249,165,9)" rx="2" ry="2" />
<text x="617.86" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (192 samples, 0.02%)</title><rect x="349.3" y="1157" width="0.1" height="15.0" fill="rgb(232,27,8)" rx="2" ry="2" />
<text x="352.26" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (556 samples, 0.05%)</title><rect x="68.7" y="1829" width="0.6" height="15.0" fill="rgb(210,57,13)" rx="2" ry="2" />
<text x="71.73" y="1839.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3778 (161 samples, 0.01%)</title><rect x="489.7" y="1285" width="0.2" height="15.0" fill="rgb(239,199,12)" rx="2" ry="2" />
<text x="492.73" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (647 samples, 0.05%)</title><rect x="382.5" y="1237" width="0.6" height="15.0" fill="rgb(227,70,48)" rx="2" ry="2" />
<text x="385.47" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__fun_4396 (377 samples, 0.03%)</title><rect x="99.8" y="1189" width="0.4" height="15.0" fill="rgb(232,32,4)" rx="2" ry="2" />
<text x="102.83" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (113 samples, 0.01%)</title><rect x="795.2" y="1189" width="0.1" height="15.0" fill="rgb(242,228,26)" rx="2" ry="2" />
<text x="798.19" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (739 samples, 0.06%)</title><rect x="794.7" y="1253" width="0.8" height="15.0" fill="rgb(247,6,46)" rx="2" ry="2" />
<text x="797.73" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (108 samples, 0.01%)</title><rect x="846.1" y="1189" width="0.1" height="15.0" fill="rgb(238,147,43)" rx="2" ry="2" />
<text x="849.07" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (193 samples, 0.02%)</title><rect x="332.1" y="1237" width="0.2" height="15.0" fill="rgb(234,171,26)" rx="2" ry="2" />
<text x="335.14" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (244 samples, 0.02%)</title><rect x="379.2" y="1173" width="0.2" height="15.0" fill="rgb(212,212,26)" rx="2" ry="2" />
<text x="382.17" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (270 samples, 0.02%)</title><rect x="941.8" y="1093" width="0.3" height="15.0" fill="rgb(246,148,44)" rx="2" ry="2" />
<text x="944.81" y="1103.5" ></text>
</g>
<g >
<title>mdb_page_get (403 samples, 0.03%)</title><rect x="861.5" y="1173" width="0.4" height="15.0" fill="rgb(207,227,36)" rx="2" ry="2" />
<text x="864.54" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (104 samples, 0.01%)</title><rect x="913.1" y="1173" width="0.1" height="15.0" fill="rgb(207,147,40)" rx="2" ry="2" />
<text x="916.09" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (277 samples, 0.02%)</title><rect x="574.5" y="725" width="0.2" height="15.0" fill="rgb(211,148,30)" rx="2" ry="2" />
<text x="577.48" y="735.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (117 samples, 0.01%)</title><rect x="574.5" y="437" width="0.1" height="15.0" fill="rgb(206,131,35)" rx="2" ry="2" />
<text x="577.53" y="447.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (515 samples, 0.04%)</title><rect x="311.7" y="1173" width="0.5" height="15.0" fill="rgb(211,76,54)" rx="2" ry="2" />
<text x="314.69" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (570 samples, 0.05%)</title><rect x="60.5" y="1877" width="0.6" height="15.0" fill="rgb(229,186,0)" rx="2" ry="2" />
<text x="63.53" y="1887.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (185 samples, 0.02%)</title><rect x="256.0" y="1189" width="0.1" height="15.0" fill="rgb(215,11,30)" rx="2" ry="2" />
<text x="258.96" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1525 (426 samples, 0.04%)</title><rect x="348.8" y="1141" width="0.4" height="15.0" fill="rgb(239,39,8)" rx="2" ry="2" />
<text x="351.82" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (143 samples, 0.01%)</title><rect x="585.5" y="1077" width="0.1" height="15.0" fill="rgb(222,171,19)" rx="2" ry="2" />
<text x="588.47" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (272 samples, 0.02%)</title><rect x="62.1" y="1893" width="0.3" height="15.0" fill="rgb(241,83,24)" rx="2" ry="2" />
<text x="65.11" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,454 samples, 0.12%)</title><rect x="608.6" y="1285" width="1.4" height="15.0" fill="rgb(222,7,27)" rx="2" ry="2" />
<text x="611.64" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_10762 (2,146 samples, 0.18%)</title><rect x="237.5" y="1317" width="2.1" height="15.0" fill="rgb(243,83,37)" rx="2" ry="2" />
<text x="240.47" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1493" width="6.2" height="15.0" fill="rgb(247,60,39)" rx="2" ry="2" />
<text x="1178.90" y="1503.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (610 samples, 0.05%)</title><rect x="508.2" y="1077" width="0.6" height="15.0" fill="rgb(240,104,5)" rx="2" ry="2" />
<text x="511.24" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (1,666 samples, 0.14%)</title><rect x="209.5" y="1141" width="1.6" height="15.0" fill="rgb(223,93,51)" rx="2" ry="2" />
<text x="212.46" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (401 samples, 0.03%)</title><rect x="255.4" y="1221" width="0.4" height="15.0" fill="rgb(247,67,8)" rx="2" ry="2" />
<text x="258.36" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (539 samples, 0.04%)</title><rect x="512.1" y="1029" width="0.5" height="15.0" fill="rgb(249,79,24)" rx="2" ry="2" />
<text x="515.06" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (320 samples, 0.03%)</title><rect x="804.9" y="1205" width="0.3" height="15.0" fill="rgb(247,120,8)" rx="2" ry="2" />
<text x="807.90" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,772 samples, 0.15%)</title><rect x="969.2" y="1093" width="1.7" height="15.0" fill="rgb(233,106,41)" rx="2" ry="2" />
<text x="972.17" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (518 samples, 0.04%)</title><rect x="103.5" y="1221" width="0.5" height="15.0" fill="rgb(222,195,29)" rx="2" ry="2" />
<text x="106.49" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (109 samples, 0.01%)</title><rect x="127.8" y="949" width="0.1" height="15.0" fill="rgb(240,96,6)" rx="2" ry="2" />
<text x="130.83" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__format__add_queue_1744 (143 samples, 0.01%)</title><rect x="168.0" y="1317" width="0.2" height="15.0" fill="rgb(207,128,29)" rx="2" ry="2" />
<text x="171.01" y="1327.5" ></text>
</g>
<g >
<title>caml_compact_heap (1,302 samples, 0.11%)</title><rect x="959.2" y="1093" width="1.3" height="15.0" fill="rgb(219,183,48)" rx="2" ry="2" />
<text x="962.19" y="1103.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (910 samples, 0.07%)</title><rect x="677.8" y="1253" width="0.9" height="15.0" fill="rgb(241,140,1)" rx="2" ry="2" />
<text x="680.78" y="1263.5" ></text>
</g>
<g >
<title>caml_blit_bytes (104 samples, 0.01%)</title><rect x="442.3" y="1205" width="0.1" height="15.0" fill="rgb(236,8,11)" rx="2" ry="2" />
<text x="445.34" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (123 samples, 0.01%)</title><rect x="348.1" y="1093" width="0.2" height="15.0" fill="rgb(212,122,3)" rx="2" ry="2" />
<text x="351.13" y="1103.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (109 samples, 0.01%)</title><rect x="389.3" y="1141" width="0.1" height="15.0" fill="rgb(249,140,23)" rx="2" ry="2" />
<text x="392.29" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__pre_hash_10585 (5,809 samples, 0.48%)</title><rect x="258.6" y="1269" width="5.6" height="15.0" fill="rgb(249,70,3)" rx="2" ry="2" />
<text x="261.59" y="1279.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (131 samples, 0.01%)</title><rect x="1185.4" y="1477" width="0.1" height="15.0" fill="rgb(225,122,27)" rx="2" ry="2" />
<text x="1188.42" y="1487.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (194 samples, 0.02%)</title><rect x="939.1" y="1141" width="0.2" height="15.0" fill="rgb(254,141,30)" rx="2" ry="2" />
<text x="942.07" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (773 samples, 0.06%)</title><rect x="125.0" y="1189" width="0.7" height="15.0" fill="rgb(218,61,24)" rx="2" ry="2" />
<text x="127.98" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,131 samples, 0.09%)</title><rect x="516.4" y="629" width="1.1" height="15.0" fill="rgb(243,71,1)" rx="2" ry="2" />
<text x="519.44" y="639.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (109 samples, 0.01%)</title><rect x="129.7" y="1125" width="0.1" height="15.0" fill="rgb(247,39,50)" rx="2" ry="2" />
<text x="132.66" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (818 samples, 0.07%)</title><rect x="560.5" y="1221" width="0.8" height="15.0" fill="rgb(242,137,48)" rx="2" ry="2" />
<text x="563.55" y="1231.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (657 samples, 0.05%)</title><rect x="913.9" y="1285" width="0.7" height="15.0" fill="rgb(208,178,46)" rx="2" ry="2" />
<text x="916.92" y="1295.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (139 samples, 0.01%)</title><rect x="1168.2" y="1477" width="0.1" height="15.0" fill="rgb(253,201,38)" rx="2" ry="2" />
<text x="1171.17" y="1487.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (2,009 samples, 0.17%)</title><rect x="836.8" y="1125" width="2.0" height="15.0" fill="rgb(229,190,54)" rx="2" ry="2" />
<text x="839.83" y="1135.5" ></text>
</g>
<g >
<title>worker_read (229 samples, 0.02%)</title><rect x="91.2" y="1989" width="0.2" height="15.0" fill="rgb(237,34,49)" rx="2" ry="2" />
<text x="94.21" y="1999.5" ></text>
</g>
<g >
<title>mdb_page_get (1,432 samples, 0.12%)</title><rect x="868.0" y="1157" width="1.4" height="15.0" fill="rgb(222,153,4)" rx="2" ry="2" />
<text x="871.05" y="1167.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (134 samples, 0.01%)</title><rect x="103.5" y="1173" width="0.1" height="15.0" fill="rgb(244,145,54)" rx="2" ry="2" />
<text x="106.51" y="1183.5" ></text>
</g>
<g >
<title>ml_blake2b_update (297 samples, 0.02%)</title><rect x="1187.5" y="69" width="0.3" height="15.0" fill="rgb(213,146,41)" rx="2" ry="2" />
<text x="1190.48" y="79.5" ></text>
</g>
<g >
<title>memmove (219 samples, 0.02%)</title><rect x="899.9" y="1189" width="0.2" height="15.0" fill="rgb(226,78,15)" rx="2" ry="2" />
<text x="902.87" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (109 samples, 0.01%)</title><rect x="110.0" y="1093" width="0.1" height="15.0" fill="rgb(225,79,29)" rx="2" ry="2" />
<text x="113.01" y="1103.5" ></text>
</g>
<g >
<title>mdb_node_search (178 samples, 0.01%)</title><rect x="1171.2" y="1333" width="0.2" height="15.0" fill="rgb(228,39,32)" rx="2" ry="2" />
<text x="1174.25" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="485" width="1.6" height="15.0" fill="rgb(252,78,25)" rx="2" ry="2" />
<text x="1189.27" y="495.5" ></text>
</g>
<g >
<title>caml_string_length (313 samples, 0.03%)</title><rect x="1131.3" y="1333" width="0.3" height="15.0" fill="rgb(225,66,10)" rx="2" ry="2" />
<text x="1134.31" y="1343.5" ></text>
</g>
<g >
<title>sweep_slice (502 samples, 0.04%)</title><rect x="1170.1" y="1461" width="0.5" height="15.0" fill="rgb(219,174,43)" rx="2" ry="2" />
<text x="1173.11" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (231 samples, 0.02%)</title><rect x="112.7" y="1221" width="0.2" height="15.0" fill="rgb(243,125,48)" rx="2" ry="2" />
<text x="115.65" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (340 samples, 0.03%)</title><rect x="120.0" y="1077" width="0.3" height="15.0" fill="rgb(248,47,52)" rx="2" ry="2" />
<text x="123.02" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (249 samples, 0.02%)</title><rect x="491.0" y="1253" width="0.2" height="15.0" fill="rgb(218,66,5)" rx="2" ry="2" />
<text x="493.95" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (582 samples, 0.05%)</title><rect x="618.0" y="1301" width="0.5" height="15.0" fill="rgb(241,84,48)" rx="2" ry="2" />
<text x="620.96" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (696 samples, 0.06%)</title><rect x="342.6" y="1109" width="0.6" height="15.0" fill="rgb(237,90,27)" rx="2" ry="2" />
<text x="345.56" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_7330 (233 samples, 0.02%)</title><rect x="113.5" y="1285" width="0.3" height="15.0" fill="rgb(239,138,19)" rx="2" ry="2" />
<text x="116.54" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (211 samples, 0.02%)</title><rect x="413.3" y="1189" width="0.2" height="15.0" fill="rgb(243,172,31)" rx="2" ry="2" />
<text x="416.26" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (262 samples, 0.02%)</title><rect x="583.5" y="1045" width="0.3" height="15.0" fill="rgb(247,191,54)" rx="2" ry="2" />
<text x="586.52" y="1055.5" ></text>
</g>
<g >
<title>secure_zero_memory (144 samples, 0.01%)</title><rect x="267.9" y="1237" width="0.1" height="15.0" fill="rgb(238,82,37)" rx="2" ry="2" />
<text x="270.87" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (397 samples, 0.03%)</title><rect x="473.2" y="1253" width="0.4" height="15.0" fill="rgb(205,65,35)" rx="2" ry="2" />
<text x="476.20" y="1263.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (379 samples, 0.03%)</title><rect x="1183.7" y="1797" width="0.3" height="15.0" fill="rgb(216,203,3)" rx="2" ry="2" />
<text x="1186.66" y="1807.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (2,844 samples, 0.23%)</title><rect x="265.6" y="1301" width="2.8" height="15.0" fill="rgb(210,14,2)" rx="2" ry="2" />
<text x="268.62" y="1311.5" ></text>
</g>
<g >
<title>page_fault (493 samples, 0.04%)</title><rect x="1175.4" y="1653" width="0.5" height="15.0" fill="rgb(223,52,39)" rx="2" ry="2" />
<text x="1178.39" y="1663.5" ></text>
</g>
<g >
<title>blake2b_compress (480 samples, 0.04%)</title><rect x="505.4" y="1093" width="0.4" height="15.0" fill="rgb(253,165,51)" rx="2" ry="2" />
<text x="508.35" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (225 samples, 0.02%)</title><rect x="377.9" y="1157" width="0.2" height="15.0" fill="rgb(227,229,17)" rx="2" ry="2" />
<text x="380.91" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (1,541 samples, 0.13%)</title><rect x="670.8" y="1301" width="1.5" height="15.0" fill="rgb(213,62,54)" rx="2" ry="2" />
<text x="673.82" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (141 samples, 0.01%)</title><rect x="541.6" y="1141" width="0.1" height="15.0" fill="rgb(227,174,23)" rx="2" ry="2" />
<text x="544.58" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (126 samples, 0.01%)</title><rect x="128.6" y="1237" width="0.1" height="15.0" fill="rgb(236,144,30)" rx="2" ry="2" />
<text x="131.59" y="1247.5" ></text>
</g>
<g >
<title>memcpy (119 samples, 0.01%)</title><rect x="270.5" y="1157" width="0.1" height="15.0" fill="rgb(251,29,39)" rx="2" ry="2" />
<text x="273.53" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (129 samples, 0.01%)</title><rect x="814.9" y="1173" width="0.1" height="15.0" fill="rgb(215,225,17)" rx="2" ry="2" />
<text x="817.92" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (398 samples, 0.03%)</title><rect x="464.1" y="1077" width="0.3" height="15.0" fill="rgb(233,191,50)" rx="2" ry="2" />
<text x="467.05" y="1087.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (754 samples, 0.06%)</title><rect x="583.8" y="997" width="0.8" height="15.0" fill="rgb(211,30,30)" rx="2" ry="2" />
<text x="586.84" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (177 samples, 0.01%)</title><rect x="74.7" y="1893" width="0.2" height="15.0" fill="rgb(212,211,33)" rx="2" ry="2" />
<text x="77.72" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (3,967 samples, 0.33%)</title><rect x="83.7" y="1909" width="3.9" height="15.0" fill="rgb(212,212,47)" rx="2" ry="2" />
<text x="86.71" y="1919.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__int_1156 (164 samples, 0.01%)</title><rect x="493.0" y="1253" width="0.2" height="15.0" fill="rgb(211,85,42)" rx="2" ry="2" />
<text x="496.05" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (126 samples, 0.01%)</title><rect x="467.3" y="981" width="0.2" height="15.0" fill="rgb(227,33,36)" rx="2" ry="2" />
<text x="470.33" y="991.5" ></text>
</g>
<g >
<title>parse_format (200 samples, 0.02%)</title><rect x="813.3" y="1221" width="0.2" height="15.0" fill="rgb(237,208,32)" rx="2" ry="2" />
<text x="816.27" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (204 samples, 0.02%)</title><rect x="713.9" y="1301" width="0.2" height="15.0" fill="rgb(213,21,53)" rx="2" ry="2" />
<text x="716.91" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (147 samples, 0.01%)</title><rect x="189.7" y="1205" width="0.2" height="15.0" fill="rgb(218,14,36)" rx="2" ry="2" />
<text x="192.73" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (187 samples, 0.02%)</title><rect x="976.0" y="1093" width="0.1" height="15.0" fill="rgb(232,107,5)" rx="2" ry="2" />
<text x="978.95" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,857 samples, 0.15%)</title><rect x="516.3" y="917" width="1.8" height="15.0" fill="rgb(250,192,22)" rx="2" ry="2" />
<text x="519.28" y="927.5" ></text>
</g>
<g >
<title>caml_alloc_string (682 samples, 0.06%)</title><rect x="23.7" y="2021" width="0.7" height="15.0" fill="rgb(220,79,41)" rx="2" ry="2" />
<text x="26.71" y="2031.5" ></text>
</g>
<g >
<title>caml_oldify_one (203 samples, 0.02%)</title><rect x="969.0" y="1045" width="0.2" height="15.0" fill="rgb(218,49,4)" rx="2" ry="2" />
<text x="971.97" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (2,204 samples, 0.18%)</title><rect x="321.3" y="1285" width="2.2" height="15.0" fill="rgb(249,45,6)" rx="2" ry="2" />
<text x="324.33" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (180 samples, 0.01%)</title><rect x="1177.5" y="1237" width="0.2" height="15.0" fill="rgb(235,79,9)" rx="2" ry="2" />
<text x="1180.54" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (307 samples, 0.03%)</title><rect x="1182.7" y="1653" width="0.3" height="15.0" fill="rgb(249,166,38)" rx="2" ry="2" />
<text x="1185.67" y="1663.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (938 samples, 0.08%)</title><rect x="902.6" y="1221" width="0.9" height="15.0" fill="rgb(242,138,25)" rx="2" ry="2" />
<text x="905.57" y="1231.5" ></text>
</g>
<g >
<title>rw_verify_area (104 samples, 0.01%)</title><rect x="921.8" y="1205" width="0.1" height="15.0" fill="rgb(242,93,34)" rx="2" ry="2" />
<text x="924.84" y="1215.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (510 samples, 0.04%)</title><rect x="1171.1" y="1445" width="0.5" height="15.0" fill="rgb(227,21,12)" rx="2" ry="2" />
<text x="1174.09" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (409 samples, 0.03%)</title><rect x="181.7" y="1173" width="0.4" height="15.0" fill="rgb(229,10,42)" rx="2" ry="2" />
<text x="184.71" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (1,121 samples, 0.09%)</title><rect x="560.5" y="1253" width="1.1" height="15.0" fill="rgb(225,75,8)" rx="2" ry="2" />
<text x="563.52" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (270 samples, 0.02%)</title><rect x="278.8" y="1205" width="0.3" height="15.0" fill="rgb(240,128,51)" rx="2" ry="2" />
<text x="281.83" y="1215.5" ></text>
</g>
<g >
<title>mdb_page_touch (315 samples, 0.03%)</title><rect x="786.0" y="1189" width="0.3" height="15.0" fill="rgb(220,80,15)" rx="2" ry="2" />
<text x="789.04" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3652 (2,024 samples, 0.17%)</title><rect x="421.2" y="1189" width="2.0" height="15.0" fill="rgb(250,128,50)" rx="2" ry="2" />
<text x="424.24" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (247 samples, 0.02%)</title><rect x="435.6" y="1205" width="0.3" height="15.0" fill="rgb(250,168,28)" rx="2" ry="2" />
<text x="438.63" y="1215.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (421 samples, 0.03%)</title><rect x="468.9" y="1077" width="0.4" height="15.0" fill="rgb(214,211,38)" rx="2" ry="2" />
<text x="471.92" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3668 (212 samples, 0.02%)</title><rect x="439.0" y="1253" width="0.2" height="15.0" fill="rgb(217,229,50)" rx="2" ry="2" />
<text x="441.98" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_flush_queue_2026 (1,020 samples, 0.08%)</title><rect x="924.7" y="1349" width="1.0" height="15.0" fill="rgb(206,167,13)" rx="2" ry="2" />
<text x="927.72" y="1359.5" ></text>
</g>
<g >
<title>stub_mdb_put (13,724 samples, 1.13%)</title><rect x="718.9" y="1285" width="13.3" height="15.0" fill="rgb(224,157,15)" rx="2" ry="2" />
<text x="721.88" y="1295.5" ></text>
</g>
<g >
<title>caml_apply5 (2,481 samples, 0.20%)</title><rect x="125.8" y="1205" width="2.4" height="15.0" fill="rgb(221,126,10)" rx="2" ry="2" />
<text x="128.84" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1397" width="6.2" height="15.0" fill="rgb(240,204,35)" rx="2" ry="2" />
<text x="1178.90" y="1407.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (287 samples, 0.02%)</title><rect x="580.3" y="981" width="0.3" height="15.0" fill="rgb(244,25,52)" rx="2" ry="2" />
<text x="583.31" y="991.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (1,088 samples, 0.09%)</title><rect x="812.2" y="1221" width="1.1" height="15.0" fill="rgb(232,160,54)" rx="2" ry="2" />
<text x="815.21" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (478 samples, 0.04%)</title><rect x="268.4" y="1301" width="0.4" height="15.0" fill="rgb(244,192,15)" rx="2" ry="2" />
<text x="271.38" y="1311.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (172 samples, 0.01%)</title><rect x="147.6" y="1221" width="0.1" height="15.0" fill="rgb(221,45,47)" rx="2" ry="2" />
<text x="150.58" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (7,669 samples, 0.63%)</title><rect x="944.2" y="1141" width="7.4" height="15.0" fill="rgb(239,95,0)" rx="2" ry="2" />
<text x="947.19" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (135 samples, 0.01%)</title><rect x="601.6" y="1157" width="0.1" height="15.0" fill="rgb(248,189,39)" rx="2" ry="2" />
<text x="604.59" y="1167.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (25,354 samples, 2.08%)</title><rect x="354.0" y="1269" width="24.6" height="15.0" fill="rgb(234,4,15)" rx="2" ry="2" />
<text x="356.98" y="1279.5" >c..</text>
</g>
<g >
<title>caml_finish_major_cycle (1,281 samples, 0.11%)</title><rect x="844.2" y="1189" width="1.2" height="15.0" fill="rgb(246,45,12)" rx="2" ry="2" />
<text x="847.17" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (370 samples, 0.03%)</title><rect x="1091.4" y="1349" width="0.4" height="15.0" fill="rgb(244,41,42)" rx="2" ry="2" />
<text x="1094.40" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_1014 (176 samples, 0.01%)</title><rect x="441.3" y="1189" width="0.2" height="15.0" fill="rgb(217,225,54)" rx="2" ry="2" />
<text x="444.29" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_shr (222 samples, 0.02%)</title><rect x="984.1" y="1333" width="0.2" height="15.0" fill="rgb(229,62,32)" rx="2" ry="2" />
<text x="987.06" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (460 samples, 0.04%)</title><rect x="493.3" y="1253" width="0.4" height="15.0" fill="rgb(212,221,47)" rx="2" ry="2" />
<text x="496.28" y="1263.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (2,411 samples, 0.20%)</title><rect x="265.8" y="1253" width="2.3" height="15.0" fill="rgb(232,158,27)" rx="2" ry="2" />
<text x="268.80" y="1263.5" ></text>
</g>
<g >
<title>caml_apply2 (110 samples, 0.01%)</title><rect x="180.6" y="1125" width="0.1" height="15.0" fill="rgb(247,196,24)" rx="2" ry="2" />
<text x="183.56" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (179 samples, 0.01%)</title><rect x="574.5" y="565" width="0.2" height="15.0" fill="rgb(249,49,50)" rx="2" ry="2" />
<text x="577.52" y="575.5" ></text>
</g>
<g >
<title>caml_alloc_string (180 samples, 0.01%)</title><rect x="546.4" y="1205" width="0.2" height="15.0" fill="rgb(209,96,23)" rx="2" ry="2" />
<text x="549.42" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__set_int_1105 (794 samples, 0.07%)</title><rect x="820.8" y="1173" width="0.8" height="15.0" fill="rgb(217,143,12)" rx="2" ry="2" />
<text x="823.82" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (200 samples, 0.02%)</title><rect x="191.3" y="1221" width="0.2" height="15.0" fill="rgb(240,95,14)" rx="2" ry="2" />
<text x="194.28" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_final (811 samples, 0.07%)</title><rect x="558.4" y="1237" width="0.8" height="15.0" fill="rgb(226,80,5)" rx="2" ry="2" />
<text x="561.37" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7378 (194 samples, 0.02%)</title><rect x="422.6" y="1157" width="0.2" height="15.0" fill="rgb(222,65,0)" rx="2" ry="2" />
<text x="425.60" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__find_1402 (582 samples, 0.05%)</title><rect x="200.6" y="1269" width="0.5" height="15.0" fill="rgb(219,0,41)" rx="2" ry="2" />
<text x="203.57" y="1279.5" ></text>
</g>
<g >
<title>caml_string_length (532 samples, 0.04%)</title><rect x="689.4" y="1237" width="0.5" height="15.0" fill="rgb(219,54,21)" rx="2" ry="2" />
<text x="692.39" y="1247.5" ></text>
</g>
<g >
<title>memmove (1,129 samples, 0.09%)</title><rect x="979.4" y="1301" width="1.1" height="15.0" fill="rgb(246,222,10)" rx="2" ry="2" />
<text x="982.43" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (203 samples, 0.02%)</title><rect x="115.3" y="1093" width="0.2" height="15.0" fill="rgb(244,195,36)" rx="2" ry="2" />
<text x="118.32" y="1103.5" ></text>
</g>
<g >
<title>do_syscall_64 (313 samples, 0.03%)</title><rect x="348.9" y="1061" width="0.3" height="15.0" fill="rgb(228,133,28)" rx="2" ry="2" />
<text x="351.90" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__bigarray__create_1241 (567 samples, 0.05%)</title><rect x="718.2" y="1285" width="0.5" height="15.0" fill="rgb(231,7,9)" rx="2" ry="2" />
<text x="721.19" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (121 samples, 0.01%)</title><rect x="1177.0" y="1189" width="0.2" height="15.0" fill="rgb(212,83,33)" rx="2" ry="2" />
<text x="1180.04" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (484 samples, 0.04%)</title><rect x="798.0" y="1237" width="0.5" height="15.0" fill="rgb(216,195,38)" rx="2" ry="2" />
<text x="801.02" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (500 samples, 0.04%)</title><rect x="365.4" y="1173" width="0.5" height="15.0" fill="rgb(252,18,32)" rx="2" ry="2" />
<text x="368.40" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (2,775 samples, 0.23%)</title><rect x="83.8" y="1893" width="2.7" height="15.0" fill="rgb(248,125,43)" rx="2" ry="2" />
<text x="86.78" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (228 samples, 0.02%)</title><rect x="553.4" y="1253" width="0.2" height="15.0" fill="rgb(205,52,27)" rx="2" ry="2" />
<text x="556.38" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (181 samples, 0.01%)</title><rect x="494.7" y="1317" width="0.2" height="15.0" fill="rgb(205,31,36)" rx="2" ry="2" />
<text x="497.70" y="1327.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7414 (2,326 samples, 0.19%)</title><rect x="370.2" y="1221" width="2.2" height="15.0" fill="rgb(227,181,33)" rx="2" ry="2" />
<text x="373.18" y="1231.5" ></text>
</g>
<g >
<title>do_compare_val (323 samples, 0.03%)</title><rect x="472.5" y="1253" width="0.3" height="15.0" fill="rgb(233,89,38)" rx="2" ry="2" />
<text x="475.53" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (1,227 samples, 0.10%)</title><rect x="461.9" y="1125" width="1.1" height="15.0" fill="rgb(226,136,34)" rx="2" ry="2" />
<text x="464.85" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (249 samples, 0.02%)</title><rect x="548.0" y="1205" width="0.3" height="15.0" fill="rgb(210,80,13)" rx="2" ry="2" />
<text x="551.02" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (172 samples, 0.01%)</title><rect x="576.9" y="917" width="0.1" height="15.0" fill="rgb(233,153,43)" rx="2" ry="2" />
<text x="579.86" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__index_9550 (330 samples, 0.03%)</title><rect x="276.9" y="1221" width="0.4" height="15.0" fill="rgb(253,93,13)" rx="2" ry="2" />
<text x="279.94" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,014 samples, 0.08%)</title><rect x="541.9" y="1157" width="1.0" height="15.0" fill="rgb(246,111,10)" rx="2" ry="2" />
<text x="544.91" y="1167.5" ></text>
</g>
<g >
<title>mdb_put (108 samples, 0.01%)</title><rect x="130.3" y="1205" width="0.1" height="15.0" fill="rgb(229,99,7)" rx="2" ry="2" />
<text x="133.32" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (125 samples, 0.01%)</title><rect x="227.2" y="1189" width="0.2" height="15.0" fill="rgb(220,38,32)" rx="2" ry="2" />
<text x="230.23" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (265 samples, 0.02%)</title><rect x="773.2" y="1173" width="0.3" height="15.0" fill="rgb(241,159,28)" rx="2" ry="2" />
<text x="776.24" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (495 samples, 0.04%)</title><rect x="383.6" y="1221" width="0.5" height="15.0" fill="rgb(237,208,29)" rx="2" ry="2" />
<text x="386.58" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (309 samples, 0.03%)</title><rect x="1182.7" y="1749" width="0.3" height="15.0" fill="rgb(245,182,12)" rx="2" ry="2" />
<text x="1185.67" y="1759.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (212 samples, 0.02%)</title><rect x="486.5" y="1285" width="0.2" height="15.0" fill="rgb(226,185,43)" rx="2" ry="2" />
<text x="489.47" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (121 samples, 0.01%)</title><rect x="911.7" y="1125" width="0.1" height="15.0" fill="rgb(224,42,23)" rx="2" ry="2" />
<text x="914.72" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (232 samples, 0.02%)</title><rect x="401.2" y="1029" width="0.2" height="15.0" fill="rgb(217,102,44)" rx="2" ry="2" />
<text x="404.22" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__map__mem_1200 (311 samples, 0.03%)</title><rect x="791.3" y="1253" width="0.3" height="15.0" fill="rgb(231,126,27)" rx="2" ry="2" />
<text x="794.28" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (186 samples, 0.02%)</title><rect x="589.4" y="1061" width="0.2" height="15.0" fill="rgb(229,221,11)" rx="2" ry="2" />
<text x="592.41" y="1071.5" ></text>
</g>
<g >
<title>caml_call_gc (141 samples, 0.01%)</title><rect x="210.5" y="1093" width="0.1" height="15.0" fill="rgb(236,57,23)" rx="2" ry="2" />
<text x="213.46" y="1103.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (171 samples, 0.01%)</title><rect x="1185.1" y="1413" width="0.1" height="15.0" fill="rgb(225,118,44)" rx="2" ry="2" />
<text x="1188.08" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (316 samples, 0.03%)</title><rect x="360.6" y="1157" width="0.3" height="15.0" fill="rgb(213,164,41)" rx="2" ry="2" />
<text x="363.59" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (535 samples, 0.04%)</title><rect x="86.8" y="1845" width="0.5" height="15.0" fill="rgb(207,156,2)" rx="2" ry="2" />
<text x="89.78" y="1855.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (7,494 samples, 0.62%)</title><rect x="904.7" y="1221" width="7.3" height="15.0" fill="rgb(254,89,28)" rx="2" ry="2" />
<text x="907.75" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (623 samples, 0.05%)</title><rect x="56.3" y="1861" width="0.6" height="15.0" fill="rgb(229,13,49)" rx="2" ry="2" />
<text x="59.33" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7616 (133 samples, 0.01%)</title><rect x="343.7" y="1077" width="0.1" height="15.0" fill="rgb(213,194,5)" rx="2" ry="2" />
<text x="346.66" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1413" width="1.6" height="15.0" fill="rgb(246,228,7)" rx="2" ry="2" />
<text x="1189.27" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (49,149 samples, 4.04%)</title><rect x="501.4" y="1269" width="47.7" height="15.0" fill="rgb(247,169,31)" rx="2" ry="2" />
<text x="504.44" y="1279.5" >caml..</text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (129 samples, 0.01%)</title><rect x="454.3" y="997" width="0.1" height="15.0" fill="rgb(231,104,52)" rx="2" ry="2" />
<text x="457.28" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (239 samples, 0.02%)</title><rect x="804.9" y="1189" width="0.2" height="15.0" fill="rgb(224,66,26)" rx="2" ry="2" />
<text x="807.90" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (149 samples, 0.01%)</title><rect x="956.4" y="1157" width="0.2" height="15.0" fill="rgb(237,148,8)" rx="2" ry="2" />
<text x="959.41" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (231 samples, 0.02%)</title><rect x="441.5" y="1205" width="0.3" height="15.0" fill="rgb(220,107,8)" rx="2" ry="2" />
<text x="444.53" y="1215.5" ></text>
</g>
<g >
<title>memmove (290 samples, 0.02%)</title><rect x="355.9" y="1189" width="0.3" height="15.0" fill="rgb(210,207,21)" rx="2" ry="2" />
<text x="358.95" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (107 samples, 0.01%)</title><rect x="149.3" y="1237" width="0.1" height="15.0" fill="rgb(248,115,30)" rx="2" ry="2" />
<text x="152.34" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$3e$3d_3794 (176 samples, 0.01%)</title><rect x="398.1" y="1125" width="0.1" height="15.0" fill="rgb(232,96,31)" rx="2" ry="2" />
<text x="401.07" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (212 samples, 0.02%)</title><rect x="442.9" y="1205" width="0.2" height="15.0" fill="rgb(219,128,40)" rx="2" ry="2" />
<text x="445.86" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (118 samples, 0.01%)</title><rect x="799.2" y="1141" width="0.2" height="15.0" fill="rgb(231,142,20)" rx="2" ry="2" />
<text x="802.24" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (140 samples, 0.01%)</title><rect x="846.1" y="1237" width="0.1" height="15.0" fill="rgb(216,153,0)" rx="2" ry="2" />
<text x="849.07" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_bytes_3189 (314 samples, 0.03%)</title><rect x="486.4" y="1301" width="0.3" height="15.0" fill="rgb(211,155,46)" rx="2" ry="2" />
<text x="489.37" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (2,074 samples, 0.17%)</title><rect x="98.7" y="1237" width="2.0" height="15.0" fill="rgb(205,170,52)" rx="2" ry="2" />
<text x="101.68" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_9727 (286 samples, 0.02%)</title><rect x="464.6" y="1157" width="0.2" height="15.0" fill="rgb(210,216,52)" rx="2" ry="2" />
<text x="467.56" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3669 (225 samples, 0.02%)</title><rect x="394.5" y="1109" width="0.3" height="15.0" fill="rgb(210,98,12)" rx="2" ry="2" />
<text x="397.54" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (176 samples, 0.01%)</title><rect x="367.8" y="1157" width="0.2" height="15.0" fill="rgb(210,56,35)" rx="2" ry="2" />
<text x="370.84" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_6601 (2,047 samples, 0.17%)</title><rect x="476.7" y="1301" width="2.0" height="15.0" fill="rgb(253,194,20)" rx="2" ry="2" />
<text x="479.70" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__first_pass_4196 (37,364 samples, 3.07%)</title><rect x="132.6" y="1397" width="36.2" height="15.0" fill="rgb(212,157,13)" rx="2" ry="2" />
<text x="135.61" y="1407.5" >cam..</text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (123 samples, 0.01%)</title><rect x="121.9" y="1141" width="0.2" height="15.0" fill="rgb(212,184,52)" rx="2" ry="2" />
<text x="124.95" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_tree_7263 (108 samples, 0.01%)</title><rect x="104.6" y="1253" width="0.1" height="15.0" fill="rgb(252,152,12)" rx="2" ry="2" />
<text x="107.61" y="1263.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (104 samples, 0.01%)</title><rect x="201.6" y="1157" width="0.1" height="15.0" fill="rgb(207,30,15)" rx="2" ry="2" />
<text x="204.57" y="1167.5" ></text>
</g>
<g >
<title>sys_pread64 (951 samples, 0.08%)</title><rect x="314.0" y="1109" width="0.9" height="15.0" fill="rgb(218,187,24)" rx="2" ry="2" />
<text x="316.97" y="1119.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (843 samples, 0.07%)</title><rect x="812.4" y="1189" width="0.9" height="15.0" fill="rgb(206,9,54)" rx="2" ry="2" />
<text x="815.44" y="1199.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_s_1068 (146,047 samples, 12.00%)</title><rect x="992.3" y="1445" width="141.7" height="15.0" fill="rgb(215,109,4)" rx="2" ry="2" />
<text x="995.34" y="1455.5" >camlLwt_list__iter..</text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (363 samples, 0.03%)</title><rect x="179.5" y="1141" width="0.3" height="15.0" fill="rgb(242,206,24)" rx="2" ry="2" />
<text x="182.48" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (202 samples, 0.02%)</title><rect x="605.0" y="1189" width="0.2" height="15.0" fill="rgb(252,161,47)" rx="2" ry="2" />
<text x="608.02" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__create_inner_2782 (189 samples, 0.02%)</title><rect x="113.6" y="1269" width="0.1" height="15.0" fill="rgb(217,50,12)" rx="2" ry="2" />
<text x="116.56" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (138 samples, 0.01%)</title><rect x="1177.8" y="1173" width="0.1" height="15.0" fill="rgb(251,84,30)" rx="2" ry="2" />
<text x="1180.75" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (182 samples, 0.01%)</title><rect x="1177.7" y="1269" width="0.2" height="15.0" fill="rgb(227,214,53)" rx="2" ry="2" />
<text x="1180.73" y="1279.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (1,126 samples, 0.09%)</title><rect x="979.4" y="1285" width="1.1" height="15.0" fill="rgb(217,180,40)" rx="2" ry="2" />
<text x="982.43" y="1295.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,676 samples, 0.38%)</title><rect x="1155.9" y="1397" width="4.5" height="15.0" fill="rgb(219,113,51)" rx="2" ry="2" />
<text x="1158.91" y="1407.5" ></text>
</g>
<g >
<title>mark_slice_darken (378 samples, 0.03%)</title><rect x="288.7" y="1077" width="0.3" height="15.0" fill="rgb(211,55,23)" rx="2" ry="2" />
<text x="291.66" y="1087.5" ></text>
</g>
<g >
<title>n_tty_ioctl (278 samples, 0.02%)</title><rect x="1165.1" y="1381" width="0.3" height="15.0" fill="rgb(213,144,30)" rx="2" ry="2" />
<text x="1168.12" y="1391.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1262 (129 samples, 0.01%)</title><rect x="293.1" y="1189" width="0.1" height="15.0" fill="rgb(218,175,11)" rx="2" ry="2" />
<text x="296.06" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (139 samples, 0.01%)</title><rect x="577.6" y="933" width="0.1" height="15.0" fill="rgb(239,54,21)" rx="2" ry="2" />
<text x="580.58" y="943.5" ></text>
</g>
<g >
<title>mdb_txn_commit (104 samples, 0.01%)</title><rect x="131.7" y="1253" width="0.1" height="15.0" fill="rgb(238,144,48)" rx="2" ry="2" />
<text x="134.73" y="1263.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (158 samples, 0.01%)</title><rect x="335.6" y="1221" width="0.1" height="15.0" fill="rgb(226,64,51)" rx="2" ry="2" />
<text x="338.58" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_path_4384 (10,585 samples, 0.87%)</title><rect x="1122.3" y="1397" width="10.2" height="15.0" fill="rgb(226,27,10)" rx="2" ry="2" />
<text x="1125.26" y="1407.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_substring_1857 (1,829 samples, 0.15%)</title><rect x="137.6" y="1285" width="1.8" height="15.0" fill="rgb(226,1,46)" rx="2" ry="2" />
<text x="140.65" y="1295.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (109 samples, 0.01%)</title><rect x="1184.5" y="1333" width="0.1" height="15.0" fill="rgb(214,144,0)" rx="2" ry="2" />
<text x="1187.45" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (448 samples, 0.04%)</title><rect x="572.7" y="981" width="0.4" height="15.0" fill="rgb(218,48,40)" rx="2" ry="2" />
<text x="575.71" y="991.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (21,312 samples, 1.75%)</title><rect x="933.5" y="1189" width="20.7" height="15.0" fill="rgb(209,197,24)" rx="2" ry="2" />
<text x="936.49" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__clear_1935 (115 samples, 0.01%)</title><rect x="75.5" y="1925" width="0.1" height="15.0" fill="rgb(232,35,2)" rx="2" ry="2" />
<text x="78.53" y="1935.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (152 samples, 0.01%)</title><rect x="989.6" y="1525" width="0.1" height="15.0" fill="rgb(240,135,52)" rx="2" ry="2" />
<text x="992.55" y="1535.5" ></text>
</g>
<g >
<title>caml_alloc_string (177 samples, 0.01%)</title><rect x="582.6" y="1029" width="0.1" height="15.0" fill="rgb(210,209,13)" rx="2" ry="2" />
<text x="585.56" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2640 (387 samples, 0.03%)</title><rect x="948.0" y="1125" width="0.4" height="15.0" fill="rgb(232,132,17)" rx="2" ry="2" />
<text x="951.02" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (124 samples, 0.01%)</title><rect x="888.4" y="1205" width="0.1" height="15.0" fill="rgb(222,50,40)" rx="2" ry="2" />
<text x="891.37" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (603 samples, 0.05%)</title><rect x="556.7" y="1269" width="0.6" height="15.0" fill="rgb(226,11,50)" rx="2" ry="2" />
<text x="559.70" y="1279.5" ></text>
</g>
<g >
<title>generic_file_read_iter (108 samples, 0.01%)</title><rect x="47.1" y="1893" width="0.1" height="15.0" fill="rgb(231,84,25)" rx="2" ry="2" />
<text x="50.09" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,292 samples, 0.11%)</title><rect x="516.4" y="725" width="1.3" height="15.0" fill="rgb(246,185,52)" rx="2" ry="2" />
<text x="519.42" y="735.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (792 samples, 0.07%)</title><rect x="800.4" y="1221" width="0.8" height="15.0" fill="rgb(243,210,3)" rx="2" ry="2" />
<text x="803.39" y="1231.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (113 samples, 0.01%)</title><rect x="201.3" y="1189" width="0.1" height="15.0" fill="rgb(206,30,26)" rx="2" ry="2" />
<text x="204.34" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (224 samples, 0.02%)</title><rect x="584.4" y="981" width="0.2" height="15.0" fill="rgb(244,164,7)" rx="2" ry="2" />
<text x="587.36" y="991.5" ></text>
</g>
<g >
<title>mark_slice (179 samples, 0.01%)</title><rect x="843.6" y="1141" width="0.1" height="15.0" fill="rgb(218,142,9)" rx="2" ry="2" />
<text x="846.56" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2604 (289 samples, 0.02%)</title><rect x="929.2" y="1221" width="0.3" height="15.0" fill="rgb(216,88,11)" rx="2" ry="2" />
<text x="932.24" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (433 samples, 0.04%)</title><rect x="375.5" y="1125" width="0.4" height="15.0" fill="rgb(247,6,25)" rx="2" ry="2" />
<text x="378.48" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_make_formatter_2181 (684 samples, 0.06%)</title><rect x="167.7" y="1333" width="0.7" height="15.0" fill="rgb(210,175,42)" rx="2" ry="2" />
<text x="170.70" y="1343.5" ></text>
</g>
<g >
<title>caml_string_length (120 samples, 0.01%)</title><rect x="811.4" y="1189" width="0.1" height="15.0" fill="rgb(240,3,40)" rx="2" ry="2" />
<text x="814.41" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (175 samples, 0.01%)</title><rect x="140.5" y="1301" width="0.2" height="15.0" fill="rgb(205,174,22)" rx="2" ry="2" />
<text x="143.51" y="1311.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,053 samples, 0.09%)</title><rect x="946.3" y="1093" width="1.1" height="15.0" fill="rgb(225,118,12)" rx="2" ry="2" />
<text x="949.33" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (1,030 samples, 0.08%)</title><rect x="262.9" y="1237" width="1.0" height="15.0" fill="rgb(223,213,3)" rx="2" ry="2" />
<text x="265.94" y="1247.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (9,920 samples, 0.82%)</title><rect x="1038.1" y="1253" width="9.7" height="15.0" fill="rgb(233,20,9)" rx="2" ry="2" />
<text x="1041.14" y="1263.5" ></text>
</g>
<g >
<title>caml_format_int (1,322 samples, 0.11%)</title><rect x="812.2" y="1237" width="1.3" height="15.0" fill="rgb(243,131,6)" rx="2" ry="2" />
<text x="815.18" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (143 samples, 0.01%)</title><rect x="890.9" y="1109" width="0.1" height="15.0" fill="rgb(241,38,6)" rx="2" ry="2" />
<text x="893.85" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (951 samples, 0.08%)</title><rect x="516.5" y="421" width="0.9" height="15.0" fill="rgb(207,145,47)" rx="2" ry="2" />
<text x="519.47" y="431.5" ></text>
</g>
<g >
<title>caml_alloc_small (348 samples, 0.03%)</title><rect x="857.8" y="1189" width="0.4" height="15.0" fill="rgb(251,192,45)" rx="2" ry="2" />
<text x="860.83" y="1199.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (630 samples, 0.05%)</title><rect x="138.8" y="1221" width="0.6" height="15.0" fill="rgb(241,53,30)" rx="2" ry="2" />
<text x="141.76" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (177 samples, 0.01%)</title><rect x="599.4" y="1189" width="0.1" height="15.0" fill="rgb(218,95,41)" rx="2" ry="2" />
<text x="602.37" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (193 samples, 0.02%)</title><rect x="255.9" y="1221" width="0.2" height="15.0" fill="rgb(254,32,13)" rx="2" ry="2" />
<text x="258.95" y="1231.5" ></text>
</g>
<g >
<title>blake2b_final (2,603 samples, 0.21%)</title><rect x="697.3" y="1237" width="2.5" height="15.0" fill="rgb(237,20,7)" rx="2" ry="2" />
<text x="700.25" y="1247.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (212 samples, 0.02%)</title><rect x="486.9" y="1253" width="0.2" height="15.0" fill="rgb(214,181,34)" rx="2" ry="2" />
<text x="489.94" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (342 samples, 0.03%)</title><rect x="578.9" y="997" width="0.3" height="15.0" fill="rgb(224,167,9)" rx="2" ry="2" />
<text x="581.91" y="1007.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (1,891 samples, 0.16%)</title><rect x="379.0" y="1205" width="1.8" height="15.0" fill="rgb(216,90,40)" rx="2" ry="2" />
<text x="381.95" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (695 samples, 0.06%)</title><rect x="503.0" y="1173" width="0.7" height="15.0" fill="rgb(229,84,22)" rx="2" ry="2" />
<text x="506.01" y="1183.5" ></text>
</g>
<g >
<title>sys_ioctl (115 samples, 0.01%)</title><rect x="157.4" y="1301" width="0.1" height="15.0" fill="rgb(212,214,38)" rx="2" ry="2" />
<text x="160.42" y="1311.5" ></text>
</g>
<g >
<title>sweep_slice (204 samples, 0.02%)</title><rect x="646.4" y="1205" width="0.2" height="15.0" fill="rgb(250,17,44)" rx="2" ry="2" />
<text x="649.37" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (130 samples, 0.01%)</title><rect x="537.9" y="1077" width="0.1" height="15.0" fill="rgb(245,32,14)" rx="2" ry="2" />
<text x="540.87" y="1087.5" ></text>
</g>
<g >
<title>rotr64 (132 samples, 0.01%)</title><rect x="513.7" y="917" width="0.1" height="15.0" fill="rgb(220,70,45)" rx="2" ry="2" />
<text x="516.69" y="927.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__make_printf_3708 (560 samples, 0.05%)</title><rect x="166.3" y="1365" width="0.5" height="15.0" fill="rgb(243,55,26)" rx="2" ry="2" />
<text x="169.25" y="1375.5" ></text>
</g>
<g >
<title>security_file_permission (137 samples, 0.01%)</title><rect x="47.2" y="1925" width="0.2" height="15.0" fill="rgb(224,190,11)" rx="2" ry="2" />
<text x="50.24" y="1935.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (498 samples, 0.04%)</title><rect x="572.2" y="997" width="0.4" height="15.0" fill="rgb(251,196,8)" rx="2" ry="2" />
<text x="575.16" y="1007.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (341 samples, 0.03%)</title><rect x="1135.6" y="1333" width="0.3" height="15.0" fill="rgb(245,142,51)" rx="2" ry="2" />
<text x="1138.60" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (173 samples, 0.01%)</title><rect x="477.3" y="1269" width="0.1" height="15.0" fill="rgb(254,34,5)" rx="2" ry="2" />
<text x="480.27" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (210 samples, 0.02%)</title><rect x="603.2" y="1157" width="0.2" height="15.0" fill="rgb(237,229,16)" rx="2" ry="2" />
<text x="606.18" y="1167.5" ></text>
</g>
<g >
<title>iov_iter_fault_in_readable (456 samples, 0.04%)</title><rect x="921.3" y="1125" width="0.5" height="15.0" fill="rgb(252,69,40)" rx="2" ry="2" />
<text x="924.31" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (173 samples, 0.01%)</title><rect x="976.0" y="1061" width="0.1" height="15.0" fill="rgb(240,226,28)" rx="2" ry="2" />
<text x="978.96" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (127 samples, 0.01%)</title><rect x="203.9" y="1253" width="0.2" height="15.0" fill="rgb(228,151,32)" rx="2" ry="2" />
<text x="206.94" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_tree_7263 (1,166 samples, 0.10%)</title><rect x="234.6" y="1317" width="1.1" height="15.0" fill="rgb(227,132,6)" rx="2" ry="2" />
<text x="237.59" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__hash_2361 (104 samples, 0.01%)</title><rect x="432.6" y="1205" width="0.1" height="15.0" fill="rgb(214,196,14)" rx="2" ry="2" />
<text x="435.59" y="1215.5" ></text>
</g>
<g >
<title>__libc_read (144 samples, 0.01%)</title><rect x="91.3" y="1957" width="0.1" height="15.0" fill="rgb(217,89,3)" rx="2" ry="2" />
<text x="94.30" y="1967.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (137 samples, 0.01%)</title><rect x="129.8" y="1253" width="0.1" height="15.0" fill="rgb(229,108,29)" rx="2" ry="2" />
<text x="132.80" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_node_7337 (149 samples, 0.01%)</title><rect x="1173.5" y="805" width="0.2" height="15.0" fill="rgb(225,224,7)" rx="2" ry="2" />
<text x="1176.52" y="815.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (328 samples, 0.03%)</title><rect x="448.1" y="1237" width="0.3" height="15.0" fill="rgb(234,135,37)" rx="2" ry="2" />
<text x="451.10" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__import_10182 (721 samples, 0.06%)</title><rect x="369.3" y="1189" width="0.7" height="15.0" fill="rgb(245,141,54)" rx="2" ry="2" />
<text x="372.26" y="1199.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_feed_bytes_1716 (106 samples, 0.01%)</title><rect x="354.8" y="1205" width="0.1" height="15.0" fill="rgb(226,185,23)" rx="2" ry="2" />
<text x="357.84" y="1215.5" ></text>
</g>
<g >
<title>memset (336 samples, 0.03%)</title><rect x="639.7" y="1157" width="0.3" height="15.0" fill="rgb(234,207,21)" rx="2" ry="2" />
<text x="642.65" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="892.0" y="1205" width="0.2" height="15.0" fill="rgb(247,107,47)" rx="2" ry="2" />
<text x="895.05" y="1215.5" ></text>
</g>
<g >
<title>memmove (130 samples, 0.01%)</title><rect x="437.4" y="1205" width="0.2" height="15.0" fill="rgb(212,74,18)" rx="2" ry="2" />
<text x="440.44" y="1215.5" ></text>
</g>
<g >
<title>memcpy (2,031 samples, 0.17%)</title><rect x="1059.2" y="1317" width="2.0" height="15.0" fill="rgb(239,31,6)" rx="2" ry="2" />
<text x="1062.21" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (116 samples, 0.01%)</title><rect x="955.9" y="1253" width="0.1" height="15.0" fill="rgb(208,153,25)" rx="2" ry="2" />
<text x="958.90" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (148 samples, 0.01%)</title><rect x="821.5" y="1109" width="0.1" height="15.0" fill="rgb(216,69,19)" rx="2" ry="2" />
<text x="824.45" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (457 samples, 0.04%)</title><rect x="279.8" y="1253" width="0.5" height="15.0" fill="rgb(237,126,47)" rx="2" ry="2" />
<text x="282.85" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (167 samples, 0.01%)</title><rect x="601.7" y="1205" width="0.2" height="15.0" fill="rgb(212,2,5)" rx="2" ry="2" />
<text x="604.72" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (119 samples, 0.01%)</title><rect x="465.3" y="997" width="0.1" height="15.0" fill="rgb(243,141,11)" rx="2" ry="2" />
<text x="468.26" y="1007.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (2,099 samples, 0.17%)</title><rect x="36.7" y="2037" width="2.1" height="15.0" fill="rgb(208,98,37)" rx="2" ry="2" />
<text x="39.73" y="2047.5" ></text>
</g>
<g >
<title>camlStdlib__map__iter_1265 (226 samples, 0.02%)</title><rect x="334.0" y="1317" width="0.2" height="15.0" fill="rgb(216,82,34)" rx="2" ry="2" />
<text x="337.03" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (682 samples, 0.06%)</title><rect x="618.9" y="1301" width="0.6" height="15.0" fill="rgb(227,191,34)" rx="2" ry="2" />
<text x="621.88" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__of_bytes_opt_2160 (1,091 samples, 0.09%)</title><rect x="940.7" y="1125" width="1.0" height="15.0" fill="rgb(248,187,12)" rx="2" ry="2" />
<text x="943.67" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_6601 (206 samples, 0.02%)</title><rect x="128.8" y="1237" width="0.2" height="15.0" fill="rgb(253,121,30)" rx="2" ry="2" />
<text x="131.81" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (197 samples, 0.02%)</title><rect x="885.0" y="1237" width="0.2" height="15.0" fill="rgb(207,147,14)" rx="2" ry="2" />
<text x="888.01" y="1247.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (304 samples, 0.02%)</title><rect x="117.7" y="1125" width="0.3" height="15.0" fill="rgb(244,138,40)" rx="2" ry="2" />
<text x="120.71" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11241 (3,173 samples, 0.26%)</title><rect x="331.4" y="1349" width="3.1" height="15.0" fill="rgb(207,102,33)" rx="2" ry="2" />
<text x="334.41" y="1359.5" ></text>
</g>
<g >
<title>__fget_light (111 samples, 0.01%)</title><rect x="204.7" y="1125" width="0.1" height="15.0" fill="rgb(253,78,15)" rx="2" ry="2" />
<text x="207.70" y="1135.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (219 samples, 0.02%)</title><rect x="15.7" y="2021" width="0.2" height="15.0" fill="rgb(221,221,39)" rx="2" ry="2" />
<text x="18.66" y="2031.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (104 samples, 0.01%)</title><rect x="537.0" y="1093" width="0.1" height="15.0" fill="rgb(219,62,32)" rx="2" ry="2" />
<text x="539.97" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (794 samples, 0.07%)</title><rect x="588.4" y="1109" width="0.8" height="15.0" fill="rgb(210,110,48)" rx="2" ry="2" />
<text x="591.43" y="1119.5" ></text>
</g>
<g >
<title>mdb_page_flush (209 samples, 0.02%)</title><rect x="46.5" y="2021" width="0.2" height="15.0" fill="rgb(234,172,10)" rx="2" ry="2" />
<text x="49.51" y="2031.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (215 samples, 0.02%)</title><rect x="974.9" y="1141" width="0.2" height="15.0" fill="rgb(216,117,27)" rx="2" ry="2" />
<text x="977.87" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (132 samples, 0.01%)</title><rect x="582.1" y="1045" width="0.1" height="15.0" fill="rgb(231,194,36)" rx="2" ry="2" />
<text x="585.09" y="1055.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (663 samples, 0.05%)</title><rect x="1185.0" y="1781" width="0.6" height="15.0" fill="rgb(244,91,27)" rx="2" ry="2" />
<text x="1187.98" y="1791.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (104 samples, 0.01%)</title><rect x="394.4" y="1125" width="0.1" height="15.0" fill="rgb(217,29,6)" rx="2" ry="2" />
<text x="397.36" y="1135.5" ></text>
</g>
<g >
<title>caml_blit_string (124 samples, 0.01%)</title><rect x="1084.5" y="1365" width="0.1" height="15.0" fill="rgb(209,125,38)" rx="2" ry="2" />
<text x="1087.45" y="1375.5" ></text>
</g>
<g >
<title>security_file_permission (295 samples, 0.02%)</title><rect x="411.5" y="1029" width="0.3" height="15.0" fill="rgb(252,143,52)" rx="2" ry="2" />
<text x="414.52" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_flush_queue_2026 (431 samples, 0.04%)</title><rect x="94.6" y="1285" width="0.4" height="15.0" fill="rgb(210,38,35)" rx="2" ry="2" />
<text x="97.56" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (223 samples, 0.02%)</title><rect x="603.8" y="1237" width="0.2" height="15.0" fill="rgb(213,71,11)" rx="2" ry="2" />
<text x="606.79" y="1247.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (122 samples, 0.01%)</title><rect x="452.5" y="997" width="0.1" height="15.0" fill="rgb(219,17,18)" rx="2" ry="2" />
<text x="455.53" y="1007.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (695 samples, 0.06%)</title><rect x="500.7" y="1253" width="0.7" height="15.0" fill="rgb(206,224,33)" rx="2" ry="2" />
<text x="503.69" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (131 samples, 0.01%)</title><rect x="470.1" y="1237" width="0.2" height="15.0" fill="rgb(220,85,20)" rx="2" ry="2" />
<text x="473.14" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__fun_4127 (248 samples, 0.02%)</title><rect x="320.3" y="1269" width="0.3" height="15.0" fill="rgb(243,102,11)" rx="2" ry="2" />
<text x="323.32" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (514 samples, 0.04%)</title><rect x="989.0" y="1397" width="0.5" height="15.0" fill="rgb(208,208,32)" rx="2" ry="2" />
<text x="991.99" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (115 samples, 0.01%)</title><rect x="384.1" y="1173" width="0.1" height="15.0" fill="rgb(207,138,13)" rx="2" ry="2" />
<text x="387.09" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (108 samples, 0.01%)</title><rect x="604.4" y="1205" width="0.1" height="15.0" fill="rgb(231,155,14)" rx="2" ry="2" />
<text x="607.39" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (133 samples, 0.01%)</title><rect x="530.8" y="997" width="0.1" height="15.0" fill="rgb(247,107,4)" rx="2" ry="2" />
<text x="533.77" y="1007.5" ></text>
</g>
<g >
<title>memcpy (129 samples, 0.01%)</title><rect x="1147.3" y="1349" width="0.1" height="15.0" fill="rgb(224,141,20)" rx="2" ry="2" />
<text x="1150.29" y="1359.5" ></text>
</g>
<g >
<title>blake2b_final (596 samples, 0.05%)</title><rect x="564.8" y="1109" width="0.6" height="15.0" fill="rgb(252,115,7)" rx="2" ry="2" />
<text x="567.84" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (1,474 samples, 0.12%)</title><rect x="742.7" y="1317" width="1.4" height="15.0" fill="rgb(231,147,0)" rx="2" ry="2" />
<text x="745.67" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (498 samples, 0.04%)</title><rect x="941.1" y="1061" width="0.5" height="15.0" fill="rgb(222,43,29)" rx="2" ry="2" />
<text x="944.07" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (109 samples, 0.01%)</title><rect x="1184.3" y="1333" width="0.1" height="15.0" fill="rgb(231,108,2)" rx="2" ry="2" />
<text x="1187.28" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (1,326 samples, 0.11%)</title><rect x="308.5" y="1189" width="1.3" height="15.0" fill="rgb(210,137,44)" rx="2" ry="2" />
<text x="311.51" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (571 samples, 0.05%)</title><rect x="708.8" y="1237" width="0.5" height="15.0" fill="rgb(245,159,9)" rx="2" ry="2" />
<text x="711.76" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (148 samples, 0.01%)</title><rect x="69.3" y="1925" width="0.2" height="15.0" fill="rgb(245,49,49)" rx="2" ry="2" />
<text x="72.33" y="1935.5" ></text>
</g>
<g >
<title>sweep_slice (118 samples, 0.01%)</title><rect x="455.1" y="901" width="0.1" height="15.0" fill="rgb(207,205,12)" rx="2" ry="2" />
<text x="458.06" y="911.5" ></text>
</g>
<g >
<title>mark_slice_darken (366 samples, 0.03%)</title><rect x="60.7" y="1829" width="0.4" height="15.0" fill="rgb(205,214,36)" rx="2" ry="2" />
<text x="63.70" y="1839.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (728 samples, 0.06%)</title><rect x="133.7" y="1285" width="0.7" height="15.0" fill="rgb(251,177,54)" rx="2" ry="2" />
<text x="136.68" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (346 samples, 0.03%)</title><rect x="262.3" y="1253" width="0.3" height="15.0" fill="rgb(216,11,4)" rx="2" ry="2" />
<text x="265.30" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (221 samples, 0.02%)</title><rect x="112.7" y="1205" width="0.2" height="15.0" fill="rgb(254,18,1)" rx="2" ry="2" />
<text x="115.66" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_update (534 samples, 0.04%)</title><rect x="607.8" y="1205" width="0.5" height="15.0" fill="rgb(216,220,50)" rx="2" ry="2" />
<text x="610.83" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__compare_1005 (373 samples, 0.03%)</title><rect x="1069.9" y="1365" width="0.4" height="15.0" fill="rgb(207,189,53)" rx="2" ry="2" />
<text x="1072.95" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (138 samples, 0.01%)</title><rect x="552.9" y="1237" width="0.1" height="15.0" fill="rgb(250,197,23)" rx="2" ry="2" />
<text x="555.88" y="1247.5" ></text>
</g>
<g >
<title>memcpy (285 samples, 0.02%)</title><rect x="731.3" y="1221" width="0.3" height="15.0" fill="rgb(235,165,1)" rx="2" ry="2" />
<text x="734.31" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (758 samples, 0.06%)</title><rect x="890.4" y="1157" width="0.7" height="15.0" fill="rgb(218,145,29)" rx="2" ry="2" />
<text x="893.40" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (435 samples, 0.04%)</title><rect x="1166.8" y="1445" width="0.4" height="15.0" fill="rgb(222,0,41)" rx="2" ry="2" />
<text x="1169.79" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (273 samples, 0.02%)</title><rect x="456.9" y="1077" width="0.3" height="15.0" fill="rgb(242,138,21)" rx="2" ry="2" />
<text x="459.94" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (442 samples, 0.04%)</title><rect x="905.4" y="1189" width="0.4" height="15.0" fill="rgb(230,214,19)" rx="2" ry="2" />
<text x="908.41" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (182 samples, 0.01%)</title><rect x="79.0" y="1829" width="0.2" height="15.0" fill="rgb(254,222,40)" rx="2" ry="2" />
<text x="82.03" y="1839.5" ></text>
</g>
<g >
<title>camlTezos_validation__Block_validation__fun_18408 (1,104 samples, 0.09%)</title><rect x="1172.7" y="997" width="1.1" height="15.0" fill="rgb(234,143,19)" rx="2" ry="2" />
<text x="1175.73" y="1007.5" ></text>
</g>
<g >
<title>mark_slice (486 samples, 0.04%)</title><rect x="796.1" y="1205" width="0.5" height="15.0" fill="rgb(222,211,37)" rx="2" ry="2" />
<text x="799.08" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (285 samples, 0.02%)</title><rect x="523.5" y="981" width="0.3" height="15.0" fill="rgb(249,165,51)" rx="2" ry="2" />
<text x="526.50" y="991.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (164 samples, 0.01%)</title><rect x="1184.4" y="1461" width="0.2" height="15.0" fill="rgb(245,83,30)" rx="2" ry="2" />
<text x="1187.44" y="1471.5" ></text>
</g>
<g >
<title>ml_blake2b_init (1,439 samples, 0.12%)</title><rect x="638.6" y="1221" width="1.4" height="15.0" fill="rgb(228,206,12)" rx="2" ry="2" />
<text x="641.60" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__map_2683 (116 samples, 0.01%)</title><rect x="352.9" y="1301" width="0.2" height="15.0" fill="rgb(238,221,19)" rx="2" ry="2" />
<text x="355.94" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (824 samples, 0.07%)</title><rect x="693.0" y="1285" width="0.8" height="15.0" fill="rgb(241,126,25)" rx="2" ry="2" />
<text x="695.98" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__read_3317 (145 samples, 0.01%)</title><rect x="1172.5" y="869" width="0.2" height="15.0" fill="rgb(241,189,19)" rx="2" ry="2" />
<text x="1175.55" y="879.5" ></text>
</g>
<g >
<title>sweep_slice (144 samples, 0.01%)</title><rect x="954.7" y="1157" width="0.2" height="15.0" fill="rgb(238,119,22)" rx="2" ry="2" />
<text x="957.74" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (340 samples, 0.03%)</title><rect x="71.4" y="1925" width="0.3" height="15.0" fill="rgb(241,59,29)" rx="2" ry="2" />
<text x="74.39" y="1935.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_lock (123 samples, 0.01%)</title><rect x="91.5" y="1989" width="0.1" height="15.0" fill="rgb(233,39,43)" rx="2" ry="2" />
<text x="94.47" y="1999.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (964 samples, 0.08%)</title><rect x="1056.2" y="1301" width="1.0" height="15.0" fill="rgb(248,131,18)" rx="2" ry="2" />
<text x="1059.22" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (185 samples, 0.02%)</title><rect x="98.7" y="1141" width="0.2" height="15.0" fill="rgb(250,228,32)" rx="2" ry="2" />
<text x="101.71" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_general_2345 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1685" width="6.2" height="15.0" fill="rgb(228,216,18)" rx="2" ry="2" />
<text x="1178.90" y="1695.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (137 samples, 0.01%)</title><rect x="123.9" y="1173" width="0.1" height="15.0" fill="rgb(240,161,20)" rx="2" ry="2" />
<text x="126.85" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (134 samples, 0.01%)</title><rect x="1177.6" y="1157" width="0.1" height="15.0" fill="rgb(210,56,14)" rx="2" ry="2" />
<text x="1180.55" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (566 samples, 0.05%)</title><rect x="966.7" y="1093" width="0.6" height="15.0" fill="rgb(225,28,28)" rx="2" ry="2" />
<text x="969.74" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int32_3815 (406 samples, 0.03%)</title><rect x="300.5" y="1141" width="0.4" height="15.0" fill="rgb(240,131,49)" rx="2" ry="2" />
<text x="303.50" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (294 samples, 0.02%)</title><rect x="857.9" y="1173" width="0.3" height="15.0" fill="rgb(232,70,38)" rx="2" ry="2" />
<text x="860.88" y="1183.5" ></text>
</g>
<g >
<title>caml_curry3 (161 samples, 0.01%)</title><rect x="250.1" y="1205" width="0.2" height="15.0" fill="rgb(254,74,39)" rx="2" ry="2" />
<text x="253.13" y="1215.5" ></text>
</g>
<g >
<title>blake2b_update (743 samples, 0.06%)</title><rect x="495.0" y="1301" width="0.7" height="15.0" fill="rgb(231,194,37)" rx="2" ry="2" />
<text x="497.98" y="1311.5" ></text>
</g>
<g >
<title>caml_apply2 (123 samples, 0.01%)</title><rect x="194.2" y="1269" width="0.1" height="15.0" fill="rgb(222,114,26)" rx="2" ry="2" />
<text x="197.17" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (151 samples, 0.01%)</title><rect x="75.8" y="1797" width="0.2" height="15.0" fill="rgb(246,138,9)" rx="2" ry="2" />
<text x="78.83" y="1807.5" ></text>
</g>
<g >
<title>camlMain__entry (1,123,980 samples, 92.36%)</title><rect x="92.2" y="1925" width="1089.9" height="15.0" fill="rgb(230,228,20)" rx="2" ry="2" />
<text x="95.24" y="1935.5" >camlMain__entry</text>
</g>
<g >
<title>caml_major_collection_slice (124 samples, 0.01%)</title><rect x="603.8" y="1205" width="0.2" height="15.0" fill="rgb(235,94,27)" rx="2" ry="2" />
<text x="606.85" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_path_4384 (2,670 samples, 0.22%)</title><rect x="897.6" y="1253" width="2.6" height="15.0" fill="rgb(218,172,35)" rx="2" ry="2" />
<text x="900.62" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (1,006 samples, 0.08%)</title><rect x="463.6" y="1125" width="1.0" height="15.0" fill="rgb(233,167,1)" rx="2" ry="2" />
<text x="466.58" y="1135.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (104 samples, 0.01%)</title><rect x="693.5" y="1221" width="0.1" height="15.0" fill="rgb(249,41,2)" rx="2" ry="2" />
<text x="696.47" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (122 samples, 0.01%)</title><rect x="494.5" y="1333" width="0.1" height="15.0" fill="rgb(246,70,14)" rx="2" ry="2" />
<text x="497.53" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (197 samples, 0.02%)</title><rect x="597.7" y="1125" width="0.2" height="15.0" fill="rgb(217,175,7)" rx="2" ry="2" />
<text x="600.74" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11364 (216 samples, 0.02%)</title><rect x="1176.6" y="1269" width="0.2" height="15.0" fill="rgb(237,10,13)" rx="2" ry="2" />
<text x="1179.56" y="1279.5" ></text>
</g>
<g >
<title>[unknown] (29,824 samples, 2.45%)</title><rect x="18.6" y="2053" width="28.9" height="15.0" fill="rgb(223,224,49)" rx="2" ry="2" />
<text x="21.63" y="2063.5" >[u..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1093" width="1.6" height="15.0" fill="rgb(213,110,15)" rx="2" ry="2" />
<text x="1189.27" y="1103.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (115 samples, 0.01%)</title><rect x="270.5" y="1141" width="0.1" height="15.0" fill="rgb(212,144,12)" rx="2" ry="2" />
<text x="273.53" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (144 samples, 0.01%)</title><rect x="469.9" y="997" width="0.1" height="15.0" fill="rgb(240,97,40)" rx="2" ry="2" />
<text x="472.91" y="1007.5" ></text>
</g>
<g >
<title>blake2b_final (3,176 samples, 0.26%)</title><rect x="704.2" y="1269" width="3.1" height="15.0" fill="rgb(234,16,9)" rx="2" ry="2" />
<text x="707.20" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (320 samples, 0.03%)</title><rect x="71.8" y="1861" width="0.3" height="15.0" fill="rgb(244,86,30)" rx="2" ry="2" />
<text x="74.81" y="1871.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (1,487 samples, 0.12%)</title><rect x="130.3" y="1301" width="1.4" height="15.0" fill="rgb(237,44,8)" rx="2" ry="2" />
<text x="133.29" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (4,382 samples, 0.36%)</title><rect x="176.8" y="1189" width="4.2" height="15.0" fill="rgb(222,135,28)" rx="2" ry="2" />
<text x="179.78" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3831 (111 samples, 0.01%)</title><rect x="216.7" y="1221" width="0.1" height="15.0" fill="rgb(247,12,17)" rx="2" ry="2" />
<text x="219.67" y="1231.5" ></text>
</g>
<g >
<title>__libc_pwrite64 (1,206 samples, 0.10%)</title><rect x="920.8" y="1285" width="1.2" height="15.0" fill="rgb(208,114,33)" rx="2" ry="2" />
<text x="923.80" y="1295.5" ></text>
</g>
<g >
<title>blake2b_final (648 samples, 0.05%)</title><rect x="620.5" y="1253" width="0.6" height="15.0" fill="rgb(216,80,41)" rx="2" ry="2" />
<text x="623.47" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (151 samples, 0.01%)</title><rect x="488.4" y="1157" width="0.2" height="15.0" fill="rgb(239,51,38)" rx="2" ry="2" />
<text x="491.41" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (6,071 samples, 0.50%)</title><rect x="306.8" y="1221" width="5.9" height="15.0" fill="rgb(212,134,15)" rx="2" ry="2" />
<text x="309.77" y="1231.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (2,634 samples, 0.22%)</title><rect x="201.2" y="1253" width="2.5" height="15.0" fill="rgb(246,4,23)" rx="2" ry="2" />
<text x="204.19" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (385 samples, 0.03%)</title><rect x="170.9" y="1285" width="0.4" height="15.0" fill="rgb(216,50,45)" rx="2" ry="2" />
<text x="173.91" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__fun_4105 (320 samples, 0.03%)</title><rect x="738.2" y="1237" width="0.4" height="15.0" fill="rgb(229,122,16)" rx="2" ry="2" />
<text x="741.24" y="1247.5" ></text>
</g>
<g >
<title>__do_page_fault (143 samples, 0.01%)</title><rect x="1161.8" y="1397" width="0.1" height="15.0" fill="rgb(225,13,4)" rx="2" ry="2" />
<text x="1164.77" y="1407.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (379 samples, 0.03%)</title><rect x="712.1" y="1301" width="0.3" height="15.0" fill="rgb(229,10,24)" rx="2" ry="2" />
<text x="715.07" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8059 (156 samples, 0.01%)</title><rect x="400.3" y="1093" width="0.1" height="15.0" fill="rgb(221,200,42)" rx="2" ry="2" />
<text x="403.28" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="997" width="1.6" height="15.0" fill="rgb(207,118,45)" rx="2" ry="2" />
<text x="1189.27" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (146 samples, 0.01%)</title><rect x="348.1" y="1109" width="0.2" height="15.0" fill="rgb(221,195,26)" rx="2" ry="2" />
<text x="351.11" y="1119.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (29,849 samples, 2.45%)</title><rect x="386.8" y="1253" width="29.0" height="15.0" fill="rgb(224,110,6)" rx="2" ry="2" />
<text x="389.81" y="1263.5" >ca..</text>
</g>
<g >
<title>caml_oldify_mopup (660 samples, 0.05%)</title><rect x="640.4" y="1205" width="0.6" height="15.0" fill="rgb(228,134,24)" rx="2" ry="2" />
<text x="643.38" y="1215.5" ></text>
</g>
<g >
<title>blake2b_compress (263 samples, 0.02%)</title><rect x="515.5" y="869" width="0.2" height="15.0" fill="rgb(207,17,48)" rx="2" ry="2" />
<text x="518.49" y="879.5" ></text>
</g>
<g >
<title>blake2b_compress (490 samples, 0.04%)</title><rect x="570.8" y="965" width="0.5" height="15.0" fill="rgb(229,225,48)" rx="2" ry="2" />
<text x="573.80" y="975.5" ></text>
</g>
<g >
<title>caml_apply2 (127 samples, 0.01%)</title><rect x="154.7" y="1333" width="0.2" height="15.0" fill="rgb(218,200,42)" rx="2" ry="2" />
<text x="157.74" y="1343.5" ></text>
</g>
<g >
<title>__GI___strlen_sse2 (233 samples, 0.02%)</title><rect x="165.3" y="1301" width="0.2" height="15.0" fill="rgb(231,127,24)" rx="2" ry="2" />
<text x="168.29" y="1311.5" ></text>
</g>
<g >
<title>mdb_page_flush (8,656 samples, 0.71%)</title><rect x="915.0" y="1301" width="8.4" height="15.0" fill="rgb(233,160,41)" rx="2" ry="2" />
<text x="917.98" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (732 samples, 0.06%)</title><rect x="568.6" y="1093" width="0.7" height="15.0" fill="rgb(254,71,21)" rx="2" ry="2" />
<text x="571.59" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (126 samples, 0.01%)</title><rect x="742.4" y="1269" width="0.2" height="15.0" fill="rgb(218,116,41)" rx="2" ry="2" />
<text x="745.43" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Node__v_5505 (147 samples, 0.01%)</title><rect x="258.8" y="1253" width="0.1" height="15.0" fill="rgb(228,184,44)" rx="2" ry="2" />
<text x="261.80" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (763 samples, 0.06%)</title><rect x="542.0" y="1109" width="0.7" height="15.0" fill="rgb(233,169,24)" rx="2" ry="2" />
<text x="544.96" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (216 samples, 0.02%)</title><rect x="805.4" y="1205" width="0.2" height="15.0" fill="rgb(231,112,34)" rx="2" ry="2" />
<text x="808.43" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (118 samples, 0.01%)</title><rect x="1177.6" y="1125" width="0.1" height="15.0" fill="rgb(250,85,37)" rx="2" ry="2" />
<text x="1180.55" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (543 samples, 0.04%)</title><rect x="510.5" y="1029" width="0.5" height="15.0" fill="rgb(245,70,28)" rx="2" ry="2" />
<text x="513.50" y="1039.5" ></text>
</g>
<g >
<title>caml_apply2 (151 samples, 0.01%)</title><rect x="310.9" y="1157" width="0.2" height="15.0" fill="rgb(209,221,37)" rx="2" ry="2" />
<text x="313.92" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (116 samples, 0.01%)</title><rect x="264.4" y="1237" width="0.1" height="15.0" fill="rgb(228,140,27)" rx="2" ry="2" />
<text x="267.40" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (233 samples, 0.02%)</title><rect x="535.3" y="1109" width="0.3" height="15.0" fill="rgb(226,137,11)" rx="2" ry="2" />
<text x="538.34" y="1119.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,169 samples, 0.10%)</title><rect x="274.4" y="1221" width="1.2" height="15.0" fill="rgb(216,92,8)" rx="2" ry="2" />
<text x="277.42" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fold_left_s_3300 (784 samples, 0.06%)</title><rect x="1172.7" y="917" width="0.8" height="15.0" fill="rgb(241,23,5)" rx="2" ry="2" />
<text x="1175.75" y="927.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,396 samples, 0.11%)</title><rect x="494.4" y="1381" width="1.4" height="15.0" fill="rgb(252,85,4)" rx="2" ry="2" />
<text x="497.44" y="1391.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (128 samples, 0.01%)</title><rect x="946.2" y="1093" width="0.1" height="15.0" fill="rgb(209,83,3)" rx="2" ry="2" />
<text x="949.21" y="1103.5" ></text>
</g>
<g >
<title>blake2b_compress (527 samples, 0.04%)</title><rect x="506.1" y="1077" width="0.5" height="15.0" fill="rgb(219,141,36)" rx="2" ry="2" />
<text x="509.06" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (12,137 samples, 1.00%)</title><rect x="173.9" y="1253" width="11.7" height="15.0" fill="rgb(214,180,13)" rx="2" ry="2" />
<text x="176.86" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__fun_3047 (502 samples, 0.04%)</title><rect x="938.4" y="1157" width="0.5" height="15.0" fill="rgb(247,159,15)" rx="2" ry="2" />
<text x="941.39" y="1167.5" ></text>
</g>
<g >
<title>blake2b_compress (144 samples, 0.01%)</title><rect x="610.1" y="1189" width="0.1" height="15.0" fill="rgb(216,2,17)" rx="2" ry="2" />
<text x="613.09" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (247 samples, 0.02%)</title><rect x="126.1" y="1013" width="0.3" height="15.0" fill="rgb(216,59,8)" rx="2" ry="2" />
<text x="129.14" y="1023.5" ></text>
</g>
<g >
<title>mark_slice (120 samples, 0.01%)</title><rect x="606.4" y="1173" width="0.1" height="15.0" fill="rgb(209,180,45)" rx="2" ry="2" />
<text x="609.37" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2640 (349 samples, 0.03%)</title><rect x="967.7" y="1157" width="0.4" height="15.0" fill="rgb(252,172,13)" rx="2" ry="2" />
<text x="970.72" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (155 samples, 0.01%)</title><rect x="445.6" y="1205" width="0.2" height="15.0" fill="rgb(228,15,32)" rx="2" ry="2" />
<text x="448.62" y="1215.5" ></text>
</g>
<g >
<title>caml_string_length (230 samples, 0.02%)</title><rect x="668.8" y="1253" width="0.2" height="15.0" fill="rgb(229,213,50)" rx="2" ry="2" />
<text x="671.81" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (168 samples, 0.01%)</title><rect x="530.6" y="965" width="0.2" height="15.0" fill="rgb(241,208,25)" rx="2" ry="2" />
<text x="533.61" y="975.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (552 samples, 0.05%)</title><rect x="539.8" y="1157" width="0.6" height="15.0" fill="rgb(211,34,18)" rx="2" ry="2" />
<text x="542.83" y="1167.5" ></text>
</g>
<g >
<title>caml_blit_bytes (116 samples, 0.01%)</title><rect x="419.4" y="1157" width="0.2" height="15.0" fill="rgb(211,145,3)" rx="2" ry="2" />
<text x="422.44" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (143 samples, 0.01%)</title><rect x="989.9" y="1525" width="0.1" height="15.0" fill="rgb(223,18,28)" rx="2" ry="2" />
<text x="992.89" y="1535.5" ></text>
</g>
<g >
<title>memcpy (2,091 samples, 0.17%)</title><rect x="1173.9" y="1685" width="2.0" height="15.0" fill="rgb(237,133,32)" rx="2" ry="2" />
<text x="1176.86" y="1695.5" ></text>
</g>
<g >
<title>mark_slice_darken (130 samples, 0.01%)</title><rect x="62.6" y="1813" width="0.2" height="15.0" fill="rgb(247,16,43)" rx="2" ry="2" />
<text x="65.64" y="1823.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (742 samples, 0.06%)</title><rect x="602.2" y="1221" width="0.7" height="15.0" fill="rgb(251,185,16)" rx="2" ry="2" />
<text x="605.15" y="1231.5" ></text>
</g>
<g >
<title>caml_darken (174 samples, 0.01%)</title><rect x="429.5" y="1189" width="0.1" height="15.0" fill="rgb(241,0,54)" rx="2" ry="2" />
<text x="432.46" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (221 samples, 0.02%)</title><rect x="528.6" y="1029" width="0.2" height="15.0" fill="rgb(225,115,39)" rx="2" ry="2" />
<text x="531.62" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3432 (204 samples, 0.02%)</title><rect x="1180.7" y="1237" width="0.2" height="15.0" fill="rgb(220,156,16)" rx="2" ry="2" />
<text x="1183.66" y="1247.5" ></text>
</g>
<g >
<title>mdb_node_search (1,230 samples, 0.10%)</title><rect x="1134.7" y="1365" width="1.2" height="15.0" fill="rgb(248,38,44)" rx="2" ry="2" />
<text x="1137.74" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (712 samples, 0.06%)</title><rect x="1171.0" y="1461" width="0.7" height="15.0" fill="rgb(250,30,34)" rx="2" ry="2" />
<text x="1174.02" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (113 samples, 0.01%)</title><rect x="574.5" y="421" width="0.1" height="15.0" fill="rgb(235,217,21)" rx="2" ry="2" />
<text x="577.54" y="431.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_2116 (113 samples, 0.01%)</title><rect x="424.7" y="1189" width="0.1" height="15.0" fill="rgb(243,52,53)" rx="2" ry="2" />
<text x="427.71" y="1199.5" ></text>
</g>
<g >
<title>pthread_sigmask (326 samples, 0.03%)</title><rect x="91.8" y="1989" width="0.4" height="15.0" fill="rgb(228,45,4)" rx="2" ry="2" />
<text x="94.85" y="1999.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (546 samples, 0.04%)</title><rect x="408.9" y="1141" width="0.6" height="15.0" fill="rgb(251,92,43)" rx="2" ry="2" />
<text x="411.94" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (113 samples, 0.01%)</title><rect x="131.1" y="1109" width="0.1" height="15.0" fill="rgb(251,190,2)" rx="2" ry="2" />
<text x="134.10" y="1119.5" ></text>
</g>
<g >
<title>sys_ioctl (1,407 samples, 0.12%)</title><rect x="156.1" y="1285" width="1.3" height="15.0" fill="rgb(210,85,29)" rx="2" ry="2" />
<text x="159.06" y="1295.5" ></text>
</g>
<g >
<title>camlNode_snapshot_command__process_2147 (1,123,980 samples, 92.36%)</title><rect x="92.2" y="1829" width="1089.9" height="15.0" fill="rgb(210,25,23)" rx="2" ry="2" />
<text x="95.24" y="1839.5" >camlNode_snapshot_command__process_2147</text>
</g>
<g >
<title>camlLwt__resolve_2309 (925,190 samples, 76.03%)</title><rect x="92.4" y="1589" width="897.1" height="15.0" fill="rgb(221,108,51)" rx="2" ry="2" />
<text x="95.38" y="1599.5" >camlLwt__resolve_2309</text>
</g>
<g >
<title>caml_page_table_lookup (114 samples, 0.01%)</title><rect x="474.8" y="1221" width="0.1" height="15.0" fill="rgb(231,29,33)" rx="2" ry="2" />
<text x="477.79" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (154 samples, 0.01%)</title><rect x="597.8" y="1109" width="0.1" height="15.0" fill="rgb(250,58,3)" rx="2" ry="2" />
<text x="600.78" y="1119.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (471 samples, 0.04%)</title><rect x="514.0" y="965" width="0.4" height="15.0" fill="rgb(207,190,39)" rx="2" ry="2" />
<text x="516.99" y="975.5" ></text>
</g>
<g >
<title>caml_obj_tag (135 samples, 0.01%)</title><rect x="316.4" y="1205" width="0.1" height="15.0" fill="rgb(247,229,45)" rx="2" ry="2" />
<text x="319.40" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (29,123 samples, 2.39%)</title><rect x="386.9" y="1237" width="28.3" height="15.0" fill="rgb(243,174,44)" rx="2" ry="2" />
<text x="389.93" y="1247.5" >c..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (116 samples, 0.01%)</title><rect x="131.9" y="1173" width="0.1" height="15.0" fill="rgb(212,67,6)" rx="2" ry="2" />
<text x="134.86" y="1183.5" ></text>
</g>
<g >
<title>caml_blit_bytes (391 samples, 0.03%)</title><rect x="1096.0" y="1365" width="0.3" height="15.0" fill="rgb(226,227,20)" rx="2" ry="2" />
<text x="1098.97" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (391 samples, 0.03%)</title><rect x="106.2" y="1189" width="0.4" height="15.0" fill="rgb(239,112,3)" rx="2" ry="2" />
<text x="109.23" y="1199.5" ></text>
</g>
<g >
<title>parse_format (749 samples, 0.06%)</title><rect x="165.2" y="1317" width="0.7" height="15.0" fill="rgb(215,138,35)" rx="2" ry="2" />
<text x="168.19" y="1327.5" ></text>
</g>
<g >
<title>camlLwt__return_some_2470 (122 samples, 0.01%)</title><rect x="198.7" y="1333" width="0.1" height="15.0" fill="rgb(210,57,34)" rx="2" ry="2" />
<text x="201.71" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (779 samples, 0.06%)</title><rect x="395.5" y="1109" width="0.8" height="15.0" fill="rgb(213,68,50)" rx="2" ry="2" />
<text x="398.54" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (145 samples, 0.01%)</title><rect x="531.2" y="1013" width="0.2" height="15.0" fill="rgb(221,60,33)" rx="2" ry="2" />
<text x="534.21" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (1,042 samples, 0.09%)</title><rect x="344.8" y="1077" width="1.0" height="15.0" fill="rgb(241,88,5)" rx="2" ry="2" />
<text x="347.84" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (120 samples, 0.01%)</title><rect x="991.8" y="1413" width="0.1" height="15.0" fill="rgb(240,145,41)" rx="2" ry="2" />
<text x="994.83" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__save_10725 (327 samples, 0.03%)</title><rect x="385.0" y="1285" width="0.3" height="15.0" fill="rgb(253,38,21)" rx="2" ry="2" />
<text x="387.98" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (256 samples, 0.02%)</title><rect x="598.5" y="1173" width="0.3" height="15.0" fill="rgb(244,12,26)" rx="2" ry="2" />
<text x="601.52" y="1183.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (181 samples, 0.01%)</title><rect x="1185.2" y="1461" width="0.2" height="15.0" fill="rgb(227,206,21)" rx="2" ry="2" />
<text x="1188.25" y="1471.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (531 samples, 0.04%)</title><rect x="512.1" y="1013" width="0.5" height="15.0" fill="rgb(243,49,19)" rx="2" ry="2" />
<text x="515.06" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (1,171 samples, 0.10%)</title><rect x="393.1" y="1125" width="1.1" height="15.0" fill="rgb(238,105,9)" rx="2" ry="2" />
<text x="396.07" y="1135.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (113 samples, 0.01%)</title><rect x="487.5" y="1125" width="0.1" height="15.0" fill="rgb(218,80,42)" rx="2" ry="2" />
<text x="490.48" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (499 samples, 0.04%)</title><rect x="264.3" y="1253" width="0.4" height="15.0" fill="rgb(250,46,44)" rx="2" ry="2" />
<text x="267.26" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3432 (372 samples, 0.03%)</title><rect x="489.4" y="1285" width="0.3" height="15.0" fill="rgb(220,95,50)" rx="2" ry="2" />
<text x="492.37" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (758 samples, 0.06%)</title><rect x="745.3" y="1237" width="0.7" height="15.0" fill="rgb(223,13,4)" rx="2" ry="2" />
<text x="748.28" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__of_bytes_opt_2160 (3,264 samples, 0.27%)</title><rect x="958.8" y="1157" width="3.2" height="15.0" fill="rgb(237,164,1)" rx="2" ry="2" />
<text x="961.82" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (370 samples, 0.03%)</title><rect x="201.5" y="1205" width="0.4" height="15.0" fill="rgb(229,85,45)" rx="2" ry="2" />
<text x="204.49" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_10733 (121,106 samples, 9.95%)</title><rect x="353.4" y="1301" width="117.4" height="15.0" fill="rgb(207,172,31)" rx="2" ry="2" />
<text x="356.39" y="1311.5" >camlIrmin_pack..</text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (955 samples, 0.08%)</title><rect x="126.0" y="1125" width="0.9" height="15.0" fill="rgb(214,81,4)" rx="2" ry="2" />
<text x="128.96" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (212 samples, 0.02%)</title><rect x="978.6" y="1365" width="0.2" height="15.0" fill="rgb(235,38,40)" rx="2" ry="2" />
<text x="981.60" y="1375.5" ></text>
</g>
<g >
<title>camlLwt_unix__self_result_2324 (2,134 samples, 0.18%)</title><rect x="1173.8" y="1717" width="2.1" height="15.0" fill="rgb(223,60,41)" rx="2" ry="2" />
<text x="1176.81" y="1727.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__check_allowed_bytes_1069 (699 samples, 0.06%)</title><rect x="825.9" y="1125" width="0.7" height="15.0" fill="rgb(243,94,8)" rx="2" ry="2" />
<text x="828.88" y="1135.5" ></text>
</g>
<g >
<title>caml_format_int (399 samples, 0.03%)</title><rect x="923.6" y="1349" width="0.4" height="15.0" fill="rgb(232,50,31)" rx="2" ry="2" />
<text x="926.62" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__pre_hash_3776 (268 samples, 0.02%)</title><rect x="86.5" y="1893" width="0.2" height="15.0" fill="rgb(251,27,17)" rx="2" ry="2" />
<text x="89.48" y="1903.5" ></text>
</g>
<g >
<title>caml_call_gc (772 samples, 0.06%)</title><rect x="941.0" y="1109" width="0.7" height="15.0" fill="rgb(232,39,54)" rx="2" ry="2" />
<text x="943.98" y="1119.5" ></text>
</g>
<g >
<title>ml_blake2b_final (578 samples, 0.05%)</title><rect x="570.8" y="997" width="0.5" height="15.0" fill="rgb(216,89,2)" rx="2" ry="2" />
<text x="573.78" y="1007.5" ></text>
</g>
<g >
<title>caml_blit_bytes (134 samples, 0.01%)</title><rect x="437.4" y="1221" width="0.2" height="15.0" fill="rgb(249,195,50)" rx="2" ry="2" />
<text x="440.44" y="1231.5" ></text>
</g>
<g >
<title>caml_curry2_1 (167 samples, 0.01%)</title><rect x="448.4" y="1253" width="0.2" height="15.0" fill="rgb(221,93,36)" rx="2" ry="2" />
<text x="451.45" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (8,749 samples, 0.72%)</title><rect x="461.6" y="1205" width="8.5" height="15.0" fill="rgb(244,71,29)" rx="2" ry="2" />
<text x="464.58" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (220 samples, 0.02%)</title><rect x="58.0" y="1781" width="0.2" height="15.0" fill="rgb(214,159,29)" rx="2" ry="2" />
<text x="60.99" y="1791.5" ></text>
</g>
<g >
<title>camlTezos_stdlib_unix__Utils__display_progress_1084 (122 samples, 0.01%)</title><rect x="168.5" y="1365" width="0.1" height="15.0" fill="rgb(213,221,19)" rx="2" ry="2" />
<text x="171.48" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (109 samples, 0.01%)</title><rect x="76.3" y="1877" width="0.1" height="15.0" fill="rgb(247,128,4)" rx="2" ry="2" />
<text x="79.28" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_rinit_1967 (203 samples, 0.02%)</title><rect x="140.2" y="1349" width="0.2" height="15.0" fill="rgb(243,43,45)" rx="2" ry="2" />
<text x="143.16" y="1359.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (297 samples, 0.02%)</title><rect x="1187.5" y="85" width="0.3" height="15.0" fill="rgb(233,143,38)" rx="2" ry="2" />
<text x="1190.48" y="95.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (12,338 samples, 1.01%)</title><rect x="449.6" y="1205" width="12.0" height="15.0" fill="rgb(229,69,11)" rx="2" ry="2" />
<text x="452.62" y="1215.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (159 samples, 0.01%)</title><rect x="907.1" y="1109" width="0.1" height="15.0" fill="rgb(214,51,27)" rx="2" ry="2" />
<text x="910.07" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__replace_3149 (1,562 samples, 0.13%)</title><rect x="122.2" y="1205" width="1.5" height="15.0" fill="rgb(240,222,31)" rx="2" ry="2" />
<text x="125.21" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7522 (174 samples, 0.01%)</title><rect x="193.0" y="1269" width="0.2" height="15.0" fill="rgb(254,165,19)" rx="2" ry="2" />
<text x="196.00" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (396 samples, 0.03%)</title><rect x="715.0" y="1285" width="0.4" height="15.0" fill="rgb(221,105,31)" rx="2" ry="2" />
<text x="718.00" y="1295.5" ></text>
</g>
<g >
<title>_int_malloc (1,295 samples, 0.11%)</title><rect x="771.7" y="1189" width="1.3" height="15.0" fill="rgb(233,162,17)" rx="2" ry="2" />
<text x="774.72" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (3,835 samples, 0.32%)</title><rect x="641.0" y="1221" width="3.7" height="15.0" fill="rgb(219,175,9)" rx="2" ry="2" />
<text x="644.02" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (1,788 samples, 0.15%)</title><rect x="1180.0" y="1317" width="1.8" height="15.0" fill="rgb(209,98,14)" rx="2" ry="2" />
<text x="1183.03" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (11,686 samples, 0.96%)</title><rect x="570.8" y="1061" width="11.3" height="15.0" fill="rgb(238,228,1)" rx="2" ry="2" />
<text x="573.75" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (128 samples, 0.01%)</title><rect x="989.3" y="1317" width="0.1" height="15.0" fill="rgb(228,43,31)" rx="2" ry="2" />
<text x="992.32" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (338 samples, 0.03%)</title><rect x="515.1" y="933" width="0.3" height="15.0" fill="rgb(218,166,7)" rx="2" ry="2" />
<text x="518.09" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (811 samples, 0.07%)</title><rect x="987.1" y="1349" width="0.8" height="15.0" fill="rgb(221,154,6)" rx="2" ry="2" />
<text x="990.13" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (233 samples, 0.02%)</title><rect x="469.8" y="1093" width="0.2" height="15.0" fill="rgb(208,46,44)" rx="2" ry="2" />
<text x="472.82" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7497 (191 samples, 0.02%)</title><rect x="294.2" y="1157" width="0.2" height="15.0" fill="rgb(227,155,52)" rx="2" ry="2" />
<text x="297.18" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (622 samples, 0.05%)</title><rect x="1189.1" y="2053" width="0.6" height="15.0" fill="rgb(206,140,6)" rx="2" ry="2" />
<text x="1192.09" y="2063.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (227 samples, 0.02%)</title><rect x="1182.3" y="1573" width="0.2" height="15.0" fill="rgb(234,55,48)" rx="2" ry="2" />
<text x="1185.26" y="1583.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (1,150 samples, 0.09%)</title><rect x="710.7" y="1237" width="1.1" height="15.0" fill="rgb(238,195,16)" rx="2" ry="2" />
<text x="713.69" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (218 samples, 0.02%)</title><rect x="61.6" y="1845" width="0.2" height="15.0" fill="rgb(251,132,48)" rx="2" ry="2" />
<text x="64.63" y="1855.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (4,510 samples, 0.37%)</title><rect x="485.5" y="1365" width="4.4" height="15.0" fill="rgb(233,196,13)" rx="2" ry="2" />
<text x="488.53" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (754 samples, 0.06%)</title><rect x="548.3" y="1253" width="0.8" height="15.0" fill="rgb(238,11,42)" rx="2" ry="2" />
<text x="551.33" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (110 samples, 0.01%)</title><rect x="239.4" y="1269" width="0.1" height="15.0" fill="rgb(225,133,51)" rx="2" ry="2" />
<text x="242.42" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (133 samples, 0.01%)</title><rect x="612.6" y="1253" width="0.1" height="15.0" fill="rgb(222,54,27)" rx="2" ry="2" />
<text x="615.58" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (556 samples, 0.05%)</title><rect x="254.3" y="1221" width="0.5" height="15.0" fill="rgb(251,127,27)" rx="2" ry="2" />
<text x="257.27" y="1231.5" ></text>
</g>
<g >
<title>vfs_read (650 samples, 0.05%)</title><rect x="411.2" y="1061" width="0.6" height="15.0" fill="rgb(207,61,41)" rx="2" ry="2" />
<text x="414.18" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (565 samples, 0.05%)</title><rect x="847.5" y="1285" width="0.6" height="15.0" fill="rgb(247,48,13)" rx="2" ry="2" />
<text x="850.52" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (607 samples, 0.05%)</title><rect x="454.7" y="1013" width="0.5" height="15.0" fill="rgb(222,66,21)" rx="2" ry="2" />
<text x="457.66" y="1023.5" ></text>
</g>
<g >
<title>caml_compare (302 samples, 0.02%)</title><rect x="1070.0" y="1349" width="0.3" height="15.0" fill="rgb(205,64,14)" rx="2" ry="2" />
<text x="1073.02" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (489 samples, 0.04%)</title><rect x="420.6" y="1189" width="0.5" height="15.0" fill="rgb(225,110,35)" rx="2" ry="2" />
<text x="423.59" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3667 (136 samples, 0.01%)</title><rect x="271.2" y="1221" width="0.1" height="15.0" fill="rgb(243,28,13)" rx="2" ry="2" />
<text x="274.16" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__rmap_f_1143 (330 samples, 0.03%)</title><rect x="369.6" y="1173" width="0.4" height="15.0" fill="rgb(254,100,19)" rx="2" ry="2" />
<text x="372.64" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (348 samples, 0.03%)</title><rect x="348.9" y="1077" width="0.3" height="15.0" fill="rgb(242,159,17)" rx="2" ry="2" />
<text x="351.89" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (133 samples, 0.01%)</title><rect x="737.3" y="1157" width="0.1" height="15.0" fill="rgb(238,159,39)" rx="2" ry="2" />
<text x="740.28" y="1167.5" ></text>
</g>
<g >
<title>__libc_pread64 (503 samples, 0.04%)</title><rect x="19.1" y="2037" width="0.5" height="15.0" fill="rgb(220,174,23)" rx="2" ry="2" />
<text x="22.11" y="2047.5" ></text>
</g>
<g >
<title>caml_garbage_collection (115 samples, 0.01%)</title><rect x="976.9" y="1141" width="0.1" height="15.0" fill="rgb(243,138,17)" rx="2" ry="2" />
<text x="979.88" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (122 samples, 0.01%)</title><rect x="182.6" y="1141" width="0.1" height="15.0" fill="rgb(215,183,53)" rx="2" ry="2" />
<text x="185.59" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (467 samples, 0.04%)</title><rect x="574.4" y="901" width="0.5" height="15.0" fill="rgb(244,162,29)" rx="2" ry="2" />
<text x="577.43" y="911.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (152 samples, 0.01%)</title><rect x="708.6" y="1253" width="0.2" height="15.0" fill="rgb(248,77,45)" rx="2" ry="2" />
<text x="711.61" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (295 samples, 0.02%)</title><rect x="469.0" y="1029" width="0.3" height="15.0" fill="rgb(251,32,3)" rx="2" ry="2" />
<text x="472.01" y="1039.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (957 samples, 0.08%)</title><rect x="101.8" y="1173" width="1.0" height="15.0" fill="rgb(224,152,36)" rx="2" ry="2" />
<text x="104.85" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (2,753 samples, 0.23%)</title><rect x="247.8" y="1237" width="2.7" height="15.0" fill="rgb(211,133,51)" rx="2" ry="2" />
<text x="250.78" y="1247.5" ></text>
</g>
<g >
<title>ml_Hacl_Ed25519_verify (112 samples, 0.01%)</title><rect x="1172.8" y="709" width="0.1" height="15.0" fill="rgb(247,175,31)" rx="2" ry="2" />
<text x="1175.83" y="719.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1781" width="1.6" height="15.0" fill="rgb(222,139,49)" rx="2" ry="2" />
<text x="1189.27" y="1791.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (197 samples, 0.02%)</title><rect x="78.8" y="1845" width="0.2" height="15.0" fill="rgb(234,71,1)" rx="2" ry="2" />
<text x="81.84" y="1855.5" ></text>
</g>
<g >
<title>caml_string_compare (108 samples, 0.01%)</title><rect x="260.2" y="1205" width="0.1" height="15.0" fill="rgb(238,158,21)" rx="2" ry="2" />
<text x="263.20" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_one (122 samples, 0.01%)</title><rect x="636.6" y="1189" width="0.2" height="15.0" fill="rgb(234,142,3)" rx="2" ry="2" />
<text x="639.64" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (1,645 samples, 0.14%)</title><rect x="885.7" y="1253" width="1.6" height="15.0" fill="rgb(221,169,29)" rx="2" ry="2" />
<text x="888.70" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (216 samples, 0.02%)</title><rect x="984.1" y="1317" width="0.2" height="15.0" fill="rgb(225,40,52)" rx="2" ry="2" />
<text x="987.06" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="229" width="1.6" height="15.0" fill="rgb(206,174,19)" rx="2" ry="2" />
<text x="1189.27" y="239.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (239 samples, 0.02%)</title><rect x="1182.3" y="1749" width="0.2" height="15.0" fill="rgb(227,189,4)" rx="2" ry="2" />
<text x="1185.25" y="1759.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (2,098 samples, 0.17%)</title><rect x="98.7" y="1269" width="2.0" height="15.0" fill="rgb(239,119,52)" rx="2" ry="2" />
<text x="101.66" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (553 samples, 0.05%)</title><rect x="572.2" y="1013" width="0.5" height="15.0" fill="rgb(251,69,27)" rx="2" ry="2" />
<text x="575.16" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (157 samples, 0.01%)</title><rect x="702.4" y="1253" width="0.2" height="15.0" fill="rgb(224,195,17)" rx="2" ry="2" />
<text x="705.44" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (278 samples, 0.02%)</title><rect x="382.6" y="1125" width="0.2" height="15.0" fill="rgb(247,200,16)" rx="2" ry="2" />
<text x="385.57" y="1135.5" ></text>
</g>
<g >
<title>_IO_old_init (282 samples, 0.02%)</title><rect x="1124.8" y="1285" width="0.3" height="15.0" fill="rgb(227,218,2)" rx="2" ry="2" />
<text x="1127.78" y="1295.5" ></text>
</g>
<g >
<title>caml_compare (175 samples, 0.01%)</title><rect x="349.3" y="1141" width="0.1" height="15.0" fill="rgb(227,15,38)" rx="2" ry="2" />
<text x="352.28" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (130 samples, 0.01%)</title><rect x="434.5" y="1237" width="0.2" height="15.0" fill="rgb(233,8,4)" rx="2" ry="2" />
<text x="437.53" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (752 samples, 0.06%)</title><rect x="550.0" y="1269" width="0.7" height="15.0" fill="rgb(225,204,50)" rx="2" ry="2" />
<text x="552.97" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (106 samples, 0.01%)</title><rect x="455.4" y="997" width="0.1" height="15.0" fill="rgb(226,59,23)" rx="2" ry="2" />
<text x="458.42" y="1007.5" ></text>
</g>
<g >
<title>caml_garbage_collection (116 samples, 0.01%)</title><rect x="702.6" y="1269" width="0.2" height="15.0" fill="rgb(218,10,25)" rx="2" ry="2" />
<text x="705.64" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (565 samples, 0.05%)</title><rect x="971.0" y="1109" width="0.5" height="15.0" fill="rgb(221,27,50)" rx="2" ry="2" />
<text x="973.99" y="1119.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (845 samples, 0.07%)</title><rect x="527.1" y="965" width="0.8" height="15.0" fill="rgb(253,129,3)" rx="2" ry="2" />
<text x="530.11" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (305 samples, 0.03%)</title><rect x="837.9" y="1077" width="0.3" height="15.0" fill="rgb(210,8,24)" rx="2" ry="2" />
<text x="840.95" y="1087.5" ></text>
</g>
<g >
<title>stub_mdb_put (13,300 samples, 1.09%)</title><rect x="1134.6" y="1429" width="12.9" height="15.0" fill="rgb(228,184,47)" rx="2" ry="2" />
<text x="1137.58" y="1439.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (123 samples, 0.01%)</title><rect x="129.7" y="1157" width="0.1" height="15.0" fill="rgb(208,163,19)" rx="2" ry="2" />
<text x="132.65" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (294 samples, 0.02%)</title><rect x="1182.7" y="1557" width="0.3" height="15.0" fill="rgb(219,51,30)" rx="2" ry="2" />
<text x="1185.68" y="1567.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (223 samples, 0.02%)</title><rect x="843.6" y="1157" width="0.2" height="15.0" fill="rgb(214,56,14)" rx="2" ry="2" />
<text x="846.56" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (130 samples, 0.01%)</title><rect x="578.7" y="981" width="0.2" height="15.0" fill="rgb(217,1,28)" rx="2" ry="2" />
<text x="581.73" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="549" width="1.6" height="15.0" fill="rgb(250,153,53)" rx="2" ry="2" />
<text x="1189.27" y="559.5" ></text>
</g>
<g >
<title>caml_alloc_initialized_string (212 samples, 0.02%)</title><rect x="897.9" y="1189" width="0.2" height="15.0" fill="rgb(231,201,47)" rx="2" ry="2" />
<text x="900.93" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (1,023 samples, 0.08%)</title><rect x="498.3" y="1285" width="1.0" height="15.0" fill="rgb(222,133,6)" rx="2" ry="2" />
<text x="501.31" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__format__formatter_of_buffer_2201 (118 samples, 0.01%)</title><rect x="167.5" y="1349" width="0.1" height="15.0" fill="rgb(208,163,25)" rx="2" ry="2" />
<text x="170.46" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__string__sum_lengths_1085 (555 samples, 0.05%)</title><rect x="878.6" y="1253" width="0.5" height="15.0" fill="rgb(228,49,40)" rx="2" ry="2" />
<text x="881.59" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (4,218 samples, 0.35%)</title><rect x="185.9" y="1269" width="4.1" height="15.0" fill="rgb(238,29,40)" rx="2" ry="2" />
<text x="188.95" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (337 samples, 0.03%)</title><rect x="356.5" y="1189" width="0.3" height="15.0" fill="rgb(213,47,30)" rx="2" ry="2" />
<text x="359.49" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (113 samples, 0.01%)</title><rect x="941.4" y="1029" width="0.2" height="15.0" fill="rgb(206,56,35)" rx="2" ry="2" />
<text x="944.44" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (965 samples, 0.08%)</title><rect x="516.5" y="453" width="0.9" height="15.0" fill="rgb(217,179,20)" rx="2" ry="2" />
<text x="519.47" y="463.5" ></text>
</g>
<g >
<title>ml_blake2b_final (172 samples, 0.01%)</title><rect x="515.9" y="885" width="0.2" height="15.0" fill="rgb(206,80,17)" rx="2" ry="2" />
<text x="518.93" y="895.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (196 samples, 0.02%)</title><rect x="546.9" y="1189" width="0.2" height="15.0" fill="rgb(224,215,23)" rx="2" ry="2" />
<text x="549.88" y="1199.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (245 samples, 0.02%)</title><rect x="968.9" y="1077" width="0.3" height="15.0" fill="rgb(252,7,12)" rx="2" ry="2" />
<text x="971.93" y="1087.5" ></text>
</g>
<g >
<title>mdb_page_flush (11,464 samples, 0.94%)</title><rect x="1150.8" y="1445" width="11.1" height="15.0" fill="rgb(222,73,13)" rx="2" ry="2" />
<text x="1153.80" y="1455.5" ></text>
</g>
<g >
<title>caml_format_int (473 samples, 0.04%)</title><rect x="97.4" y="1269" width="0.4" height="15.0" fill="rgb(214,223,17)" rx="2" ry="2" />
<text x="100.37" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__string__sum_lengths_1085 (120 samples, 0.01%)</title><rect x="1147.7" y="1429" width="0.1" height="15.0" fill="rgb(229,165,43)" rx="2" ry="2" />
<text x="1150.66" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_9625 (2,918 samples, 0.24%)</title><rect x="276.6" y="1253" width="2.9" height="15.0" fill="rgb(231,180,28)" rx="2" ry="2" />
<text x="279.65" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (185 samples, 0.02%)</title><rect x="809.0" y="1205" width="0.2" height="15.0" fill="rgb(226,84,34)" rx="2" ry="2" />
<text x="812.00" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__map__find_1120 (923 samples, 0.08%)</title><rect x="236.5" y="1285" width="0.9" height="15.0" fill="rgb(233,17,34)" rx="2" ry="2" />
<text x="239.48" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7497 (137 samples, 0.01%)</title><rect x="248.0" y="1221" width="0.2" height="15.0" fill="rgb(217,196,48)" rx="2" ry="2" />
<text x="251.02" y="1231.5" ></text>
</g>
<g >
<title>parse_format (183 samples, 0.02%)</title><rect x="134.4" y="1333" width="0.2" height="15.0" fill="rgb(234,96,34)" rx="2" ry="2" />
<text x="137.39" y="1343.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (948 samples, 0.08%)</title><rect x="1169.7" y="1477" width="0.9" height="15.0" fill="rgb(213,35,52)" rx="2" ry="2" />
<text x="1172.68" y="1487.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (141 samples, 0.01%)</title><rect x="702.0" y="1269" width="0.1" height="15.0" fill="rgb(220,162,17)" rx="2" ry="2" />
<text x="704.97" y="1279.5" ></text>
</g>
<g >
<title>ext4_file_read_iter (134 samples, 0.01%)</title><rect x="47.1" y="1909" width="0.1" height="15.0" fill="rgb(209,92,27)" rx="2" ry="2" />
<text x="50.07" y="1919.5" ></text>
</g>
<g >
<title>caml_alloc_string (156 samples, 0.01%)</title><rect x="602.0" y="1205" width="0.1" height="15.0" fill="rgb(232,100,27)" rx="2" ry="2" />
<text x="604.97" y="1215.5" ></text>
</g>
<g >
<title>caml_blit_bytes (164 samples, 0.01%)</title><rect x="150.4" y="1221" width="0.1" height="15.0" fill="rgb(243,47,16)" rx="2" ry="2" />
<text x="153.38" y="1231.5" ></text>
</g>
<g >
<title>rotr64 (213 samples, 0.02%)</title><rect x="561.0" y="1157" width="0.2" height="15.0" fill="rgb(243,212,53)" rx="2" ry="2" />
<text x="564.04" y="1167.5" ></text>
</g>
<g >
<title>caml_apply4 (145 samples, 0.01%)</title><rect x="257.8" y="1253" width="0.2" height="15.0" fill="rgb(205,211,34)" rx="2" ry="2" />
<text x="260.81" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__format__format_pp_token_1842 (2,945 samples, 0.24%)</title><rect x="136.9" y="1301" width="2.8" height="15.0" fill="rgb(210,120,45)" rx="2" ry="2" />
<text x="139.86" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (628 samples, 0.05%)</title><rect x="545.3" y="1221" width="0.6" height="15.0" fill="rgb(252,179,48)" rx="2" ry="2" />
<text x="548.28" y="1231.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (2,005 samples, 0.16%)</title><rect x="163.2" y="1269" width="2.0" height="15.0" fill="rgb(248,139,21)" rx="2" ry="2" />
<text x="166.24" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (110 samples, 0.01%)</title><rect x="606.8" y="1221" width="0.1" height="15.0" fill="rgb(207,37,37)" rx="2" ry="2" />
<text x="609.77" y="1231.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,169 samples, 0.10%)</title><rect x="274.4" y="1237" width="1.2" height="15.0" fill="rgb(241,226,34)" rx="2" ry="2" />
<text x="277.42" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (106 samples, 0.01%)</title><rect x="882.2" y="1221" width="0.1" height="15.0" fill="rgb(221,228,31)" rx="2" ry="2" />
<text x="885.22" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__sync_9304 (107 samples, 0.01%)</title><rect x="431.4" y="1253" width="0.1" height="15.0" fill="rgb(210,125,19)" rx="2" ry="2" />
<text x="434.39" y="1263.5" ></text>
</g>
<g >
<title>caml_modify (119 samples, 0.01%)</title><rect x="140.2" y="1333" width="0.2" height="15.0" fill="rgb(247,106,29)" rx="2" ry="2" />
<text x="143.24" y="1343.5" ></text>
</g>
<g >
<title>sweep_slice (112 samples, 0.01%)</title><rect x="815.0" y="1205" width="0.2" height="15.0" fill="rgb(234,21,3)" rx="2" ry="2" />
<text x="818.04" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (107 samples, 0.01%)</title><rect x="733.8" y="1269" width="0.1" height="15.0" fill="rgb(224,198,3)" rx="2" ry="2" />
<text x="736.77" y="1279.5" ></text>
</g>
<g >
<title>__strchrnul_sse2 (114 samples, 0.01%)</title><rect x="164.8" y="1237" width="0.1" height="15.0" fill="rgb(238,75,21)" rx="2" ry="2" />
<text x="167.81" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (136 samples, 0.01%)</title><rect x="1172.4" y="1589" width="0.1" height="15.0" fill="rgb(251,120,47)" rx="2" ry="2" />
<text x="1175.39" y="1599.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (182 samples, 0.01%)</title><rect x="99.4" y="1141" width="0.2" height="15.0" fill="rgb(216,68,48)" rx="2" ry="2" />
<text x="102.40" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1381" width="1.3" height="15.0" fill="rgb(213,180,51)" rx="2" ry="2" />
<text x="1175.52" y="1391.5" ></text>
</g>
<g >
<title>caml_alloc_string (290 samples, 0.02%)</title><rect x="596.2" y="1141" width="0.3" height="15.0" fill="rgb(254,34,41)" rx="2" ry="2" />
<text x="599.17" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_6601 (1,214 samples, 0.10%)</title><rect x="471.7" y="1301" width="1.2" height="15.0" fill="rgb(249,37,28)" rx="2" ry="2" />
<text x="474.69" y="1311.5" ></text>
</g>
<g >
<title>file_update_time (347 samples, 0.03%)</title><rect x="1157.2" y="1285" width="0.4" height="15.0" fill="rgb(240,7,34)" rx="2" ry="2" />
<text x="1160.23" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__second_pass_4211 (67,377 samples, 5.54%)</title><rect x="923.5" y="1397" width="65.3" height="15.0" fill="rgb(223,95,14)" rx="2" ry="2" />
<text x="926.50" y="1407.5" >camlTez..</text>
</g>
<g >
<title>parse_format (2,144 samples, 0.18%)</title><rect x="1130.4" y="1349" width="2.1" height="15.0" fill="rgb(206,96,6)" rx="2" ry="2" />
<text x="1133.43" y="1359.5" ></text>
</g>
<g >
<title>caml_format_int (1,518 samples, 0.12%)</title><rect x="133.1" y="1349" width="1.5" height="15.0" fill="rgb(253,200,2)" rx="2" ry="2" />
<text x="136.09" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (178 samples, 0.01%)</title><rect x="481.3" y="1285" width="0.1" height="15.0" fill="rgb(249,109,47)" rx="2" ry="2" />
<text x="484.26" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (523 samples, 0.04%)</title><rect x="826.0" y="1077" width="0.5" height="15.0" fill="rgb(242,64,16)" rx="2" ry="2" />
<text x="829.02" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_10728 (119 samples, 0.01%)</title><rect x="353.6" y="1285" width="0.1" height="15.0" fill="rgb(212,200,12)" rx="2" ry="2" />
<text x="356.61" y="1295.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (632 samples, 0.05%)</title><rect x="382.5" y="1221" width="0.6" height="15.0" fill="rgb(233,204,6)" rx="2" ry="2" />
<text x="385.48" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__encode_bin_9722 (22,021 samples, 1.81%)</title><rect x="448.9" y="1253" width="21.4" height="15.0" fill="rgb(249,13,19)" rx="2" ry="2" />
<text x="451.91" y="1263.5" >c..</text>
</g>
<g >
<title>camlLwt__callback_2614 (1,113,727 samples, 91.52%)</title><rect x="92.4" y="1605" width="1079.9" height="15.0" fill="rgb(245,60,42)" rx="2" ry="2" />
<text x="95.38" y="1615.5" >camlLwt__callback_2614</text>
</g>
<g >
<title>caml_apply4 (148 samples, 0.01%)</title><rect x="368.2" y="1189" width="0.1" height="15.0" fill="rgb(254,172,52)" rx="2" ry="2" />
<text x="371.16" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (274 samples, 0.02%)</title><rect x="432.2" y="1173" width="0.2" height="15.0" fill="rgb(244,144,16)" rx="2" ry="2" />
<text x="435.15" y="1183.5" ></text>
</g>
<g >
<title>ml_blake2b_init (113 samples, 0.01%)</title><rect x="494.5" y="1317" width="0.1" height="15.0" fill="rgb(251,30,48)" rx="2" ry="2" />
<text x="497.54" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (5,101 samples, 0.42%)</title><rect x="1106.5" y="1365" width="4.9" height="15.0" fill="rgb(241,226,48)" rx="2" ry="2" />
<text x="1109.45" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (185 samples, 0.02%)</title><rect x="469.9" y="1061" width="0.1" height="15.0" fill="rgb(207,121,41)" rx="2" ry="2" />
<text x="472.87" y="1071.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (155 samples, 0.01%)</title><rect x="270.5" y="1205" width="0.1" height="15.0" fill="rgb(211,116,18)" rx="2" ry="2" />
<text x="273.50" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (181 samples, 0.01%)</title><rect x="589.0" y="1077" width="0.1" height="15.0" fill="rgb(246,156,13)" rx="2" ry="2" />
<text x="591.96" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (115 samples, 0.01%)</title><rect x="1165.5" y="1477" width="0.1" height="15.0" fill="rgb(233,75,46)" rx="2" ry="2" />
<text x="1168.47" y="1487.5" ></text>
</g>
<g >
<title>mark_slice_darken (130 samples, 0.01%)</title><rect x="57.2" y="1797" width="0.1" height="15.0" fill="rgb(218,181,45)" rx="2" ry="2" />
<text x="60.16" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1287 (166 samples, 0.01%)</title><rect x="213.5" y="1189" width="0.2" height="15.0" fill="rgb(234,136,20)" rx="2" ry="2" />
<text x="216.50" y="1199.5" ></text>
</g>
<g >
<title>mdb_node_add (3,733 samples, 0.31%)</title><rect x="1057.6" y="1333" width="3.6" height="15.0" fill="rgb(213,119,43)" rx="2" ry="2" />
<text x="1060.56" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__of_bytes_exn_1750 (161 samples, 0.01%)</title><rect x="1181.8" y="1317" width="0.2" height="15.0" fill="rgb(247,221,21)" rx="2" ry="2" />
<text x="1184.82" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (167 samples, 0.01%)</title><rect x="579.9" y="997" width="0.2" height="15.0" fill="rgb(246,44,48)" rx="2" ry="2" />
<text x="582.93" y="1007.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__read_string_2454 (6,081 samples, 0.50%)</title><rect x="24.4" y="2037" width="5.9" height="15.0" fill="rgb(246,2,28)" rx="2" ry="2" />
<text x="27.37" y="2047.5" ></text>
</g>
<g >
<title>mark_slice_darken (244 samples, 0.02%)</title><rect x="68.2" y="1845" width="0.2" height="15.0" fill="rgb(212,130,50)" rx="2" ry="2" />
<text x="71.21" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (504 samples, 0.04%)</title><rect x="348.8" y="1157" width="0.5" height="15.0" fill="rgb(215,90,17)" rx="2" ry="2" />
<text x="351.77" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__of_v_6552 (112 samples, 0.01%)</title><rect x="235.3" y="1301" width="0.1" height="15.0" fill="rgb(214,193,32)" rx="2" ry="2" />
<text x="238.33" y="1311.5" ></text>
</g>
<g >
<title>caml_blit_bytes (502 samples, 0.04%)</title><rect x="834.7" y="1125" width="0.5" height="15.0" fill="rgb(233,55,50)" rx="2" ry="2" />
<text x="837.68" y="1135.5" ></text>
</g>
<g >
<title>memcpy (439 samples, 0.04%)</title><rect x="689.0" y="1221" width="0.4" height="15.0" fill="rgb(215,102,45)" rx="2" ry="2" />
<text x="691.96" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__step_4316 (150 samples, 0.01%)</title><rect x="130.0" y="1269" width="0.2" height="15.0" fill="rgb(243,107,38)" rx="2" ry="2" />
<text x="133.04" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (177 samples, 0.01%)</title><rect x="525.8" y="981" width="0.1" height="15.0" fill="rgb(209,99,44)" rx="2" ry="2" />
<text x="528.77" y="991.5" ></text>
</g>
<g >
<title>ror64 (155 samples, 0.01%)</title><rect x="203.2" y="1157" width="0.2" height="15.0" fill="rgb(247,222,16)" rx="2" ry="2" />
<text x="206.25" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (116 samples, 0.01%)</title><rect x="618.2" y="1221" width="0.1" height="15.0" fill="rgb(227,178,11)" rx="2" ry="2" />
<text x="621.16" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (604 samples, 0.05%)</title><rect x="564.0" y="1157" width="0.6" height="15.0" fill="rgb(205,93,47)" rx="2" ry="2" />
<text x="567.02" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_6658 (988 samples, 0.08%)</title><rect x="107.8" y="1269" width="0.9" height="15.0" fill="rgb(226,107,27)" rx="2" ry="2" />
<text x="110.78" y="1279.5" ></text>
</g>
<g >
<title>memcpy (299 samples, 0.02%)</title><rect x="1123.8" y="1317" width="0.3" height="15.0" fill="rgb(224,124,30)" rx="2" ry="2" />
<text x="1126.79" y="1327.5" ></text>
</g>
<g >
<title>do_compare_val (217 samples, 0.02%)</title><rect x="478.4" y="1253" width="0.2" height="15.0" fill="rgb(253,157,41)" rx="2" ry="2" />
<text x="481.41" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (253 samples, 0.02%)</title><rect x="535.9" y="1093" width="0.3" height="15.0" fill="rgb(237,76,6)" rx="2" ry="2" />
<text x="538.93" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (449 samples, 0.04%)</title><rect x="73.7" y="1861" width="0.4" height="15.0" fill="rgb(217,135,19)" rx="2" ry="2" />
<text x="76.69" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (231 samples, 0.02%)</title><rect x="356.5" y="1173" width="0.3" height="15.0" fill="rgb(206,97,45)" rx="2" ry="2" />
<text x="359.53" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (5,529 samples, 0.45%)</title><rect x="397.6" y="1141" width="5.4" height="15.0" fill="rgb(247,170,33)" rx="2" ry="2" />
<text x="400.65" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (154 samples, 0.01%)</title><rect x="773.3" y="1141" width="0.1" height="15.0" fill="rgb(227,200,26)" rx="2" ry="2" />
<text x="776.29" y="1151.5" ></text>
</g>
<g >
<title>camlBigstring__init_1315 (197 samples, 0.02%)</title><rect x="130.5" y="1205" width="0.2" height="15.0" fill="rgb(250,24,39)" rx="2" ry="2" />
<text x="133.52" y="1215.5" ></text>
</g>
<g >
<title>blake2b_compress (351 samples, 0.03%)</title><rect x="246.1" y="1205" width="0.3" height="15.0" fill="rgb(221,161,40)" rx="2" ry="2" />
<text x="249.10" y="1215.5" ></text>
</g>
<g >
<title>mdb_dpage_free (746 samples, 0.06%)</title><rect x="1161.0" y="1429" width="0.7" height="15.0" fill="rgb(205,13,53)" rx="2" ry="2" />
<text x="1163.99" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (170 samples, 0.01%)</title><rect x="444.1" y="1205" width="0.1" height="15.0" fill="rgb(233,123,31)" rx="2" ry="2" />
<text x="447.05" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (110 samples, 0.01%)</title><rect x="116.4" y="1125" width="0.1" height="15.0" fill="rgb(217,118,16)" rx="2" ry="2" />
<text x="119.44" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,644 samples, 0.14%)</title><rect x="1186.3" y="181" width="1.6" height="15.0" fill="rgb(247,91,53)" rx="2" ry="2" />
<text x="1189.27" y="191.5" ></text>
</g>
<g >
<title>caml_int_compare (239 samples, 0.02%)</title><rect x="412.5" y="1173" width="0.2" height="15.0" fill="rgb(250,123,48)" rx="2" ry="2" />
<text x="415.49" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (406 samples, 0.03%)</title><rect x="603.1" y="1205" width="0.4" height="15.0" fill="rgb(220,67,10)" rx="2" ry="2" />
<text x="606.06" y="1215.5" ></text>
</g>
<g >
<title>caml_curry2_1 (134 samples, 0.01%)</title><rect x="795.5" y="1269" width="0.1" height="15.0" fill="rgb(234,201,2)" rx="2" ry="2" />
<text x="798.50" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_4610 (134 samples, 0.01%)</title><rect x="328.5" y="1301" width="0.1" height="15.0" fill="rgb(244,137,12)" rx="2" ry="2" />
<text x="331.47" y="1311.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (118 samples, 0.01%)</title><rect x="828.5" y="1093" width="0.1" height="15.0" fill="rgb(213,66,43)" rx="2" ry="2" />
<text x="831.53" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Store__of_hash_6539 (908 samples, 0.07%)</title><rect x="103.3" y="1253" width="0.9" height="15.0" fill="rgb(208,212,54)" rx="2" ry="2" />
<text x="106.30" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (121 samples, 0.01%)</title><rect x="420.5" y="1125" width="0.1" height="15.0" fill="rgb(227,88,43)" rx="2" ry="2" />
<text x="423.48" y="1135.5" ></text>
</g>
<g >
<title>blake2b_compress (1,832 samples, 0.15%)</title><rect x="266.0" y="1237" width="1.8" height="15.0" fill="rgb(218,159,0)" rx="2" ry="2" />
<text x="268.99" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (117 samples, 0.01%)</title><rect x="742.1" y="1237" width="0.1" height="15.0" fill="rgb(225,124,19)" rx="2" ry="2" />
<text x="745.11" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (677 samples, 0.06%)</title><rect x="835.5" y="1125" width="0.6" height="15.0" fill="rgb(220,205,42)" rx="2" ry="2" />
<text x="838.46" y="1135.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (385 samples, 0.03%)</title><rect x="1182.7" y="1813" width="0.3" height="15.0" fill="rgb(240,192,29)" rx="2" ry="2" />
<text x="1185.65" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1541" width="1.6" height="15.0" fill="rgb(226,195,22)" rx="2" ry="2" />
<text x="1189.27" y="1551.5" ></text>
</g>
<g >
<title>caml_garbage_collection (115 samples, 0.01%)</title><rect x="923.4" y="1365" width="0.1" height="15.0" fill="rgb(234,75,27)" rx="2" ry="2" />
<text x="926.39" y="1375.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (128 samples, 0.01%)</title><rect x="946.2" y="1077" width="0.1" height="15.0" fill="rgb(243,92,19)" rx="2" ry="2" />
<text x="949.21" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (122 samples, 0.01%)</title><rect x="707.8" y="1253" width="0.1" height="15.0" fill="rgb(213,212,29)" rx="2" ry="2" />
<text x="710.81" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (492 samples, 0.04%)</title><rect x="1185.1" y="1525" width="0.4" height="15.0" fill="rgb(245,47,41)" rx="2" ry="2" />
<text x="1188.07" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (126 samples, 0.01%)</title><rect x="1173.7" y="629" width="0.1" height="15.0" fill="rgb(222,106,35)" rx="2" ry="2" />
<text x="1176.68" y="639.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (1,084 samples, 0.09%)</title><rect x="377.1" y="1221" width="1.1" height="15.0" fill="rgb(215,73,26)" rx="2" ry="2" />
<text x="380.13" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7616 (182 samples, 0.01%)</title><rect x="309.3" y="1157" width="0.2" height="15.0" fill="rgb(210,171,1)" rx="2" ry="2" />
<text x="312.29" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (480 samples, 0.04%)</title><rect x="516.7" y="85" width="0.5" height="15.0" fill="rgb(228,68,30)" rx="2" ry="2" />
<text x="519.71" y="95.5" ></text>
</g>
<g >
<title>mdb_page_get (6,701 samples, 0.55%)</title><rect x="1047.8" y="1285" width="6.5" height="15.0" fill="rgb(232,24,14)" rx="2" ry="2" />
<text x="1050.77" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (743 samples, 0.06%)</title><rect x="647.6" y="1237" width="0.7" height="15.0" fill="rgb(229,139,34)" rx="2" ry="2" />
<text x="650.56" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (2,713 samples, 0.22%)</title><rect x="949.0" y="1125" width="2.6" height="15.0" fill="rgb(253,69,10)" rx="2" ry="2" />
<text x="951.98" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (1,574 samples, 0.13%)</title><rect x="222.3" y="1173" width="1.5" height="15.0" fill="rgb(210,4,37)" rx="2" ry="2" />
<text x="225.30" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (115 samples, 0.01%)</title><rect x="1167.7" y="1445" width="0.1" height="15.0" fill="rgb(216,110,42)" rx="2" ry="2" />
<text x="1170.65" y="1455.5" ></text>
</g>
<g >
<title>memset (161 samples, 0.01%)</title><rect x="667.6" y="1237" width="0.1" height="15.0" fill="rgb(227,69,19)" rx="2" ry="2" />
<text x="670.56" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__string_enum_1378 (821 samples, 0.07%)</title><rect x="151.9" y="1253" width="0.8" height="15.0" fill="rgb(226,83,29)" rx="2" ry="2" />
<text x="154.89" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (318 samples, 0.03%)</title><rect x="345.9" y="1093" width="0.3" height="15.0" fill="rgb(207,74,44)" rx="2" ry="2" />
<text x="348.89" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (141 samples, 0.01%)</title><rect x="23.6" y="1989" width="0.1" height="15.0" fill="rgb(217,71,29)" rx="2" ry="2" />
<text x="26.57" y="1999.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (739 samples, 0.06%)</title><rect x="795.9" y="1269" width="0.7" height="15.0" fill="rgb(247,44,22)" rx="2" ry="2" />
<text x="798.90" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (165 samples, 0.01%)</title><rect x="79.9" y="1749" width="0.2" height="15.0" fill="rgb(236,92,39)" rx="2" ry="2" />
<text x="82.93" y="1759.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1701" width="1.6" height="15.0" fill="rgb(228,46,54)" rx="2" ry="2" />
<text x="1189.27" y="1711.5" ></text>
</g>
<g >
<title>caml_alloc_string (387 samples, 0.03%)</title><rect x="891.7" y="1221" width="0.3" height="15.0" fill="rgb(229,46,30)" rx="2" ry="2" />
<text x="894.67" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (182 samples, 0.01%)</title><rect x="988.2" y="1269" width="0.1" height="15.0" fill="rgb(206,96,2)" rx="2" ry="2" />
<text x="991.15" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="501" width="1.6" height="15.0" fill="rgb(249,150,9)" rx="2" ry="2" />
<text x="1189.27" y="511.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (508 samples, 0.04%)</title><rect x="617.4" y="1285" width="0.5" height="15.0" fill="rgb(231,138,27)" rx="2" ry="2" />
<text x="620.39" y="1295.5" ></text>
</g>
<g >
<title>tty_ioctl (641 samples, 0.05%)</title><rect x="156.7" y="1253" width="0.7" height="15.0" fill="rgb(210,64,36)" rx="2" ry="2" />
<text x="159.73" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (151 samples, 0.01%)</title><rect x="194.0" y="1253" width="0.1" height="15.0" fill="rgb(243,123,35)" rx="2" ry="2" />
<text x="196.99" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (1,559 samples, 0.13%)</title><rect x="614.0" y="1269" width="1.6" height="15.0" fill="rgb(216,136,21)" rx="2" ry="2" />
<text x="617.04" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,259 samples, 0.19%)</title><rect x="516.2" y="933" width="2.1" height="15.0" fill="rgb(223,29,36)" rx="2" ry="2" />
<text x="519.15" y="943.5" ></text>
</g>
<g >
<title>ml_blake2b_final (1,011 samples, 0.08%)</title><rect x="498.3" y="1253" width="1.0" height="15.0" fill="rgb(240,50,41)" rx="2" ry="2" />
<text x="501.32" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (2,263 samples, 0.19%)</title><rect x="813.9" y="1253" width="2.2" height="15.0" fill="rgb(213,122,16)" rx="2" ry="2" />
<text x="816.86" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__mem_9187 (155 samples, 0.01%)</title><rect x="220.7" y="1285" width="0.1" height="15.0" fill="rgb(229,25,50)" rx="2" ry="2" />
<text x="223.67" y="1295.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (308 samples, 0.03%)</title><rect x="1182.7" y="1685" width="0.3" height="15.0" fill="rgb(219,19,38)" rx="2" ry="2" />
<text x="1185.67" y="1695.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (149 samples, 0.01%)</title><rect x="270.5" y="1189" width="0.1" height="15.0" fill="rgb(224,0,10)" rx="2" ry="2" />
<text x="273.50" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__return_2462 (208 samples, 0.02%)</title><rect x="745.0" y="1285" width="0.2" height="15.0" fill="rgb(242,177,15)" rx="2" ry="2" />
<text x="748.02" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (516 samples, 0.04%)</title><rect x="1148.7" y="1445" width="0.5" height="15.0" fill="rgb(208,123,16)" rx="2" ry="2" />
<text x="1151.70" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (115 samples, 0.01%)</title><rect x="550.2" y="1189" width="0.1" height="15.0" fill="rgb(206,223,41)" rx="2" ry="2" />
<text x="553.21" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__step_4316 (10,553 samples, 0.87%)</title><rect x="703.9" y="1349" width="10.2" height="15.0" fill="rgb(217,33,32)" rx="2" ry="2" />
<text x="706.92" y="1359.5" ></text>
</g>
<g >
<title>caml_string_equal (151 samples, 0.01%)</title><rect x="206.1" y="1157" width="0.2" height="15.0" fill="rgb(231,126,13)" rx="2" ry="2" />
<text x="209.11" y="1167.5" ></text>
</g>
<g >
<title>caml_pread (1,288 samples, 0.11%)</title><rect x="313.7" y="1173" width="1.3" height="15.0" fill="rgb(228,71,23)" rx="2" ry="2" />
<text x="316.71" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,916 samples, 0.16%)</title><rect x="226.0" y="1221" width="1.9" height="15.0" fill="rgb(229,132,23)" rx="2" ry="2" />
<text x="229.02" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (420 samples, 0.03%)</title><rect x="739.6" y="1189" width="0.4" height="15.0" fill="rgb(238,170,0)" rx="2" ry="2" />
<text x="742.56" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (135 samples, 0.01%)</title><rect x="112.9" y="1205" width="0.1" height="15.0" fill="rgb(244,146,26)" rx="2" ry="2" />
<text x="115.91" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9257 (183,606 samples, 15.09%)</title><rect x="990.1" y="1541" width="178.0" height="15.0" fill="rgb(206,113,7)" rx="2" ry="2" />
<text x="993.09" y="1551.5" >camlTezos_shell__Snapsh..</text>
</g>
<g >
<title>camlLmdb__fold_flags_1953 (204 samples, 0.02%)</title><rect x="858.7" y="1253" width="0.2" height="15.0" fill="rgb(238,73,34)" rx="2" ry="2" />
<text x="861.66" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (212 samples, 0.02%)</title><rect x="332.1" y="1253" width="0.2" height="15.0" fill="rgb(208,58,53)" rx="2" ry="2" />
<text x="335.13" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__check_allowed_bytes_1069 (133 samples, 0.01%)</title><rect x="1117.3" y="1333" width="0.1" height="15.0" fill="rgb(254,88,16)" rx="2" ry="2" />
<text x="1120.26" y="1343.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1,856 samples, 0.15%)</title><rect x="1002.9" y="1333" width="1.8" height="15.0" fill="rgb(226,88,12)" rx="2" ry="2" />
<text x="1005.88" y="1343.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (128 samples, 0.01%)</title><rect x="437.4" y="1189" width="0.2" height="15.0" fill="rgb(231,201,5)" rx="2" ry="2" />
<text x="440.45" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__first_pass_4196 (166 samples, 0.01%)</title><rect x="93.1" y="1253" width="0.2" height="15.0" fill="rgb(234,8,42)" rx="2" ry="2" />
<text x="96.09" y="1263.5" ></text>
</g>
<g >
<title>blake2b_compress (927 samples, 0.08%)</title><rect x="610.4" y="1157" width="0.9" height="15.0" fill="rgb(228,148,50)" rx="2" ry="2" />
<text x="613.38" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Helpers_services__register_6592 (751 samples, 0.06%)</title><rect x="1184.9" y="1877" width="0.8" height="15.0" fill="rgb(241,146,18)" rx="2" ry="2" />
<text x="1187.94" y="1887.5" ></text>
</g>
<g >
<title>caml_call_gc (763 samples, 0.06%)</title><rect x="745.3" y="1269" width="0.7" height="15.0" fill="rgb(237,96,15)" rx="2" ry="2" />
<text x="748.27" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (253 samples, 0.02%)</title><rect x="193.6" y="1269" width="0.2" height="15.0" fill="rgb(229,31,21)" rx="2" ry="2" />
<text x="196.58" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1605" width="1.6" height="15.0" fill="rgb(208,45,42)" rx="2" ry="2" />
<text x="1189.27" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (2,110 samples, 0.17%)</title><rect x="190.3" y="1285" width="2.0" height="15.0" fill="rgb(231,153,51)" rx="2" ry="2" />
<text x="193.30" y="1295.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (581 samples, 0.05%)</title><rect x="570.8" y="1013" width="0.5" height="15.0" fill="rgb(245,106,20)" rx="2" ry="2" />
<text x="573.78" y="1023.5" ></text>
</g>
<g >
<title>caml_call_gc (115 samples, 0.01%)</title><rect x="1165.5" y="1493" width="0.1" height="15.0" fill="rgb(247,124,1)" rx="2" ry="2" />
<text x="1168.47" y="1503.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__compute_4367 (1,937 samples, 0.16%)</title><rect x="1177.9" y="1285" width="1.9" height="15.0" fill="rgb(236,146,11)" rx="2" ry="2" />
<text x="1180.92" y="1295.5" ></text>
</g>
<g >
<title>blake2b_final (684 samples, 0.06%)</title><rect x="503.0" y="1157" width="0.7" height="15.0" fill="rgb(236,166,3)" rx="2" ry="2" />
<text x="506.01" y="1167.5" ></text>
</g>
<g >
<title>blake2b_compress (527 samples, 0.04%)</title><rect x="568.6" y="1013" width="0.5" height="15.0" fill="rgb(242,212,36)" rx="2" ry="2" />
<text x="571.63" y="1023.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (497 samples, 0.04%)</title><rect x="870.4" y="1173" width="0.5" height="15.0" fill="rgb(214,67,15)" rx="2" ry="2" />
<text x="873.39" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (803 samples, 0.07%)</title><rect x="739.4" y="1269" width="0.8" height="15.0" fill="rgb(249,228,49)" rx="2" ry="2" />
<text x="742.40" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (26,148 samples, 2.15%)</title><rect x="929.5" y="1221" width="25.4" height="15.0" fill="rgb(246,22,4)" rx="2" ry="2" />
<text x="932.53" y="1231.5" >c..</text>
</g>
<g >
<title>camlLwt__compare_1005 (373 samples, 0.03%)</title><rect x="1070.7" y="1365" width="0.4" height="15.0" fill="rgb(222,185,17)" rx="2" ry="2" />
<text x="1073.72" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (1,656 samples, 0.14%)</title><rect x="141.1" y="1349" width="1.6" height="15.0" fill="rgb(206,86,54)" rx="2" ry="2" />
<text x="144.11" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (348 samples, 0.03%)</title><rect x="463.7" y="1061" width="0.3" height="15.0" fill="rgb(240,154,2)" rx="2" ry="2" />
<text x="466.71" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,440 samples, 0.12%)</title><rect x="526.9" y="1045" width="1.4" height="15.0" fill="rgb(211,1,1)" rx="2" ry="2" />
<text x="529.95" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3393 (600 samples, 0.05%)</title><rect x="420.0" y="1189" width="0.6" height="15.0" fill="rgb(249,68,49)" rx="2" ry="2" />
<text x="423.01" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (925,189 samples, 76.03%)</title><rect x="92.4" y="1509" width="897.1" height="15.0" fill="rgb(230,216,36)" rx="2" ry="2" />
<text x="95.38" y="1519.5" >camlLwt__run_in_resolution_loop_2292</text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,117,475 samples, 91.83%)</title><rect x="92.3" y="1781" width="1083.6" height="15.0" fill="rgb(222,209,41)" rx="2" ry="2" />
<text x="95.32" y="1791.5" >camlStdlib__list__iter_1148</text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (268 samples, 0.02%)</title><rect x="395.7" y="1093" width="0.2" height="15.0" fill="rgb(217,29,0)" rx="2" ry="2" />
<text x="398.68" y="1103.5" ></text>
</g>
<g >
<title>caml_compare (271 samples, 0.02%)</title><rect x="214.2" y="1173" width="0.3" height="15.0" fill="rgb(236,182,24)" rx="2" ry="2" />
<text x="217.20" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_bytes_3189 (5,557 samples, 0.46%)</title><rect x="733.4" y="1301" width="5.4" height="15.0" fill="rgb(240,204,48)" rx="2" ry="2" />
<text x="736.38" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (552 samples, 0.05%)</title><rect x="1184.2" y="1637" width="0.5" height="15.0" fill="rgb(218,194,54)" rx="2" ry="2" />
<text x="1187.18" y="1647.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (403 samples, 0.03%)</title><rect x="223.4" y="1157" width="0.4" height="15.0" fill="rgb(206,189,36)" rx="2" ry="2" />
<text x="226.43" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (325 samples, 0.03%)</title><rect x="68.2" y="1893" width="0.3" height="15.0" fill="rgb(219,160,11)" rx="2" ry="2" />
<text x="71.17" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (182 samples, 0.01%)</title><rect x="1181.0" y="1125" width="0.1" height="15.0" fill="rgb(238,17,34)" rx="2" ry="2" />
<text x="1183.97" y="1135.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (255 samples, 0.02%)</title><rect x="690.1" y="1237" width="0.2" height="15.0" fill="rgb(244,101,47)" rx="2" ry="2" />
<text x="693.06" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1365" width="1.6" height="15.0" fill="rgb(236,208,46)" rx="2" ry="2" />
<text x="1189.27" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (107 samples, 0.01%)</title><rect x="485.0" y="1365" width="0.1" height="15.0" fill="rgb(211,57,40)" rx="2" ry="2" />
<text x="488.01" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (128 samples, 0.01%)</title><rect x="425.0" y="1189" width="0.1" height="15.0" fill="rgb(213,205,15)" rx="2" ry="2" />
<text x="427.97" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (530 samples, 0.04%)</title><rect x="583.8" y="981" width="0.6" height="15.0" fill="rgb(227,61,54)" rx="2" ry="2" />
<text x="586.84" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__insert_bucket_1969 (262 samples, 0.02%)</title><rect x="189.6" y="1221" width="0.3" height="15.0" fill="rgb(228,150,20)" rx="2" ry="2" />
<text x="192.64" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_in_bucket_2318 (655 samples, 0.05%)</title><rect x="191.7" y="1269" width="0.6" height="15.0" fill="rgb(233,205,38)" rx="2" ry="2" />
<text x="194.70" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8094 (187 samples, 0.02%)</title><rect x="302.4" y="1157" width="0.2" height="15.0" fill="rgb(209,98,18)" rx="2" ry="2" />
<text x="305.44" y="1167.5" ></text>
</g>
<g >
<title>ror64 (104 samples, 0.01%)</title><rect x="253.4" y="1173" width="0.1" height="15.0" fill="rgb(221,222,43)" rx="2" ry="2" />
<text x="256.41" y="1183.5" ></text>
</g>
<g >
<title>blake2b_final (600 samples, 0.05%)</title><rect x="504.6" y="1125" width="0.6" height="15.0" fill="rgb(221,114,42)" rx="2" ry="2" />
<text x="507.60" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__add_blob_4185 (2,514 samples, 0.21%)</title><rect x="98.3" y="1317" width="2.4" height="15.0" fill="rgb(247,114,10)" rx="2" ry="2" />
<text x="101.28" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3652 (632 samples, 0.05%)</title><rect x="187.4" y="1205" width="0.6" height="15.0" fill="rgb(225,193,8)" rx="2" ry="2" />
<text x="190.37" y="1215.5" ></text>
</g>
<g >
<title>caml_apply2 (395 samples, 0.03%)</title><rect x="304.8" y="1141" width="0.4" height="15.0" fill="rgb(221,29,35)" rx="2" ry="2" />
<text x="307.77" y="1151.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (213 samples, 0.02%)</title><rect x="108.1" y="1189" width="0.2" height="15.0" fill="rgb(248,118,45)" rx="2" ry="2" />
<text x="111.14" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Path__rdecons_1097 (172 samples, 0.01%)</title><rect x="235.1" y="1301" width="0.1" height="15.0" fill="rgb(205,207,53)" rx="2" ry="2" />
<text x="238.08" y="1311.5" ></text>
</g>
<g >
<title>camlLmdb__fun_3175 (145 samples, 0.01%)</title><rect x="1172.5" y="837" width="0.2" height="15.0" fill="rgb(225,166,4)" rx="2" ry="2" />
<text x="1175.55" y="847.5" ></text>
</g>
<g >
<title>rotr64 (149 samples, 0.01%)</title><rect x="507.9" y="1029" width="0.1" height="15.0" fill="rgb(248,200,18)" rx="2" ry="2" />
<text x="510.89" y="1039.5" ></text>
</g>
<g >
<title>caml_call_gc (116 samples, 0.01%)</title><rect x="702.6" y="1285" width="0.2" height="15.0" fill="rgb(231,92,28)" rx="2" ry="2" />
<text x="705.64" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (186 samples, 0.02%)</title><rect x="102.4" y="1109" width="0.2" height="15.0" fill="rgb(219,159,36)" rx="2" ry="2" />
<text x="105.40" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (164 samples, 0.01%)</title><rect x="539.2" y="1109" width="0.2" height="15.0" fill="rgb(252,223,2)" rx="2" ry="2" />
<text x="542.23" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (228 samples, 0.02%)</title><rect x="1167.9" y="1525" width="0.2" height="15.0" fill="rgb(213,76,2)" rx="2" ry="2" />
<text x="1170.90" y="1535.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (190 samples, 0.02%)</title><rect x="1167.3" y="1445" width="0.1" height="15.0" fill="rgb(212,155,53)" rx="2" ry="2" />
<text x="1170.26" y="1455.5" ></text>
</g>
<g >
<title>stub_mdb_put (434 samples, 0.04%)</title><rect x="485.9" y="1285" width="0.4" height="15.0" fill="rgb(249,48,11)" rx="2" ry="2" />
<text x="488.92" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (211 samples, 0.02%)</title><rect x="234.1" y="1317" width="0.2" height="15.0" fill="rgb(227,152,25)" rx="2" ry="2" />
<text x="237.05" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (607 samples, 0.05%)</title><rect x="953.6" y="1157" width="0.6" height="15.0" fill="rgb(248,147,16)" rx="2" ry="2" />
<text x="956.56" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (207 samples, 0.02%)</title><rect x="525.7" y="997" width="0.2" height="15.0" fill="rgb(237,105,19)" rx="2" ry="2" />
<text x="528.74" y="1007.5" ></text>
</g>
<g >
<title>caml_apply2 (151 samples, 0.01%)</title><rect x="497.8" y="1285" width="0.1" height="15.0" fill="rgb(238,41,47)" rx="2" ry="2" />
<text x="500.80" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (222 samples, 0.02%)</title><rect x="802.0" y="1237" width="0.2" height="15.0" fill="rgb(225,193,22)" rx="2" ry="2" />
<text x="805.03" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (188 samples, 0.02%)</title><rect x="904.6" y="1205" width="0.1" height="15.0" fill="rgb(207,187,14)" rx="2" ry="2" />
<text x="907.56" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (167 samples, 0.01%)</title><rect x="438.7" y="1237" width="0.2" height="15.0" fill="rgb(245,113,18)" rx="2" ry="2" />
<text x="441.74" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (118 samples, 0.01%)</title><rect x="972.4" y="1125" width="0.1" height="15.0" fill="rgb(215,229,10)" rx="2" ry="2" />
<text x="975.40" y="1135.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (370 samples, 0.03%)</title><rect x="97.4" y="1253" width="0.3" height="15.0" fill="rgb(241,197,53)" rx="2" ry="2" />
<text x="100.38" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (763 samples, 0.06%)</title><rect x="608.7" y="1237" width="0.7" height="15.0" fill="rgb(229,9,46)" rx="2" ry="2" />
<text x="611.69" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,155 samples, 0.09%)</title><rect x="712.5" y="1269" width="1.1" height="15.0" fill="rgb(238,87,11)" rx="2" ry="2" />
<text x="715.46" y="1279.5" ></text>
</g>
<g >
<title>mdb_cursor_touch (404 samples, 0.03%)</title><rect x="786.0" y="1205" width="0.3" height="15.0" fill="rgb(251,70,8)" rx="2" ry="2" />
<text x="788.95" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (254 samples, 0.02%)</title><rect x="907.0" y="1157" width="0.2" height="15.0" fill="rgb(221,98,18)" rx="2" ry="2" />
<text x="909.99" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (5,978 samples, 0.49%)</title><rect x="826.6" y="1125" width="5.8" height="15.0" fill="rgb(212,31,50)" rx="2" ry="2" />
<text x="829.55" y="1135.5" ></text>
</g>
<g >
<title>mdb_node_add (197 samples, 0.02%)</title><rect x="1067.8" y="1301" width="0.2" height="15.0" fill="rgb(219,192,22)" rx="2" ry="2" />
<text x="1070.81" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (112 samples, 0.01%)</title><rect x="597.4" y="1125" width="0.1" height="15.0" fill="rgb(231,69,8)" rx="2" ry="2" />
<text x="600.36" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (357 samples, 0.03%)</title><rect x="573.2" y="949" width="0.4" height="15.0" fill="rgb(217,46,40)" rx="2" ry="2" />
<text x="576.22" y="959.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,413 samples, 0.69%)</title><rect x="341.8" y="1173" width="8.1" height="15.0" fill="rgb(215,149,34)" rx="2" ry="2" />
<text x="344.75" y="1183.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (1,156 samples, 0.09%)</title><rect x="357.4" y="1157" width="1.1" height="15.0" fill="rgb(206,149,42)" rx="2" ry="2" />
<text x="360.40" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6727 (1,840 samples, 0.15%)</title><rect x="1180.0" y="1349" width="1.8" height="15.0" fill="rgb(224,2,49)" rx="2" ry="2" />
<text x="1183.03" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (4,970 samples, 0.41%)</title><rect x="321.1" y="1301" width="4.9" height="15.0" fill="rgb(238,160,22)" rx="2" ry="2" />
<text x="324.14" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__of_map_6917 (575 samples, 0.05%)</title><rect x="233.1" y="1285" width="0.6" height="15.0" fill="rgb(249,113,11)" rx="2" ry="2" />
<text x="236.14" y="1295.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_feed_bytes_1716 (195 samples, 0.02%)</title><rect x="254.0" y="1237" width="0.2" height="15.0" fill="rgb(252,52,35)" rx="2" ry="2" />
<text x="256.98" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (437 samples, 0.04%)</title><rect x="192.4" y="1285" width="0.4" height="15.0" fill="rgb(245,68,27)" rx="2" ry="2" />
<text x="195.40" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_10733 (444 samples, 0.04%)</title><rect x="93.6" y="1157" width="0.4" height="15.0" fill="rgb(248,19,7)" rx="2" ry="2" />
<text x="96.62" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (844 samples, 0.07%)</title><rect x="567.8" y="1109" width="0.8" height="15.0" fill="rgb(252,149,16)" rx="2" ry="2" />
<text x="570.76" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (152 samples, 0.01%)</title><rect x="469.9" y="1013" width="0.1" height="15.0" fill="rgb(209,77,9)" rx="2" ry="2" />
<text x="472.90" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_7369 (394 samples, 0.03%)</title><rect x="1176.4" y="1301" width="0.4" height="15.0" fill="rgb(205,70,12)" rx="2" ry="2" />
<text x="1179.40" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (288 samples, 0.02%)</title><rect x="277.0" y="1205" width="0.3" height="15.0" fill="rgb(226,90,51)" rx="2" ry="2" />
<text x="279.98" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (234 samples, 0.02%)</title><rect x="114.5" y="1205" width="0.2" height="15.0" fill="rgb(210,187,12)" rx="2" ry="2" />
<text x="117.48" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (814 samples, 0.07%)</title><rect x="560.6" y="1205" width="0.7" height="15.0" fill="rgb(216,17,8)" rx="2" ry="2" />
<text x="563.55" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (253 samples, 0.02%)</title><rect x="989.5" y="1573" width="0.2" height="15.0" fill="rgb(233,129,47)" rx="2" ry="2" />
<text x="992.50" y="1583.5" ></text>
</g>
<g >
<title>camlIndex__fun_4127 (118 samples, 0.01%)</title><rect x="415.2" y="1237" width="0.1" height="15.0" fill="rgb(227,99,17)" rx="2" ry="2" />
<text x="418.17" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6970 (295 samples, 0.02%)</title><rect x="243.1" y="1269" width="0.3" height="15.0" fill="rgb(236,175,7)" rx="2" ry="2" />
<text x="246.07" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__aux_6388 (175 samples, 0.01%)</title><rect x="1172.5" y="933" width="0.2" height="15.0" fill="rgb(226,156,32)" rx="2" ry="2" />
<text x="1175.52" y="943.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_bytes_3189 (148 samples, 0.01%)</title><rect x="489.7" y="1269" width="0.2" height="15.0" fill="rgb(246,202,5)" rx="2" ry="2" />
<text x="492.74" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (663 samples, 0.05%)</title><rect x="553.6" y="1269" width="0.6" height="15.0" fill="rgb(223,141,3)" rx="2" ry="2" />
<text x="556.60" y="1279.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (1,494 samples, 0.12%)</title><rect x="122.2" y="1189" width="1.5" height="15.0" fill="rgb(253,207,34)" rx="2" ry="2" />
<text x="125.25" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_loop_1883 (3,832 samples, 0.31%)</title><rect x="136.2" y="1317" width="3.8" height="15.0" fill="rgb(236,164,27)" rx="2" ry="2" />
<text x="139.24" y="1327.5" ></text>
</g>
<g >
<title>blake2b_final (615 samples, 0.05%)</title><rect x="506.0" y="1093" width="0.6" height="15.0" fill="rgb(212,228,37)" rx="2" ry="2" />
<text x="509.04" y="1103.5" ></text>
</g>
<g >
<title>mdb_cursor_set (466 samples, 0.04%)</title><rect x="487.2" y="1205" width="0.5" height="15.0" fill="rgb(219,136,4)" rx="2" ry="2" />
<text x="490.20" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (110 samples, 0.01%)</title><rect x="469.9" y="917" width="0.1" height="15.0" fill="rgb(226,229,27)" rx="2" ry="2" />
<text x="472.94" y="927.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (262 samples, 0.02%)</title><rect x="590.8" y="1093" width="0.2" height="15.0" fill="rgb(236,145,50)" rx="2" ry="2" />
<text x="593.77" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (174 samples, 0.01%)</title><rect x="99.2" y="1093" width="0.2" height="15.0" fill="rgb(232,97,13)" rx="2" ry="2" />
<text x="102.19" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__fun_4745 (12,076 samples, 0.99%)</title><rect x="1150.2" y="1509" width="11.7" height="15.0" fill="rgb(230,4,17)" rx="2" ry="2" />
<text x="1153.22" y="1519.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (1,120 samples, 0.09%)</title><rect x="685.3" y="1237" width="1.1" height="15.0" fill="rgb(253,63,50)" rx="2" ry="2" />
<text x="688.31" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (203 samples, 0.02%)</title><rect x="330.9" y="1317" width="0.2" height="15.0" fill="rgb(206,4,36)" rx="2" ry="2" />
<text x="333.91" y="1327.5" ></text>
</g>
<g >
<title>rotr64 (162 samples, 0.01%)</title><rect x="696.7" y="1237" width="0.1" height="15.0" fill="rgb(223,46,37)" rx="2" ry="2" />
<text x="699.66" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (532 samples, 0.04%)</title><rect x="800.5" y="1189" width="0.5" height="15.0" fill="rgb(248,170,1)" rx="2" ry="2" />
<text x="803.52" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (1,053 samples, 0.09%)</title><rect x="636.6" y="1269" width="1.0" height="15.0" fill="rgb(231,146,43)" rx="2" ry="2" />
<text x="639.61" y="1279.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (135 samples, 0.01%)</title><rect x="81.2" y="1925" width="0.1" height="15.0" fill="rgb(233,149,16)" rx="2" ry="2" />
<text x="84.18" y="1935.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (122 samples, 0.01%)</title><rect x="310.1" y="1173" width="0.1" height="15.0" fill="rgb(248,186,16)" rx="2" ry="2" />
<text x="313.07" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (112 samples, 0.01%)</title><rect x="620.2" y="1285" width="0.1" height="15.0" fill="rgb(219,68,21)" rx="2" ry="2" />
<text x="623.21" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (229 samples, 0.02%)</title><rect x="1186.6" y="85" width="0.3" height="15.0" fill="rgb(238,90,26)" rx="2" ry="2" />
<text x="1189.64" y="95.5" ></text>
</g>
<g >
<title>camlStdlib__string__unsafe_blits_1092 (2,505 samples, 0.21%)</title><rect x="792.3" y="1253" width="2.4" height="15.0" fill="rgb(244,61,21)" rx="2" ry="2" />
<text x="795.31" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int32_3598 (110 samples, 0.01%)</title><rect x="59.7" y="1861" width="0.1" height="15.0" fill="rgb(224,81,40)" rx="2" ry="2" />
<text x="62.69" y="1871.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (156 samples, 0.01%)</title><rect x="615.6" y="1221" width="0.2" height="15.0" fill="rgb(211,219,14)" rx="2" ry="2" />
<text x="618.64" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (451 samples, 0.04%)</title><rect x="123.8" y="1205" width="0.5" height="15.0" fill="rgb(238,146,48)" rx="2" ry="2" />
<text x="126.81" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (365 samples, 0.03%)</title><rect x="646.0" y="1189" width="0.4" height="15.0" fill="rgb(205,13,7)" rx="2" ry="2" />
<text x="649.01" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (1,324 samples, 0.11%)</title><rect x="109.9" y="1125" width="1.3" height="15.0" fill="rgb(223,6,1)" rx="2" ry="2" />
<text x="112.90" y="1135.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (128 samples, 0.01%)</title><rect x="877.2" y="1141" width="0.1" height="15.0" fill="rgb(208,16,40)" rx="2" ry="2" />
<text x="880.19" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (126 samples, 0.01%)</title><rect x="601.4" y="1141" width="0.1" height="15.0" fill="rgb(231,151,49)" rx="2" ry="2" />
<text x="604.39" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__iteri_1153 (1,932 samples, 0.16%)</title><rect x="1177.9" y="1269" width="1.9" height="15.0" fill="rgb(252,157,50)" rx="2" ry="2" />
<text x="1180.92" y="1279.5" ></text>
</g>
<g >
<title>rotr64 (154 samples, 0.01%)</title><rect x="620.9" y="1221" width="0.1" height="15.0" fill="rgb(216,33,53)" rx="2" ry="2" />
<text x="623.87" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (215 samples, 0.02%)</title><rect x="481.2" y="1317" width="0.2" height="15.0" fill="rgb(230,163,6)" rx="2" ry="2" />
<text x="484.22" y="1327.5" ></text>
</g>
<g >
<title>blake2b_final (191 samples, 0.02%)</title><rect x="574.0" y="885" width="0.1" height="15.0" fill="rgb(252,82,15)" rx="2" ry="2" />
<text x="576.95" y="895.5" ></text>
</g>
<g >
<title>caml_garbage_collection (126 samples, 0.01%)</title><rect x="500.5" y="1253" width="0.1" height="15.0" fill="rgb(244,229,51)" rx="2" ry="2" />
<text x="503.52" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (2,189 samples, 0.18%)</title><rect x="690.3" y="1237" width="2.1" height="15.0" fill="rgb(206,173,24)" rx="2" ry="2" />
<text x="693.31" y="1247.5" ></text>
</g>
<g >
<title>blake2b_final (590 samples, 0.05%)</title><rect x="564.0" y="1125" width="0.6" height="15.0" fill="rgb(245,93,11)" rx="2" ry="2" />
<text x="567.02" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (817 samples, 0.07%)</title><rect x="141.8" y="1317" width="0.8" height="15.0" fill="rgb(205,154,38)" rx="2" ry="2" />
<text x="144.81" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (13,142 samples, 1.08%)</title><rect x="622.6" y="1253" width="12.7" height="15.0" fill="rgb(231,179,3)" rx="2" ry="2" />
<text x="625.56" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (304 samples, 0.02%)</title><rect x="738.3" y="1189" width="0.3" height="15.0" fill="rgb(237,8,27)" rx="2" ry="2" />
<text x="741.26" y="1199.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned_erms (105 samples, 0.01%)</title><rect x="634.1" y="1189" width="0.1" height="15.0" fill="rgb(238,82,46)" rx="2" ry="2" />
<text x="637.08" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (23,698 samples, 1.95%)</title><rect x="567.0" y="1141" width="23.0" height="15.0" fill="rgb(219,43,27)" rx="2" ry="2" />
<text x="569.98" y="1151.5" >c..</text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (136 samples, 0.01%)</title><rect x="382.2" y="1221" width="0.1" height="15.0" fill="rgb(235,176,27)" rx="2" ry="2" />
<text x="385.16" y="1231.5" ></text>
</g>
<g >
<title>caml_apply5 (162 samples, 0.01%)</title><rect x="482.7" y="1349" width="0.1" height="15.0" fill="rgb(225,161,18)" rx="2" ry="2" />
<text x="485.69" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__fun_32653 (1,131 samples, 0.09%)</title><rect x="1176.4" y="1317" width="1.1" height="15.0" fill="rgb(237,186,18)" rx="2" ry="2" />
<text x="1179.40" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (2,005 samples, 0.16%)</title><rect x="552.7" y="1301" width="2.0" height="15.0" fill="rgb(229,138,39)" rx="2" ry="2" />
<text x="555.72" y="1311.5" ></text>
</g>
<g >
<title>caml_fl_add_blocks (120 samples, 0.01%)</title><rect x="160.2" y="1269" width="0.2" height="15.0" fill="rgb(247,214,3)" rx="2" ry="2" />
<text x="163.24" y="1279.5" ></text>
</g>
<g >
<title>caml_hash (301 samples, 0.02%)</title><rect x="452.4" y="1013" width="0.3" height="15.0" fill="rgb(207,26,2)" rx="2" ry="2" />
<text x="455.43" y="1023.5" ></text>
</g>
<g >
<title>caml_alloc_string (126 samples, 0.01%)</title><rect x="547.4" y="1221" width="0.2" height="15.0" fill="rgb(210,189,26)" rx="2" ry="2" />
<text x="550.44" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (250 samples, 0.02%)</title><rect x="676.5" y="1189" width="0.2" height="15.0" fill="rgb(218,70,40)" rx="2" ry="2" />
<text x="679.48" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (173 samples, 0.01%)</title><rect x="709.3" y="1237" width="0.2" height="15.0" fill="rgb(241,176,18)" rx="2" ry="2" />
<text x="712.31" y="1247.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (2,642 samples, 0.22%)</title><rect x="370.1" y="1237" width="2.5" height="15.0" fill="rgb(243,50,25)" rx="2" ry="2" />
<text x="373.08" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__fun_3074 (106 samples, 0.01%)</title><rect x="989.0" y="1269" width="0.1" height="15.0" fill="rgb(223,175,25)" rx="2" ry="2" />
<text x="992.01" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__add_dir_29884 (4,383 samples, 0.36%)</title><rect x="100.8" y="1301" width="4.3" height="15.0" fill="rgb(222,183,47)" rx="2" ry="2" />
<text x="103.82" y="1311.5" ></text>
</g>
<g >
<title>blake2b_final (672 samples, 0.06%)</title><rect x="500.7" y="1205" width="0.7" height="15.0" fill="rgb(247,16,18)" rx="2" ry="2" />
<text x="503.70" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (452 samples, 0.04%)</title><rect x="332.6" y="1269" width="0.5" height="15.0" fill="rgb(226,195,9)" rx="2" ry="2" />
<text x="335.61" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,057 samples, 0.09%)</title><rect x="969.4" y="1061" width="1.1" height="15.0" fill="rgb(242,206,51)" rx="2" ry="2" />
<text x="972.43" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (166 samples, 0.01%)</title><rect x="574.5" y="533" width="0.2" height="15.0" fill="rgb(254,108,25)" rx="2" ry="2" />
<text x="577.52" y="543.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (8,982 samples, 0.74%)</title><rect x="53.9" y="1909" width="8.7" height="15.0" fill="rgb(249,156,8)" rx="2" ry="2" />
<text x="56.86" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (345 samples, 0.03%)</title><rect x="446.7" y="1237" width="0.3" height="15.0" fill="rgb(245,84,27)" rx="2" ry="2" />
<text x="449.69" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (197 samples, 0.02%)</title><rect x="127.2" y="1093" width="0.2" height="15.0" fill="rgb(223,171,14)" rx="2" ry="2" />
<text x="130.18" y="1103.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (190 samples, 0.02%)</title><rect x="647.1" y="1173" width="0.2" height="15.0" fill="rgb(251,0,25)" rx="2" ry="2" />
<text x="650.09" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (50,877 samples, 4.18%)</title><rect x="559.3" y="1285" width="49.3" height="15.0" fill="rgb(227,97,31)" rx="2" ry="2" />
<text x="562.31" y="1295.5" >caml..</text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (87,889 samples, 7.22%)</title><rect x="385.5" y="1285" width="85.2" height="15.0" fill="rgb(230,146,26)" rx="2" ry="2" />
<text x="388.50" y="1295.5" >camlIrmin_..</text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (393 samples, 0.03%)</title><rect x="99.8" y="1205" width="0.4" height="15.0" fill="rgb(235,57,36)" rx="2" ry="2" />
<text x="102.83" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (130 samples, 0.01%)</title><rect x="616.2" y="1173" width="0.1" height="15.0" fill="rgb(239,51,11)" rx="2" ry="2" />
<text x="619.22" y="1183.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (118 samples, 0.01%)</title><rect x="415.6" y="1221" width="0.1" height="15.0" fill="rgb(209,133,54)" rx="2" ry="2" />
<text x="418.63" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3669 (240 samples, 0.02%)</title><rect x="57.1" y="1877" width="0.2" height="15.0" fill="rgb(217,104,27)" rx="2" ry="2" />
<text x="60.08" y="1887.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (710 samples, 0.06%)</title><rect x="801.9" y="1269" width="0.7" height="15.0" fill="rgb(233,23,3)" rx="2" ry="2" />
<text x="804.91" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1221" width="1.6" height="15.0" fill="rgb(248,149,38)" rx="2" ry="2" />
<text x="1189.27" y="1231.5" ></text>
</g>
<g >
<title>_IO_no_init (593 samples, 0.05%)</title><rect x="1124.5" y="1301" width="0.6" height="15.0" fill="rgb(232,46,53)" rx="2" ry="2" />
<text x="1127.48" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (195 samples, 0.02%)</title><rect x="62.2" y="1829" width="0.1" height="15.0" fill="rgb(222,78,9)" rx="2" ry="2" />
<text x="65.15" y="1839.5" ></text>
</g>
<g >
<title>caml_alloc_string (253 samples, 0.02%)</title><rect x="546.8" y="1205" width="0.3" height="15.0" fill="rgb(231,144,29)" rx="2" ry="2" />
<text x="549.82" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (469 samples, 0.04%)</title><rect x="454.7" y="965" width="0.5" height="15.0" fill="rgb(246,132,16)" rx="2" ry="2" />
<text x="457.72" y="975.5" ></text>
</g>
<g >
<title>camlLwt__run_callback_or_defer_it_inner_4254 (107 samples, 0.01%)</title><rect x="198.8" y="1333" width="0.1" height="15.0" fill="rgb(238,211,6)" rx="2" ry="2" />
<text x="201.83" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (134 samples, 0.01%)</title><rect x="586.7" y="1093" width="0.2" height="15.0" fill="rgb(246,52,26)" rx="2" ry="2" />
<text x="589.73" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,895 samples, 0.16%)</title><rect x="519.5" y="933" width="1.8" height="15.0" fill="rgb(230,27,50)" rx="2" ry="2" />
<text x="522.48" y="943.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (675 samples, 0.06%)</title><rect x="562.5" y="1205" width="0.6" height="15.0" fill="rgb(218,12,43)" rx="2" ry="2" />
<text x="565.49" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1013" width="1.6" height="15.0" fill="rgb(244,21,47)" rx="2" ry="2" />
<text x="1189.27" y="1023.5" ></text>
</g>
<g >
<title>sweep_slice (168 samples, 0.01%)</title><rect x="87.1" y="1813" width="0.2" height="15.0" fill="rgb(221,43,24)" rx="2" ry="2" />
<text x="90.13" y="1823.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (635 samples, 0.05%)</title><rect x="108.9" y="1157" width="0.6" height="15.0" fill="rgb(215,163,10)" rx="2" ry="2" />
<text x="111.92" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__map__cardinal_1485 (136 samples, 0.01%)</title><rect x="279.3" y="1237" width="0.1" height="15.0" fill="rgb(227,160,44)" rx="2" ry="2" />
<text x="282.29" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_initialized_string (435 samples, 0.04%)</title><rect x="162.2" y="1301" width="0.5" height="15.0" fill="rgb(230,213,27)" rx="2" ry="2" />
<text x="165.25" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (1,063 samples, 0.09%)</title><rect x="270.1" y="1237" width="1.0" height="15.0" fill="rgb(239,12,47)" rx="2" ry="2" />
<text x="273.05" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,016 samples, 0.08%)</title><rect x="550.7" y="1285" width="1.0" height="15.0" fill="rgb(225,75,3)" rx="2" ry="2" />
<text x="553.73" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__clear_map_6572 (119 samples, 0.01%)</title><rect x="477.6" y="1285" width="0.1" height="15.0" fill="rgb(237,62,1)" rx="2" ry="2" />
<text x="480.59" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1605" width="1.3" height="15.0" fill="rgb(238,207,23)" rx="2" ry="2" />
<text x="1175.52" y="1615.5" ></text>
</g>
<g >
<title>camlIrmin__Type__list_3633 (116 samples, 0.01%)</title><rect x="116.1" y="1157" width="0.2" height="15.0" fill="rgb(241,15,15)" rx="2" ry="2" />
<text x="119.15" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (193 samples, 0.02%)</title><rect x="574.5" y="613" width="0.2" height="15.0" fill="rgb(250,115,22)" rx="2" ry="2" />
<text x="577.51" y="623.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__make_1014 (315 samples, 0.03%)</title><rect x="61.6" y="1861" width="0.3" height="15.0" fill="rgb(215,138,51)" rx="2" ry="2" />
<text x="64.60" y="1871.5" ></text>
</g>
<g >
<title>mdb_page_search_root (7,739 samples, 0.64%)</title><rect x="861.9" y="1173" width="7.5" height="15.0" fill="rgb(235,216,20)" rx="2" ry="2" />
<text x="864.93" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (1,048 samples, 0.09%)</title><rect x="335.5" y="1253" width="1.0" height="15.0" fill="rgb(247,24,32)" rx="2" ry="2" />
<text x="338.51" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1541" width="6.2" height="15.0" fill="rgb(205,52,0)" rx="2" ry="2" />
<text x="1178.90" y="1551.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (697 samples, 0.06%)</title><rect x="201.3" y="1221" width="0.7" height="15.0" fill="rgb(220,146,23)" rx="2" ry="2" />
<text x="204.29" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_11520 (1,401 samples, 0.12%)</title><rect x="264.2" y="1269" width="1.4" height="15.0" fill="rgb(252,86,1)" rx="2" ry="2" />
<text x="267.23" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (2,402 samples, 0.20%)</title><rect x="344.0" y="1109" width="2.3" height="15.0" fill="rgb(244,190,53)" rx="2" ry="2" />
<text x="346.96" y="1119.5" ></text>
</g>
<g >
<title>blake2b_final (650 samples, 0.05%)</title><rect x="501.5" y="1189" width="0.6" height="15.0" fill="rgb(228,121,11)" rx="2" ry="2" />
<text x="504.48" y="1199.5" ></text>
</g>
<g >
<title>caml_c_call (2,106 samples, 0.17%)</title><rect x="15.9" y="2037" width="2.1" height="15.0" fill="rgb(211,94,7)" rx="2" ry="2" />
<text x="18.95" y="2047.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (746 samples, 0.06%)</title><rect x="532.0" y="1077" width="0.8" height="15.0" fill="rgb(221,134,7)" rx="2" ry="2" />
<text x="535.05" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (119 samples, 0.01%)</title><rect x="848.7" y="1205" width="0.1" height="15.0" fill="rgb(221,49,19)" rx="2" ry="2" />
<text x="851.65" y="1215.5" ></text>
</g>
<g >
<title>ml_blake2b_final (192 samples, 0.02%)</title><rect x="574.0" y="901" width="0.1" height="15.0" fill="rgb(223,108,9)" rx="2" ry="2" />
<text x="576.95" y="911.5" ></text>
</g>
<g >
<title>__libc_pread64 (171 samples, 0.01%)</title><rect x="467.9" y="965" width="0.2" height="15.0" fill="rgb(234,217,18)" rx="2" ry="2" />
<text x="470.90" y="975.5" ></text>
</g>
<g >
<title>blake2b_compress (516 samples, 0.04%)</title><rect x="504.6" y="1109" width="0.5" height="15.0" fill="rgb(207,113,43)" rx="2" ry="2" />
<text x="507.62" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1749" width="1.6" height="15.0" fill="rgb(234,108,6)" rx="2" ry="2" />
<text x="1189.27" y="1759.5" ></text>
</g>
<g >
<title>ml_blake2b_update (625 samples, 0.05%)</title><rect x="646.9" y="1221" width="0.6" height="15.0" fill="rgb(235,96,10)" rx="2" ry="2" />
<text x="649.88" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (628 samples, 0.05%)</title><rect x="814.4" y="1205" width="0.6" height="15.0" fill="rgb(238,15,22)" rx="2" ry="2" />
<text x="817.44" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (3,519 samples, 0.29%)</title><rect x="207.8" y="1157" width="3.4" height="15.0" fill="rgb(238,53,25)" rx="2" ry="2" />
<text x="210.82" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (106 samples, 0.01%)</title><rect x="541.0" y="1157" width="0.1" height="15.0" fill="rgb(234,228,35)" rx="2" ry="2" />
<text x="544.04" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (172 samples, 0.01%)</title><rect x="986.7" y="1349" width="0.2" height="15.0" fill="rgb(214,208,3)" rx="2" ry="2" />
<text x="989.71" y="1359.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (4,359 samples, 0.36%)</title><rect x="476.1" y="1317" width="4.2" height="15.0" fill="rgb(249,108,32)" rx="2" ry="2" />
<text x="479.06" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7616 (556 samples, 0.05%)</title><rect x="298.1" y="1141" width="0.5" height="15.0" fill="rgb(232,169,24)" rx="2" ry="2" />
<text x="301.06" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (394 samples, 0.03%)</title><rect x="796.2" y="1189" width="0.4" height="15.0" fill="rgb(234,203,34)" rx="2" ry="2" />
<text x="799.17" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (758 samples, 0.06%)</title><rect x="946.3" y="1077" width="0.8" height="15.0" fill="rgb(227,77,2)" rx="2" ry="2" />
<text x="949.33" y="1087.5" ></text>
</g>
<g >
<title>uECC_verify (206 samples, 0.02%)</title><rect x="1173.3" y="725" width="0.2" height="15.0" fill="rgb(233,190,13)" rx="2" ry="2" />
<text x="1176.28" y="735.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (482 samples, 0.04%)</title><rect x="75.7" y="1877" width="0.5" height="15.0" fill="rgb(250,55,44)" rx="2" ry="2" />
<text x="78.71" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_9727 (207 samples, 0.02%)</title><rect x="468.7" y="1141" width="0.2" height="15.0" fill="rgb(248,23,36)" rx="2" ry="2" />
<text x="471.67" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (127 samples, 0.01%)</title><rect x="604.6" y="1173" width="0.1" height="15.0" fill="rgb(211,205,13)" rx="2" ry="2" />
<text x="607.61" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,103 samples, 0.09%)</title><rect x="452.1" y="1061" width="1.1" height="15.0" fill="rgb(206,178,40)" rx="2" ry="2" />
<text x="455.12" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (171 samples, 0.01%)</title><rect x="151.7" y="1221" width="0.2" height="15.0" fill="rgb(205,220,8)" rx="2" ry="2" />
<text x="154.70" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (820 samples, 0.07%)</title><rect x="558.4" y="1269" width="0.8" height="15.0" fill="rgb(242,149,13)" rx="2" ry="2" />
<text x="561.36" y="1279.5" ></text>
</g>
<g >
<title>caml_blit_bytes (257 samples, 0.02%)</title><rect x="903.5" y="1237" width="0.2" height="15.0" fill="rgb(238,226,24)" rx="2" ry="2" />
<text x="906.48" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (726 samples, 0.06%)</title><rect x="613.3" y="1285" width="0.7" height="15.0" fill="rgb(217,78,21)" rx="2" ry="2" />
<text x="616.27" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (1,339 samples, 0.11%)</title><rect x="376.9" y="1237" width="1.3" height="15.0" fill="rgb(220,212,4)" rx="2" ry="2" />
<text x="379.89" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (305 samples, 0.03%)</title><rect x="971.8" y="1125" width="0.3" height="15.0" fill="rgb(231,192,21)" rx="2" ry="2" />
<text x="974.81" y="1135.5" ></text>
</g>
<g >
<title>caml_alloc_string (353 samples, 0.03%)</title><rect x="607.4" y="1237" width="0.3" height="15.0" fill="rgb(221,201,14)" rx="2" ry="2" />
<text x="610.40" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (1,876 samples, 0.15%)</title><rect x="1177.9" y="1237" width="1.8" height="15.0" fill="rgb(212,121,16)" rx="2" ry="2" />
<text x="1180.92" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (152 samples, 0.01%)</title><rect x="554.4" y="1237" width="0.1" height="15.0" fill="rgb(205,54,17)" rx="2" ry="2" />
<text x="557.39" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (211 samples, 0.02%)</title><rect x="885.4" y="1189" width="0.2" height="15.0" fill="rgb(228,151,32)" rx="2" ry="2" />
<text x="888.38" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (623 samples, 0.05%)</title><rect x="56.3" y="1845" width="0.6" height="15.0" fill="rgb(206,19,37)" rx="2" ry="2" />
<text x="59.33" y="1855.5" ></text>
</g>
<g >
<title>caml_garbage_collection (106 samples, 0.01%)</title><rect x="331.3" y="1317" width="0.1" height="15.0" fill="rgb(254,49,19)" rx="2" ry="2" />
<text x="334.30" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (104 samples, 0.01%)</title><rect x="192.9" y="1269" width="0.1" height="15.0" fill="rgb(233,143,38)" rx="2" ry="2" />
<text x="195.87" y="1279.5" ></text>
</g>
<g >
<title>camlDigestif__feed_1903 (128 samples, 0.01%)</title><rect x="245.6" y="1253" width="0.1" height="15.0" fill="rgb(248,205,34)" rx="2" ry="2" />
<text x="248.58" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (634 samples, 0.05%)</title><rect x="263.3" y="1221" width="0.6" height="15.0" fill="rgb(229,99,0)" rx="2" ry="2" />
<text x="266.30" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (160 samples, 0.01%)</title><rect x="213.0" y="1141" width="0.1" height="15.0" fill="rgb(219,41,5)" rx="2" ry="2" />
<text x="215.97" y="1151.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (194 samples, 0.02%)</title><rect x="633.9" y="1189" width="0.1" height="15.0" fill="rgb(206,1,0)" rx="2" ry="2" />
<text x="636.85" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__update_1079 (150 samples, 0.01%)</title><rect x="616.7" y="1237" width="0.1" height="15.0" fill="rgb(215,112,26)" rx="2" ry="2" />
<text x="619.70" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (190 samples, 0.02%)</title><rect x="649.5" y="1205" width="0.2" height="15.0" fill="rgb(246,168,37)" rx="2" ry="2" />
<text x="652.54" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (1,165 samples, 0.10%)</title><rect x="1104.0" y="1349" width="1.1" height="15.0" fill="rgb(214,132,1)" rx="2" ry="2" />
<text x="1106.99" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (115 samples, 0.01%)</title><rect x="733.2" y="1253" width="0.1" height="15.0" fill="rgb(239,145,52)" rx="2" ry="2" />
<text x="736.17" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (144,514 samples, 11.88%)</title><rect x="993.8" y="1429" width="140.1" height="15.0" fill="rgb(218,210,13)" rx="2" ry="2" />
<text x="996.78" y="1439.5" >camlLwt__apply_3372</text>
</g>
<g >
<title>camlLwt__callback_2614 (1,113,941 samples, 91.54%)</title><rect x="92.4" y="1669" width="1080.1" height="15.0" fill="rgb(249,155,12)" rx="2" ry="2" />
<text x="95.38" y="1679.5" >camlLwt__callback_2614</text>
</g>
<g >
<title>mdb_node_search (270 samples, 0.02%)</title><rect x="487.3" y="1157" width="0.3" height="15.0" fill="rgb(239,147,20)" rx="2" ry="2" />
<text x="490.32" y="1167.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (283 samples, 0.02%)</title><rect x="294.8" y="1125" width="0.3" height="15.0" fill="rgb(244,35,21)" rx="2" ry="2" />
<text x="297.80" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (309 samples, 0.03%)</title><rect x="808.5" y="1221" width="0.3" height="15.0" fill="rgb(231,48,12)" rx="2" ry="2" />
<text x="811.48" y="1231.5" ></text>
</g>
<g >
<title>do_compaction (945 samples, 0.08%)</title><rect x="529.2" y="981" width="0.9" height="15.0" fill="rgb(239,52,50)" rx="2" ry="2" />
<text x="532.18" y="991.5" ></text>
</g>
<g >
<title>caml_apply2 (137 samples, 0.01%)</title><rect x="409.3" y="1125" width="0.1" height="15.0" fill="rgb(227,36,4)" rx="2" ry="2" />
<text x="412.30" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (16,740 samples, 1.38%)</title><rect x="1098.1" y="1397" width="16.2" height="15.0" fill="rgb(228,173,6)" rx="2" ry="2" />
<text x="1101.10" y="1407.5" ></text>
</g>
<g >
<title>caml_call_gc (734 samples, 0.06%)</title><rect x="817.7" y="1173" width="0.7" height="15.0" fill="rgb(221,139,54)" rx="2" ry="2" />
<text x="820.70" y="1183.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (133 samples, 0.01%)</title><rect x="91.9" y="1973" width="0.1" height="15.0" fill="rgb(228,100,9)" rx="2" ry="2" />
<text x="94.92" y="1983.5" ></text>
</g>
<g >
<title>mark_slice_darken (131 samples, 0.01%)</title><rect x="650.9" y="1253" width="0.2" height="15.0" fill="rgb(213,136,40)" rx="2" ry="2" />
<text x="653.94" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (2,484 samples, 0.20%)</title><rect x="442.7" y="1237" width="2.4" height="15.0" fill="rgb(254,76,53)" rx="2" ry="2" />
<text x="445.69" y="1247.5" ></text>
</g>
<g >
<title>blake2b_compress (539 samples, 0.04%)</title><rect x="507.5" y="1045" width="0.5" height="15.0" fill="rgb(217,213,13)" rx="2" ry="2" />
<text x="510.51" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__format__scan_push_1920 (134 samples, 0.01%)</title><rect x="1164.6" y="1493" width="0.2" height="15.0" fill="rgb(213,197,20)" rx="2" ry="2" />
<text x="1167.62" y="1503.5" ></text>
</g>
<g >
<title>blake2b_final (522 samples, 0.04%)</title><rect x="512.1" y="981" width="0.5" height="15.0" fill="rgb(213,204,54)" rx="2" ry="2" />
<text x="515.07" y="991.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_10565 (292 samples, 0.02%)</title><rect x="108.4" y="1237" width="0.3" height="15.0" fill="rgb(227,66,35)" rx="2" ry="2" />
<text x="111.41" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (126 samples, 0.01%)</title><rect x="264.9" y="1221" width="0.2" height="15.0" fill="rgb(239,77,52)" rx="2" ry="2" />
<text x="267.93" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1797" width="1.6" height="15.0" fill="rgb(227,88,43)" rx="2" ry="2" />
<text x="1189.27" y="1807.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (1,276 samples, 0.10%)</title><rect x="716.9" y="1285" width="1.3" height="15.0" fill="rgb(246,69,38)" rx="2" ry="2" />
<text x="719.95" y="1295.5" ></text>
</g>
<g >
<title>rotr64 (128 samples, 0.01%)</title><rect x="513.0" y="933" width="0.2" height="15.0" fill="rgb(216,218,20)" rx="2" ry="2" />
<text x="516.05" y="943.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (407 samples, 0.03%)</title><rect x="976.3" y="1141" width="0.4" height="15.0" fill="rgb(249,128,50)" rx="2" ry="2" />
<text x="979.30" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (788 samples, 0.06%)</title><rect x="463.7" y="1093" width="0.8" height="15.0" fill="rgb(229,79,47)" rx="2" ry="2" />
<text x="466.70" y="1103.5" ></text>
</g>
<g >
<title>caml_string_compare (293 samples, 0.02%)</title><rect x="277.5" y="1189" width="0.3" height="15.0" fill="rgb(242,225,50)" rx="2" ry="2" />
<text x="280.47" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (183 samples, 0.02%)</title><rect x="346.9" y="1093" width="0.1" height="15.0" fill="rgb(253,24,22)" rx="2" ry="2" />
<text x="349.85" y="1103.5" ></text>
</g>
<g >
<title>__lseek64 (318 samples, 0.03%)</title><rect x="922.0" y="1285" width="0.3" height="15.0" fill="rgb(236,168,50)" rx="2" ry="2" />
<text x="924.97" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (131 samples, 0.01%)</title><rect x="336.7" y="1221" width="0.1" height="15.0" fill="rgb(235,2,3)" rx="2" ry="2" />
<text x="339.71" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (1,114 samples, 0.09%)</title><rect x="900.5" y="1221" width="1.1" height="15.0" fill="rgb(214,55,51)" rx="2" ry="2" />
<text x="903.47" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__leaf_5017 (641 samples, 0.05%)</title><rect x="649.2" y="1285" width="0.6" height="15.0" fill="rgb(223,89,19)" rx="2" ry="2" />
<text x="652.20" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (34,509 samples, 2.84%)</title><rect x="849.0" y="1285" width="33.5" height="15.0" fill="rgb(236,70,4)" rx="2" ry="2" />
<text x="852.04" y="1295.5" >ca..</text>
</g>
<g >
<title>invert_pointer_at (269 samples, 0.02%)</title><rect x="520.2" y="869" width="0.3" height="15.0" fill="rgb(251,186,33)" rx="2" ry="2" />
<text x="523.23" y="879.5" ></text>
</g>
<g >
<title>mdb_page_touch (3,263 samples, 0.27%)</title><rect x="728.0" y="1221" width="3.1" height="15.0" fill="rgb(221,210,27)" rx="2" ry="2" />
<text x="730.96" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (820 samples, 0.07%)</title><rect x="895.1" y="1173" width="0.8" height="15.0" fill="rgb(218,213,22)" rx="2" ry="2" />
<text x="898.10" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (152 samples, 0.01%)</title><rect x="134.8" y="1381" width="0.1" height="15.0" fill="rgb(211,104,26)" rx="2" ry="2" />
<text x="137.76" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (330 samples, 0.03%)</title><rect x="179.2" y="1141" width="0.3" height="15.0" fill="rgb(243,103,44)" rx="2" ry="2" />
<text x="182.16" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (206 samples, 0.02%)</title><rect x="308.0" y="1141" width="0.2" height="15.0" fill="rgb(247,17,0)" rx="2" ry="2" />
<text x="311.04" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (746 samples, 0.06%)</title><rect x="488.6" y="1285" width="0.8" height="15.0" fill="rgb(232,6,44)" rx="2" ry="2" />
<text x="491.64" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (163 samples, 0.01%)</title><rect x="126.4" y="981" width="0.2" height="15.0" fill="rgb(216,9,22)" rx="2" ry="2" />
<text x="129.45" y="991.5" ></text>
</g>
<g >
<title>mark_slice (127 samples, 0.01%)</title><rect x="986.7" y="1301" width="0.2" height="15.0" fill="rgb(208,125,48)" rx="2" ry="2" />
<text x="989.73" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2613 (302 samples, 0.02%)</title><rect x="927.8" y="1237" width="0.3" height="15.0" fill="rgb(232,157,7)" rx="2" ry="2" />
<text x="930.83" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (154 samples, 0.01%)</title><rect x="239.9" y="1269" width="0.2" height="15.0" fill="rgb(212,181,15)" rx="2" ry="2" />
<text x="242.92" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (116 samples, 0.01%)</title><rect x="739.3" y="1269" width="0.1" height="15.0" fill="rgb(221,48,3)" rx="2" ry="2" />
<text x="742.26" y="1279.5" ></text>
</g>
<g >
<title>Hacl_Impl_Ed25519_Verify_verify_ (112 samples, 0.01%)</title><rect x="1172.8" y="693" width="0.1" height="15.0" fill="rgb(225,190,42)" rx="2" ry="2" />
<text x="1175.83" y="703.5" ></text>
</g>
<g >
<title>caml_blit_bytes (249 samples, 0.02%)</title><rect x="807.3" y="1221" width="0.2" height="15.0" fill="rgb(223,188,52)" rx="2" ry="2" />
<text x="810.27" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (133 samples, 0.01%)</title><rect x="540.8" y="1157" width="0.2" height="15.0" fill="rgb(234,79,32)" rx="2" ry="2" />
<text x="543.83" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (106 samples, 0.01%)</title><rect x="151.8" y="1189" width="0.1" height="15.0" fill="rgb(251,32,29)" rx="2" ry="2" />
<text x="154.77" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__clear_info_6573 (388 samples, 0.03%)</title><rect x="471.9" y="1285" width="0.4" height="15.0" fill="rgb(218,38,45)" rx="2" ry="2" />
<text x="474.89" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__fun_4343 (109 samples, 0.01%)</title><rect x="76.3" y="1893" width="0.1" height="15.0" fill="rgb(207,206,32)" rx="2" ry="2" />
<text x="79.28" y="1903.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (617 samples, 0.05%)</title><rect x="502.3" y="1221" width="0.6" height="15.0" fill="rgb(240,127,18)" rx="2" ry="2" />
<text x="505.27" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (552 samples, 0.05%)</title><rect x="1184.2" y="1701" width="0.5" height="15.0" fill="rgb(213,73,28)" rx="2" ry="2" />
<text x="1187.18" y="1711.5" ></text>
</g>
<g >
<title>common_file_perm (104 samples, 0.01%)</title><rect x="314.7" y="1045" width="0.1" height="15.0" fill="rgb(226,56,49)" rx="2" ry="2" />
<text x="317.75" y="1055.5" ></text>
</g>
<g >
<title>mark_slice (1,720 samples, 0.14%)</title><rect x="942.1" y="1077" width="1.6" height="15.0" fill="rgb(211,38,17)" rx="2" ry="2" />
<text x="945.08" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3611 (163 samples, 0.01%)</title><rect x="438.3" y="1237" width="0.2" height="15.0" fill="rgb(253,28,31)" rx="2" ry="2" />
<text x="441.31" y="1247.5" ></text>
</g>
<g >
<title>caml_hash (209 samples, 0.02%)</title><rect x="414.4" y="1157" width="0.2" height="15.0" fill="rgb(226,130,3)" rx="2" ry="2" />
<text x="417.36" y="1167.5" ></text>
</g>
<g >
<title>caml_add_to_heap (130 samples, 0.01%)</title><rect x="983.7" y="1253" width="0.1" height="15.0" fill="rgb(251,76,16)" rx="2" ry="2" />
<text x="986.66" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (184 samples, 0.02%)</title><rect x="548.8" y="1237" width="0.2" height="15.0" fill="rgb(206,83,25)" rx="2" ry="2" />
<text x="551.84" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (1,152 samples, 0.09%)</title><rect x="98.7" y="1221" width="1.1" height="15.0" fill="rgb(246,3,19)" rx="2" ry="2" />
<text x="101.71" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (551 samples, 0.05%)</title><rect x="893.5" y="1157" width="0.6" height="15.0" fill="rgb(247,89,17)" rx="2" ry="2" />
<text x="896.52" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,444 samples, 0.20%)</title><rect x="690.1" y="1253" width="2.3" height="15.0" fill="rgb(252,85,2)" rx="2" ry="2" />
<text x="693.06" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (124 samples, 0.01%)</title><rect x="585.2" y="1061" width="0.2" height="15.0" fill="rgb(225,89,25)" rx="2" ry="2" />
<text x="588.25" y="1071.5" ></text>
</g>
<g >
<title>mdb_mid2l_search (872 samples, 0.07%)</title><rect x="1019.1" y="1285" width="0.8" height="15.0" fill="rgb(213,32,45)" rx="2" ry="2" />
<text x="1022.08" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (388 samples, 0.03%)</title><rect x="233.2" y="1269" width="0.4" height="15.0" fill="rgb(253,155,7)" rx="2" ry="2" />
<text x="236.18" y="1279.5" ></text>
</g>
<g >
<title>expand_heap (133 samples, 0.01%)</title><rect x="983.7" y="1269" width="0.1" height="15.0" fill="rgb(230,170,43)" rx="2" ry="2" />
<text x="986.66" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (162 samples, 0.01%)</title><rect x="1183.3" y="1525" width="0.2" height="15.0" fill="rgb(238,211,15)" rx="2" ry="2" />
<text x="1186.31" y="1535.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (8,611 samples, 0.71%)</title><rect x="824.0" y="1141" width="8.4" height="15.0" fill="rgb(209,149,52)" rx="2" ry="2" />
<text x="827.05" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (107 samples, 0.01%)</title><rect x="599.2" y="1125" width="0.1" height="15.0" fill="rgb(246,85,3)" rx="2" ry="2" />
<text x="602.18" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (2,671 samples, 0.22%)</title><rect x="697.2" y="1285" width="2.6" height="15.0" fill="rgb(252,43,22)" rx="2" ry="2" />
<text x="700.23" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (247 samples, 0.02%)</title><rect x="472.6" y="1237" width="0.2" height="15.0" fill="rgb(212,228,30)" rx="2" ry="2" />
<text x="475.60" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,819 samples, 0.15%)</title><rect x="79.2" y="1829" width="1.8" height="15.0" fill="rgb(227,59,1)" rx="2" ry="2" />
<text x="82.20" y="1839.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6706 (164 samples, 0.01%)</title><rect x="54.0" y="1893" width="0.2" height="15.0" fill="rgb(208,221,43)" rx="2" ry="2" />
<text x="57.05" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6076 (236 samples, 0.02%)</title><rect x="154.9" y="1365" width="0.3" height="15.0" fill="rgb(214,203,31)" rx="2" ry="2" />
<text x="157.94" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (162 samples, 0.01%)</title><rect x="574.5" y="517" width="0.2" height="15.0" fill="rgb(231,44,54)" rx="2" ry="2" />
<text x="577.52" y="527.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (1,836 samples, 0.15%)</title><rect x="688.1" y="1269" width="1.8" height="15.0" fill="rgb(254,116,0)" rx="2" ry="2" />
<text x="691.12" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (198 samples, 0.02%)</title><rect x="98.7" y="1173" width="0.2" height="15.0" fill="rgb(234,208,17)" rx="2" ry="2" />
<text x="101.71" y="1183.5" ></text>
</g>
<g >
<title>memmove (281 samples, 0.02%)</title><rect x="1113.4" y="1317" width="0.3" height="15.0" fill="rgb(213,113,10)" rx="2" ry="2" />
<text x="1116.39" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (199 samples, 0.02%)</title><rect x="848.6" y="1269" width="0.2" height="15.0" fill="rgb(244,213,39)" rx="2" ry="2" />
<text x="851.61" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (233 samples, 0.02%)</title><rect x="599.1" y="1173" width="0.2" height="15.0" fill="rgb(225,160,33)" rx="2" ry="2" />
<text x="602.11" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (579 samples, 0.05%)</title><rect x="701.0" y="1237" width="0.6" height="15.0" fill="rgb(241,23,3)" rx="2" ry="2" />
<text x="703.99" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (124 samples, 0.01%)</title><rect x="538.1" y="1125" width="0.1" height="15.0" fill="rgb(214,183,42)" rx="2" ry="2" />
<text x="541.09" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (925,189 samples, 76.03%)</title><rect x="92.4" y="1493" width="897.1" height="15.0" fill="rgb(213,11,11)" rx="2" ry="2" />
<text x="95.38" y="1503.5" >camlLwt__iter_callback_list_2247</text>
</g>
<g >
<title>caml_next_frame_descriptor (6,557 samples, 0.54%)</title><rect x="39.8" y="2005" width="6.4" height="15.0" fill="rgb(251,206,27)" rx="2" ry="2" />
<text x="42.80" y="2015.5" ></text>
</g>
<g >
<title>mark_slice_darken (113 samples, 0.01%)</title><rect x="522.6" y="901" width="0.1" height="15.0" fill="rgb(245,14,7)" rx="2" ry="2" />
<text x="525.60" y="911.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (569 samples, 0.05%)</title><rect x="549.4" y="1253" width="0.5" height="15.0" fill="rgb(222,126,0)" rx="2" ry="2" />
<text x="552.39" y="1263.5" ></text>
</g>
<g >
<title>ext4_write_checks (163 samples, 0.01%)</title><rect x="1159.7" y="1301" width="0.2" height="15.0" fill="rgb(213,192,16)" rx="2" ry="2" />
<text x="1162.72" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (152 samples, 0.01%)</title><rect x="221.1" y="1221" width="0.1" height="15.0" fill="rgb(214,142,32)" rx="2" ry="2" />
<text x="224.06" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (626 samples, 0.05%)</title><rect x="801.3" y="1237" width="0.6" height="15.0" fill="rgb(205,179,30)" rx="2" ry="2" />
<text x="804.30" y="1247.5" ></text>
</g>
<g >
<title>caml_pread (413 samples, 0.03%)</title><rect x="348.8" y="1109" width="0.4" height="15.0" fill="rgb(232,199,16)" rx="2" ry="2" />
<text x="351.82" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (122 samples, 0.01%)</title><rect x="518.7" y="869" width="0.1" height="15.0" fill="rgb(209,103,27)" rx="2" ry="2" />
<text x="521.66" y="879.5" ></text>
</g>
<g >
<title>caml_call_gc (1,507 samples, 0.12%)</title><rect x="895.1" y="1237" width="1.4" height="15.0" fill="rgb(223,134,15)" rx="2" ry="2" />
<text x="898.06" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (136 samples, 0.01%)</title><rect x="897.5" y="1205" width="0.1" height="15.0" fill="rgb(219,157,21)" rx="2" ry="2" />
<text x="900.49" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="517" width="1.6" height="15.0" fill="rgb(241,121,30)" rx="2" ry="2" />
<text x="1189.27" y="527.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (226 samples, 0.02%)</title><rect x="975.9" y="1109" width="0.2" height="15.0" fill="rgb(217,43,31)" rx="2" ry="2" />
<text x="978.91" y="1119.5" ></text>
</g>
<g >
<title>do_compaction (1,080 samples, 0.09%)</title><rect x="676.7" y="1237" width="1.1" height="15.0" fill="rgb(206,175,53)" rx="2" ry="2" />
<text x="679.73" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (136 samples, 0.01%)</title><rect x="1162.9" y="1477" width="0.1" height="15.0" fill="rgb(229,84,53)" rx="2" ry="2" />
<text x="1165.89" y="1487.5" ></text>
</g>
<g >
<title>camlLwt__fun_4551 (185 samples, 0.02%)</title><rect x="281.5" y="1333" width="0.2" height="15.0" fill="rgb(239,193,35)" rx="2" ry="2" />
<text x="284.49" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (780 samples, 0.06%)</title><rect x="114.9" y="1125" width="0.8" height="15.0" fill="rgb(217,81,37)" rx="2" ry="2" />
<text x="117.94" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (508 samples, 0.04%)</title><rect x="737.4" y="1173" width="0.5" height="15.0" fill="rgb(239,42,11)" rx="2" ry="2" />
<text x="740.45" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (1,286 samples, 0.11%)</title><rect x="119.7" y="1109" width="1.2" height="15.0" fill="rgb(225,19,41)" rx="2" ry="2" />
<text x="122.69" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (179 samples, 0.01%)</title><rect x="552.9" y="1253" width="0.1" height="15.0" fill="rgb(242,63,38)" rx="2" ry="2" />
<text x="555.87" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (385 samples, 0.03%)</title><rect x="577.8" y="981" width="0.4" height="15.0" fill="rgb(250,226,35)" rx="2" ry="2" />
<text x="580.80" y="991.5" ></text>
</g>
<g >
<title>caml_garbage_collection (520 samples, 0.04%)</title><rect x="932.3" y="1141" width="0.5" height="15.0" fill="rgb(248,169,19)" rx="2" ry="2" />
<text x="935.28" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (282 samples, 0.02%)</title><rect x="548.0" y="1221" width="0.3" height="15.0" fill="rgb(246,34,37)" rx="2" ry="2" />
<text x="550.99" y="1231.5" ></text>
</g>
<g >
<title>__vfs_read (182 samples, 0.01%)</title><rect x="47.0" y="1941" width="0.2" height="15.0" fill="rgb(230,53,39)" rx="2" ry="2" />
<text x="50.02" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (27,833 samples, 2.29%)</title><rect x="816.9" y="1221" width="27.0" height="15.0" fill="rgb(232,36,52)" rx="2" ry="2" />
<text x="819.90" y="1231.5" >c..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (253 samples, 0.02%)</title><rect x="538.5" y="1125" width="0.3" height="15.0" fill="rgb(211,21,27)" rx="2" ry="2" />
<text x="541.52" y="1135.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1077" width="1.3" height="15.0" fill="rgb(243,106,35)" rx="2" ry="2" />
<text x="1175.52" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,057 samples, 0.09%)</title><rect x="841.8" y="1141" width="1.0" height="15.0" fill="rgb(205,115,37)" rx="2" ry="2" />
<text x="844.79" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8042 (113 samples, 0.01%)</title><rect x="398.6" y="1109" width="0.1" height="15.0" fill="rgb(232,218,21)" rx="2" ry="2" />
<text x="401.56" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3768 (433 samples, 0.04%)</title><rect x="417.7" y="1205" width="0.4" height="15.0" fill="rgb(238,223,6)" rx="2" ry="2" />
<text x="420.66" y="1215.5" ></text>
</g>
<g >
<title>memcpy (657 samples, 0.05%)</title><rect x="246.4" y="1205" width="0.7" height="15.0" fill="rgb(231,179,45)" rx="2" ry="2" />
<text x="249.44" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__io_read_and_decode_9196 (150 samples, 0.01%)</title><rect x="101.7" y="1205" width="0.1" height="15.0" fill="rgb(236,80,12)" rx="2" ry="2" />
<text x="104.66" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__check_operations_consistency_5495 (674 samples, 0.06%)</title><rect x="129.6" y="1301" width="0.7" height="15.0" fill="rgb(225,40,26)" rx="2" ry="2" />
<text x="132.64" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (27,230 samples, 2.24%)</title><rect x="290.6" y="1237" width="26.4" height="15.0" fill="rgb(242,0,29)" rx="2" ry="2" />
<text x="293.58" y="1247.5" >c..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (228 samples, 0.02%)</title><rect x="1182.3" y="1589" width="0.2" height="15.0" fill="rgb(235,85,28)" rx="2" ry="2" />
<text x="1185.26" y="1599.5" ></text>
</g>
<g >
<title>caml_alloc_string (348 samples, 0.03%)</title><rect x="1097.7" y="1365" width="0.3" height="15.0" fill="rgb(215,111,21)" rx="2" ry="2" />
<text x="1100.70" y="1375.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (196 samples, 0.02%)</title><rect x="1172.5" y="981" width="0.2" height="15.0" fill="rgb(221,193,15)" rx="2" ry="2" />
<text x="1175.52" y="991.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (136 samples, 0.01%)</title><rect x="733.2" y="1269" width="0.1" height="15.0" fill="rgb(225,204,49)" rx="2" ry="2" />
<text x="736.17" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,902 samples, 0.16%)</title><rect x="573.9" y="965" width="1.9" height="15.0" fill="rgb(251,135,23)" rx="2" ry="2" />
<text x="576.93" y="975.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (122 samples, 0.01%)</title><rect x="1186.6" y="69" width="0.2" height="15.0" fill="rgb(233,154,26)" rx="2" ry="2" />
<text x="1189.64" y="79.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1589" width="6.2" height="15.0" fill="rgb(245,71,37)" rx="2" ry="2" />
<text x="1178.90" y="1599.5" ></text>
</g>
<g >
<title>blake2b_init0 (224 samples, 0.02%)</title><rect x="708.3" y="1221" width="0.2" height="15.0" fill="rgb(220,90,37)" rx="2" ry="2" />
<text x="711.30" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (2,289 samples, 0.19%)</title><rect x="425.9" y="1189" width="2.3" height="15.0" fill="rgb(207,131,5)" rx="2" ry="2" />
<text x="428.94" y="1199.5" ></text>
</g>
<g >
<title>mdb_page_malloc (214 samples, 0.02%)</title><rect x="787.2" y="1157" width="0.2" height="15.0" fill="rgb(251,27,48)" rx="2" ry="2" />
<text x="790.24" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (128 samples, 0.01%)</title><rect x="561.4" y="1189" width="0.1" height="15.0" fill="rgb(219,174,22)" rx="2" ry="2" />
<text x="564.41" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (229 samples, 0.02%)</title><rect x="843.6" y="1189" width="0.2" height="15.0" fill="rgb(223,228,32)" rx="2" ry="2" />
<text x="846.56" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (691 samples, 0.06%)</title><rect x="500.7" y="1237" width="0.7" height="15.0" fill="rgb(216,10,35)" rx="2" ry="2" />
<text x="503.70" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (428 samples, 0.04%)</title><rect x="401.1" y="1077" width="0.4" height="15.0" fill="rgb(254,89,10)" rx="2" ry="2" />
<text x="404.10" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (550 samples, 0.05%)</title><rect x="820.2" y="1093" width="0.6" height="15.0" fill="rgb(243,18,52)" rx="2" ry="2" />
<text x="823.23" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__compute_4367 (8,003 samples, 0.66%)</title><rect x="696.2" y="1349" width="7.7" height="15.0" fill="rgb(232,166,54)" rx="2" ry="2" />
<text x="699.16" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (151 samples, 0.01%)</title><rect x="443.2" y="1205" width="0.1" height="15.0" fill="rgb(226,27,18)" rx="2" ry="2" />
<text x="446.18" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (568 samples, 0.05%)</title><rect x="525.6" y="1029" width="0.6" height="15.0" fill="rgb(253,99,0)" rx="2" ry="2" />
<text x="528.64" y="1039.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (1,115 samples, 0.09%)</title><rect x="793.6" y="1205" width="1.1" height="15.0" fill="rgb(242,214,36)" rx="2" ry="2" />
<text x="796.60" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (4,225 samples, 0.35%)</title><rect x="490.3" y="1365" width="4.1" height="15.0" fill="rgb(242,136,21)" rx="2" ry="2" />
<text x="493.31" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (133 samples, 0.01%)</title><rect x="535.4" y="1061" width="0.1" height="15.0" fill="rgb(247,195,25)" rx="2" ry="2" />
<text x="538.39" y="1071.5" ></text>
</g>
<g >
<title>caml_oldify_one (105 samples, 0.01%)</title><rect x="635.6" y="1205" width="0.1" height="15.0" fill="rgb(220,139,37)" rx="2" ry="2" />
<text x="638.65" y="1215.5" ></text>
</g>
<g >
<title>blake2b_compress (577 samples, 0.05%)</title><rect x="562.5" y="1141" width="0.6" height="15.0" fill="rgb(234,179,54)" rx="2" ry="2" />
<text x="565.52" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__of_result_2290 (216 samples, 0.02%)</title><rect x="995.1" y="1413" width="0.2" height="15.0" fill="rgb(238,26,32)" rx="2" ry="2" />
<text x="998.05" y="1423.5" ></text>
</g>
<g >
<title>mark_slice (185 samples, 0.02%)</title><rect x="167.2" y="1301" width="0.2" height="15.0" fill="rgb(243,195,20)" rx="2" ry="2" />
<text x="170.17" y="1311.5" ></text>
</g>
<g >
<title>camlLmdb__return_inner_2980 (121 samples, 0.01%)</title><rect x="790.8" y="1269" width="0.1" height="15.0" fill="rgb(228,111,8)" rx="2" ry="2" />
<text x="793.76" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (162 samples, 0.01%)</title><rect x="494.0" y="1285" width="0.1" height="15.0" fill="rgb(237,160,54)" rx="2" ry="2" />
<text x="496.98" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_10814 (1,158 samples, 0.10%)</title><rect x="232.9" y="1317" width="1.1" height="15.0" fill="rgb(223,228,32)" rx="2" ry="2" />
<text x="235.88" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (946 samples, 0.08%)</title><rect x="516.5" y="389" width="0.9" height="15.0" fill="rgb(220,69,45)" rx="2" ry="2" />
<text x="519.47" y="399.5" ></text>
</g>
<g >
<title>mark_slice (439 samples, 0.04%)</title><rect x="894.2" y="1189" width="0.4" height="15.0" fill="rgb(245,13,17)" rx="2" ry="2" />
<text x="897.16" y="1199.5" ></text>
</g>
<g >
<title>mdb_node_add (189 samples, 0.02%)</title><rect x="877.1" y="1173" width="0.2" height="15.0" fill="rgb(206,82,49)" rx="2" ry="2" />
<text x="880.13" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBABY5H__Alpha_services__register_16859 (765 samples, 0.06%)</title><rect x="1184.1" y="1909" width="0.7" height="15.0" fill="rgb(236,105,9)" rx="2" ry="2" />
<text x="1187.09" y="1919.5" ></text>
</g>
<g >
<title>caml_call_gc (110 samples, 0.01%)</title><rect x="239.4" y="1285" width="0.1" height="15.0" fill="rgb(228,95,20)" rx="2" ry="2" />
<text x="242.42" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__pre_hash_3776 (154 samples, 0.01%)</title><rect x="394.2" y="1125" width="0.2" height="15.0" fill="rgb(247,22,43)" rx="2" ry="2" />
<text x="397.21" y="1135.5" ></text>
</g>
<g >
<title>__GI___tcgetattr (659 samples, 0.05%)</title><rect x="1164.8" y="1477" width="0.6" height="15.0" fill="rgb(235,198,45)" rx="2" ry="2" />
<text x="1167.80" y="1487.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1262 (124 samples, 0.01%)</title><rect x="391.8" y="1157" width="0.2" height="15.0" fill="rgb(247,123,39)" rx="2" ry="2" />
<text x="394.84" y="1167.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (150 samples, 0.01%)</title><rect x="1155.7" y="1413" width="0.2" height="15.0" fill="rgb(250,50,14)" rx="2" ry="2" />
<text x="1158.72" y="1423.5" ></text>
</g>
<g >
<title>mdb_put (139 samples, 0.01%)</title><rect x="1181.3" y="1189" width="0.1" height="15.0" fill="rgb(231,216,29)" rx="2" ry="2" />
<text x="1184.29" y="1199.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (225 samples, 0.02%)</title><rect x="949.3" y="1061" width="0.3" height="15.0" fill="rgb(224,87,35)" rx="2" ry="2" />
<text x="952.34" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__format__add_queue_1744 (105 samples, 0.01%)</title><rect x="1163.3" y="1461" width="0.1" height="15.0" fill="rgb(218,83,47)" rx="2" ry="2" />
<text x="1166.29" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (525 samples, 0.04%)</title><rect x="895.3" y="1141" width="0.5" height="15.0" fill="rgb(212,206,8)" rx="2" ry="2" />
<text x="898.26" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (105 samples, 0.01%)</title><rect x="1184.3" y="1317" width="0.1" height="15.0" fill="rgb(217,202,17)" rx="2" ry="2" />
<text x="1187.28" y="1327.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (106 samples, 0.01%)</title><rect x="743.9" y="1221" width="0.1" height="15.0" fill="rgb(247,200,0)" rx="2" ry="2" />
<text x="746.88" y="1231.5" ></text>
</g>
<g >
<title>rotr64 (160 samples, 0.01%)</title><rect x="563.7" y="1109" width="0.2" height="15.0" fill="rgb(242,151,42)" rx="2" ry="2" />
<text x="566.71" y="1119.5" ></text>
</g>
<g >
<title>caml_pread (421 samples, 0.03%)</title><rect x="183.4" y="1157" width="0.4" height="15.0" fill="rgb(251,69,19)" rx="2" ry="2" />
<text x="186.40" y="1167.5" ></text>
</g>
<g >
<title>camlLmdb__commit_txn_2314 (118 samples, 0.01%)</title><rect x="489.9" y="1349" width="0.1" height="15.0" fill="rgb(252,29,50)" rx="2" ry="2" />
<text x="492.90" y="1359.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (1,883 samples, 0.15%)</title><rect x="883.4" y="1253" width="1.8" height="15.0" fill="rgb(234,2,23)" rx="2" ry="2" />
<text x="886.38" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (483 samples, 0.04%)</title><rect x="414.2" y="1189" width="0.5" height="15.0" fill="rgb(209,102,4)" rx="2" ry="2" />
<text x="417.20" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (247 samples, 0.02%)</title><rect x="582.3" y="1029" width="0.2" height="15.0" fill="rgb(218,53,14)" rx="2" ry="2" />
<text x="585.30" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (4,946 samples, 0.41%)</title><rect x="641.0" y="1237" width="4.8" height="15.0" fill="rgb(231,162,32)" rx="2" ry="2" />
<text x="644.02" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (1,991 samples, 0.16%)</title><rect x="178.9" y="1157" width="1.9" height="15.0" fill="rgb(235,133,47)" rx="2" ry="2" />
<text x="181.88" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_append_1034 (834 samples, 0.07%)</title><rect x="1168.1" y="1525" width="0.8" height="15.0" fill="rgb(240,100,16)" rx="2" ry="2" />
<text x="1171.14" y="1535.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (241 samples, 0.02%)</title><rect x="544.0" y="1157" width="0.2" height="15.0" fill="rgb(217,196,31)" rx="2" ry="2" />
<text x="546.99" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (138 samples, 0.01%)</title><rect x="588.6" y="1029" width="0.2" height="15.0" fill="rgb(238,212,9)" rx="2" ry="2" />
<text x="591.65" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_list_1526 (105 samples, 0.01%)</title><rect x="154.1" y="1317" width="0.1" height="15.0" fill="rgb(237,150,45)" rx="2" ry="2" />
<text x="157.10" y="1327.5" ></text>
</g>
<g >
<title>caml_call_gc (565 samples, 0.05%)</title><rect x="847.5" y="1301" width="0.6" height="15.0" fill="rgb(241,126,49)" rx="2" ry="2" />
<text x="850.52" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (124 samples, 0.01%)</title><rect x="536.0" y="1045" width="0.1" height="15.0" fill="rgb(215,33,25)" rx="2" ry="2" />
<text x="539.01" y="1055.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (15,898 samples, 1.31%)</title><rect x="622.2" y="1285" width="15.4" height="15.0" fill="rgb(222,221,5)" rx="2" ry="2" />
<text x="625.22" y="1295.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (114 samples, 0.01%)</title><rect x="486.2" y="1205" width="0.1" height="15.0" fill="rgb(251,134,9)" rx="2" ry="2" />
<text x="489.18" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_002_PsYLVpVv__Alpha_services__register_16826 (458 samples, 0.04%)</title><rect x="1182.6" y="1909" width="0.4" height="15.0" fill="rgb(252,127,45)" rx="2" ry="2" />
<text x="1185.59" y="1919.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (203 samples, 0.02%)</title><rect x="400.0" y="1109" width="0.2" height="15.0" fill="rgb(243,205,42)" rx="2" ry="2" />
<text x="402.97" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (1,682 samples, 0.14%)</title><rect x="222.3" y="1205" width="1.6" height="15.0" fill="rgb(208,73,47)" rx="2" ry="2" />
<text x="225.26" y="1215.5" ></text>
</g>
<g >
<title>__fget_light (235 samples, 0.02%)</title><rect x="314.0" y="1077" width="0.2" height="15.0" fill="rgb(244,133,52)" rx="2" ry="2" />
<text x="317.01" y="1087.5" ></text>
</g>
<g >
<title>blake2b_final (506 samples, 0.04%)</title><rect x="571.5" y="965" width="0.5" height="15.0" fill="rgb(221,34,38)" rx="2" ry="2" />
<text x="574.54" y="975.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (238 samples, 0.02%)</title><rect x="488.3" y="1189" width="0.3" height="15.0" fill="rgb(205,217,54)" rx="2" ry="2" />
<text x="491.33" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (735 samples, 0.06%)</title><rect x="507.5" y="1125" width="0.7" height="15.0" fill="rgb(242,192,52)" rx="2" ry="2" />
<text x="510.48" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (124 samples, 0.01%)</title><rect x="620.2" y="1301" width="0.1" height="15.0" fill="rgb(212,112,36)" rx="2" ry="2" />
<text x="623.20" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (649 samples, 0.05%)</title><rect x="509.0" y="1077" width="0.6" height="15.0" fill="rgb(235,132,31)" rx="2" ry="2" />
<text x="511.99" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int32_3815 (152 samples, 0.01%)</title><rect x="310.2" y="1157" width="0.2" height="15.0" fill="rgb(239,13,21)" rx="2" ry="2" />
<text x="313.23" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (258 samples, 0.02%)</title><rect x="518.6" y="933" width="0.2" height="15.0" fill="rgb(227,196,29)" rx="2" ry="2" />
<text x="521.60" y="943.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (2,538 samples, 0.21%)</title><rect x="941.7" y="1141" width="2.5" height="15.0" fill="rgb(237,74,36)" rx="2" ry="2" />
<text x="944.73" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,050 samples, 0.09%)</title><rect x="387.6" y="1173" width="1.1" height="15.0" fill="rgb(208,35,53)" rx="2" ry="2" />
<text x="390.65" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (154 samples, 0.01%)</title><rect x="202.0" y="1221" width="0.1" height="15.0" fill="rgb(248,78,25)" rx="2" ry="2" />
<text x="204.98" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (137 samples, 0.01%)</title><rect x="408.2" y="1125" width="0.1" height="15.0" fill="rgb(229,49,26)" rx="2" ry="2" />
<text x="411.16" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (926 samples, 0.08%)</title><rect x="516.5" y="325" width="0.9" height="15.0" fill="rgb(218,89,2)" rx="2" ry="2" />
<text x="519.48" y="335.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (165 samples, 0.01%)</title><rect x="245.0" y="1221" width="0.1" height="15.0" fill="rgb(214,140,27)" rx="2" ry="2" />
<text x="247.99" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (122 samples, 0.01%)</title><rect x="900.1" y="1205" width="0.1" height="15.0" fill="rgb(247,80,53)" rx="2" ry="2" />
<text x="903.09" y="1215.5" ></text>
</g>
<g >
<title>mark_slice_darken (132 samples, 0.01%)</title><rect x="619.4" y="1237" width="0.1" height="15.0" fill="rgb(207,33,10)" rx="2" ry="2" />
<text x="622.36" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (118 samples, 0.01%)</title><rect x="556.2" y="1237" width="0.1" height="15.0" fill="rgb(251,70,45)" rx="2" ry="2" />
<text x="559.17" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (205 samples, 0.02%)</title><rect x="206.9" y="1205" width="0.2" height="15.0" fill="rgb(218,123,37)" rx="2" ry="2" />
<text x="209.87" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (583 samples, 0.05%)</title><rect x="80.4" y="1717" width="0.6" height="15.0" fill="rgb(226,131,49)" rx="2" ry="2" />
<text x="83.40" y="1727.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (6,364 samples, 0.52%)</title><rect x="1175.9" y="1733" width="6.2" height="15.0" fill="rgb(252,212,30)" rx="2" ry="2" />
<text x="1178.90" y="1743.5" ></text>
</g>
<g >
<title>new_sync_read (160 samples, 0.01%)</title><rect x="47.0" y="1925" width="0.2" height="15.0" fill="rgb(224,81,2)" rx="2" ry="2" />
<text x="50.04" y="1935.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (155 samples, 0.01%)</title><rect x="61.7" y="1829" width="0.1" height="15.0" fill="rgb(229,10,33)" rx="2" ry="2" />
<text x="64.69" y="1839.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__set_int_1105 (148 samples, 0.01%)</title><rect x="816.1" y="1237" width="0.2" height="15.0" fill="rgb(221,130,17)" rx="2" ry="2" />
<text x="819.15" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (341 samples, 0.03%)</title><rect x="574.5" y="821" width="0.3" height="15.0" fill="rgb(212,118,7)" rx="2" ry="2" />
<text x="577.47" y="831.5" ></text>
</g>
<g >
<title>caml_alloc_string (210 samples, 0.02%)</title><rect x="538.8" y="1125" width="0.2" height="15.0" fill="rgb(254,140,43)" rx="2" ry="2" />
<text x="541.80" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (617 samples, 0.05%)</title><rect x="504.6" y="1173" width="0.6" height="15.0" fill="rgb(229,215,20)" rx="2" ry="2" />
<text x="507.59" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (133 samples, 0.01%)</title><rect x="334.3" y="1285" width="0.2" height="15.0" fill="rgb(246,102,24)" rx="2" ry="2" />
<text x="337.34" y="1295.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (635 samples, 0.05%)</title><rect x="506.0" y="1141" width="0.6" height="15.0" fill="rgb(253,126,17)" rx="2" ry="2" />
<text x="509.03" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (1,704 samples, 0.14%)</title><rect x="690.3" y="1221" width="1.7" height="15.0" fill="rgb(235,124,9)" rx="2" ry="2" />
<text x="693.31" y="1231.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (184 samples, 0.02%)</title><rect x="94.2" y="1317" width="0.2" height="15.0" fill="rgb(250,215,6)" rx="2" ry="2" />
<text x="97.22" y="1327.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (607 samples, 0.05%)</title><rect x="502.3" y="1205" width="0.6" height="15.0" fill="rgb(230,56,15)" rx="2" ry="2" />
<text x="505.28" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1861" width="1.6" height="15.0" fill="rgb(224,55,26)" rx="2" ry="2" />
<text x="1189.27" y="1871.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (245 samples, 0.02%)</title><rect x="968.9" y="1093" width="0.3" height="15.0" fill="rgb(215,88,12)" rx="2" ry="2" />
<text x="971.93" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (168 samples, 0.01%)</title><rect x="80.4" y="1701" width="0.2" height="15.0" fill="rgb(238,52,21)" rx="2" ry="2" />
<text x="83.44" y="1711.5" ></text>
</g>
<g >
<title>__strchrnul_sse2 (111 samples, 0.01%)</title><rect x="811.1" y="1125" width="0.1" height="15.0" fill="rgb(214,82,9)" rx="2" ry="2" />
<text x="814.06" y="1135.5" ></text>
</g>
<g >
<title>memmove (677 samples, 0.06%)</title><rect x="138.8" y="1237" width="0.6" height="15.0" fill="rgb(235,71,0)" rx="2" ry="2" />
<text x="141.76" y="1247.5" ></text>
</g>
<g >
<title>mdb_node_search (1,179 samples, 0.10%)</title><rect x="719.1" y="1221" width="1.1" height="15.0" fill="rgb(207,215,17)" rx="2" ry="2" />
<text x="722.07" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (326 samples, 0.03%)</title><rect x="1186.6" y="101" width="0.3" height="15.0" fill="rgb(211,217,10)" rx="2" ry="2" />
<text x="1189.62" y="111.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (386 samples, 0.03%)</title><rect x="200.8" y="1237" width="0.3" height="15.0" fill="rgb(242,69,48)" rx="2" ry="2" />
<text x="203.75" y="1247.5" ></text>
</g>
<g >
<title>rotr64 (142 samples, 0.01%)</title><rect x="571.1" y="949" width="0.2" height="15.0" fill="rgb(221,116,20)" rx="2" ry="2" />
<text x="574.13" y="959.5" ></text>
</g>
<g >
<title>rotr64 (151 samples, 0.01%)</title><rect x="510.1" y="981" width="0.2" height="15.0" fill="rgb(216,164,8)" rx="2" ry="2" />
<text x="513.14" y="991.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (275 samples, 0.02%)</title><rect x="105.8" y="1173" width="0.2" height="15.0" fill="rgb(238,116,53)" rx="2" ry="2" />
<text x="108.77" y="1183.5" ></text>
</g>
<g >
<title>memset (1,160 samples, 0.10%)</title><rect x="674.3" y="1189" width="1.1" height="15.0" fill="rgb(249,29,52)" rx="2" ry="2" />
<text x="677.28" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (672 samples, 0.06%)</title><rect x="807.6" y="1221" width="0.6" height="15.0" fill="rgb(208,84,17)" rx="2" ry="2" />
<text x="810.57" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7497 (325 samples, 0.03%)</title><rect x="361.9" y="1189" width="0.3" height="15.0" fill="rgb(239,114,20)" rx="2" ry="2" />
<text x="364.92" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__string__concat_1101 (3,848 samples, 0.32%)</title><rect x="791.7" y="1269" width="3.8" height="15.0" fill="rgb(226,62,22)" rx="2" ry="2" />
<text x="794.73" y="1279.5" ></text>
</g>
<g >
<title>ml_blake2b_final (744 samples, 0.06%)</title><rect x="499.6" y="1237" width="0.8" height="15.0" fill="rgb(220,213,15)" rx="2" ry="2" />
<text x="502.65" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (551 samples, 0.05%)</title><rect x="183.3" y="1205" width="0.5" height="15.0" fill="rgb(216,121,33)" rx="2" ry="2" />
<text x="186.31" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (150 samples, 0.01%)</title><rect x="1184.5" y="1381" width="0.1" height="15.0" fill="rgb(206,87,30)" rx="2" ry="2" />
<text x="1187.45" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__fun_9992 (2,361 samples, 0.19%)</title><rect x="610.3" y="1253" width="2.3" height="15.0" fill="rgb(248,106,42)" rx="2" ry="2" />
<text x="613.28" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (341 samples, 0.03%)</title><rect x="350.8" y="1189" width="0.4" height="15.0" fill="rgb(213,116,18)" rx="2" ry="2" />
<text x="353.83" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (440 samples, 0.04%)</title><rect x="892.2" y="1237" width="0.4" height="15.0" fill="rgb(223,35,21)" rx="2" ry="2" />
<text x="895.18" y="1247.5" ></text>
</g>
<g >
<title>__lseek64 (458 samples, 0.04%)</title><rect x="204.5" y="1205" width="0.5" height="15.0" fill="rgb(253,200,20)" rx="2" ry="2" />
<text x="207.54" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif__feedi_string_1899 (254 samples, 0.02%)</title><rect x="107.9" y="1189" width="0.2" height="15.0" fill="rgb(246,10,7)" rx="2" ry="2" />
<text x="110.90" y="1199.5" ></text>
</g>
<g >
<title>caml_hash (367 samples, 0.03%)</title><rect x="426.3" y="1157" width="0.3" height="15.0" fill="rgb(251,22,26)" rx="2" ry="2" />
<text x="429.28" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (141 samples, 0.01%)</title><rect x="609.9" y="1237" width="0.1" height="15.0" fill="rgb(232,202,31)" rx="2" ry="2" />
<text x="612.88" y="1247.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (180 samples, 0.01%)</title><rect x="126.4" y="1013" width="0.2" height="15.0" fill="rgb(253,44,49)" rx="2" ry="2" />
<text x="129.43" y="1023.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_1635 (701 samples, 0.06%)</title><rect x="1184.9" y="1813" width="0.7" height="15.0" fill="rgb(223,55,45)" rx="2" ry="2" />
<text x="1187.94" y="1823.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7414 (2,493 samples, 0.20%)</title><rect x="265.7" y="1285" width="2.4" height="15.0" fill="rgb(250,53,29)" rx="2" ry="2" />
<text x="268.72" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (173 samples, 0.01%)</title><rect x="181.5" y="1157" width="0.1" height="15.0" fill="rgb(212,116,46)" rx="2" ry="2" />
<text x="184.45" y="1167.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (265 samples, 0.02%)</title><rect x="923.7" y="1301" width="0.3" height="15.0" fill="rgb(251,112,15)" rx="2" ry="2" />
<text x="926.69" y="1311.5" ></text>
</g>
<g >
<title>caml_apply5 (159 samples, 0.01%)</title><rect x="194.4" y="1285" width="0.2" height="15.0" fill="rgb(249,190,24)" rx="2" ry="2" />
<text x="197.40" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6068 (108 samples, 0.01%)</title><rect x="160.7" y="1365" width="0.1" height="15.0" fill="rgb(225,181,2)" rx="2" ry="2" />
<text x="163.67" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__findv_6808 (463 samples, 0.04%)</title><rect x="235.9" y="1301" width="0.4" height="15.0" fill="rgb(220,179,8)" rx="2" ry="2" />
<text x="238.90" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_rpc__RPC_encoding__schema_1497 (328 samples, 0.03%)</title><rect x="1182.2" y="1845" width="0.4" height="15.0" fill="rgb(220,11,11)" rx="2" ry="2" />
<text x="1185.24" y="1855.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (166 samples, 0.01%)</title><rect x="387.5" y="1173" width="0.1" height="15.0" fill="rgb(209,21,42)" rx="2" ry="2" />
<text x="390.46" y="1183.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (580 samples, 0.05%)</title><rect x="487.2" y="1269" width="0.5" height="15.0" fill="rgb(205,23,36)" rx="2" ry="2" />
<text x="490.19" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (189 samples, 0.02%)</title><rect x="858.7" y="1205" width="0.2" height="15.0" fill="rgb(207,191,51)" rx="2" ry="2" />
<text x="861.68" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (167 samples, 0.01%)</title><rect x="975.5" y="1109" width="0.1" height="15.0" fill="rgb(215,50,20)" rx="2" ry="2" />
<text x="978.46" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (139 samples, 0.01%)</title><rect x="367.9" y="1125" width="0.1" height="15.0" fill="rgb(233,164,9)" rx="2" ry="2" />
<text x="370.88" y="1135.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,238 samples, 0.10%)</title><rect x="410.7" y="1125" width="1.2" height="15.0" fill="rgb(228,90,50)" rx="2" ry="2" />
<text x="413.67" y="1135.5" ></text>
</g>
<g >
<title>caml_apply2 (314 samples, 0.03%)</title><rect x="250.0" y="1221" width="0.3" height="15.0" fill="rgb(232,183,46)" rx="2" ry="2" />
<text x="252.98" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (550 samples, 0.05%)</title><rect x="607.8" y="1237" width="0.5" height="15.0" fill="rgb(210,33,44)" rx="2" ry="2" />
<text x="610.81" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (172 samples, 0.01%)</title><rect x="896.9" y="1205" width="0.1" height="15.0" fill="rgb(215,220,32)" rx="2" ry="2" />
<text x="899.87" y="1215.5" ></text>
</g>
<g >
<title>caml_string_equal (230 samples, 0.02%)</title><rect x="228.4" y="1205" width="0.3" height="15.0" fill="rgb(217,224,18)" rx="2" ry="2" />
<text x="231.43" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (6,028 samples, 0.50%)</title><rect x="708.0" y="1333" width="5.8" height="15.0" fill="rgb(253,180,53)" rx="2" ry="2" />
<text x="710.97" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (746 samples, 0.06%)</title><rect x="499.6" y="1253" width="0.8" height="15.0" fill="rgb(228,73,38)" rx="2" ry="2" />
<text x="502.65" y="1263.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (138 samples, 0.01%)</title><rect x="255.2" y="1173" width="0.1" height="15.0" fill="rgb(222,61,6)" rx="2" ry="2" />
<text x="258.17" y="1183.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (462 samples, 0.04%)</title><rect x="460.9" y="1093" width="0.4" height="15.0" fill="rgb(247,196,13)" rx="2" ry="2" />
<text x="463.88" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,017 samples, 0.17%)</title><rect x="968.9" y="1109" width="2.0" height="15.0" fill="rgb(238,74,52)" rx="2" ry="2" />
<text x="971.93" y="1119.5" ></text>
</g>
<g >
<title>stub_mdb_put (575 samples, 0.05%)</title><rect x="487.2" y="1253" width="0.5" height="15.0" fill="rgb(228,29,24)" rx="2" ry="2" />
<text x="490.19" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (986 samples, 0.08%)</title><rect x="808.2" y="1253" width="1.0" height="15.0" fill="rgb(228,7,11)" rx="2" ry="2" />
<text x="811.22" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (482 samples, 0.04%)</title><rect x="150.1" y="1237" width="0.4" height="15.0" fill="rgb(215,124,42)" rx="2" ry="2" />
<text x="153.08" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (115 samples, 0.01%)</title><rect x="816.8" y="1189" width="0.1" height="15.0" fill="rgb(226,156,22)" rx="2" ry="2" />
<text x="819.79" y="1199.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (144 samples, 0.01%)</title><rect x="297.3" y="1077" width="0.2" height="15.0" fill="rgb(246,152,40)" rx="2" ry="2" />
<text x="300.33" y="1087.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2651 (104 samples, 0.01%)</title><rect x="1172.6" y="789" width="0.1" height="15.0" fill="rgb(246,12,12)" rx="2" ry="2" />
<text x="1175.56" y="799.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (528 samples, 0.04%)</title><rect x="295.1" y="1125" width="0.5" height="15.0" fill="rgb(249,210,41)" rx="2" ry="2" />
<text x="298.07" y="1135.5" ></text>
</g>
<g >
<title>camlLwt_mutex__with_lock_1138 (155 samples, 0.01%)</title><rect x="229.3" y="1285" width="0.2" height="15.0" fill="rgb(212,17,38)" rx="2" ry="2" />
<text x="232.31" y="1295.5" ></text>
</g>
<g >
<title>blake2b_final (1,089 samples, 0.09%)</title><rect x="610.4" y="1173" width="1.0" height="15.0" fill="rgb(223,59,43)" rx="2" ry="2" />
<text x="613.36" y="1183.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (214 samples, 0.02%)</title><rect x="1165.7" y="1461" width="0.2" height="15.0" fill="rgb(216,192,51)" rx="2" ry="2" />
<text x="1168.71" y="1471.5" ></text>
</g>
<g >
<title>blake2b_init0 (172 samples, 0.01%)</title><rect x="700.6" y="1189" width="0.2" height="15.0" fill="rgb(244,173,30)" rx="2" ry="2" />
<text x="703.62" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (135 samples, 0.01%)</title><rect x="580.0" y="981" width="0.1" height="15.0" fill="rgb(236,52,47)" rx="2" ry="2" />
<text x="582.96" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (191 samples, 0.02%)</title><rect x="574.5" y="597" width="0.2" height="15.0" fill="rgb(232,210,9)" rx="2" ry="2" />
<text x="577.51" y="607.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (195 samples, 0.02%)</title><rect x="248.4" y="1205" width="0.2" height="15.0" fill="rgb(247,18,54)" rx="2" ry="2" />
<text x="251.37" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (163 samples, 0.01%)</title><rect x="802.1" y="1221" width="0.1" height="15.0" fill="rgb(241,96,9)" rx="2" ry="2" />
<text x="805.07" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (310 samples, 0.03%)</title><rect x="453.9" y="1029" width="0.3" height="15.0" fill="rgb(205,220,16)" rx="2" ry="2" />
<text x="456.91" y="1039.5" ></text>
</g>
<g >
<title>caml_blit_bytes (184 samples, 0.02%)</title><rect x="135.9" y="1333" width="0.2" height="15.0" fill="rgb(230,184,9)" rx="2" ry="2" />
<text x="138.90" y="1343.5" ></text>
</g>
<g >
<title>mdb_put (13,689 samples, 1.12%)</title><rect x="718.9" y="1269" width="13.3" height="15.0" fill="rgb(212,207,20)" rx="2" ry="2" />
<text x="721.91" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (1,328 samples, 0.11%)</title><rect x="610.3" y="1237" width="1.3" height="15.0" fill="rgb(241,2,34)" rx="2" ry="2" />
<text x="613.33" y="1247.5" ></text>
</g>
<g >
<title>mdb_cursor_put (137 samples, 0.01%)</title><rect x="1181.3" y="1173" width="0.1" height="15.0" fill="rgb(209,43,42)" rx="2" ry="2" />
<text x="1184.29" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (130 samples, 0.01%)</title><rect x="582.9" y="981" width="0.1" height="15.0" fill="rgb(245,71,12)" rx="2" ry="2" />
<text x="585.92" y="991.5" ></text>
</g>
<g >
<title>caml_apply2 (257 samples, 0.02%)</title><rect x="361.2" y="1157" width="0.2" height="15.0" fill="rgb(233,127,53)" rx="2" ry="2" />
<text x="364.20" y="1167.5" ></text>
</g>
<g >
<title>caml_curry13_12 (110 samples, 0.01%)</title><rect x="125.5" y="1157" width="0.1" height="15.0" fill="rgb(237,177,44)" rx="2" ry="2" />
<text x="128.48" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (304 samples, 0.02%)</title><rect x="1182.7" y="1637" width="0.3" height="15.0" fill="rgb(228,178,40)" rx="2" ry="2" />
<text x="1185.67" y="1647.5" ></text>
</g>
<g >
<title>camlIrmin__Type__pre_hash_3776 (138 samples, 0.01%)</title><rect x="295.6" y="1157" width="0.1" height="15.0" fill="rgb(215,56,25)" rx="2" ry="2" />
<text x="298.59" y="1167.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (845 samples, 0.07%)</title><rect x="527.1" y="981" width="0.8" height="15.0" fill="rgb(229,110,13)" rx="2" ry="2" />
<text x="530.11" y="991.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (2,367 samples, 0.19%)</title><rect x="728.1" y="1205" width="2.3" height="15.0" fill="rgb(246,176,29)" rx="2" ry="2" />
<text x="731.14" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (370 samples, 0.03%)</title><rect x="1182.7" y="1781" width="0.3" height="15.0" fill="rgb(243,12,22)" rx="2" ry="2" />
<text x="1185.67" y="1791.5" ></text>
</g>
<g >
<title>caml_blit_bytes (117 samples, 0.01%)</title><rect x="421.5" y="1141" width="0.1" height="15.0" fill="rgb(217,72,53)" rx="2" ry="2" />
<text x="424.50" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_9239 (938 samples, 0.08%)</title><rect x="126.0" y="1109" width="0.9" height="15.0" fill="rgb(217,151,50)" rx="2" ry="2" />
<text x="128.97" y="1119.5" ></text>
</g>
<g >
<title>caml_alloc_string (719 samples, 0.06%)</title><rect x="987.2" y="1333" width="0.7" height="15.0" fill="rgb(212,175,10)" rx="2" ry="2" />
<text x="990.16" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (900 samples, 0.07%)</title><rect x="126.0" y="1093" width="0.9" height="15.0" fill="rgb(221,86,0)" rx="2" ry="2" />
<text x="129.00" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1333" width="1.3" height="15.0" fill="rgb(221,222,11)" rx="2" ry="2" />
<text x="1175.52" y="1343.5" ></text>
</g>
<g >
<title>caml_hash (364 samples, 0.03%)</title><rect x="473.2" y="1237" width="0.4" height="15.0" fill="rgb(213,174,46)" rx="2" ry="2" />
<text x="476.23" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (206 samples, 0.02%)</title><rect x="802.2" y="1237" width="0.2" height="15.0" fill="rgb(231,199,36)" rx="2" ry="2" />
<text x="805.24" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (359 samples, 0.03%)</title><rect x="603.1" y="1189" width="0.4" height="15.0" fill="rgb(227,225,27)" rx="2" ry="2" />
<text x="606.10" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (112 samples, 0.01%)</title><rect x="846.2" y="1221" width="0.1" height="15.0" fill="rgb(205,135,5)" rx="2" ry="2" />
<text x="849.22" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__find_1120 (386 samples, 0.03%)</title><rect x="232.4" y="1285" width="0.4" height="15.0" fill="rgb(221,182,14)" rx="2" ry="2" />
<text x="235.42" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (288 samples, 0.02%)</title><rect x="597.0" y="1157" width="0.3" height="15.0" fill="rgb(239,129,41)" rx="2" ry="2" />
<text x="600.02" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (111 samples, 0.01%)</title><rect x="273.8" y="1237" width="0.1" height="15.0" fill="rgb(220,81,0)" rx="2" ry="2" />
<text x="276.78" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (548 samples, 0.05%)</title><rect x="510.5" y="1045" width="0.5" height="15.0" fill="rgb(253,54,41)" rx="2" ry="2" />
<text x="513.50" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (606 samples, 0.05%)</title><rect x="261.0" y="1157" width="0.6" height="15.0" fill="rgb(237,36,7)" rx="2" ry="2" />
<text x="263.99" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (1,097 samples, 0.09%)</title><rect x="344.8" y="1093" width="1.0" height="15.0" fill="rgb(220,206,54)" rx="2" ry="2" />
<text x="347.78" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6725 (689 samples, 0.06%)</title><rect x="129.6" y="1333" width="0.7" height="15.0" fill="rgb(210,12,40)" rx="2" ry="2" />
<text x="132.62" y="1343.5" ></text>
</g>
<g >
<title>caml_curry3_2 (165 samples, 0.01%)</title><rect x="440.3" y="1237" width="0.1" height="15.0" fill="rgb(248,5,33)" rx="2" ry="2" />
<text x="443.27" y="1247.5" ></text>
</g>
<g >
<title>mdb_txn_commit (12,072 samples, 0.99%)</title><rect x="1150.2" y="1461" width="11.7" height="15.0" fill="rgb(242,177,31)" rx="2" ry="2" />
<text x="1153.22" y="1471.5" ></text>
</g>
<g >
<title>mark_slice (201 samples, 0.02%)</title><rect x="773.2" y="1157" width="0.2" height="15.0" fill="rgb(231,29,42)" rx="2" ry="2" />
<text x="776.24" y="1167.5" ></text>
</g>
<g >
<title>caml_apply4 (3,003 samples, 0.25%)</title><rect x="985.8" y="1381" width="2.9" height="15.0" fill="rgb(240,143,15)" rx="2" ry="2" />
<text x="988.76" y="1391.5" ></text>
</g>
<g >
<title>sweep_slice (112 samples, 0.01%)</title><rect x="797.9" y="1189" width="0.1" height="15.0" fill="rgb(253,117,42)" rx="2" ry="2" />
<text x="800.89" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (130 samples, 0.01%)</title><rect x="799.4" y="1173" width="0.1" height="15.0" fill="rgb(205,35,6)" rx="2" ry="2" />
<text x="802.35" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (118 samples, 0.01%)</title><rect x="180.1" y="1077" width="0.1" height="15.0" fill="rgb(230,213,47)" rx="2" ry="2" />
<text x="183.09" y="1087.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (112 samples, 0.01%)</title><rect x="359.8" y="1093" width="0.1" height="15.0" fill="rgb(234,46,54)" rx="2" ry="2" />
<text x="362.77" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (124 samples, 0.01%)</title><rect x="113.3" y="1237" width="0.1" height="15.0" fill="rgb(235,159,34)" rx="2" ry="2" />
<text x="116.33" y="1247.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (6,516 samples, 0.54%)</title><rect x="1124.1" y="1317" width="6.3" height="15.0" fill="rgb(247,200,28)" rx="2" ry="2" />
<text x="1127.09" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (141 samples, 0.01%)</title><rect x="598.8" y="1141" width="0.2" height="15.0" fill="rgb(214,92,22)" rx="2" ry="2" />
<text x="601.83" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (113 samples, 0.01%)</title><rect x="197.0" y="1333" width="0.1" height="15.0" fill="rgb(208,203,39)" rx="2" ry="2" />
<text x="199.95" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_string (195 samples, 0.02%)</title><rect x="900.6" y="1189" width="0.1" height="15.0" fill="rgb(219,14,50)" rx="2" ry="2" />
<text x="903.55" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="613" width="1.6" height="15.0" fill="rgb(235,125,44)" rx="2" ry="2" />
<text x="1189.27" y="623.5" ></text>
</g>
<g >
<title>blake2b_compress (519 samples, 0.04%)</title><rect x="565.6" y="1077" width="0.5" height="15.0" fill="rgb(207,111,42)" rx="2" ry="2" />
<text x="568.59" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (622 samples, 0.05%)</title><rect x="804.2" y="1221" width="0.6" height="15.0" fill="rgb(219,226,49)" rx="2" ry="2" />
<text x="807.20" y="1231.5" ></text>
</g>
<g >
<title>store64 (138 samples, 0.01%)</title><rect x="268.0" y="1237" width="0.1" height="15.0" fill="rgb(235,11,53)" rx="2" ry="2" />
<text x="271.01" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (162 samples, 0.01%)</title><rect x="1177.5" y="1205" width="0.2" height="15.0" fill="rgb(212,62,44)" rx="2" ry="2" />
<text x="1180.54" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (318 samples, 0.03%)</title><rect x="925.2" y="1269" width="0.3" height="15.0" fill="rgb(239,121,42)" rx="2" ry="2" />
<text x="928.16" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (6,081 samples, 0.50%)</title><rect x="24.4" y="2021" width="5.9" height="15.0" fill="rgb(241,94,50)" rx="2" ry="2" />
<text x="27.37" y="2031.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (634 samples, 0.05%)</title><rect x="246.4" y="1189" width="0.7" height="15.0" fill="rgb(241,26,19)" rx="2" ry="2" />
<text x="249.45" y="1199.5" ></text>
</g>
<g >
<title>camlIndex_unix__sync_1658 (1,310 samples, 0.11%)</title><rect x="65.5" y="1941" width="1.2" height="15.0" fill="rgb(252,225,12)" rx="2" ry="2" />
<text x="68.45" y="1951.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (17,009 samples, 1.40%)</title><rect x="652.5" y="1301" width="16.5" height="15.0" fill="rgb(221,0,7)" rx="2" ry="2" />
<text x="655.54" y="1311.5" ></text>
</g>
<g >
<title>caml_call_gc (166 samples, 0.01%)</title><rect x="157.8" y="1349" width="0.1" height="15.0" fill="rgb(242,43,52)" rx="2" ry="2" />
<text x="160.77" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (471 samples, 0.04%)</title><rect x="645.9" y="1205" width="0.5" height="15.0" fill="rgb(246,112,32)" rx="2" ry="2" />
<text x="648.91" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (1,470 samples, 0.12%)</title><rect x="327.3" y="1333" width="1.4" height="15.0" fill="rgb(214,158,23)" rx="2" ry="2" />
<text x="330.29" y="1343.5" ></text>
</g>
<g >
<title>camlLwt__with_value_2040 (1,357 samples, 0.11%)</title><rect x="1171.0" y="1573" width="1.3" height="15.0" fill="rgb(207,207,11)" rx="2" ry="2" />
<text x="1173.99" y="1583.5" ></text>
</g>
<g >
<title>unix_isatty (683 samples, 0.06%)</title><rect x="1164.8" y="1509" width="0.6" height="15.0" fill="rgb(220,103,33)" rx="2" ry="2" />
<text x="1167.77" y="1519.5" ></text>
</g>
<g >
<title>caml_alloc_string (197 samples, 0.02%)</title><rect x="981.1" y="1301" width="0.2" height="15.0" fill="rgb(239,128,38)" rx="2" ry="2" />
<text x="984.15" y="1311.5" ></text>
</g>
<g >
<title>caml_blit_bytes (160 samples, 0.01%)</title><rect x="425.1" y="1189" width="0.2" height="15.0" fill="rgb(217,125,2)" rx="2" ry="2" />
<text x="428.10" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (345 samples, 0.03%)</title><rect x="61.1" y="1829" width="0.3" height="15.0" fill="rgb(221,4,44)" rx="2" ry="2" />
<text x="64.09" y="1839.5" ></text>
</g>
<g >
<title>do_compare_val (173 samples, 0.01%)</title><rect x="823.7" y="1109" width="0.2" height="15.0" fill="rgb(240,229,52)" rx="2" ry="2" />
<text x="826.73" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__format__kasprintf_2501 (1,515 samples, 0.12%)</title><rect x="987.1" y="1365" width="1.5" height="15.0" fill="rgb(210,220,16)" rx="2" ry="2" />
<text x="990.09" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__hash_5925 (160 samples, 0.01%)</title><rect x="268.8" y="1317" width="0.2" height="15.0" fill="rgb(211,44,24)" rx="2" ry="2" />
<text x="271.84" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (344 samples, 0.03%)</title><rect x="80.6" y="1701" width="0.4" height="15.0" fill="rgb(236,16,37)" rx="2" ry="2" />
<text x="83.63" y="1711.5" ></text>
</g>
<g >
<title>mark_slice (145 samples, 0.01%)</title><rect x="545.5" y="1157" width="0.1" height="15.0" fill="rgb(205,63,26)" rx="2" ry="2" />
<text x="548.46" y="1167.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (876 samples, 0.07%)</title><rect x="1131.7" y="1317" width="0.8" height="15.0" fill="rgb(207,102,38)" rx="2" ry="2" />
<text x="1134.66" y="1327.5" ></text>
</g>
<g >
<title>caml_alloc_string (146 samples, 0.01%)</title><rect x="553.5" y="1237" width="0.1" height="15.0" fill="rgb(248,172,11)" rx="2" ry="2" />
<text x="556.46" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1637" width="6.2" height="15.0" fill="rgb(223,54,52)" rx="2" ry="2" />
<text x="1178.90" y="1647.5" ></text>
</g>
<g >
<title>caml_alloc_string (170 samples, 0.01%)</title><rect x="494.2" y="1349" width="0.2" height="15.0" fill="rgb(230,113,27)" rx="2" ry="2" />
<text x="497.21" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (372 samples, 0.03%)</title><rect x="61.1" y="1877" width="0.4" height="15.0" fill="rgb(243,220,25)" rx="2" ry="2" />
<text x="64.09" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (208 samples, 0.02%)</title><rect x="332.7" y="1237" width="0.2" height="15.0" fill="rgb(215,51,13)" rx="2" ry="2" />
<text x="335.74" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (2,241 samples, 0.18%)</title><rect x="491.8" y="1317" width="2.1" height="15.0" fill="rgb(223,142,14)" rx="2" ry="2" />
<text x="494.77" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (9,787 samples, 0.80%)</title><rect x="903.7" y="1253" width="9.5" height="15.0" fill="rgb(243,159,4)" rx="2" ry="2" />
<text x="906.74" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__linear_interpolate_2491 (131 samples, 0.01%)</title><rect x="349.6" y="1157" width="0.1" height="15.0" fill="rgb(244,80,13)" rx="2" ry="2" />
<text x="352.62" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (248 samples, 0.02%)</title><rect x="533.7" y="1045" width="0.2" height="15.0" fill="rgb(215,14,31)" rx="2" ry="2" />
<text x="536.66" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (115 samples, 0.01%)</title><rect x="816.8" y="1205" width="0.1" height="15.0" fill="rgb(244,193,26)" rx="2" ry="2" />
<text x="819.79" y="1215.5" ></text>
</g>
<g >
<title>sweep_slice (118 samples, 0.01%)</title><rect x="894.1" y="1157" width="0.1" height="15.0" fill="rgb(207,80,11)" rx="2" ry="2" />
<text x="897.05" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (424 samples, 0.03%)</title><rect x="576.4" y="981" width="0.4" height="15.0" fill="rgb(219,179,27)" rx="2" ry="2" />
<text x="579.36" y="991.5" ></text>
</g>
<g >
<title>caml_hash (261 samples, 0.02%)</title><rect x="387.9" y="1125" width="0.3" height="15.0" fill="rgb(213,147,51)" rx="2" ry="2" />
<text x="390.93" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (554 samples, 0.05%)</title><rect x="526.4" y="1029" width="0.5" height="15.0" fill="rgb(205,192,2)" rx="2" ry="2" />
<text x="529.40" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3667 (218 samples, 0.02%)</title><rect x="336.6" y="1237" width="0.2" height="15.0" fill="rgb(222,222,29)" rx="2" ry="2" />
<text x="339.63" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (697 samples, 0.06%)</title><rect x="439.4" y="1253" width="0.6" height="15.0" fill="rgb(205,150,4)" rx="2" ry="2" />
<text x="442.37" y="1263.5" ></text>
</g>
<g >
<title>blake2b_compress (609 samples, 0.05%)</title><rect x="561.7" y="1157" width="0.6" height="15.0" fill="rgb(243,70,20)" rx="2" ry="2" />
<text x="564.67" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3667 (119 samples, 0.01%)</title><rect x="380.5" y="1157" width="0.1" height="15.0" fill="rgb(217,11,23)" rx="2" ry="2" />
<text x="383.53" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (164 samples, 0.01%)</title><rect x="212.8" y="1141" width="0.1" height="15.0" fill="rgb(210,139,32)" rx="2" ry="2" />
<text x="215.79" y="1151.5" ></text>
</g>
<g >
<title>mdb_page_new (392 samples, 0.03%)</title><rect x="876.7" y="1189" width="0.4" height="15.0" fill="rgb(237,117,22)" rx="2" ry="2" />
<text x="879.68" y="1199.5" ></text>
</g>
<g >
<title>mdb_cursor_touch (3,353 samples, 0.28%)</title><rect x="1054.3" y="1333" width="3.2" height="15.0" fill="rgb(228,98,40)" rx="2" ry="2" />
<text x="1057.27" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (1,879 samples, 0.15%)</title><rect x="809.4" y="1205" width="1.8" height="15.0" fill="rgb(241,95,26)" rx="2" ry="2" />
<text x="812.39" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (249 samples, 0.02%)</title><rect x="440.8" y="1237" width="0.2" height="15.0" fill="rgb(235,20,33)" rx="2" ry="2" />
<text x="443.80" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Baking__fun_8552 (242 samples, 0.02%)</title><rect x="1173.2" y="789" width="0.3" height="15.0" fill="rgb(212,156,11)" rx="2" ry="2" />
<text x="1176.24" y="799.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (1,191 samples, 0.10%)</title><rect x="141.5" y="1333" width="1.2" height="15.0" fill="rgb(212,159,46)" rx="2" ry="2" />
<text x="144.51" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (478 samples, 0.04%)</title><rect x="514.0" y="981" width="0.4" height="15.0" fill="rgb(219,72,26)" rx="2" ry="2" />
<text x="516.98" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,670 samples, 0.14%)</title><rect x="1186.3" y="2037" width="1.6" height="15.0" fill="rgb(210,190,17)" rx="2" ry="2" />
<text x="1189.26" y="2047.5" ></text>
</g>
<g >
<title>caml_alloc_string (296 samples, 0.02%)</title><rect x="699.8" y="1285" width="0.3" height="15.0" fill="rgb(224,144,0)" rx="2" ry="2" />
<text x="702.82" y="1295.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (110 samples, 0.01%)</title><rect x="130.3" y="1237" width="0.1" height="15.0" fill="rgb(217,22,4)" rx="2" ry="2" />
<text x="133.32" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (225 samples, 0.02%)</title><rect x="611.9" y="1157" width="0.2" height="15.0" fill="rgb(248,125,12)" rx="2" ry="2" />
<text x="614.92" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1287 (253 samples, 0.02%)</title><rect x="183.1" y="1205" width="0.2" height="15.0" fill="rgb(250,110,46)" rx="2" ry="2" />
<text x="186.07" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__go_3082 (26,024 samples, 2.14%)</title><rect x="50.3" y="1957" width="25.2" height="15.0" fill="rgb(220,123,51)" rx="2" ry="2" />
<text x="53.29" y="1967.5" >c..</text>
</g>
<g >
<title>caml_apply2 (272 samples, 0.02%)</title><rect x="403.2" y="1141" width="0.2" height="15.0" fill="rgb(218,33,34)" rx="2" ry="2" />
<text x="406.17" y="1151.5" ></text>
</g>
<g >
<title>mark_slice_darken (326 samples, 0.03%)</title><rect x="73.8" y="1813" width="0.3" height="15.0" fill="rgb(233,170,9)" rx="2" ry="2" />
<text x="76.76" y="1823.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (169 samples, 0.01%)</title><rect x="131.9" y="1285" width="0.1" height="15.0" fill="rgb(216,13,45)" rx="2" ry="2" />
<text x="134.85" y="1295.5" ></text>
</g>
<g >
<title>memset (156 samples, 0.01%)</title><rect x="700.6" y="1173" width="0.2" height="15.0" fill="rgb(242,176,19)" rx="2" ry="2" />
<text x="703.63" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (894 samples, 0.07%)</title><rect x="318.3" y="1221" width="0.9" height="15.0" fill="rgb(228,94,41)" rx="2" ry="2" />
<text x="321.31" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (154 samples, 0.01%)</title><rect x="74.2" y="1925" width="0.2" height="15.0" fill="rgb(215,179,3)" rx="2" ry="2" />
<text x="77.23" y="1935.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (316 samples, 0.03%)</title><rect x="814.1" y="1221" width="0.3" height="15.0" fill="rgb(215,121,25)" rx="2" ry="2" />
<text x="817.09" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (468 samples, 0.04%)</title><rect x="454.7" y="949" width="0.5" height="15.0" fill="rgb(216,61,4)" rx="2" ry="2" />
<text x="457.72" y="959.5" ></text>
</g>
<g >
<title>__generic_file_write_iter (626 samples, 0.05%)</title><rect x="921.2" y="1157" width="0.6" height="15.0" fill="rgb(239,177,46)" rx="2" ry="2" />
<text x="924.16" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (238 samples, 0.02%)</title><rect x="468.3" y="1045" width="0.2" height="15.0" fill="rgb(234,46,48)" rx="2" ry="2" />
<text x="471.32" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (221 samples, 0.02%)</title><rect x="280.4" y="1301" width="0.2" height="15.0" fill="rgb(234,160,37)" rx="2" ry="2" />
<text x="283.42" y="1311.5" ></text>
</g>
<g >
<title>rotr64 (244 samples, 0.02%)</title><rect x="498.9" y="1205" width="0.2" height="15.0" fill="rgb(211,82,50)" rx="2" ry="2" />
<text x="501.91" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (191 samples, 0.02%)</title><rect x="924.5" y="1349" width="0.2" height="15.0" fill="rgb(248,5,30)" rx="2" ry="2" />
<text x="927.54" y="1359.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (593 samples, 0.05%)</title><rect x="382.5" y="1189" width="0.6" height="15.0" fill="rgb(247,109,12)" rx="2" ry="2" />
<text x="385.51" y="1199.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (181 samples, 0.01%)</title><rect x="108.2" y="1157" width="0.1" height="15.0" fill="rgb(222,152,14)" rx="2" ry="2" />
<text x="111.15" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (454 samples, 0.04%)</title><rect x="426.2" y="1173" width="0.4" height="15.0" fill="rgb(226,197,20)" rx="2" ry="2" />
<text x="429.20" y="1183.5" ></text>
</g>
<g >
<title>page_fault (299 samples, 0.02%)</title><rect x="1120.8" y="1333" width="0.3" height="15.0" fill="rgb(214,184,7)" rx="2" ry="2" />
<text x="1123.83" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (573 samples, 0.05%)</title><rect x="86.7" y="1893" width="0.6" height="15.0" fill="rgb(233,19,29)" rx="2" ry="2" />
<text x="89.74" y="1903.5" ></text>
</g>
<g >
<title>mark_slice (595 samples, 0.05%)</title><rect x="742.9" y="1221" width="0.5" height="15.0" fill="rgb(224,151,49)" rx="2" ry="2" />
<text x="745.87" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__format__k_2506 (2,515 samples, 0.21%)</title><rect x="924.3" y="1381" width="2.5" height="15.0" fill="rgb(240,149,30)" rx="2" ry="2" />
<text x="927.32" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (131 samples, 0.01%)</title><rect x="336.7" y="1205" width="0.1" height="15.0" fill="rgb(221,228,23)" rx="2" ry="2" />
<text x="339.71" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (108 samples, 0.01%)</title><rect x="489.5" y="1253" width="0.1" height="15.0" fill="rgb(220,17,13)" rx="2" ry="2" />
<text x="492.48" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (7,315 samples, 0.60%)</title><rect x="451.0" y="1125" width="7.1" height="15.0" fill="rgb(233,35,33)" rx="2" ry="2" />
<text x="454.01" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (40,303 samples, 3.31%)</title><rect x="282.1" y="1301" width="39.0" height="15.0" fill="rgb(232,66,28)" rx="2" ry="2" />
<text x="285.06" y="1311.5" >cam..</text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,661 samples, 0.14%)</title><rect x="1186.3" y="1925" width="1.6" height="15.0" fill="rgb(224,67,3)" rx="2" ry="2" />
<text x="1189.27" y="1935.5" ></text>
</g>
<g >
<title>camlLwt_sequence__loop_1061 (1,117,463 samples, 91.83%)</title><rect x="92.3" y="1765" width="1083.6" height="15.0" fill="rgb(238,25,45)" rx="2" ry="2" />
<text x="95.33" y="1775.5" >camlLwt_sequence__loop_1061</text>
</g>
<g >
<title>caml_garbage_collection (213 samples, 0.02%)</title><rect x="811.7" y="1221" width="0.2" height="15.0" fill="rgb(205,9,54)" rx="2" ry="2" />
<text x="814.72" y="1231.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (621 samples, 0.05%)</title><rect x="745.3" y="1205" width="0.6" height="15.0" fill="rgb(230,137,35)" rx="2" ry="2" />
<text x="748.28" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (260 samples, 0.02%)</title><rect x="127.8" y="981" width="0.3" height="15.0" fill="rgb(222,201,11)" rx="2" ry="2" />
<text x="130.81" y="991.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3900 (1,408 samples, 0.12%)</title><rect x="303.8" y="1157" width="1.4" height="15.0" fill="rgb(209,99,18)" rx="2" ry="2" />
<text x="306.85" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,074 samples, 0.09%)</title><rect x="936.0" y="1093" width="1.0" height="15.0" fill="rgb(234,76,43)" rx="2" ry="2" />
<text x="939.00" y="1103.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (531 samples, 0.04%)</title><rect x="571.5" y="1013" width="0.5" height="15.0" fill="rgb(229,145,15)" rx="2" ry="2" />
<text x="574.52" y="1023.5" ></text>
</g>
<g >
<title>sweep_slice (110 samples, 0.01%)</title><rect x="848.0" y="1253" width="0.1" height="15.0" fill="rgb(226,229,16)" rx="2" ry="2" />
<text x="850.96" y="1263.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,341 samples, 0.11%)</title><rect x="942.4" y="1061" width="1.3" height="15.0" fill="rgb(226,97,17)" rx="2" ry="2" />
<text x="945.44" y="1071.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (167 samples, 0.01%)</title><rect x="1185.1" y="1381" width="0.1" height="15.0" fill="rgb(237,10,3)" rx="2" ry="2" />
<text x="1188.08" y="1391.5" ></text>
</g>
<g >
<title>parse_format (218 samples, 0.02%)</title><rect x="901.6" y="1221" width="0.2" height="15.0" fill="rgb(231,193,39)" rx="2" ry="2" />
<text x="904.55" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (552 samples, 0.05%)</title><rect x="1184.2" y="1669" width="0.5" height="15.0" fill="rgb(238,192,52)" rx="2" ry="2" />
<text x="1187.18" y="1679.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (104 samples, 0.01%)</title><rect x="1183.2" y="1493" width="0.1" height="15.0" fill="rgb(222,46,49)" rx="2" ry="2" />
<text x="1186.20" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (145 samples, 0.01%)</title><rect x="581.9" y="1029" width="0.1" height="15.0" fill="rgb(223,137,12)" rx="2" ry="2" />
<text x="584.90" y="1039.5" ></text>
</g>
<g >
<title>memmove (922 samples, 0.08%)</title><rect x="1131.6" y="1333" width="0.9" height="15.0" fill="rgb(221,216,27)" rx="2" ry="2" />
<text x="1134.61" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (190 samples, 0.02%)</title><rect x="457.5" y="1093" width="0.2" height="15.0" fill="rgb(207,117,47)" rx="2" ry="2" />
<text x="460.49" y="1103.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (1,969 samples, 0.16%)</title><rect x="181.2" y="1205" width="1.9" height="15.0" fill="rgb(217,48,15)" rx="2" ry="2" />
<text x="184.16" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (329 samples, 0.03%)</title><rect x="605.0" y="1221" width="0.3" height="15.0" fill="rgb(230,195,5)" rx="2" ry="2" />
<text x="607.96" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (304 samples, 0.02%)</title><rect x="394.5" y="1125" width="0.3" height="15.0" fill="rgb(230,228,15)" rx="2" ry="2" />
<text x="397.46" y="1135.5" ></text>
</g>
<g >
<title>__lll_unlock_wake (122 samples, 0.01%)</title><rect x="90.4" y="1973" width="0.1" height="15.0" fill="rgb(232,4,5)" rx="2" ry="2" />
<text x="93.36" y="1983.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (165 samples, 0.01%)</title><rect x="669.5" y="1253" width="0.2" height="15.0" fill="rgb(240,171,34)" rx="2" ry="2" />
<text x="672.49" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (819 samples, 0.07%)</title><rect x="68.5" y="1925" width="0.8" height="15.0" fill="rgb(253,57,47)" rx="2" ry="2" />
<text x="71.51" y="1935.5" ></text>
</g>
<g >
<title>mark_slice_darken (166 samples, 0.01%)</title><rect x="707.5" y="1269" width="0.2" height="15.0" fill="rgb(227,71,3)" rx="2" ry="2" />
<text x="710.51" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (181 samples, 0.01%)</title><rect x="597.3" y="1157" width="0.2" height="15.0" fill="rgb(208,114,39)" rx="2" ry="2" />
<text x="600.33" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1461" width="6.2" height="15.0" fill="rgb(238,34,40)" rx="2" ry="2" />
<text x="1178.90" y="1471.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (3,280 samples, 0.27%)</title><rect x="704.2" y="1317" width="3.1" height="15.0" fill="rgb(224,205,30)" rx="2" ry="2" />
<text x="707.15" y="1327.5" ></text>
</g>
<g >
<title>caml_record_signal (403 samples, 0.03%)</title><rect x="89.7" y="2005" width="0.4" height="15.0" fill="rgb(244,5,24)" rx="2" ry="2" />
<text x="92.72" y="2015.5" ></text>
</g>
<g >
<title>caml_alloc_shr (413 samples, 0.03%)</title><rect x="826.6" y="1109" width="0.4" height="15.0" fill="rgb(207,158,22)" rx="2" ry="2" />
<text x="829.64" y="1119.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (546 samples, 0.04%)</title><rect x="114.2" y="1221" width="0.5" height="15.0" fill="rgb(207,53,37)" rx="2" ry="2" />
<text x="117.21" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__map_2683 (134 samples, 0.01%)</title><rect x="482.5" y="1349" width="0.2" height="15.0" fill="rgb(215,18,12)" rx="2" ry="2" />
<text x="485.53" y="1359.5" ></text>
</g>
<g >
<title>ml_blake2b_final (1,107 samples, 0.09%)</title><rect x="610.4" y="1189" width="1.0" height="15.0" fill="rgb(208,34,27)" rx="2" ry="2" />
<text x="613.36" y="1199.5" ></text>
</g>
<g >
<title>page_fault (136 samples, 0.01%)</title><rect x="66.6" y="1861" width="0.1" height="15.0" fill="rgb(231,80,15)" rx="2" ry="2" />
<text x="69.59" y="1871.5" ></text>
</g>
<g >
<title>__GI___tcgetattr (1,935 samples, 0.16%)</title><rect x="155.7" y="1333" width="1.8" height="15.0" fill="rgb(239,161,47)" rx="2" ry="2" />
<text x="158.66" y="1343.5" ></text>
</g>
<g >
<title>blake2b_compress (531 samples, 0.04%)</title><rect x="484.4" y="1301" width="0.5" height="15.0" fill="rgb(227,50,40)" rx="2" ry="2" />
<text x="487.37" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (339 samples, 0.03%)</title><rect x="208.1" y="1109" width="0.3" height="15.0" fill="rgb(246,127,47)" rx="2" ry="2" />
<text x="211.12" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3667 (220 samples, 0.02%)</title><rect x="420.9" y="1173" width="0.2" height="15.0" fill="rgb(214,3,48)" rx="2" ry="2" />
<text x="423.85" y="1183.5" ></text>
</g>
<g >
<title>caml_blit_bytes (787 samples, 0.06%)</title><rect x="138.7" y="1253" width="0.7" height="15.0" fill="rgb(216,117,36)" rx="2" ry="2" />
<text x="141.66" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__classify_desc_1690 (743 samples, 0.06%)</title><rect x="1121.2" y="1365" width="0.7" height="15.0" fill="rgb(241,113,48)" rx="2" ry="2" />
<text x="1124.21" y="1375.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (2,076 samples, 0.17%)</title><rect x="453.8" y="1061" width="2.0" height="15.0" fill="rgb(213,72,14)" rx="2" ry="2" />
<text x="456.79" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3669 (756 samples, 0.06%)</title><rect x="68.6" y="1909" width="0.7" height="15.0" fill="rgb(225,201,40)" rx="2" ry="2" />
<text x="71.57" y="1919.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1287 (812 samples, 0.07%)</title><rect x="312.7" y="1221" width="0.7" height="15.0" fill="rgb(228,124,18)" rx="2" ry="2" />
<text x="315.66" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (106 samples, 0.01%)</title><rect x="585.5" y="1061" width="0.1" height="15.0" fill="rgb(219,74,46)" rx="2" ry="2" />
<text x="588.49" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (21,689 samples, 1.78%)</title><rect x="173.6" y="1301" width="21.0" height="15.0" fill="rgb(209,86,26)" rx="2" ry="2" />
<text x="176.58" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (267 samples, 0.02%)</title><rect x="930.6" y="1125" width="0.3" height="15.0" fill="rgb(219,122,39)" rx="2" ry="2" />
<text x="933.60" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_value_6716 (130 samples, 0.01%)</title><rect x="1173.7" y="901" width="0.1" height="15.0" fill="rgb(209,208,38)" rx="2" ry="2" />
<text x="1176.67" y="911.5" ></text>
</g>
<g >
<title>rw_verify_area (156 samples, 0.01%)</title><rect x="214.0" y="1045" width="0.1" height="15.0" fill="rgb(225,228,47)" rx="2" ry="2" />
<text x="216.99" y="1055.5" ></text>
</g>
<g >
<title>sweep_slice (180 samples, 0.01%)</title><rect x="971.5" y="1109" width="0.2" height="15.0" fill="rgb(242,102,42)" rx="2" ry="2" />
<text x="974.53" y="1119.5" ></text>
</g>
<g >
<title>memmove (881 samples, 0.07%)</title><rect x="815.2" y="1221" width="0.8" height="15.0" fill="rgb(241,207,15)" rx="2" ry="2" />
<text x="818.18" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (402 samples, 0.03%)</title><rect x="515.1" y="965" width="0.4" height="15.0" fill="rgb(227,149,7)" rx="2" ry="2" />
<text x="518.08" y="975.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (1,450 samples, 0.12%)</title><rect x="272.2" y="1205" width="1.4" height="15.0" fill="rgb(215,113,16)" rx="2" ry="2" />
<text x="275.19" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (734 samples, 0.06%)</title><rect x="523.9" y="1013" width="0.7" height="15.0" fill="rgb(229,76,35)" rx="2" ry="2" />
<text x="526.91" y="1023.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (492 samples, 0.04%)</title><rect x="572.2" y="981" width="0.4" height="15.0" fill="rgb(237,72,0)" rx="2" ry="2" />
<text x="575.17" y="991.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (2,004 samples, 0.16%)</title><rect x="387.0" y="1205" width="1.9" height="15.0" fill="rgb(231,139,9)" rx="2" ry="2" />
<text x="389.98" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (658 samples, 0.05%)</title><rect x="534.1" y="1109" width="0.7" height="15.0" fill="rgb(212,226,40)" rx="2" ry="2" />
<text x="537.14" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,643 samples, 0.14%)</title><rect x="583.3" y="1077" width="1.6" height="15.0" fill="rgb(225,56,17)" rx="2" ry="2" />
<text x="586.28" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Lru__mem_1406 (1,212 samples, 0.10%)</title><rect x="431.7" y="1253" width="1.2" height="15.0" fill="rgb(225,150,32)" rx="2" ry="2" />
<text x="434.69" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (521 samples, 0.04%)</title><rect x="701.9" y="1285" width="0.5" height="15.0" fill="rgb(232,79,25)" rx="2" ry="2" />
<text x="704.92" y="1295.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (879 samples, 0.07%)</title><rect x="554.7" y="1285" width="0.9" height="15.0" fill="rgb(239,112,48)" rx="2" ry="2" />
<text x="557.73" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (137 samples, 0.01%)</title><rect x="976.5" y="1045" width="0.1" height="15.0" fill="rgb(206,73,9)" rx="2" ry="2" />
<text x="979.52" y="1055.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (490 samples, 0.04%)</title><rect x="741.1" y="1269" width="0.5" height="15.0" fill="rgb(238,135,12)" rx="2" ry="2" />
<text x="744.15" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Main__entry (425 samples, 0.03%)</title><rect x="1182.2" y="1925" width="0.4" height="15.0" fill="rgb(253,23,39)" rx="2" ry="2" />
<text x="1185.18" y="1935.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (133 samples, 0.01%)</title><rect x="160.2" y="1285" width="0.2" height="15.0" fill="rgb(236,210,2)" rx="2" ry="2" />
<text x="163.24" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6970 (145 samples, 0.01%)</title><rect x="421.6" y="1173" width="0.2" height="15.0" fill="rgb(240,14,38)" rx="2" ry="2" />
<text x="424.63" y="1183.5" ></text>
</g>
<g >
<title>mark_slice_darken (175 samples, 0.01%)</title><rect x="797.7" y="1173" width="0.2" height="15.0" fill="rgb(215,142,28)" rx="2" ry="2" />
<text x="800.72" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,068 samples, 0.09%)</title><rect x="737.0" y="1205" width="1.0" height="15.0" fill="rgb(241,35,33)" rx="2" ry="2" />
<text x="739.99" y="1215.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64 (472 samples, 0.04%)</title><rect x="19.1" y="2021" width="0.5" height="15.0" fill="rgb(218,57,5)" rx="2" ry="2" />
<text x="22.11" y="2031.5" ></text>
</g>
<g >
<title>caml_hash (427 samples, 0.04%)</title><rect x="433.3" y="1189" width="0.4" height="15.0" fill="rgb(239,206,28)" rx="2" ry="2" />
<text x="436.33" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (107 samples, 0.01%)</title><rect x="957.4" y="1141" width="0.1" height="15.0" fill="rgb(243,100,47)" rx="2" ry="2" />
<text x="960.39" y="1151.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (119 samples, 0.01%)</title><rect x="893.9" y="1125" width="0.2" height="15.0" fill="rgb(217,53,54)" rx="2" ry="2" />
<text x="896.94" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (107 samples, 0.01%)</title><rect x="131.9" y="1157" width="0.1" height="15.0" fill="rgb(247,63,33)" rx="2" ry="2" />
<text x="134.87" y="1167.5" ></text>
</g>
<g >
<title>caml_fill_bytes (151 samples, 0.01%)</title><rect x="254.6" y="1189" width="0.2" height="15.0" fill="rgb(225,162,28)" rx="2" ry="2" />
<text x="257.61" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (11,926 samples, 0.98%)</title><rect x="637.6" y="1285" width="11.6" height="15.0" fill="rgb(225,109,14)" rx="2" ry="2" />
<text x="640.64" y="1295.5" ></text>
</g>
<g >
<title>blake2b_final (117 samples, 0.01%)</title><rect x="516.2" y="853" width="0.1" height="15.0" fill="rgb(207,138,48)" rx="2" ry="2" />
<text x="519.15" y="863.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (130 samples, 0.01%)</title><rect x="500.4" y="1253" width="0.1" height="15.0" fill="rgb(214,66,8)" rx="2" ry="2" />
<text x="503.39" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (441 samples, 0.04%)</title><rect x="797.6" y="1221" width="0.4" height="15.0" fill="rgb(206,95,7)" rx="2" ry="2" />
<text x="800.57" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3601 (309 samples, 0.03%)</title><rect x="447.6" y="1221" width="0.3" height="15.0" fill="rgb(237,108,0)" rx="2" ry="2" />
<text x="450.64" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (169 samples, 0.01%)</title><rect x="171.4" y="1301" width="0.1" height="15.0" fill="rgb(250,153,34)" rx="2" ry="2" />
<text x="174.36" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (235 samples, 0.02%)</title><rect x="617.5" y="1269" width="0.2" height="15.0" fill="rgb(205,44,15)" rx="2" ry="2" />
<text x="620.48" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (315 samples, 0.03%)</title><rect x="469.7" y="1125" width="0.3" height="15.0" fill="rgb(233,157,41)" rx="2" ry="2" />
<text x="472.74" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (153 samples, 0.01%)</title><rect x="540.6" y="1109" width="0.1" height="15.0" fill="rgb(211,223,54)" rx="2" ry="2" />
<text x="543.55" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__fun_9992 (5,861 samples, 0.48%)</title><rect x="697.1" y="1317" width="5.7" height="15.0" fill="rgb(250,15,40)" rx="2" ry="2" />
<text x="700.08" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (155 samples, 0.01%)</title><rect x="550.2" y="1205" width="0.1" height="15.0" fill="rgb(239,94,35)" rx="2" ry="2" />
<text x="553.17" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (133 samples, 0.01%)</title><rect x="702.4" y="1237" width="0.2" height="15.0" fill="rgb(228,83,4)" rx="2" ry="2" />
<text x="705.44" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (770 samples, 0.06%)</title><rect x="544.5" y="1221" width="0.8" height="15.0" fill="rgb(208,225,35)" rx="2" ry="2" />
<text x="547.53" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (610 samples, 0.05%)</title><rect x="506.8" y="1109" width="0.6" height="15.0" fill="rgb(235,217,9)" rx="2" ry="2" />
<text x="509.78" y="1119.5" ></text>
</g>
<g >
<title>caml_make_vect (637 samples, 0.05%)</title><rect x="650.8" y="1317" width="0.6" height="15.0" fill="rgb(251,190,15)" rx="2" ry="2" />
<text x="653.83" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (247 samples, 0.02%)</title><rect x="649.5" y="1221" width="0.2" height="15.0" fill="rgb(210,160,49)" rx="2" ry="2" />
<text x="652.48" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (193 samples, 0.02%)</title><rect x="115.3" y="1077" width="0.2" height="15.0" fill="rgb(227,75,38)" rx="2" ry="2" />
<text x="118.33" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_string_1065 (193 samples, 0.02%)</title><rect x="1164.1" y="1413" width="0.2" height="15.0" fill="rgb(234,127,6)" rx="2" ry="2" />
<text x="1167.12" y="1423.5" ></text>
</g>
<g >
<title>__vfs_write (3,855 samples, 0.32%)</title><rect x="1156.2" y="1349" width="3.8" height="15.0" fill="rgb(249,167,42)" rx="2" ry="2" />
<text x="1159.22" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (293 samples, 0.02%)</title><rect x="188.8" y="1205" width="0.3" height="15.0" fill="rgb(236,221,46)" rx="2" ry="2" />
<text x="191.84" y="1215.5" ></text>
</g>
<g >
<title>do_syscall_64 (326 samples, 0.03%)</title><rect x="183.5" y="1109" width="0.3" height="15.0" fill="rgb(242,5,6)" rx="2" ry="2" />
<text x="186.47" y="1119.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (1,784 samples, 0.15%)</title><rect x="132.9" y="1381" width="1.7" height="15.0" fill="rgb(246,53,38)" rx="2" ry="2" />
<text x="135.88" y="1391.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (158 samples, 0.01%)</title><rect x="720.1" y="1189" width="0.1" height="15.0" fill="rgb(236,131,9)" rx="2" ry="2" />
<text x="723.06" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (676 samples, 0.06%)</title><rect x="645.9" y="1221" width="0.7" height="15.0" fill="rgb(228,121,22)" rx="2" ry="2" />
<text x="648.91" y="1231.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (3,948 samples, 0.32%)</title><rect x="207.5" y="1189" width="3.8" height="15.0" fill="rgb(250,170,12)" rx="2" ry="2" />
<text x="210.52" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (154 samples, 0.01%)</title><rect x="713.0" y="1205" width="0.2" height="15.0" fill="rgb(208,137,54)" rx="2" ry="2" />
<text x="716.00" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (474 samples, 0.04%)</title><rect x="806.6" y="1189" width="0.5" height="15.0" fill="rgb(229,215,45)" rx="2" ry="2" />
<text x="809.63" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (11,727 samples, 0.96%)</title><rect x="143.5" y="1349" width="11.4" height="15.0" fill="rgb(207,194,36)" rx="2" ry="2" />
<text x="146.50" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (203 samples, 0.02%)</title><rect x="330.9" y="1333" width="0.2" height="15.0" fill="rgb(229,44,49)" rx="2" ry="2" />
<text x="333.91" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (235 samples, 0.02%)</title><rect x="573.7" y="933" width="0.2" height="15.0" fill="rgb(212,99,33)" rx="2" ry="2" />
<text x="576.67" y="943.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (261 samples, 0.02%)</title><rect x="544.8" y="1189" width="0.3" height="15.0" fill="rgb(210,79,3)" rx="2" ry="2" />
<text x="547.80" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_8080 (2,579 samples, 0.21%)</title><rect x="1177.5" y="1333" width="2.5" height="15.0" fill="rgb(249,188,24)" rx="2" ry="2" />
<text x="1180.53" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,115 samples, 0.09%)</title><rect x="516.4" y="613" width="1.1" height="15.0" fill="rgb(239,209,51)" rx="2" ry="2" />
<text x="519.45" y="623.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_7968 (1,349 samples, 0.11%)</title><rect x="496.7" y="1317" width="1.3" height="15.0" fill="rgb(216,161,28)" rx="2" ry="2" />
<text x="499.74" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7697 (119 samples, 0.01%)</title><rect x="398.4" y="1109" width="0.1" height="15.0" fill="rgb(249,93,11)" rx="2" ry="2" />
<text x="401.36" y="1119.5" ></text>
</g>
<g >
<title>sweep_slice (203 samples, 0.02%)</title><rect x="967.3" y="1109" width="0.2" height="15.0" fill="rgb(227,158,41)" rx="2" ry="2" />
<text x="970.29" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,113,733 samples, 91.52%)</title><rect x="92.4" y="1637" width="1079.9" height="15.0" fill="rgb(228,125,33)" rx="2" ry="2" />
<text x="95.38" y="1647.5" >camlLwt__run_in_resolution_loop_2292</text>
</g>
<g >
<title>caml_ba_create (3,270 samples, 0.27%)</title><rect x="1002.2" y="1365" width="3.2" height="15.0" fill="rgb(217,195,32)" rx="2" ry="2" />
<text x="1005.24" y="1375.5" ></text>
</g>
<g >
<title>invert_pointer_at (224 samples, 0.02%)</title><rect x="529.9" y="965" width="0.2" height="15.0" fill="rgb(231,105,40)" rx="2" ry="2" />
<text x="532.86" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (130 samples, 0.01%)</title><rect x="281.2" y="1301" width="0.1" height="15.0" fill="rgb(225,143,10)" rx="2" ry="2" />
<text x="284.18" y="1311.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (113 samples, 0.01%)</title><rect x="1184.6" y="1365" width="0.1" height="15.0" fill="rgb(210,33,31)" rx="2" ry="2" />
<text x="1187.60" y="1375.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (644 samples, 0.05%)</title><rect x="571.5" y="1029" width="0.6" height="15.0" fill="rgb(232,141,42)" rx="2" ry="2" />
<text x="574.52" y="1039.5" ></text>
</g>
<g >
<title>caml_string_equal (1,489 samples, 0.12%)</title><rect x="285.4" y="1189" width="1.4" height="15.0" fill="rgb(241,193,16)" rx="2" ry="2" />
<text x="288.37" y="1199.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (339 samples, 0.03%)</title><rect x="345.4" y="997" width="0.4" height="15.0" fill="rgb(239,153,52)" rx="2" ry="2" />
<text x="348.44" y="1007.5" ></text>
</g>
<g >
<title>caml_alloc_string (131 samples, 0.01%)</title><rect x="550.8" y="1253" width="0.1" height="15.0" fill="rgb(232,207,43)" rx="2" ry="2" />
<text x="553.77" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__short_hash_4610 (208 samples, 0.02%)</title><rect x="305.6" y="1173" width="0.2" height="15.0" fill="rgb(238,130,39)" rx="2" ry="2" />
<text x="308.59" y="1183.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (309 samples, 0.03%)</title><rect x="1182.7" y="1701" width="0.3" height="15.0" fill="rgb(254,225,35)" rx="2" ry="2" />
<text x="1185.67" y="1711.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (4,987 samples, 0.41%)</title><rect x="1100.7" y="1365" width="4.8" height="15.0" fill="rgb(226,211,49)" rx="2" ry="2" />
<text x="1103.70" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (284 samples, 0.02%)</title><rect x="587.7" y="1045" width="0.3" height="15.0" fill="rgb(206,167,7)" rx="2" ry="2" />
<text x="590.69" y="1055.5" ></text>
</g>
<g >
<title>sweep_slice (217 samples, 0.02%)</title><rect x="903.3" y="1205" width="0.2" height="15.0" fill="rgb(221,62,1)" rx="2" ry="2" />
<text x="906.27" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (855 samples, 0.07%)</title><rect x="76.4" y="1957" width="0.9" height="15.0" fill="rgb(242,6,22)" rx="2" ry="2" />
<text x="79.42" y="1967.5" ></text>
</g>
<g >
<title>camlTezos_rpc__RPC_encoding__schema_1497 (697 samples, 0.06%)</title><rect x="1184.1" y="1829" width="0.7" height="15.0" fill="rgb(233,117,21)" rx="2" ry="2" />
<text x="1187.15" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (666 samples, 0.05%)</title><rect x="68.7" y="1861" width="0.6" height="15.0" fill="rgb(245,111,26)" rx="2" ry="2" />
<text x="71.65" y="1871.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3357 (134 samples, 0.01%)</title><rect x="738.8" y="1317" width="0.1" height="15.0" fill="rgb(222,139,17)" rx="2" ry="2" />
<text x="741.77" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (240 samples, 0.02%)</title><rect x="612.9" y="1237" width="0.2" height="15.0" fill="rgb(240,183,22)" rx="2" ry="2" />
<text x="615.87" y="1247.5" ></text>
</g>
<g >
<title>rotr64 (153 samples, 0.01%)</title><rect x="509.4" y="997" width="0.1" height="15.0" fill="rgb(252,110,32)" rx="2" ry="2" />
<text x="512.40" y="1007.5" ></text>
</g>
<g >
<title>mark_slice_darken (128 samples, 0.01%)</title><rect x="901.8" y="1189" width="0.1" height="15.0" fill="rgb(231,117,3)" rx="2" ry="2" />
<text x="904.80" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6643 (235 samples, 0.02%)</title><rect x="483.1" y="1381" width="0.2" height="15.0" fill="rgb(225,111,26)" rx="2" ry="2" />
<text x="486.10" y="1391.5" ></text>
</g>
<g >
<title>sys_select (198 samples, 0.02%)</title><rect x="89.5" y="1957" width="0.2" height="15.0" fill="rgb(249,114,1)" rx="2" ry="2" />
<text x="92.49" y="1967.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (134 samples, 0.01%)</title><rect x="432.3" y="1157" width="0.1" height="15.0" fill="rgb(239,157,20)" rx="2" ry="2" />
<text x="435.26" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (207 samples, 0.02%)</title><rect x="192.5" y="1253" width="0.2" height="15.0" fill="rgb(220,227,25)" rx="2" ry="2" />
<text x="195.46" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (617 samples, 0.05%)</title><rect x="566.3" y="1125" width="0.6" height="15.0" fill="rgb(244,97,7)" rx="2" ry="2" />
<text x="569.27" y="1135.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (121 samples, 0.01%)</title><rect x="1184.6" y="1461" width="0.1" height="15.0" fill="rgb(254,95,42)" rx="2" ry="2" />
<text x="1187.60" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__string__concat_1101 (3,913 samples, 0.32%)</title><rect x="878.5" y="1269" width="3.8" height="15.0" fill="rgb(212,202,10)" rx="2" ry="2" />
<text x="881.54" y="1279.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (824 samples, 0.07%)</title><rect x="900.7" y="1189" width="0.8" height="15.0" fill="rgb(247,113,48)" rx="2" ry="2" />
<text x="903.75" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2775 (126 samples, 0.01%)</title><rect x="374.6" y="1205" width="0.1" height="15.0" fill="rgb(218,166,6)" rx="2" ry="2" />
<text x="377.56" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__convert_int_3047 (416 samples, 0.03%)</title><rect x="923.6" y="1365" width="0.4" height="15.0" fill="rgb(210,14,2)" rx="2" ry="2" />
<text x="926.60" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (295 samples, 0.02%)</title><rect x="1182.7" y="1573" width="0.3" height="15.0" fill="rgb(217,91,4)" rx="2" ry="2" />
<text x="1185.68" y="1583.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,047 samples, 0.09%)</title><rect x="516.5" y="581" width="1.0" height="15.0" fill="rgb(229,183,18)" rx="2" ry="2" />
<text x="519.45" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (541 samples, 0.04%)</title><rect x="1164.9" y="1445" width="0.5" height="15.0" fill="rgb(239,131,37)" rx="2" ry="2" />
<text x="1167.90" y="1455.5" ></text>
</g>
<g >
<title>camlTezos_shell__State__read_opt_5035 (172 samples, 0.01%)</title><rect x="1172.5" y="901" width="0.2" height="15.0" fill="rgb(227,164,54)" rx="2" ry="2" />
<text x="1175.52" y="911.5" ></text>
</g>
<g >
<title>mark_slice (251 samples, 0.02%)</title><rect x="594.7" y="1093" width="0.3" height="15.0" fill="rgb(215,110,31)" rx="2" ry="2" />
<text x="597.73" y="1103.5" ></text>
</g>
<g >
<title>caml_call_gc (124 samples, 0.01%)</title><rect x="620.2" y="1317" width="0.1" height="15.0" fill="rgb(209,39,52)" rx="2" ry="2" />
<text x="623.20" y="1327.5" ></text>
</g>
<g >
<title>sweep_slice (261 samples, 0.02%)</title><rect x="275.3" y="1205" width="0.3" height="15.0" fill="rgb(216,149,23)" rx="2" ry="2" />
<text x="278.30" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__pre_hash_10585 (408 samples, 0.03%)</title><rect x="106.8" y="1205" width="0.4" height="15.0" fill="rgb(219,110,9)" rx="2" ry="2" />
<text x="109.82" y="1215.5" ></text>
</g>
<g >
<title>blake2b_final (591 samples, 0.05%)</title><rect x="556.7" y="1253" width="0.6" height="15.0" fill="rgb(249,117,43)" rx="2" ry="2" />
<text x="559.70" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (479 samples, 0.04%)</title><rect x="522.0" y="981" width="0.5" height="15.0" fill="rgb(252,182,21)" rx="2" ry="2" />
<text x="525.00" y="991.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (11,989 samples, 0.99%)</title><rect x="888.7" y="1269" width="11.7" height="15.0" fill="rgb(220,72,12)" rx="2" ry="2" />
<text x="891.74" y="1279.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (987 samples, 0.08%)</title><rect x="363.6" y="1157" width="1.0" height="15.0" fill="rgb(250,38,25)" rx="2" ry="2" />
<text x="366.64" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (144 samples, 0.01%)</title><rect x="54.3" y="1845" width="0.1" height="15.0" fill="rgb(209,127,13)" rx="2" ry="2" />
<text x="57.26" y="1855.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (2,324 samples, 0.19%)</title><rect x="1177.7" y="1301" width="2.3" height="15.0" fill="rgb(249,193,50)" rx="2" ry="2" />
<text x="1180.73" y="1311.5" ></text>
</g>
<g >
<title>caml_hash (530 samples, 0.04%)</title><rect x="307.7" y="1157" width="0.5" height="15.0" fill="rgb(234,9,27)" rx="2" ry="2" />
<text x="310.73" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (604 samples, 0.05%)</title><rect x="432.0" y="1205" width="0.6" height="15.0" fill="rgb(242,209,33)" rx="2" ry="2" />
<text x="434.97" y="1215.5" ></text>
</g>
<g >
<title>camlLmdb__fold_flags_1953 (211 samples, 0.02%)</title><rect x="773.9" y="1253" width="0.2" height="15.0" fill="rgb(221,160,32)" rx="2" ry="2" />
<text x="776.94" y="1263.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (131 samples, 0.01%)</title><rect x="1185.4" y="1445" width="0.1" height="15.0" fill="rgb(246,123,21)" rx="2" ry="2" />
<text x="1188.42" y="1455.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (178 samples, 0.01%)</title><rect x="108.2" y="1141" width="0.1" height="15.0" fill="rgb(223,164,44)" rx="2" ry="2" />
<text x="111.16" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (128 samples, 0.01%)</title><rect x="528.9" y="1029" width="0.1" height="15.0" fill="rgb(223,70,13)" rx="2" ry="2" />
<text x="531.86" y="1039.5" ></text>
</g>
<g >
<title>mark_slice_darken (357 samples, 0.03%)</title><rect x="53.5" y="1829" width="0.4" height="15.0" fill="rgb(236,169,53)" rx="2" ry="2" />
<text x="56.51" y="1839.5" ></text>
</g>
<g >
<title>mark_slice_darken (2,916 samples, 0.24%)</title><rect x="641.9" y="1205" width="2.8" height="15.0" fill="rgb(226,187,25)" rx="2" ry="2" />
<text x="644.91" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (146 samples, 0.01%)</title><rect x="352.3" y="1205" width="0.2" height="15.0" fill="rgb(237,92,54)" rx="2" ry="2" />
<text x="355.34" y="1215.5" ></text>
</g>
<g >
<title>sys_pread64 (114 samples, 0.01%)</title><rect x="121.7" y="1013" width="0.1" height="15.0" fill="rgb(226,95,36)" rx="2" ry="2" />
<text x="124.68" y="1023.5" ></text>
</g>
<g >
<title>caml_c_call (6,045 samples, 0.50%)</title><rect x="30.6" y="2037" width="5.8" height="15.0" fill="rgb(228,130,4)" rx="2" ry="2" />
<text x="33.58" y="2047.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__fold_2098 (6,647 samples, 0.55%)</title><rect x="81.3" y="1957" width="6.5" height="15.0" fill="rgb(226,12,15)" rx="2" ry="2" />
<text x="84.32" y="1967.5" ></text>
</g>
<g >
<title>caml_garbage_collection (160 samples, 0.01%)</title><rect x="978.6" y="1333" width="0.2" height="15.0" fill="rgb(248,12,8)" rx="2" ry="2" />
<text x="981.65" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (392 samples, 0.03%)</title><rect x="845.5" y="1189" width="0.4" height="15.0" fill="rgb(234,131,11)" rx="2" ry="2" />
<text x="848.52" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (2,399 samples, 0.20%)</title><rect x="392.5" y="1141" width="2.3" height="15.0" fill="rgb(229,55,18)" rx="2" ry="2" />
<text x="395.52" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (105 samples, 0.01%)</title><rect x="1184.5" y="1301" width="0.1" height="15.0" fill="rgb(238,134,22)" rx="2" ry="2" />
<text x="1187.46" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (337 samples, 0.03%)</title><rect x="989.0" y="1365" width="0.3" height="15.0" fill="rgb(215,207,36)" rx="2" ry="2" />
<text x="992.00" y="1375.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (249 samples, 0.02%)</title><rect x="690.1" y="1205" width="0.2" height="15.0" fill="rgb(234,25,14)" rx="2" ry="2" />
<text x="693.07" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (171 samples, 0.01%)</title><rect x="1185.3" y="1413" width="0.1" height="15.0" fill="rgb(222,109,38)" rx="2" ry="2" />
<text x="1188.26" y="1423.5" ></text>
</g>
<g >
<title>camlIrmin__Node__list_5563 (146 samples, 0.01%)</title><rect x="264.9" y="1237" width="0.2" height="15.0" fill="rgb(217,87,44)" rx="2" ry="2" />
<text x="267.91" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (543 samples, 0.04%)</title><rect x="577.8" y="997" width="0.5" height="15.0" fill="rgb(218,147,41)" rx="2" ry="2" />
<text x="580.78" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (379 samples, 0.03%)</title><rect x="1183.7" y="1781" width="0.3" height="15.0" fill="rgb(239,76,48)" rx="2" ry="2" />
<text x="1186.66" y="1791.5" ></text>
</g>
<g >
<title>mark_slice (226 samples, 0.02%)</title><rect x="702.1" y="1205" width="0.3" height="15.0" fill="rgb(240,58,50)" rx="2" ry="2" />
<text x="705.13" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="757" width="1.6" height="15.0" fill="rgb(212,104,47)" rx="2" ry="2" />
<text x="1189.27" y="767.5" ></text>
</g>
<g >
<title>caml_call_gc (194 samples, 0.02%)</title><rect x="239.9" y="1301" width="0.2" height="15.0" fill="rgb(226,122,25)" rx="2" ry="2" />
<text x="242.89" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1829" width="1.6" height="15.0" fill="rgb(222,131,51)" rx="2" ry="2" />
<text x="1189.27" y="1839.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (382 samples, 0.03%)</title><rect x="151.5" y="1237" width="0.4" height="15.0" fill="rgb(213,51,23)" rx="2" ry="2" />
<text x="154.50" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (524 samples, 0.04%)</title><rect x="384.3" y="1157" width="0.5" height="15.0" fill="rgb(243,70,50)" rx="2" ry="2" />
<text x="387.31" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (3,236 samples, 0.27%)</title><rect x="465.4" y="1061" width="3.2" height="15.0" fill="rgb(219,211,33)" rx="2" ry="2" />
<text x="468.43" y="1071.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (797 samples, 0.07%)</title><rect x="550.9" y="1269" width="0.8" height="15.0" fill="rgb(244,76,10)" rx="2" ry="2" />
<text x="553.93" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_string (128 samples, 0.01%)</title><rect x="538.3" y="1125" width="0.1" height="15.0" fill="rgb(223,17,42)" rx="2" ry="2" />
<text x="541.30" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__classify_desc_1690 (122 samples, 0.01%)</title><rect x="977.6" y="1285" width="0.1" height="15.0" fill="rgb(228,196,17)" rx="2" ry="2" />
<text x="980.58" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (346 samples, 0.03%)</title><rect x="454.7" y="901" width="0.4" height="15.0" fill="rgb(227,5,0)" rx="2" ry="2" />
<text x="457.72" y="911.5" ></text>
</g>
<g >
<title>caml_garbage_collection (112 samples, 0.01%)</title><rect x="457.8" y="1077" width="0.1" height="15.0" fill="rgb(234,125,49)" rx="2" ry="2" />
<text x="460.83" y="1087.5" ></text>
</g>
<g >
<title>mdb_page_search_root (279 samples, 0.02%)</title><rect x="488.9" y="1173" width="0.3" height="15.0" fill="rgb(233,176,30)" rx="2" ry="2" />
<text x="491.90" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (617 samples, 0.05%)</title><rect x="1184.2" y="1765" width="0.6" height="15.0" fill="rgb(227,42,39)" rx="2" ry="2" />
<text x="1187.18" y="1775.5" ></text>
</g>
<g >
<title>caml_hash (128 samples, 0.01%)</title><rect x="200.9" y="1189" width="0.1" height="15.0" fill="rgb(214,58,20)" rx="2" ry="2" />
<text x="203.86" y="1199.5" ></text>
</g>
<g >
<title>sweep_slice (122 samples, 0.01%)</title><rect x="740.0" y="1205" width="0.1" height="15.0" fill="rgb(247,139,54)" rx="2" ry="2" />
<text x="742.97" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__import_protocol_data_6317 (172 samples, 0.01%)</title><rect x="1172.5" y="917" width="0.2" height="15.0" fill="rgb(209,125,1)" rx="2" ry="2" />
<text x="1175.52" y="927.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (217 samples, 0.02%)</title><rect x="798.5" y="1205" width="0.2" height="15.0" fill="rgb(207,170,34)" rx="2" ry="2" />
<text x="801.50" y="1215.5" ></text>
</g>
<g >
<title>caml_ba_create (1,762 samples, 0.14%)</title><rect x="856.5" y="1237" width="1.7" height="15.0" fill="rgb(221,179,24)" rx="2" ry="2" />
<text x="859.49" y="1247.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (754 samples, 0.06%)</title><rect x="583.8" y="1013" width="0.8" height="15.0" fill="rgb(249,41,53)" rx="2" ry="2" />
<text x="586.84" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (118 samples, 0.01%)</title><rect x="1176.2" y="1269" width="0.2" height="15.0" fill="rgb(220,91,45)" rx="2" ry="2" />
<text x="1179.24" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__resize_1960 (296 samples, 0.02%)</title><rect x="189.6" y="1237" width="0.3" height="15.0" fill="rgb(252,197,18)" rx="2" ry="2" />
<text x="192.64" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (3,971 samples, 0.33%)</title><rect x="708.1" y="1317" width="3.8" height="15.0" fill="rgb(233,39,21)" rx="2" ry="2" />
<text x="711.08" y="1327.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1515 (429 samples, 0.04%)</title><rect x="183.4" y="1173" width="0.4" height="15.0" fill="rgb(243,143,39)" rx="2" ry="2" />
<text x="186.40" y="1183.5" ></text>
</g>
<g >
<title>vsnprintf (1,524 samples, 0.13%)</title><rect x="898.1" y="1189" width="1.5" height="15.0" fill="rgb(238,58,22)" rx="2" ry="2" />
<text x="901.14" y="1199.5" ></text>
</g>
<g >
<title>memmove (249 samples, 0.02%)</title><rect x="903.5" y="1221" width="0.2" height="15.0" fill="rgb(211,223,25)" rx="2" ry="2" />
<text x="906.48" y="1231.5" ></text>
</g>
<g >
<title>sweep_slice (452 samples, 0.04%)</title><rect x="831.9" y="1093" width="0.4" height="15.0" fill="rgb(216,56,20)" rx="2" ry="2" />
<text x="834.91" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (158 samples, 0.01%)</title><rect x="100.5" y="1221" width="0.2" height="15.0" fill="rgb(230,158,27)" rx="2" ry="2" />
<text x="103.51" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (1,652 samples, 0.14%)</title><rect x="260.3" y="1221" width="1.6" height="15.0" fill="rgb(225,179,16)" rx="2" ry="2" />
<text x="263.31" y="1231.5" ></text>
</g>
<g >
<title>caml_curry3 (129 samples, 0.01%)</title><rect x="361.3" y="1141" width="0.1" height="15.0" fill="rgb(208,165,30)" rx="2" ry="2" />
<text x="364.32" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (136 samples, 0.01%)</title><rect x="545.9" y="1221" width="0.2" height="15.0" fill="rgb(229,185,51)" rx="2" ry="2" />
<text x="548.92" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (2,984 samples, 0.25%)</title><rect x="317.0" y="1237" width="2.9" height="15.0" fill="rgb(219,87,11)" rx="2" ry="2" />
<text x="319.99" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3818 (349 samples, 0.03%)</title><rect x="401.8" y="1109" width="0.3" height="15.0" fill="rgb(239,39,11)" rx="2" ry="2" />
<text x="404.79" y="1119.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (319 samples, 0.03%)</title><rect x="1183.7" y="1701" width="0.3" height="15.0" fill="rgb(246,69,19)" rx="2" ry="2" />
<text x="1186.66" y="1711.5" ></text>
</g>
<g >
<title>caml_call_gc (2,427 samples, 0.20%)</title><rect x="685.2" y="1285" width="2.3" height="15.0" fill="rgb(229,51,37)" rx="2" ry="2" />
<text x="688.17" y="1295.5" ></text>
</g>
<g >
<title>blake2b_compress (398 samples, 0.03%)</title><rect x="514.0" y="917" width="0.4" height="15.0" fill="rgb(242,156,28)" rx="2" ry="2" />
<text x="517.00" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_9727 (519 samples, 0.04%)</title><rect x="126.9" y="1125" width="0.5" height="15.0" fill="rgb(251,107,40)" rx="2" ry="2" />
<text x="129.88" y="1135.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,282 samples, 0.11%)</title><rect x="893.5" y="1205" width="1.3" height="15.0" fill="rgb(221,170,46)" rx="2" ry="2" />
<text x="896.52" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (269 samples, 0.02%)</title><rect x="273.7" y="1253" width="0.3" height="15.0" fill="rgb(232,222,39)" rx="2" ry="2" />
<text x="276.73" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (141 samples, 0.01%)</title><rect x="443.8" y="1189" width="0.2" height="15.0" fill="rgb(225,14,16)" rx="2" ry="2" />
<text x="446.83" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (606 samples, 0.05%)</title><rect x="435.4" y="1237" width="0.6" height="15.0" fill="rgb(249,2,51)" rx="2" ry="2" />
<text x="438.43" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (404 samples, 0.03%)</title><rect x="1115.8" y="1365" width="0.4" height="15.0" fill="rgb(237,195,20)" rx="2" ry="2" />
<text x="1118.82" y="1375.5" ></text>
</g>
<g >
<title>blake2b_compress (379 samples, 0.03%)</title><rect x="514.6" y="901" width="0.3" height="15.0" fill="rgb(240,37,17)" rx="2" ry="2" />
<text x="517.56" y="911.5" ></text>
</g>
<g >
<title>caml_garbage_collection (510 samples, 0.04%)</title><rect x="303.2" y="1109" width="0.5" height="15.0" fill="rgb(254,56,7)" rx="2" ry="2" />
<text x="306.17" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3601 (158 samples, 0.01%)</title><rect x="423.1" y="1157" width="0.1" height="15.0" fill="rgb(246,99,14)" rx="2" ry="2" />
<text x="426.05" y="1167.5" ></text>
</g>
<g >
<title>caml_call_gc (563 samples, 0.05%)</title><rect x="796.1" y="1253" width="0.5" height="15.0" fill="rgb(214,49,8)" rx="2" ry="2" />
<text x="799.07" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (177 samples, 0.01%)</title><rect x="355.5" y="1221" width="0.1" height="15.0" fill="rgb(205,184,5)" rx="2" ry="2" />
<text x="358.45" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (171 samples, 0.01%)</title><rect x="1185.1" y="1445" width="0.1" height="15.0" fill="rgb(210,8,8)" rx="2" ry="2" />
<text x="1188.08" y="1455.5" ></text>
</g>
<g >
<title>mark_slice (908 samples, 0.07%)</title><rect x="274.4" y="1205" width="0.9" height="15.0" fill="rgb(214,178,6)" rx="2" ry="2" />
<text x="277.42" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_stdlib__Compare__$3d_1022 (110 samples, 0.01%)</title><rect x="496.0" y="1349" width="0.1" height="15.0" fill="rgb(210,74,33)" rx="2" ry="2" />
<text x="499.02" y="1359.5" ></text>
</g>
<g >
<title>__GI___strlen_sse2 (352 samples, 0.03%)</title><rect x="1131.0" y="1333" width="0.3" height="15.0" fill="rgb(233,39,34)" rx="2" ry="2" />
<text x="1133.97" y="1343.5" ></text>
</g>
<g >
<title>mark_slice_darken (124 samples, 0.01%)</title><rect x="75.9" y="1765" width="0.1" height="15.0" fill="rgb(223,99,0)" rx="2" ry="2" />
<text x="78.85" y="1775.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_string_1432 (197 samples, 0.02%)</title><rect x="149.3" y="1253" width="0.1" height="15.0" fill="rgb(215,70,0)" rx="2" ry="2" />
<text x="152.26" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (2,419 samples, 0.20%)</title><rect x="935.1" y="1141" width="2.3" height="15.0" fill="rgb(210,50,44)" rx="2" ry="2" />
<text x="938.09" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (616 samples, 0.05%)</title><rect x="56.3" y="1829" width="0.6" height="15.0" fill="rgb(233,8,38)" rx="2" ry="2" />
<text x="59.33" y="1839.5" ></text>
</g>
<g >
<title>camlLwt__get_2036 (3,269 samples, 0.27%)</title><rect x="1068.6" y="1397" width="3.1" height="15.0" fill="rgb(247,13,53)" rx="2" ry="2" />
<text x="1071.55" y="1407.5" ></text>
</g>
<g >
<title>caml_alloc_string (156 samples, 0.01%)</title><rect x="423.3" y="1173" width="0.2" height="15.0" fill="rgb(224,158,20)" rx="2" ry="2" />
<text x="426.32" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (349 samples, 0.03%)</title><rect x="258.0" y="1269" width="0.3" height="15.0" fill="rgb(215,60,53)" rx="2" ry="2" />
<text x="260.95" y="1279.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (296 samples, 0.02%)</title><rect x="242.7" y="1237" width="0.3" height="15.0" fill="rgb(254,77,11)" rx="2" ry="2" />
<text x="245.67" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (154 samples, 0.01%)</title><rect x="447.0" y="1237" width="0.2" height="15.0" fill="rgb(216,189,54)" rx="2" ry="2" />
<text x="450.03" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,979 samples, 0.24%)</title><rect x="78.1" y="1925" width="2.9" height="15.0" fill="rgb(238,176,46)" rx="2" ry="2" />
<text x="81.08" y="1935.5" ></text>
</g>
<g >
<title>camlTezos_base__Block_header__fun_4003 (141 samples, 0.01%)</title><rect x="734.2" y="1253" width="0.1" height="15.0" fill="rgb(253,90,0)" rx="2" ry="2" />
<text x="737.19" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (320 samples, 0.03%)</title><rect x="54.4" y="1893" width="0.3" height="15.0" fill="rgb(212,185,18)" rx="2" ry="2" />
<text x="57.41" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (173 samples, 0.01%)</title><rect x="131.1" y="1141" width="0.1" height="15.0" fill="rgb(253,187,6)" rx="2" ry="2" />
<text x="134.05" y="1151.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (717 samples, 0.06%)</title><rect x="565.5" y="1157" width="0.7" height="15.0" fill="rgb(236,126,39)" rx="2" ry="2" />
<text x="568.55" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (171 samples, 0.01%)</title><rect x="522.2" y="949" width="0.1" height="15.0" fill="rgb(248,130,6)" rx="2" ry="2" />
<text x="525.15" y="959.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (52,093 samples, 4.28%)</title><rect x="927.2" y="1317" width="50.5" height="15.0" fill="rgb(247,13,22)" rx="2" ry="2" />
<text x="930.23" y="1327.5" >camlT..</text>
</g>
<g >
<title>camlBlake2__fun_1565 (445 samples, 0.04%)</title><rect x="572.7" y="965" width="0.4" height="15.0" fill="rgb(236,128,38)" rx="2" ry="2" />
<text x="575.71" y="975.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (295 samples, 0.02%)</title><rect x="115.0" y="1077" width="0.3" height="15.0" fill="rgb(245,183,36)" rx="2" ry="2" />
<text x="118.02" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (877 samples, 0.07%)</title><rect x="516.5" y="213" width="0.8" height="15.0" fill="rgb(220,197,39)" rx="2" ry="2" />
<text x="519.49" y="223.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (1,100 samples, 0.09%)</title><rect x="238.0" y="1253" width="1.1" height="15.0" fill="rgb(250,134,19)" rx="2" ry="2" />
<text x="241.02" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (2,677 samples, 0.22%)</title><rect x="109.6" y="1173" width="2.6" height="15.0" fill="rgb(243,89,0)" rx="2" ry="2" />
<text x="112.64" y="1183.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (156 samples, 0.01%)</title><rect x="395.1" y="1109" width="0.2" height="15.0" fill="rgb(234,97,3)" rx="2" ry="2" />
<text x="398.15" y="1119.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (566 samples, 0.05%)</title><rect x="801.9" y="1253" width="0.6" height="15.0" fill="rgb(250,69,45)" rx="2" ry="2" />
<text x="804.93" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1525 (158 samples, 0.01%)</title><rect x="121.7" y="1109" width="0.1" height="15.0" fill="rgb(210,106,1)" rx="2" ry="2" />
<text x="124.65" y="1119.5" ></text>
</g>
<g >
<title>caml_apply2 (162 samples, 0.01%)</title><rect x="692.7" y="1285" width="0.1" height="15.0" fill="rgb(232,110,2)" rx="2" ry="2" />
<text x="695.69" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (276 samples, 0.02%)</title><rect x="536.4" y="1077" width="0.3" height="15.0" fill="rgb(213,25,41)" rx="2" ry="2" />
<text x="539.41" y="1087.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (3,154 samples, 0.26%)</title><rect x="119.1" y="1189" width="3.1" height="15.0" fill="rgb(227,5,43)" rx="2" ry="2" />
<text x="122.14" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (236 samples, 0.02%)</title><rect x="311.4" y="1125" width="0.2" height="15.0" fill="rgb(220,23,45)" rx="2" ry="2" />
<text x="314.39" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (368 samples, 0.03%)</title><rect x="408.5" y="1125" width="0.4" height="15.0" fill="rgb(219,110,44)" rx="2" ry="2" />
<text x="411.53" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__clear_info_6573 (151 samples, 0.01%)</title><rect x="477.9" y="1269" width="0.1" height="15.0" fill="rgb(216,70,21)" rx="2" ry="2" />
<text x="480.88" y="1279.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (193 samples, 0.02%)</title><rect x="114.5" y="1173" width="0.2" height="15.0" fill="rgb(225,110,39)" rx="2" ry="2" />
<text x="117.49" y="1183.5" ></text>
</g>
<g >
<title>blake2b_final (631 samples, 0.05%)</title><rect x="509.0" y="1029" width="0.6" height="15.0" fill="rgb(234,108,36)" rx="2" ry="2" />
<text x="512.00" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (110 samples, 0.01%)</title><rect x="519.3" y="885" width="0.1" height="15.0" fill="rgb(206,218,2)" rx="2" ry="2" />
<text x="522.27" y="895.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,500 samples, 0.12%)</title><rect x="85.0" y="1861" width="1.5" height="15.0" fill="rgb(250,44,53)" rx="2" ry="2" />
<text x="88.02" y="1871.5" ></text>
</g>
<g >
<title>mark_slice_darken (770 samples, 0.06%)</title><rect x="671.3" y="1237" width="0.7" height="15.0" fill="rgb(222,39,12)" rx="2" ry="2" />
<text x="674.25" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (380 samples, 0.03%)</title><rect x="828.0" y="1061" width="0.4" height="15.0" fill="rgb(229,27,22)" rx="2" ry="2" />
<text x="831.01" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (632 samples, 0.05%)</title><rect x="926.1" y="1349" width="0.6" height="15.0" fill="rgb(215,1,45)" rx="2" ry="2" />
<text x="929.13" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (163 samples, 0.01%)</title><rect x="413.5" y="1189" width="0.2" height="15.0" fill="rgb(242,38,1)" rx="2" ry="2" />
<text x="416.53" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (305 samples, 0.03%)</title><rect x="801.4" y="1189" width="0.3" height="15.0" fill="rgb(245,193,20)" rx="2" ry="2" />
<text x="804.44" y="1199.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (592 samples, 0.05%)</title><rect x="195.7" y="1301" width="0.6" height="15.0" fill="rgb(243,221,35)" rx="2" ry="2" />
<text x="198.73" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (192 samples, 0.02%)</title><rect x="575.4" y="933" width="0.2" height="15.0" fill="rgb(230,54,49)" rx="2" ry="2" />
<text x="578.37" y="943.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (621 samples, 0.05%)</title><rect x="565.6" y="1141" width="0.6" height="15.0" fill="rgb(208,22,9)" rx="2" ry="2" />
<text x="568.56" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (223 samples, 0.02%)</title><rect x="53.1" y="1877" width="0.2" height="15.0" fill="rgb(205,64,32)" rx="2" ry="2" />
<text x="56.12" y="1887.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (261 samples, 0.02%)</title><rect x="574.5" y="693" width="0.2" height="15.0" fill="rgb(212,165,28)" rx="2" ry="2" />
<text x="577.49" y="703.5" ></text>
</g>
<g >
<title>caml_call_gc (161 samples, 0.01%)</title><rect x="978.6" y="1349" width="0.2" height="15.0" fill="rgb(250,20,34)" rx="2" ry="2" />
<text x="981.65" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__hash_5925 (107 samples, 0.01%)</title><rect x="173.0" y="1333" width="0.1" height="15.0" fill="rgb(226,117,41)" rx="2" ry="2" />
<text x="176.04" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6062 (682 samples, 0.06%)</title><rect x="23.7" y="2037" width="0.7" height="15.0" fill="rgb(233,48,3)" rx="2" ry="2" />
<text x="26.71" y="2047.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (146 samples, 0.01%)</title><rect x="150.4" y="1189" width="0.1" height="15.0" fill="rgb(249,70,29)" rx="2" ry="2" />
<text x="153.40" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1266 (197 samples, 0.02%)</title><rect x="392.0" y="1157" width="0.2" height="15.0" fill="rgb(250,147,12)" rx="2" ry="2" />
<text x="394.96" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (262 samples, 0.02%)</title><rect x="87.3" y="1877" width="0.3" height="15.0" fill="rgb(205,17,49)" rx="2" ry="2" />
<text x="90.30" y="1887.5" ></text>
</g>
<g >
<title>mark_slice_darken (131 samples, 0.01%)</title><rect x="528.0" y="965" width="0.1" height="15.0" fill="rgb(253,66,32)" rx="2" ry="2" />
<text x="530.98" y="975.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (13,346 samples, 1.10%)</title><rect x="391.1" y="1189" width="12.9" height="15.0" fill="rgb(222,64,21)" rx="2" ry="2" />
<text x="394.05" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (215 samples, 0.02%)</title><rect x="535.0" y="1061" width="0.2" height="15.0" fill="rgb(213,84,2)" rx="2" ry="2" />
<text x="537.95" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (248 samples, 0.02%)</title><rect x="73.3" y="1845" width="0.2" height="15.0" fill="rgb(226,40,27)" rx="2" ry="2" />
<text x="76.27" y="1855.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (231 samples, 0.02%)</title><rect x="489.5" y="1269" width="0.2" height="15.0" fill="rgb(227,196,17)" rx="2" ry="2" />
<text x="492.46" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (130 samples, 0.01%)</title><rect x="574.5" y="469" width="0.2" height="15.0" fill="rgb(213,205,44)" rx="2" ry="2" />
<text x="577.53" y="479.5" ></text>
</g>
<g >
<title>mark_slice (218 samples, 0.02%)</title><rect x="548.0" y="1189" width="0.2" height="15.0" fill="rgb(253,210,7)" rx="2" ry="2" />
<text x="551.02" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (128 samples, 0.01%)</title><rect x="590.0" y="1125" width="0.1" height="15.0" fill="rgb(250,186,17)" rx="2" ry="2" />
<text x="592.96" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (1,143 samples, 0.09%)</title><rect x="205.7" y="1221" width="1.1" height="15.0" fill="rgb(228,90,44)" rx="2" ry="2" />
<text x="208.69" y="1231.5" ></text>
</g>
<g >
<title>caml_ba_create (533 samples, 0.04%)</title><rect x="718.2" y="1269" width="0.5" height="15.0" fill="rgb(231,83,37)" rx="2" ry="2" />
<text x="721.19" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (168 samples, 0.01%)</title><rect x="87.8" y="1925" width="0.2" height="15.0" fill="rgb(222,62,3)" rx="2" ry="2" />
<text x="90.79" y="1935.5" ></text>
</g>
<g >
<title>blake2b_final (350 samples, 0.03%)</title><rect x="573.2" y="917" width="0.4" height="15.0" fill="rgb(252,225,49)" rx="2" ry="2" />
<text x="576.23" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (297 samples, 0.02%)</title><rect x="1182.7" y="1605" width="0.3" height="15.0" fill="rgb(254,131,1)" rx="2" ry="2" />
<text x="1185.68" y="1615.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (585 samples, 0.05%)</title><rect x="585.6" y="1077" width="0.6" height="15.0" fill="rgb(230,148,48)" rx="2" ry="2" />
<text x="588.61" y="1087.5" ></text>
</g>
<g >
<title>mark_slice_darken (322 samples, 0.03%)</title><rect x="881.9" y="1205" width="0.3" height="15.0" fill="rgb(237,6,19)" rx="2" ry="2" />
<text x="884.91" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (207 samples, 0.02%)</title><rect x="576.9" y="933" width="0.2" height="15.0" fill="rgb(240,203,5)" rx="2" ry="2" />
<text x="579.86" y="943.5" ></text>
</g>
<g >
<title>caml_call_gc (148 samples, 0.01%)</title><rect x="615.4" y="1253" width="0.2" height="15.0" fill="rgb(214,65,40)" rx="2" ry="2" />
<text x="618.41" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (1,125 samples, 0.09%)</title><rect x="824.6" y="1125" width="1.1" height="15.0" fill="rgb(245,196,45)" rx="2" ry="2" />
<text x="827.62" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (360 samples, 0.03%)</title><rect x="573.2" y="965" width="0.4" height="15.0" fill="rgb(229,194,45)" rx="2" ry="2" />
<text x="576.22" y="975.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (207 samples, 0.02%)</title><rect x="972.4" y="1157" width="0.2" height="15.0" fill="rgb(215,27,5)" rx="2" ry="2" />
<text x="975.37" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (1,174 samples, 0.10%)</title><rect x="413.7" y="1205" width="1.1" height="15.0" fill="rgb(227,195,12)" rx="2" ry="2" />
<text x="416.71" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (211 samples, 0.02%)</title><rect x="488.4" y="1173" width="0.2" height="15.0" fill="rgb(235,35,54)" rx="2" ry="2" />
<text x="491.36" y="1183.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (390 samples, 0.03%)</title><rect x="242.6" y="1269" width="0.4" height="15.0" fill="rgb(205,217,43)" rx="2" ry="2" />
<text x="245.58" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (157 samples, 0.01%)</title><rect x="454.0" y="1013" width="0.1" height="15.0" fill="rgb(233,168,9)" rx="2" ry="2" />
<text x="456.98" y="1023.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (530 samples, 0.04%)</title><rect x="953.6" y="1125" width="0.5" height="15.0" fill="rgb(223,84,36)" rx="2" ry="2" />
<text x="956.64" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (181 samples, 0.01%)</title><rect x="113.3" y="1269" width="0.2" height="15.0" fill="rgb(251,29,18)" rx="2" ry="2" />
<text x="116.31" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,281 samples, 0.11%)</title><rect x="710.7" y="1269" width="1.2" height="15.0" fill="rgb(234,167,42)" rx="2" ry="2" />
<text x="713.69" y="1279.5" ></text>
</g>
<g >
<title>caml_apply3 (104 samples, 0.01%)</title><rect x="843.3" y="1189" width="0.1" height="15.0" fill="rgb(223,24,38)" rx="2" ry="2" />
<text x="846.34" y="1199.5" ></text>
</g>
<g >
<title>rotr64 (144 samples, 0.01%)</title><rect x="484.7" y="1285" width="0.2" height="15.0" fill="rgb(216,66,22)" rx="2" ry="2" />
<text x="487.75" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (606 samples, 0.05%)</title><rect x="332.6" y="1285" width="0.6" height="15.0" fill="rgb(234,214,22)" rx="2" ry="2" />
<text x="335.59" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (138 samples, 0.01%)</title><rect x="405.5" y="1141" width="0.2" height="15.0" fill="rgb(218,159,54)" rx="2" ry="2" />
<text x="408.52" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (622 samples, 0.05%)</title><rect x="702.8" y="1333" width="0.6" height="15.0" fill="rgb(220,46,41)" rx="2" ry="2" />
<text x="705.78" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,537 samples, 0.13%)</title><rect x="670.8" y="1285" width="1.5" height="15.0" fill="rgb(239,7,41)" rx="2" ry="2" />
<text x="673.82" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (472 samples, 0.04%)</title><rect x="835.5" y="1077" width="0.5" height="15.0" fill="rgb(220,111,41)" rx="2" ry="2" />
<text x="838.50" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1189" width="1.3" height="15.0" fill="rgb(244,1,48)" rx="2" ry="2" />
<text x="1175.52" y="1199.5" ></text>
</g>
<g >
<title>caml_check_urgent_gc (136 samples, 0.01%)</title><rect x="1172.4" y="1621" width="0.1" height="15.0" fill="rgb(235,103,51)" rx="2" ry="2" />
<text x="1175.39" y="1631.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (125 samples, 0.01%)</title><rect x="821.3" y="1077" width="0.1" height="15.0" fill="rgb(238,198,0)" rx="2" ry="2" />
<text x="824.33" y="1087.5" ></text>
</g>
<g >
<title>memcpy (340 samples, 0.03%)</title><rect x="667.2" y="1237" width="0.4" height="15.0" fill="rgb(237,90,6)" rx="2" ry="2" />
<text x="670.23" y="1247.5" ></text>
</g>
<g >
<title>mdb_put (572 samples, 0.05%)</title><rect x="487.2" y="1237" width="0.5" height="15.0" fill="rgb(206,211,30)" rx="2" ry="2" />
<text x="490.19" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (128 samples, 0.01%)</title><rect x="469.9" y="965" width="0.1" height="15.0" fill="rgb(214,59,16)" rx="2" ry="2" />
<text x="472.92" y="975.5" ></text>
</g>
<g >
<title>caml_call_gc (188 samples, 0.02%)</title><rect x="19.8" y="2021" width="0.2" height="15.0" fill="rgb(209,175,29)" rx="2" ry="2" />
<text x="22.80" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_9707 (2,936 samples, 0.24%)</title><rect x="116.1" y="1221" width="2.8" height="15.0" fill="rgb(233,33,26)" rx="2" ry="2" />
<text x="119.07" y="1231.5" ></text>
</g>
<g >
<title>caml_pread (175 samples, 0.01%)</title><rect x="467.9" y="981" width="0.2" height="15.0" fill="rgb(214,183,44)" rx="2" ry="2" />
<text x="470.90" y="991.5" ></text>
</g>
<g >
<title>__isatty (244 samples, 0.02%)</title><rect x="96.6" y="1285" width="0.2" height="15.0" fill="rgb(228,178,35)" rx="2" ry="2" />
<text x="99.60" y="1295.5" ></text>
</g>
<g >
<title>mdb_page_touch (159 samples, 0.01%)</title><rect x="486.2" y="1221" width="0.1" height="15.0" fill="rgb(220,34,8)" rx="2" ry="2" />
<text x="489.17" y="1231.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (111 samples, 0.01%)</title><rect x="290.2" y="1173" width="0.1" height="15.0" fill="rgb(205,99,13)" rx="2" ry="2" />
<text x="293.19" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (2,040 samples, 0.17%)</title><rect x="673.5" y="1285" width="1.9" height="15.0" fill="rgb(225,174,36)" rx="2" ry="2" />
<text x="676.46" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__of_bytes_opt_2160 (160 samples, 0.01%)</title><rect x="973.8" y="1141" width="0.1" height="15.0" fill="rgb(239,71,51)" rx="2" ry="2" />
<text x="976.78" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (147 samples, 0.01%)</title><rect x="904.6" y="1157" width="0.1" height="15.0" fill="rgb(240,169,31)" rx="2" ry="2" />
<text x="907.57" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (285 samples, 0.02%)</title><rect x="587.0" y="1077" width="0.2" height="15.0" fill="rgb(224,192,44)" rx="2" ry="2" />
<text x="589.96" y="1087.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (149 samples, 0.01%)</title><rect x="257.5" y="1189" width="0.2" height="15.0" fill="rgb(234,184,54)" rx="2" ry="2" />
<text x="260.52" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (235 samples, 0.02%)</title><rect x="604.5" y="1221" width="0.3" height="15.0" fill="rgb(234,170,25)" rx="2" ry="2" />
<text x="607.54" y="1231.5" ></text>
</g>
<g >
<title>rotr64 (141 samples, 0.01%)</title><rect x="505.7" y="1077" width="0.1" height="15.0" fill="rgb(254,156,44)" rx="2" ry="2" />
<text x="508.68" y="1087.5" ></text>
</g>
<g >
<title>caml_call_gc (148 samples, 0.01%)</title><rect x="608.4" y="1253" width="0.2" height="15.0" fill="rgb(214,12,38)" rx="2" ry="2" />
<text x="611.45" y="1263.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (434 samples, 0.04%)</title><rect x="427.7" y="1109" width="0.4" height="15.0" fill="rgb(228,21,39)" rx="2" ry="2" />
<text x="430.72" y="1119.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (544 samples, 0.04%)</title><rect x="607.8" y="1221" width="0.5" height="15.0" fill="rgb(245,216,25)" rx="2" ry="2" />
<text x="610.82" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__get_command_3541 (7,383 samples, 0.61%)</title><rect x="978.6" y="1381" width="7.2" height="15.0" fill="rgb(254,190,41)" rx="2" ry="2" />
<text x="981.59" y="1391.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_s_1068 (67,689 samples, 5.56%)</title><rect x="848.2" y="1317" width="65.6" height="15.0" fill="rgb(247,124,30)" rx="2" ry="2" />
<text x="851.17" y="1327.5" >camlLwt..</text>
</g>
<g >
<title>caml_call_gc (234 samples, 0.02%)</title><rect x="1167.2" y="1477" width="0.2" height="15.0" fill="rgb(242,78,45)" rx="2" ry="2" />
<text x="1170.22" y="1487.5" ></text>
</g>
<g >
<title>mark_slice (151 samples, 0.01%)</title><rect x="75.8" y="1781" width="0.2" height="15.0" fill="rgb(213,86,11)" rx="2" ry="2" />
<text x="78.83" y="1791.5" ></text>
</g>
<g >
<title>caml_blit_bytes (128 samples, 0.01%)</title><rect x="1164.2" y="1397" width="0.1" height="15.0" fill="rgb(210,186,13)" rx="2" ry="2" />
<text x="1167.19" y="1407.5" ></text>
</g>
<g >
<title>caml_alloc_string (392 samples, 0.03%)</title><rect x="548.4" y="1221" width="0.4" height="15.0" fill="rgb(254,31,12)" rx="2" ry="2" />
<text x="551.45" y="1231.5" ></text>
</g>
<g >
<title>blake2b_compress (526 samples, 0.04%)</title><rect x="566.3" y="1061" width="0.5" height="15.0" fill="rgb(210,15,43)" rx="2" ry="2" />
<text x="569.29" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (532 samples, 0.04%)</title><rect x="847.6" y="1269" width="0.5" height="15.0" fill="rgb(240,156,36)" rx="2" ry="2" />
<text x="850.55" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (392 samples, 0.03%)</title><rect x="1179.2" y="1125" width="0.3" height="15.0" fill="rgb(214,125,54)" rx="2" ry="2" />
<text x="1182.16" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (144 samples, 0.01%)</title><rect x="129.6" y="1237" width="0.2" height="15.0" fill="rgb(221,51,17)" rx="2" ry="2" />
<text x="132.65" y="1247.5" ></text>
</g>
<g >
<title>caml_apply2 (207 samples, 0.02%)</title><rect x="75.2" y="1941" width="0.2" height="15.0" fill="rgb(236,223,46)" rx="2" ry="2" />
<text x="78.16" y="1951.5" ></text>
</g>
<g >
<title>mark_slice_darken (648 samples, 0.05%)</title><rect x="57.6" y="1797" width="0.6" height="15.0" fill="rgb(221,9,50)" rx="2" ry="2" />
<text x="60.57" y="1807.5" ></text>
</g>
<g >
<title>camlLwt__fun_4414 (195 samples, 0.02%)</title><rect x="195.5" y="1365" width="0.1" height="15.0" fill="rgb(242,59,21)" rx="2" ry="2" />
<text x="198.45" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (1,014 samples, 0.08%)</title><rect x="205.7" y="1189" width="1.0" height="15.0" fill="rgb(235,114,38)" rx="2" ry="2" />
<text x="208.73" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (798 samples, 0.07%)</title><rect x="556.7" y="1317" width="0.8" height="15.0" fill="rgb(219,22,19)" rx="2" ry="2" />
<text x="559.69" y="1327.5" ></text>
</g>
<g >
<title>__libc_pread64 (391 samples, 0.03%)</title><rect x="183.4" y="1141" width="0.4" height="15.0" fill="rgb(237,167,48)" rx="2" ry="2" />
<text x="186.43" y="1151.5" ></text>
</g>
<g >
<title>camlLwt_mutex__fun_1179 (129 samples, 0.01%)</title><rect x="281.5" y="1317" width="0.2" height="15.0" fill="rgb(230,106,33)" rx="2" ry="2" />
<text x="284.54" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (1,448 samples, 0.12%)</title><rect x="890.3" y="1221" width="1.4" height="15.0" fill="rgb(237,58,51)" rx="2" ry="2" />
<text x="893.26" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (544 samples, 0.04%)</title><rect x="685.5" y="1189" width="0.5" height="15.0" fill="rgb(210,65,17)" rx="2" ry="2" />
<text x="688.51" y="1199.5" ></text>
</g>
<g >
<title>do_compaction (1,444 samples, 0.12%)</title><rect x="591.3" y="1077" width="1.4" height="15.0" fill="rgb(212,131,34)" rx="2" ry="2" />
<text x="594.26" y="1087.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (449 samples, 0.04%)</title><rect x="596.1" y="1157" width="0.4" height="15.0" fill="rgb(224,85,10)" rx="2" ry="2" />
<text x="599.09" y="1167.5" ></text>
</g>
<g >
<title>caml_alloc_string (259 samples, 0.02%)</title><rect x="554.3" y="1269" width="0.3" height="15.0" fill="rgb(216,126,54)" rx="2" ry="2" />
<text x="557.33" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (285 samples, 0.02%)</title><rect x="1149.8" y="1413" width="0.2" height="15.0" fill="rgb(229,146,1)" rx="2" ry="2" />
<text x="1152.75" y="1423.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (126 samples, 0.01%)</title><rect x="464.1" y="1013" width="0.1" height="15.0" fill="rgb(226,81,25)" rx="2" ry="2" />
<text x="467.09" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (107 samples, 0.01%)</title><rect x="580.6" y="1013" width="0.2" height="15.0" fill="rgb(251,186,33)" rx="2" ry="2" />
<text x="583.65" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (167 samples, 0.01%)</title><rect x="463.9" y="1029" width="0.1" height="15.0" fill="rgb(214,205,28)" rx="2" ry="2" />
<text x="466.86" y="1039.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (146 samples, 0.01%)</title><rect x="189.7" y="1189" width="0.2" height="15.0" fill="rgb(216,38,17)" rx="2" ry="2" />
<text x="192.73" y="1199.5" ></text>
</g>
<g >
<title>caml_string_length (126 samples, 0.01%)</title><rect x="237.1" y="1237" width="0.2" height="15.0" fill="rgb(244,117,54)" rx="2" ry="2" />
<text x="240.14" y="1247.5" ></text>
</g>
<g >
<title>caml_call_gc (1,807 samples, 0.15%)</title><rect x="1178.0" y="1221" width="1.7" height="15.0" fill="rgb(219,127,53)" rx="2" ry="2" />
<text x="1180.99" y="1231.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1573" width="1.3" height="15.0" fill="rgb(248,35,26)" rx="2" ry="2" />
<text x="1175.52" y="1583.5" ></text>
</g>
<g >
<title>stub_mdb_put (138 samples, 0.01%)</title><rect x="130.7" y="1189" width="0.1" height="15.0" fill="rgb(249,126,34)" rx="2" ry="2" />
<text x="133.71" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (578 samples, 0.05%)</title><rect x="505.3" y="1141" width="0.6" height="15.0" fill="rgb(241,189,45)" rx="2" ry="2" />
<text x="508.32" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (1,213 samples, 0.10%)</title><rect x="454.6" y="1029" width="1.1" height="15.0" fill="rgb(205,184,27)" rx="2" ry="2" />
<text x="457.55" y="1039.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (354 samples, 0.03%)</title><rect x="464.1" y="1061" width="0.3" height="15.0" fill="rgb(230,155,32)" rx="2" ry="2" />
<text x="467.06" y="1071.5" ></text>
</g>
<g >
<title>mdb_page_get (1,279 samples, 0.11%)</title><rect x="726.6" y="1189" width="1.3" height="15.0" fill="rgb(221,129,12)" rx="2" ry="2" />
<text x="729.62" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1557 (108 samples, 0.01%)</title><rect x="607.3" y="1221" width="0.1" height="15.0" fill="rgb(220,165,37)" rx="2" ry="2" />
<text x="610.29" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (189 samples, 0.02%)</title><rect x="422.3" y="1173" width="0.1" height="15.0" fill="rgb(230,11,28)" rx="2" ry="2" />
<text x="425.26" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__hash_5925 (125 samples, 0.01%)</title><rect x="274.0" y="1269" width="0.1" height="15.0" fill="rgb(228,18,23)" rx="2" ry="2" />
<text x="277.00" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (133 samples, 0.01%)</title><rect x="483.4" y="1381" width="0.1" height="15.0" fill="rgb(217,21,4)" rx="2" ry="2" />
<text x="486.42" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (108 samples, 0.01%)</title><rect x="295.7" y="1157" width="0.1" height="15.0" fill="rgb(240,121,2)" rx="2" ry="2" />
<text x="298.72" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (9,579 samples, 0.79%)</title><rect x="119.0" y="1221" width="9.3" height="15.0" fill="rgb(207,224,8)" rx="2" ry="2" />
<text x="121.98" y="1231.5" ></text>
</g>
<g >
<title>caml_oldify_one (111 samples, 0.01%)</title><rect x="700.9" y="1205" width="0.1" height="15.0" fill="rgb(237,118,35)" rx="2" ry="2" />
<text x="703.89" y="1215.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (1,028 samples, 0.08%)</title><rect x="363.6" y="1173" width="1.0" height="15.0" fill="rgb(206,149,48)" rx="2" ry="2" />
<text x="366.60" y="1183.5" ></text>
</g>
<g >
<title>caml_alloc_string (133 samples, 0.01%)</title><rect x="366.4" y="1157" width="0.2" height="15.0" fill="rgb(206,211,26)" rx="2" ry="2" />
<text x="369.43" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (120 samples, 0.01%)</title><rect x="796.4" y="1173" width="0.2" height="15.0" fill="rgb(230,38,32)" rx="2" ry="2" />
<text x="799.44" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (3,932 samples, 0.32%)</title><rect x="276.6" y="1269" width="3.8" height="15.0" fill="rgb(218,17,24)" rx="2" ry="2" />
<text x="279.59" y="1279.5" ></text>
</g>
<g >
<title>caml_fl_add_blocks (211 samples, 0.02%)</title><rect x="81.0" y="1893" width="0.2" height="15.0" fill="rgb(221,77,44)" rx="2" ry="2" />
<text x="83.97" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (1,307 samples, 0.11%)</title><rect x="65.5" y="1925" width="1.2" height="15.0" fill="rgb(207,12,30)" rx="2" ry="2" />
<text x="68.45" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (106 samples, 0.01%)</title><rect x="1184.6" y="1285" width="0.1" height="15.0" fill="rgb(242,95,37)" rx="2" ry="2" />
<text x="1187.61" y="1295.5" ></text>
</g>
<g >
<title>rotr64 (175 samples, 0.01%)</title><rect x="495.4" y="1269" width="0.2" height="15.0" fill="rgb(254,46,29)" rx="2" ry="2" />
<text x="498.41" y="1279.5" ></text>
</g>
<g >
<title>caml_blit_bytes (908 samples, 0.07%)</title><rect x="815.2" y="1237" width="0.8" height="15.0" fill="rgb(232,66,16)" rx="2" ry="2" />
<text x="818.15" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (306 samples, 0.03%)</title><rect x="602.3" y="1205" width="0.3" height="15.0" fill="rgb(229,18,47)" rx="2" ry="2" />
<text x="605.30" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (111 samples, 0.01%)</title><rect x="101.9" y="1141" width="0.1" height="15.0" fill="rgb(210,120,49)" rx="2" ry="2" />
<text x="104.85" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (569 samples, 0.05%)</title><rect x="739.4" y="1205" width="0.6" height="15.0" fill="rgb(225,200,12)" rx="2" ry="2" />
<text x="742.42" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__offset_9239 (348 samples, 0.03%)</title><rect x="127.7" y="1061" width="0.4" height="15.0" fill="rgb(205,27,22)" rx="2" ry="2" />
<text x="130.74" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__string__sum_lengths_1085 (126 samples, 0.01%)</title><rect x="732.4" y="1285" width="0.2" height="15.0" fill="rgb(251,155,40)" rx="2" ry="2" />
<text x="735.43" y="1295.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (552 samples, 0.05%)</title><rect x="335.8" y="1237" width="0.6" height="15.0" fill="rgb(248,39,8)" rx="2" ry="2" />
<text x="338.83" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (136 samples, 0.01%)</title><rect x="150.2" y="1221" width="0.2" height="15.0" fill="rgb(236,140,26)" rx="2" ry="2" />
<text x="153.25" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (136 samples, 0.01%)</title><rect x="536.5" y="1045" width="0.1" height="15.0" fill="rgb(234,126,27)" rx="2" ry="2" />
<text x="539.49" y="1055.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (164 samples, 0.01%)</title><rect x="527.6" y="917" width="0.1" height="15.0" fill="rgb(220,157,29)" rx="2" ry="2" />
<text x="530.58" y="927.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (1,431 samples, 0.12%)</title><rect x="1096.7" y="1381" width="1.4" height="15.0" fill="rgb(245,133,47)" rx="2" ry="2" />
<text x="1099.70" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__check_allowed_bytes_1069 (817 samples, 0.07%)</title><rect x="820.0" y="1141" width="0.8" height="15.0" fill="rgb(217,96,16)" rx="2" ry="2" />
<text x="823.03" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11273 (151,754 samples, 12.47%)</title><rect x="334.5" y="1349" width="147.1" height="15.0" fill="rgb(233,173,12)" rx="2" ry="2" />
<text x="337.48" y="1359.5" >camlIrmin__Tree__f..</text>
</g>
<g >
<title>caml_call_gc (1,156 samples, 0.09%)</title><rect x="712.5" y="1285" width="1.1" height="15.0" fill="rgb(250,167,54)" rx="2" ry="2" />
<text x="715.46" y="1295.5" ></text>
</g>
<g >
<title>ml_blake2b_init (155 samples, 0.01%)</title><rect x="615.6" y="1205" width="0.2" height="15.0" fill="rgb(229,91,51)" rx="2" ry="2" />
<text x="618.64" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_004_Pt24m4xi__Services_registration__register0_fullctxt_16411 (411 samples, 0.03%)</title><rect x="1183.6" y="1877" width="0.4" height="15.0" fill="rgb(233,0,16)" rx="2" ry="2" />
<text x="1186.64" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (340 samples, 0.03%)</title><rect x="103.6" y="1189" width="0.4" height="15.0" fill="rgb(242,102,26)" rx="2" ry="2" />
<text x="106.65" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_variable_pair_1525 (514 samples, 0.04%)</title><rect x="989.0" y="1381" width="0.5" height="15.0" fill="rgb(228,57,3)" rx="2" ry="2" />
<text x="991.99" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6727 (1,591 samples, 0.13%)</title><rect x="130.3" y="1333" width="1.5" height="15.0" fill="rgb(224,170,28)" rx="2" ry="2" />
<text x="133.29" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (2,761 samples, 0.23%)</title><rect x="974.0" y="1157" width="2.7" height="15.0" fill="rgb(230,92,33)" rx="2" ry="2" />
<text x="977.03" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2008 (140 samples, 0.01%)</title><rect x="468.7" y="1109" width="0.2" height="15.0" fill="rgb(225,22,17)" rx="2" ry="2" />
<text x="471.73" y="1119.5" ></text>
</g>
<g >
<title>__fget_light (208 samples, 0.02%)</title><rect x="410.9" y="1045" width="0.2" height="15.0" fill="rgb(205,3,35)" rx="2" ry="2" />
<text x="413.94" y="1055.5" ></text>
</g>
<g >
<title>caml_string_equal (502 samples, 0.04%)</title><rect x="325.2" y="1253" width="0.5" height="15.0" fill="rgb(254,210,5)" rx="2" ry="2" />
<text x="328.23" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (170 samples, 0.01%)</title><rect x="62.6" y="1877" width="0.2" height="15.0" fill="rgb(226,207,44)" rx="2" ry="2" />
<text x="65.61" y="1887.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (273 samples, 0.02%)</title><rect x="107.4" y="1189" width="0.3" height="15.0" fill="rgb(238,1,12)" rx="2" ry="2" />
<text x="110.39" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (112 samples, 0.01%)</title><rect x="1181.0" y="1109" width="0.1" height="15.0" fill="rgb(225,133,39)" rx="2" ry="2" />
<text x="1184.02" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (959 samples, 0.08%)</title><rect x="709.5" y="1269" width="0.9" height="15.0" fill="rgb(220,189,49)" rx="2" ry="2" />
<text x="712.48" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (676 samples, 0.06%)</title><rect x="941.1" y="1077" width="0.6" height="15.0" fill="rgb(219,155,4)" rx="2" ry="2" />
<text x="944.07" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__wakeup_general_2345 (6,370 samples, 0.52%)</title><rect x="1175.9" y="1781" width="6.2" height="15.0" fill="rgb(241,187,52)" rx="2" ry="2" />
<text x="1178.90" y="1791.5" ></text>
</g>
<g >
<title>blake2b_compress (434 samples, 0.04%)</title><rect x="572.2" y="933" width="0.4" height="15.0" fill="rgb(250,92,31)" rx="2" ry="2" />
<text x="575.18" y="943.5" ></text>
</g>
<g >
<title>caml_garbage_collection (713 samples, 0.06%)</title><rect x="887.3" y="1237" width="0.7" height="15.0" fill="rgb(213,190,6)" rx="2" ry="2" />
<text x="890.29" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_to_todo_7369 (387 samples, 0.03%)</title><rect x="128.3" y="1253" width="0.4" height="15.0" fill="rgb(245,172,16)" rx="2" ry="2" />
<text x="131.35" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (163 samples, 0.01%)</title><rect x="598.8" y="1157" width="0.2" height="15.0" fill="rgb(211,83,36)" rx="2" ry="2" />
<text x="601.83" y="1167.5" ></text>
</g>
<g >
<title>caml_apply2 (414 samples, 0.03%)</title><rect x="448.0" y="1253" width="0.4" height="15.0" fill="rgb(244,98,28)" rx="2" ry="2" />
<text x="451.02" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (121 samples, 0.01%)</title><rect x="1173.7" y="565" width="0.1" height="15.0" fill="rgb(234,66,4)" rx="2" ry="2" />
<text x="1176.68" y="575.5" ></text>
</g>
<g >
<title>caml_alloc_string (330 samples, 0.03%)</title><rect x="613.4" y="1253" width="0.3" height="15.0" fill="rgb(243,27,24)" rx="2" ry="2" />
<text x="616.41" y="1263.5" ></text>
</g>
<g >
<title>caml_call_gc (129 samples, 0.01%)</title><rect x="714.4" y="1381" width="0.1" height="15.0" fill="rgb(239,110,32)" rx="2" ry="2" />
<text x="717.41" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (32,530 samples, 2.67%)</title><rect x="506.7" y="1157" width="31.6" height="15.0" fill="rgb(250,52,30)" rx="2" ry="2" />
<text x="509.74" y="1167.5" >ca..</text>
</g>
<g >
<title>camlLwt__wakeup_general_2345 (1,115,276 samples, 91.65%)</title><rect x="92.4" y="1733" width="1081.4" height="15.0" fill="rgb(222,127,35)" rx="2" ry="2" />
<text x="95.37" y="1743.5" >camlLwt__wakeup_general_2345</text>
</g>
<g >
<title>mdb_freelist_save (590 samples, 0.05%)</title><rect x="1150.2" y="1445" width="0.6" height="15.0" fill="rgb(222,186,29)" rx="2" ry="2" />
<text x="1153.23" y="1455.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (31,100 samples, 2.56%)</title><rect x="816.1" y="1253" width="30.1" height="15.0" fill="rgb(212,166,27)" rx="2" ry="2" />
<text x="819.05" y="1263.5" >ca..</text>
</g>
<g >
<title>caml_page_table_lookup (122 samples, 0.01%)</title><rect x="1168.6" y="1429" width="0.1" height="15.0" fill="rgb(234,75,29)" rx="2" ry="2" />
<text x="1171.57" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (1,997 samples, 0.16%)</title><rect x="453.9" y="1045" width="1.9" height="15.0" fill="rgb(206,205,50)" rx="2" ry="2" />
<text x="456.86" y="1055.5" ></text>
</g>
<g >
<title>caml_compare (109 samples, 0.01%)</title><rect x="791.4" y="1221" width="0.1" height="15.0" fill="rgb(207,167,9)" rx="2" ry="2" />
<text x="794.42" y="1231.5" ></text>
</g>
<g >
<title>caml_ba_alloc (144 samples, 0.01%)</title><rect x="1134.4" y="1397" width="0.1" height="15.0" fill="rgb(213,73,14)" rx="2" ry="2" />
<text x="1137.37" y="1407.5" ></text>
</g>
<g >
<title>caml_garbage_collection (188 samples, 0.02%)</title><rect x="19.8" y="2005" width="0.2" height="15.0" fill="rgb(235,38,7)" rx="2" ry="2" />
<text x="22.80" y="2015.5" ></text>
</g>
<g >
<title>caml_garbage_collection (143 samples, 0.01%)</title><rect x="897.5" y="1221" width="0.1" height="15.0" fill="rgb(213,98,26)" rx="2" ry="2" />
<text x="900.48" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (107 samples, 0.01%)</title><rect x="709.2" y="1205" width="0.1" height="15.0" fill="rgb(247,18,47)" rx="2" ry="2" />
<text x="712.21" y="1215.5" ></text>
</g>
<g >
<title>[libc-2.27.so] (220 samples, 0.02%)</title><rect x="15.7" y="2053" width="0.2" height="15.0" fill="rgb(207,183,46)" rx="2" ry="2" />
<text x="18.66" y="2063.5" ></text>
</g>
<g >
<title>mark_slice_darken (113 samples, 0.01%)</title><rect x="526.8" y="965" width="0.1" height="15.0" fill="rgb(217,109,41)" rx="2" ry="2" />
<text x="529.77" y="975.5" ></text>
</g>
<g >
<title>mdb_page_dirty (146 samples, 0.01%)</title><rect x="1146.4" y="1333" width="0.1" height="15.0" fill="rgb(254,158,41)" rx="2" ry="2" />
<text x="1149.39" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (658 samples, 0.05%)</title><rect x="596.1" y="1173" width="0.6" height="15.0" fill="rgb(240,218,15)" rx="2" ry="2" />
<text x="599.06" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (119 samples, 0.01%)</title><rect x="574.2" y="933" width="0.1" height="15.0" fill="rgb(221,126,18)" rx="2" ry="2" />
<text x="577.19" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (479 samples, 0.04%)</title><rect x="250.5" y="1237" width="0.4" height="15.0" fill="rgb(215,164,10)" rx="2" ry="2" />
<text x="253.45" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (734 samples, 0.06%)</title><rect x="467.1" y="1013" width="0.7" height="15.0" fill="rgb(224,77,7)" rx="2" ry="2" />
<text x="470.12" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (512 samples, 0.04%)</title><rect x="191.2" y="1253" width="0.5" height="15.0" fill="rgb(238,158,46)" rx="2" ry="2" />
<text x="194.19" y="1263.5" ></text>
</g>
<g >
<title>sys_pread64 (313 samples, 0.03%)</title><rect x="183.5" y="1093" width="0.3" height="15.0" fill="rgb(249,171,32)" rx="2" ry="2" />
<text x="186.48" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (251 samples, 0.02%)</title><rect x="1148.4" y="1429" width="0.2" height="15.0" fill="rgb(235,143,47)" rx="2" ry="2" />
<text x="1151.39" y="1439.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (820 samples, 0.07%)</title><rect x="895.1" y="1189" width="0.8" height="15.0" fill="rgb(223,61,37)" rx="2" ry="2" />
<text x="898.10" y="1199.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (592 samples, 0.05%)</title><rect x="195.7" y="1285" width="0.6" height="15.0" fill="rgb(254,226,15)" rx="2" ry="2" />
<text x="198.73" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (263 samples, 0.02%)</title><rect x="119.2" y="1141" width="0.2" height="15.0" fill="rgb(244,133,10)" rx="2" ry="2" />
<text x="122.16" y="1151.5" ></text>
</g>
<g >
<title>caml_call_gc (126 samples, 0.01%)</title><rect x="500.5" y="1269" width="0.1" height="15.0" fill="rgb(207,42,52)" rx="2" ry="2" />
<text x="503.52" y="1279.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (643 samples, 0.05%)</title><rect x="1129.0" y="1285" width="0.6" height="15.0" fill="rgb(240,78,7)" rx="2" ry="2" />
<text x="1131.98" y="1295.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (2,389 samples, 0.20%)</title><rect x="451.1" y="1109" width="2.3" height="15.0" fill="rgb(215,219,18)" rx="2" ry="2" />
<text x="454.09" y="1119.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (592 samples, 0.05%)</title><rect x="1185.0" y="1749" width="0.5" height="15.0" fill="rgb(221,96,40)" rx="2" ry="2" />
<text x="1187.98" y="1759.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (4,349 samples, 0.36%)</title><rect x="224.8" y="1253" width="4.2" height="15.0" fill="rgb(247,198,47)" rx="2" ry="2" />
<text x="227.81" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_9707 (113 samples, 0.01%)</title><rect x="1176.9" y="1237" width="0.1" height="15.0" fill="rgb(228,19,11)" rx="2" ry="2" />
<text x="1179.92" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (1,013 samples, 0.08%)</title><rect x="559.4" y="1253" width="0.9" height="15.0" fill="rgb(218,115,53)" rx="2" ry="2" />
<text x="562.36" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (1,390 samples, 0.11%)</title><rect x="474.1" y="1301" width="1.3" height="15.0" fill="rgb(242,142,52)" rx="2" ry="2" />
<text x="477.09" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (531 samples, 0.04%)</title><rect x="513.4" y="997" width="0.5" height="15.0" fill="rgb(237,174,18)" rx="2" ry="2" />
<text x="516.36" y="1007.5" ></text>
</g>
<g >
<title>caml_int_compare (266 samples, 0.02%)</title><rect x="315.6" y="1205" width="0.3" height="15.0" fill="rgb(237,59,48)" rx="2" ry="2" />
<text x="318.60" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (877 samples, 0.07%)</title><rect x="618.7" y="1317" width="0.9" height="15.0" fill="rgb(227,92,11)" rx="2" ry="2" />
<text x="621.70" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (8,338 samples, 0.69%)</title><rect x="145.9" y="1301" width="8.1" height="15.0" fill="rgb(247,114,6)" rx="2" ry="2" />
<text x="148.91" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (134 samples, 0.01%)</title><rect x="548.9" y="1205" width="0.1" height="15.0" fill="rgb(210,84,41)" rx="2" ry="2" />
<text x="551.86" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (395 samples, 0.03%)</title><rect x="349.9" y="1173" width="0.4" height="15.0" fill="rgb(211,67,45)" rx="2" ry="2" />
<text x="352.91" y="1183.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (187 samples, 0.02%)</title><rect x="473.3" y="1221" width="0.2" height="15.0" fill="rgb(228,53,46)" rx="2" ry="2" />
<text x="476.35" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__len_3614 (178 samples, 0.01%)</title><rect x="366.7" y="1173" width="0.2" height="15.0" fill="rgb(227,202,18)" rx="2" ry="2" />
<text x="369.71" y="1183.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (114 samples, 0.01%)</title><rect x="319.5" y="1173" width="0.1" height="15.0" fill="rgb(229,159,47)" rx="2" ry="2" />
<text x="322.46" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (159 samples, 0.01%)</title><rect x="383.1" y="1173" width="0.2" height="15.0" fill="rgb(232,84,10)" rx="2" ry="2" />
<text x="386.13" y="1183.5" ></text>
</g>
<g >
<title>mark_slice (446 samples, 0.04%)</title><rect x="1169.7" y="1461" width="0.4" height="15.0" fill="rgb(245,57,26)" rx="2" ry="2" />
<text x="1172.68" y="1471.5" ></text>
</g>
<g >
<title>caml_alloc_string (159 samples, 0.01%)</title><rect x="60.2" y="1845" width="0.2" height="15.0" fill="rgb(215,218,51)" rx="2" ry="2" />
<text x="63.22" y="1855.5" ></text>
</g>
<g >
<title>do_compaction (1,057 samples, 0.09%)</title><rect x="519.5" y="885" width="1.0" height="15.0" fill="rgb(243,212,0)" rx="2" ry="2" />
<text x="522.50" y="895.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (363 samples, 0.03%)</title><rect x="907.4" y="1109" width="0.4" height="15.0" fill="rgb(215,67,20)" rx="2" ry="2" />
<text x="910.43" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (2,343 samples, 0.19%)</title><rect x="949.3" y="1093" width="2.3" height="15.0" fill="rgb(209,52,9)" rx="2" ry="2" />
<text x="952.34" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (52,526 samples, 4.32%)</title><rect x="926.9" y="1349" width="51.0" height="15.0" fill="rgb(208,195,16)" rx="2" ry="2" />
<text x="929.94" y="1359.5" >camlT..</text>
</g>
<g >
<title>mark_slice (1,324 samples, 0.11%)</title><rect x="969.2" y="1077" width="1.3" height="15.0" fill="rgb(237,94,42)" rx="2" ry="2" />
<text x="972.17" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1813" width="1.6" height="15.0" fill="rgb(231,12,41)" rx="2" ry="2" />
<text x="1189.27" y="1823.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (9,111 samples, 0.75%)</title><rect x="341.5" y="1189" width="8.9" height="15.0" fill="rgb(244,81,25)" rx="2" ry="2" />
<text x="344.52" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (887 samples, 0.07%)</title><rect x="516.5" y="245" width="0.9" height="15.0" fill="rgb(240,75,11)" rx="2" ry="2" />
<text x="519.49" y="255.5" ></text>
</g>
<g >
<title>camlIndex__Search__$3d_1060 (280 samples, 0.02%)</title><rect x="214.2" y="1189" width="0.3" height="15.0" fill="rgb(228,33,4)" rx="2" ry="2" />
<text x="217.20" y="1199.5" ></text>
</g>
<g >
<title>_int_malloc (262 samples, 0.02%)</title><rect x="718.3" y="1221" width="0.3" height="15.0" fill="rgb(254,78,30)" rx="2" ry="2" />
<text x="721.33" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (1,058 samples, 0.09%)</title><rect x="499.6" y="1285" width="1.0" height="15.0" fill="rgb(245,212,26)" rx="2" ry="2" />
<text x="502.62" y="1295.5" ></text>
</g>
<g >
<title>memmove (115 samples, 0.01%)</title><rect x="1164.2" y="1381" width="0.1" height="15.0" fill="rgb(237,12,15)" rx="2" ry="2" />
<text x="1167.20" y="1391.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (683 samples, 0.06%)</title><rect x="484.3" y="1349" width="0.7" height="15.0" fill="rgb(217,167,36)" rx="2" ry="2" />
<text x="487.34" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (115 samples, 0.01%)</title><rect x="308.4" y="1173" width="0.1" height="15.0" fill="rgb(212,32,7)" rx="2" ry="2" />
<text x="311.35" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (185 samples, 0.02%)</title><rect x="574.5" y="581" width="0.2" height="15.0" fill="rgb(219,65,3)" rx="2" ry="2" />
<text x="577.51" y="591.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (758 samples, 0.06%)</title><rect x="555.6" y="1285" width="0.7" height="15.0" fill="rgb(206,70,22)" rx="2" ry="2" />
<text x="558.58" y="1295.5" ></text>
</g>
<g >
<title>sweep_slice (272 samples, 0.02%)</title><rect x="1166.3" y="1445" width="0.3" height="15.0" fill="rgb(228,27,25)" rx="2" ry="2" />
<text x="1169.30" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (105 samples, 0.01%)</title><rect x="1177.1" y="1157" width="0.1" height="15.0" fill="rgb(233,29,5)" rx="2" ry="2" />
<text x="1180.05" y="1167.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (173 samples, 0.01%)</title><rect x="1184.3" y="1509" width="0.1" height="15.0" fill="rgb(232,205,28)" rx="2" ry="2" />
<text x="1187.27" y="1519.5" ></text>
</g>
<g >
<title>blake2b_compress (551 samples, 0.05%)</title><rect x="620.5" y="1237" width="0.5" height="15.0" fill="rgb(243,46,25)" rx="2" ry="2" />
<text x="623.49" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__max_1031 (167 samples, 0.01%)</title><rect x="825.7" y="1125" width="0.2" height="15.0" fill="rgb(252,222,18)" rx="2" ry="2" />
<text x="828.72" y="1135.5" ></text>
</g>
<g >
<title>sweep_slice (175 samples, 0.01%)</title><rect x="961.8" y="1093" width="0.2" height="15.0" fill="rgb(243,227,1)" rx="2" ry="2" />
<text x="964.82" y="1103.5" ></text>
</g>
<g >
<title>rotr64 (4,140 samples, 0.34%)</title><rect x="663.2" y="1221" width="4.0" height="15.0" fill="rgb(212,42,4)" rx="2" ry="2" />
<text x="666.16" y="1231.5" ></text>
</g>
<g >
<title>caml_call_gc (216 samples, 0.02%)</title><rect x="700.1" y="1285" width="0.2" height="15.0" fill="rgb(222,48,36)" rx="2" ry="2" />
<text x="703.11" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (107 samples, 0.01%)</title><rect x="86.6" y="1829" width="0.1" height="15.0" fill="rgb(219,40,34)" rx="2" ry="2" />
<text x="89.56" y="1839.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__add_dir_29884 (198 samples, 0.02%)</title><rect x="1176.2" y="1317" width="0.2" height="15.0" fill="rgb(212,220,31)" rx="2" ry="2" />
<text x="1179.21" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (204 samples, 0.02%)</title><rect x="551.9" y="1221" width="0.2" height="15.0" fill="rgb(245,9,16)" rx="2" ry="2" />
<text x="554.92" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_custom (689 samples, 0.06%)</title><rect x="1004.7" y="1333" width="0.7" height="15.0" fill="rgb(220,164,48)" rx="2" ry="2" />
<text x="1007.68" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (137 samples, 0.01%)</title><rect x="607.0" y="1205" width="0.1" height="15.0" fill="rgb(217,45,44)" rx="2" ry="2" />
<text x="609.97" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,275 samples, 0.10%)</title><rect x="516.4" y="709" width="1.3" height="15.0" fill="rgb(243,0,47)" rx="2" ry="2" />
<text x="519.42" y="719.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1733" width="1.6" height="15.0" fill="rgb(218,10,22)" rx="2" ry="2" />
<text x="1189.27" y="1743.5" ></text>
</g>
<g >
<title>camlIrmin__Type__case_v_3672 (616 samples, 0.05%)</title><rect x="436.6" y="1253" width="0.6" height="15.0" fill="rgb(236,109,5)" rx="2" ry="2" />
<text x="439.63" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__list_10567 (510 samples, 0.04%)</title><rect x="258.9" y="1253" width="0.5" height="15.0" fill="rgb(251,27,12)" rx="2" ry="2" />
<text x="261.94" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (135 samples, 0.01%)</title><rect x="532.5" y="997" width="0.1" height="15.0" fill="rgb(245,111,54)" rx="2" ry="2" />
<text x="535.46" y="1007.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (111 samples, 0.01%)</title><rect x="206.4" y="1141" width="0.1" height="15.0" fill="rgb(230,30,30)" rx="2" ry="2" />
<text x="209.42" y="1151.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (129 samples, 0.01%)</title><rect x="365.8" y="1109" width="0.1" height="15.0" fill="rgb(232,53,37)" rx="2" ry="2" />
<text x="368.75" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (112 samples, 0.01%)</title><rect x="525.1" y="1013" width="0.1" height="15.0" fill="rgb(219,76,16)" rx="2" ry="2" />
<text x="528.06" y="1023.5" ></text>
</g>
<g >
<title>camlLwt__callback_2814 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1477" width="1.3" height="15.0" fill="rgb(213,73,44)" rx="2" ry="2" />
<text x="1175.52" y="1487.5" ></text>
</g>
<g >
<title>invert_pointer_at (126 samples, 0.01%)</title><rect x="345.3" y="981" width="0.1" height="15.0" fill="rgb(212,136,19)" rx="2" ry="2" />
<text x="348.29" y="991.5" ></text>
</g>
<g >
<title>mark_slice_darken (118 samples, 0.01%)</title><rect x="858.7" y="1173" width="0.1" height="15.0" fill="rgb(209,60,35)" rx="2" ry="2" />
<text x="861.71" y="1183.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,005 samples, 0.08%)</title><rect x="313.9" y="1125" width="1.0" height="15.0" fill="rgb(241,85,41)" rx="2" ry="2" />
<text x="316.92" y="1135.5" ></text>
</g>
<g >
<title>mdb_page_search_root (7,837 samples, 0.64%)</title><rect x="720.3" y="1205" width="7.6" height="15.0" fill="rgb(220,103,0)" rx="2" ry="2" />
<text x="723.32" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (325 samples, 0.03%)</title><rect x="580.3" y="997" width="0.3" height="15.0" fill="rgb(249,186,13)" rx="2" ry="2" />
<text x="583.27" y="1007.5" ></text>
</g>
<g >
<title>mark_slice_darken (106 samples, 0.01%)</title><rect x="598.9" y="1125" width="0.1" height="15.0" fill="rgb(223,25,15)" rx="2" ry="2" />
<text x="601.87" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (684 samples, 0.06%)</title><rect x="834.5" y="1141" width="0.7" height="15.0" fill="rgb(244,30,12)" rx="2" ry="2" />
<text x="837.51" y="1151.5" ></text>
</g>
<g >
<title>caml_blit_bytes (885 samples, 0.07%)</title><rect x="1110.4" y="1349" width="0.8" height="15.0" fill="rgb(213,133,18)" rx="2" ry="2" />
<text x="1113.38" y="1359.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (437 samples, 0.04%)</title><rect x="540.4" y="1157" width="0.4" height="15.0" fill="rgb(214,69,21)" rx="2" ry="2" />
<text x="543.41" y="1167.5" ></text>
</g>
<g >
<title>__find_specmb (144 samples, 0.01%)</title><rect x="899.4" y="1141" width="0.1" height="15.0" fill="rgb(253,5,28)" rx="2" ry="2" />
<text x="902.41" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_protocol_environment__apply_operation_27177 (784 samples, 0.06%)</title><rect x="1172.7" y="885" width="0.8" height="15.0" fill="rgb(209,215,6)" rx="2" ry="2" />
<text x="1175.75" y="895.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (161 samples, 0.01%)</title><rect x="1181.8" y="1333" width="0.2" height="15.0" fill="rgb(219,144,3)" rx="2" ry="2" />
<text x="1184.82" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,002 samples, 0.16%)</title><rect x="79.0" y="1845" width="2.0" height="15.0" fill="rgb(236,218,30)" rx="2" ry="2" />
<text x="82.03" y="1855.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (2,632 samples, 0.22%)</title><rect x="186.1" y="1237" width="2.5" height="15.0" fill="rgb(235,161,24)" rx="2" ry="2" />
<text x="189.09" y="1247.5" ></text>
</g>
<g >
<title>do_syscall_64 (354 samples, 0.03%)</title><rect x="978.2" y="1301" width="0.3" height="15.0" fill="rgb(234,158,48)" rx="2" ry="2" />
<text x="981.19" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__case_v_3672 (317 samples, 0.03%)</title><rect x="379.4" y="1173" width="0.3" height="15.0" fill="rgb(232,132,54)" rx="2" ry="2" />
<text x="382.42" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (2,688 samples, 0.22%)</title><rect x="374.0" y="1237" width="2.6" height="15.0" fill="rgb(251,20,21)" rx="2" ry="2" />
<text x="376.96" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__fun_32653 (25,200 samples, 2.07%)</title><rect x="105.1" y="1301" width="24.4" height="15.0" fill="rgb(236,56,25)" rx="2" ry="2" />
<text x="108.07" y="1311.5" >c..</text>
</g>
<g >
<title>mark_slice_darken (277 samples, 0.02%)</title><rect x="932.4" y="1093" width="0.3" height="15.0" fill="rgb(221,31,42)" rx="2" ry="2" />
<text x="935.41" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (105 samples, 0.01%)</title><rect x="523.6" y="933" width="0.1" height="15.0" fill="rgb(234,145,38)" rx="2" ry="2" />
<text x="526.60" y="943.5" ></text>
</g>
<g >
<title>mark_slice_darken (208 samples, 0.02%)</title><rect x="330.6" y="1253" width="0.2" height="15.0" fill="rgb(238,179,6)" rx="2" ry="2" />
<text x="333.62" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_make_formatter_2181 (548 samples, 0.05%)</title><rect x="1166.7" y="1477" width="0.5" height="15.0" fill="rgb(216,136,47)" rx="2" ry="2" />
<text x="1169.68" y="1487.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (146 samples, 0.01%)</title><rect x="342.9" y="1061" width="0.1" height="15.0" fill="rgb(242,45,41)" rx="2" ry="2" />
<text x="345.91" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (158 samples, 0.01%)</title><rect x="574.5" y="501" width="0.2" height="15.0" fill="rgb(206,83,19)" rx="2" ry="2" />
<text x="577.52" y="511.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (150 samples, 0.01%)</title><rect x="966.4" y="1109" width="0.1" height="15.0" fill="rgb(234,226,43)" rx="2" ry="2" />
<text x="969.40" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_variable_pair_1525 (175 samples, 0.01%)</title><rect x="989.3" y="1365" width="0.2" height="15.0" fill="rgb(237,79,48)" rx="2" ry="2" />
<text x="992.32" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (287 samples, 0.02%)</title><rect x="93.8" y="1141" width="0.2" height="15.0" fill="rgb(221,111,51)" rx="2" ry="2" />
<text x="96.77" y="1151.5" ></text>
</g>
<g >
<title>ml_blake2b_final (609 samples, 0.05%)</title><rect x="508.2" y="1061" width="0.6" height="15.0" fill="rgb(223,131,51)" rx="2" ry="2" />
<text x="511.24" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,642 samples, 0.13%)</title><rect x="287.6" y="1157" width="1.6" height="15.0" fill="rgb(235,87,52)" rx="2" ry="2" />
<text x="290.59" y="1167.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (195 samples, 0.02%)</title><rect x="1134.2" y="1429" width="0.2" height="15.0" fill="rgb(224,65,41)" rx="2" ry="2" />
<text x="1137.17" y="1439.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (322 samples, 0.03%)</title><rect x="115.0" y="1093" width="0.3" height="15.0" fill="rgb(248,45,42)" rx="2" ry="2" />
<text x="118.00" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (337 samples, 0.03%)</title><rect x="209.7" y="1125" width="0.3" height="15.0" fill="rgb(243,6,1)" rx="2" ry="2" />
<text x="212.70" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (152 samples, 0.01%)</title><rect x="574.5" y="485" width="0.2" height="15.0" fill="rgb(247,141,34)" rx="2" ry="2" />
<text x="577.52" y="495.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (205 samples, 0.02%)</title><rect x="99.9" y="1157" width="0.2" height="15.0" fill="rgb(251,55,16)" rx="2" ry="2" />
<text x="102.88" y="1167.5" ></text>
</g>
<g >
<title>caml_blit_bytes (170 samples, 0.01%)</title><rect x="907.1" y="1141" width="0.1" height="15.0" fill="rgb(222,16,29)" rx="2" ry="2" />
<text x="910.07" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="357" width="1.6" height="15.0" fill="rgb(248,141,11)" rx="2" ry="2" />
<text x="1189.27" y="367.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1621" width="1.3" height="15.0" fill="rgb(246,42,15)" rx="2" ry="2" />
<text x="1175.52" y="1631.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2524 (127 samples, 0.01%)</title><rect x="352.5" y="1205" width="0.1" height="15.0" fill="rgb(226,28,47)" rx="2" ry="2" />
<text x="355.49" y="1215.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (268 samples, 0.02%)</title><rect x="731.3" y="1205" width="0.3" height="15.0" fill="rgb(206,190,29)" rx="2" ry="2" />
<text x="734.32" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (116 samples, 0.01%)</title><rect x="128.6" y="1221" width="0.1" height="15.0" fill="rgb(219,170,35)" rx="2" ry="2" />
<text x="131.60" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (813 samples, 0.07%)</title><rect x="912.2" y="1237" width="0.8" height="15.0" fill="rgb(224,88,28)" rx="2" ry="2" />
<text x="915.22" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (2,539 samples, 0.21%)</title><rect x="119.5" y="1141" width="2.4" height="15.0" fill="rgb(254,43,7)" rx="2" ry="2" />
<text x="122.49" y="1151.5" ></text>
</g>
<g >
<title>blake2b_compress (166 samples, 0.01%)</title><rect x="574.0" y="869" width="0.1" height="15.0" fill="rgb(210,43,3)" rx="2" ry="2" />
<text x="576.95" y="879.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (124 samples, 0.01%)</title><rect x="989.3" y="1301" width="0.1" height="15.0" fill="rgb(218,148,52)" rx="2" ry="2" />
<text x="992.33" y="1311.5" ></text>
</g>
<g >
<title>caml_alloc_string (275 samples, 0.02%)</title><rect x="494.6" y="1349" width="0.3" height="15.0" fill="rgb(252,173,46)" rx="2" ry="2" />
<text x="497.65" y="1359.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (138 samples, 0.01%)</title><rect x="130.3" y="1253" width="0.1" height="15.0" fill="rgb(220,182,45)" rx="2" ry="2" />
<text x="133.30" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (823 samples, 0.07%)</title><rect x="608.6" y="1269" width="0.8" height="15.0" fill="rgb(212,161,47)" rx="2" ry="2" />
<text x="611.64" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (6,356 samples, 0.52%)</title><rect x="1175.9" y="1381" width="6.2" height="15.0" fill="rgb(230,3,42)" rx="2" ry="2" />
<text x="1178.90" y="1391.5" ></text>
</g>
<g >
<title>caml_alloc_string (353 samples, 0.03%)</title><rect x="1105.9" y="1349" width="0.3" height="15.0" fill="rgb(210,76,40)" rx="2" ry="2" />
<text x="1108.90" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__iteri_1153 (29,508 samples, 2.42%)</title><rect x="621.3" y="1317" width="28.6" height="15.0" fill="rgb(242,28,20)" rx="2" ry="2" />
<text x="624.30" y="1327.5" >ca..</text>
</g>
<g >
<title>mdb_page_malloc (179 samples, 0.01%)</title><rect x="1057.3" y="1285" width="0.2" height="15.0" fill="rgb(233,176,4)" rx="2" ry="2" />
<text x="1060.32" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_string (244 samples, 0.02%)</title><rect x="582.9" y="1029" width="0.2" height="15.0" fill="rgb(230,212,22)" rx="2" ry="2" />
<text x="585.87" y="1039.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (524 samples, 0.04%)</title><rect x="513.4" y="981" width="0.5" height="15.0" fill="rgb(222,117,38)" rx="2" ry="2" />
<text x="516.36" y="991.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (108 samples, 0.01%)</title><rect x="547.1" y="1205" width="0.1" height="15.0" fill="rgb(210,93,41)" rx="2" ry="2" />
<text x="550.14" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (293 samples, 0.02%)</title><rect x="533.6" y="1061" width="0.3" height="15.0" fill="rgb(211,127,22)" rx="2" ry="2" />
<text x="536.62" y="1071.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (758 samples, 0.06%)</title><rect x="646.8" y="1253" width="0.7" height="15.0" fill="rgb(239,72,35)" rx="2" ry="2" />
<text x="649.75" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (159 samples, 0.01%)</title><rect x="129.6" y="1253" width="0.2" height="15.0" fill="rgb(207,27,35)" rx="2" ry="2" />
<text x="132.64" y="1263.5" ></text>
</g>
<g >
<title>sweep_slice (130 samples, 0.01%)</title><rect x="963.6" y="1093" width="0.2" height="15.0" fill="rgb(209,3,52)" rx="2" ry="2" />
<text x="966.62" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__add_blob_hash_29863 (21,409 samples, 1.76%)</title><rect x="198.9" y="1333" width="20.8" height="15.0" fill="rgb(244,142,34)" rx="2" ry="2" />
<text x="201.93" y="1343.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (4,094 samples, 0.34%)</title><rect x="453.5" y="1093" width="4.0" height="15.0" fill="rgb(215,110,3)" rx="2" ry="2" />
<text x="456.52" y="1103.5" ></text>
</g>
<g >
<title>ml_blake2b_update (265 samples, 0.02%)</title><rect x="605.4" y="1189" width="0.2" height="15.0" fill="rgb(244,46,47)" rx="2" ry="2" />
<text x="608.35" y="1199.5" ></text>
</g>
<g >
<title>caml_call_gc (432 samples, 0.04%)</title><rect x="957.1" y="1189" width="0.4" height="15.0" fill="rgb(212,149,14)" rx="2" ry="2" />
<text x="960.07" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (42,048 samples, 3.46%)</title><rect x="503.8" y="1221" width="40.7" height="15.0" fill="rgb(252,145,31)" rx="2" ry="2" />
<text x="506.76" y="1231.5" >cam..</text>
</g>
<g >
<title>caml_string_equal (126 samples, 0.01%)</title><rect x="451.8" y="1045" width="0.1" height="15.0" fill="rgb(209,225,5)" rx="2" ry="2" />
<text x="454.79" y="1055.5" ></text>
</g>
<g >
<title>caml_alloc_shr (125 samples, 0.01%)</title><rect x="981.2" y="1285" width="0.1" height="15.0" fill="rgb(242,9,52)" rx="2" ry="2" />
<text x="984.16" y="1295.5" ></text>
</g>
<g >
<title>mark_slice_darken (204 samples, 0.02%)</title><rect x="857.9" y="1141" width="0.2" height="15.0" fill="rgb(214,132,31)" rx="2" ry="2" />
<text x="860.92" y="1151.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (653 samples, 0.05%)</title><rect x="563.3" y="1189" width="0.6" height="15.0" fill="rgb(253,56,51)" rx="2" ry="2" />
<text x="566.30" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (14,280 samples, 1.17%)</title><rect x="244.4" y="1285" width="13.9" height="15.0" fill="rgb(241,73,19)" rx="2" ry="2" />
<text x="247.44" y="1295.5" ></text>
</g>
<g >
<title>sys_pwrite64 (1,095 samples, 0.09%)</title><rect x="920.9" y="1237" width="1.0" height="15.0" fill="rgb(232,164,48)" rx="2" ry="2" />
<text x="923.88" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (355 samples, 0.03%)</title><rect x="454.2" y="1029" width="0.4" height="15.0" fill="rgb(210,115,33)" rx="2" ry="2" />
<text x="457.21" y="1039.5" ></text>
</g>
<g >
<title>mark_slice (118 samples, 0.01%)</title><rect x="515.8" y="885" width="0.1" height="15.0" fill="rgb(252,83,3)" rx="2" ry="2" />
<text x="518.79" y="895.5" ></text>
</g>
<g >
<title>caml_garbage_collection (111 samples, 0.01%)</title><rect x="418.0" y="1173" width="0.1" height="15.0" fill="rgb(238,106,50)" rx="2" ry="2" />
<text x="420.97" y="1183.5" ></text>
</g>
<g >
<title>caml_blit_bytes (165 samples, 0.01%)</title><rect x="255.1" y="1205" width="0.2" height="15.0" fill="rgb(254,222,34)" rx="2" ry="2" />
<text x="258.15" y="1215.5" ></text>
</g>
<g >
<title>ror64 (481 samples, 0.04%)</title><rect x="371.6" y="1157" width="0.5" height="15.0" fill="rgb(208,36,16)" rx="2" ry="2" />
<text x="374.62" y="1167.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (201 samples, 0.02%)</title><rect x="670.8" y="1253" width="0.2" height="15.0" fill="rgb(223,46,52)" rx="2" ry="2" />
<text x="673.82" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (159 samples, 0.01%)</title><rect x="587.3" y="1061" width="0.1" height="15.0" fill="rgb(206,26,40)" rx="2" ry="2" />
<text x="590.29" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (2,309 samples, 0.19%)</title><rect x="286.9" y="1189" width="2.3" height="15.0" fill="rgb(212,96,35)" rx="2" ry="2" />
<text x="289.95" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__add_substring_1857 (176 samples, 0.01%)</title><rect x="94.7" y="1221" width="0.2" height="15.0" fill="rgb(211,153,52)" rx="2" ry="2" />
<text x="97.74" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (1,644 samples, 0.14%)</title><rect x="799.7" y="1253" width="1.6" height="15.0" fill="rgb(214,137,21)" rx="2" ry="2" />
<text x="802.70" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (195 samples, 0.02%)</title><rect x="599.1" y="1157" width="0.2" height="15.0" fill="rgb(230,84,13)" rx="2" ry="2" />
<text x="602.15" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_variable_pair_1525 (22,642 samples, 1.86%)</title><rect x="955.6" y="1285" width="22.0" height="15.0" fill="rgb(254,225,4)" rx="2" ry="2" />
<text x="958.63" y="1295.5" >c..</text>
</g>
<g >
<title>camlStdlib__map__add_1108 (220 samples, 0.02%)</title><rect x="280.0" y="1237" width="0.2" height="15.0" fill="rgb(244,156,28)" rx="2" ry="2" />
<text x="282.99" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (142 samples, 0.01%)</title><rect x="61.7" y="1797" width="0.1" height="15.0" fill="rgb(254,195,0)" rx="2" ry="2" />
<text x="64.70" y="1807.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7363 (284 samples, 0.02%)</title><rect x="125.1" y="1173" width="0.3" height="15.0" fill="rgb(249,17,1)" rx="2" ry="2" />
<text x="128.13" y="1183.5" ></text>
</g>
<g >
<title>_itoa_word (274 samples, 0.02%)</title><rect x="164.9" y="1253" width="0.3" height="15.0" fill="rgb(243,120,19)" rx="2" ry="2" />
<text x="167.92" y="1263.5" ></text>
</g>
<g >
<title>mark_slice (682 samples, 0.06%)</title><rect x="895.1" y="1157" width="0.7" height="15.0" fill="rgb(238,5,50)" rx="2" ry="2" />
<text x="898.10" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (2,886 samples, 0.24%)</title><rect x="394.8" y="1141" width="2.8" height="15.0" fill="rgb(227,43,29)" rx="2" ry="2" />
<text x="397.85" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (1,674 samples, 0.14%)</title><rect x="313.4" y="1221" width="1.7" height="15.0" fill="rgb(253,96,10)" rx="2" ry="2" />
<text x="316.45" y="1231.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (131 samples, 0.01%)</title><rect x="1185.4" y="1461" width="0.1" height="15.0" fill="rgb(239,201,44)" rx="2" ry="2" />
<text x="1188.42" y="1471.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (592 samples, 0.05%)</title><rect x="567.0" y="1109" width="0.6" height="15.0" fill="rgb(211,225,22)" rx="2" ry="2" />
<text x="570.00" y="1119.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (509 samples, 0.04%)</title><rect x="551.7" y="1269" width="0.5" height="15.0" fill="rgb(240,115,9)" rx="2" ry="2" />
<text x="554.75" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__update_context_29860 (173 samples, 0.01%)</title><rect x="483.8" y="1381" width="0.1" height="15.0" fill="rgb(249,212,49)" rx="2" ry="2" />
<text x="486.77" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__$40_1165 (138 samples, 0.01%)</title><rect x="259.2" y="1237" width="0.1" height="15.0" fill="rgb(235,175,54)" rx="2" ry="2" />
<text x="262.18" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__classify_desc_1690 (132 samples, 0.01%)</title><rect x="977.1" y="1237" width="0.2" height="15.0" fill="rgb(238,62,26)" rx="2" ry="2" />
<text x="980.14" y="1247.5" ></text>
</g>
<g >
<title>rotr64 (162 samples, 0.01%)</title><rect x="569.0" y="997" width="0.1" height="15.0" fill="rgb(223,86,38)" rx="2" ry="2" />
<text x="571.99" y="1007.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (161 samples, 0.01%)</title><rect x="1184.3" y="1397" width="0.1" height="15.0" fill="rgb(226,178,48)" rx="2" ry="2" />
<text x="1187.28" y="1407.5" ></text>
</g>
<g >
<title>mdb_page_alloc (380 samples, 0.03%)</title><rect x="787.1" y="1173" width="0.3" height="15.0" fill="rgb(242,4,48)" rx="2" ry="2" />
<text x="790.08" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__interpolation_search_2768 (1,007 samples, 0.08%)</title><rect x="184.5" y="1221" width="1.0" height="15.0" fill="rgb(247,105,54)" rx="2" ry="2" />
<text x="187.49" y="1231.5" ></text>
</g>
<g >
<title>mark_slice (226 samples, 0.02%)</title><rect x="707.5" y="1285" width="0.2" height="15.0" fill="rgb(212,130,34)" rx="2" ry="2" />
<text x="710.46" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="789" width="1.6" height="15.0" fill="rgb(229,144,2)" rx="2" ry="2" />
<text x="1189.27" y="799.5" ></text>
</g>
<g >
<title>caml_apply2 (360 samples, 0.03%)</title><rect x="229.5" y="1285" width="0.3" height="15.0" fill="rgb(219,167,15)" rx="2" ry="2" />
<text x="232.46" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1637" width="1.3" height="15.0" fill="rgb(219,63,36)" rx="2" ry="2" />
<text x="1175.52" y="1647.5" ></text>
</g>
<g >
<title>mdb_page_search_root (35,416 samples, 2.91%)</title><rect x="1019.9" y="1301" width="34.4" height="15.0" fill="rgb(240,202,17)" rx="2" ry="2" />
<text x="1022.92" y="1311.5" >md..</text>
</g>
<g >
<title>caml_hash (208 samples, 0.02%)</title><rect x="211.7" y="1125" width="0.2" height="15.0" fill="rgb(251,89,12)" rx="2" ry="2" />
<text x="214.71" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (148 samples, 0.01%)</title><rect x="532.8" y="1077" width="0.1" height="15.0" fill="rgb(208,205,18)" rx="2" ry="2" />
<text x="535.79" y="1087.5" ></text>
</g>
<g >
<title>sys_ioctl (325 samples, 0.03%)</title><rect x="978.2" y="1285" width="0.3" height="15.0" fill="rgb(227,82,23)" rx="2" ry="2" />
<text x="981.22" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (158 samples, 0.01%)</title><rect x="177.6" y="1109" width="0.1" height="15.0" fill="rgb(219,155,0)" rx="2" ry="2" />
<text x="180.55" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (198 samples, 0.02%)</title><rect x="1167.5" y="1461" width="0.1" height="15.0" fill="rgb(243,121,53)" rx="2" ry="2" />
<text x="1170.46" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (252 samples, 0.02%)</title><rect x="375.6" y="1109" width="0.2" height="15.0" fill="rgb(208,48,16)" rx="2" ry="2" />
<text x="378.60" y="1119.5" ></text>
</g>
<g >
<title>caml_call_gc (108 samples, 0.01%)</title><rect x="773.7" y="1253" width="0.1" height="15.0" fill="rgb(229,158,46)" rx="2" ry="2" />
<text x="776.68" y="1263.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (319 samples, 0.03%)</title><rect x="382.5" y="1157" width="0.4" height="15.0" fill="rgb(240,53,43)" rx="2" ry="2" />
<text x="385.55" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (128 samples, 0.01%)</title><rect x="188.0" y="1205" width="0.1" height="15.0" fill="rgb(252,228,34)" rx="2" ry="2" />
<text x="190.98" y="1215.5" ></text>
</g>
<g >
<title>blake2b_update (139 samples, 0.01%)</title><rect x="603.5" y="1157" width="0.2" height="15.0" fill="rgb(213,107,35)" rx="2" ry="2" />
<text x="606.52" y="1167.5" ></text>
</g>
<g >
<title>blake2b_compress (1,190 samples, 0.10%)</title><rect x="272.2" y="1189" width="1.2" height="15.0" fill="rgb(212,179,34)" rx="2" ry="2" />
<text x="275.24" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (113 samples, 0.01%)</title><rect x="578.7" y="965" width="0.2" height="15.0" fill="rgb(214,18,23)" rx="2" ry="2" />
<text x="581.74" y="975.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__pre_hash_v1_11520 (144 samples, 0.01%)</title><rect x="107.2" y="1205" width="0.2" height="15.0" fill="rgb(241,185,16)" rx="2" ry="2" />
<text x="110.22" y="1215.5" ></text>
</g>
<g >
<title>caml_startup_exn (1,127,749 samples, 92.67%)</title><rect x="92.2" y="1989" width="1093.6" height="15.0" fill="rgb(243,108,6)" rx="2" ry="2" />
<text x="95.23" y="1999.5" >caml_startup_exn</text>
</g>
<g >
<title>caml_major_collection_slice (181 samples, 0.01%)</title><rect x="585.1" y="1029" width="0.1" height="15.0" fill="rgb(254,214,25)" rx="2" ry="2" />
<text x="588.05" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (606 samples, 0.05%)</title><rect x="541.2" y="1173" width="0.6" height="15.0" fill="rgb(219,47,2)" rx="2" ry="2" />
<text x="544.16" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__of_bytes_exn_2162 (1,289 samples, 0.11%)</title><rect x="940.5" y="1141" width="1.2" height="15.0" fill="rgb(219,110,6)" rx="2" ry="2" />
<text x="943.48" y="1151.5" ></text>
</g>
<g >
<title>ml_blake2b_final (303 samples, 0.02%)</title><rect x="515.5" y="901" width="0.3" height="15.0" fill="rgb(221,170,2)" rx="2" ry="2" />
<text x="518.48" y="911.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (2,065 samples, 0.17%)</title><rect x="374.4" y="1221" width="2.0" height="15.0" fill="rgb(251,59,25)" rx="2" ry="2" />
<text x="377.41" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (315 samples, 0.03%)</title><rect x="437.3" y="1237" width="0.3" height="15.0" fill="rgb(249,7,9)" rx="2" ry="2" />
<text x="440.30" y="1247.5" ></text>
</g>
<g >
<title>rotr64 (146 samples, 0.01%)</title><rect x="565.2" y="1077" width="0.2" height="15.0" fill="rgb(248,225,18)" rx="2" ry="2" />
<text x="568.23" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1205" width="1.3" height="15.0" fill="rgb(221,188,19)" rx="2" ry="2" />
<text x="1175.52" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (529 samples, 0.04%)</title><rect x="528.5" y="1045" width="0.5" height="15.0" fill="rgb(245,196,25)" rx="2" ry="2" />
<text x="531.52" y="1055.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (27,789 samples, 2.28%)</title><rect x="241.9" y="1317" width="26.9" height="15.0" fill="rgb(225,195,50)" rx="2" ry="2" />
<text x="244.90" y="1327.5" >c..</text>
</g>
<g >
<title>camlIndex_unix__aux_1515 (449 samples, 0.04%)</title><rect x="213.7" y="1157" width="0.5" height="15.0" fill="rgb(213,183,12)" rx="2" ry="2" />
<text x="216.73" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,779 samples, 0.15%)</title><rect x="554.7" y="1301" width="1.7" height="15.0" fill="rgb(207,3,43)" rx="2" ry="2" />
<text x="557.66" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (677 samples, 0.06%)</title><rect x="377.5" y="1205" width="0.6" height="15.0" fill="rgb(209,125,41)" rx="2" ry="2" />
<text x="380.47" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (929 samples, 0.08%)</title><rect x="516.5" y="341" width="0.9" height="15.0" fill="rgb(208,24,12)" rx="2" ry="2" />
<text x="519.48" y="351.5" ></text>
</g>
<g >
<title>camlIndex_unix__read_1674 (184 samples, 0.02%)</title><rect x="313.5" y="1205" width="0.2" height="15.0" fill="rgb(242,24,19)" rx="2" ry="2" />
<text x="316.52" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (27,277 samples, 2.24%)</title><rect x="817.0" y="1205" width="26.4" height="15.0" fill="rgb(243,195,14)" rx="2" ry="2" />
<text x="820.00" y="1215.5" >c..</text>
</g>
<g >
<title>mdb_node_search (200 samples, 0.02%)</title><rect x="488.9" y="1157" width="0.2" height="15.0" fill="rgb(213,33,22)" rx="2" ry="2" />
<text x="491.94" y="1167.5" ></text>
</g>
<g >
<title>caml_garbage_collection (431 samples, 0.04%)</title><rect x="957.1" y="1173" width="0.4" height="15.0" fill="rgb(214,183,41)" rx="2" ry="2" />
<text x="960.07" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (180 samples, 0.01%)</title><rect x="310.5" y="1157" width="0.1" height="15.0" fill="rgb(235,97,40)" rx="2" ry="2" />
<text x="313.46" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__export_7330 (2,052 samples, 0.17%)</title><rect x="329.1" y="1349" width="2.0" height="15.0" fill="rgb(212,64,49)" rx="2" ry="2" />
<text x="332.12" y="1359.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (419 samples, 0.03%)</title><rect x="978.2" y="1317" width="0.4" height="15.0" fill="rgb(217,63,19)" rx="2" ry="2" />
<text x="981.16" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (179 samples, 0.01%)</title><rect x="526.2" y="1029" width="0.2" height="15.0" fill="rgb(218,180,54)" rx="2" ry="2" />
<text x="529.23" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (156 samples, 0.01%)</title><rect x="586.4" y="1045" width="0.1" height="15.0" fill="rgb(209,179,41)" rx="2" ry="2" />
<text x="589.35" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (580 samples, 0.05%)</title><rect x="325.2" y="1269" width="0.5" height="15.0" fill="rgb(233,141,23)" rx="2" ry="2" />
<text x="328.15" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (12,402 samples, 1.02%)</title><rect x="436.6" y="1269" width="12.0" height="15.0" fill="rgb(210,219,13)" rx="2" ry="2" />
<text x="439.58" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (169 samples, 0.01%)</title><rect x="603.5" y="1205" width="0.2" height="15.0" fill="rgb(210,58,27)" rx="2" ry="2" />
<text x="606.51" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (176 samples, 0.01%)</title><rect x="858.3" y="1221" width="0.2" height="15.0" fill="rgb(208,151,34)" rx="2" ry="2" />
<text x="861.34" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__set_int_1105 (138 samples, 0.01%)</title><rect x="903.8" y="1237" width="0.2" height="15.0" fill="rgb(242,122,16)" rx="2" ry="2" />
<text x="906.84" y="1247.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (261 samples, 0.02%)</title><rect x="922.0" y="1269" width="0.3" height="15.0" fill="rgb(252,27,36)" rx="2" ry="2" />
<text x="925.02" y="1279.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (1,193 samples, 0.10%)</title><rect x="114.8" y="1221" width="1.2" height="15.0" fill="rgb(229,167,37)" rx="2" ry="2" />
<text x="117.80" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_final (605 samples, 0.05%)</title><rect x="564.8" y="1125" width="0.6" height="15.0" fill="rgb(215,156,52)" rx="2" ry="2" />
<text x="567.84" y="1135.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (205 samples, 0.02%)</title><rect x="935.5" y="1093" width="0.2" height="15.0" fill="rgb(243,92,32)" rx="2" ry="2" />
<text x="938.51" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int64_3818 (109 samples, 0.01%)</title><rect x="210.7" y="1109" width="0.1" height="15.0" fill="rgb(243,25,31)" rx="2" ry="2" />
<text x="213.69" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (294 samples, 0.02%)</title><rect x="594.7" y="1109" width="0.3" height="15.0" fill="rgb(245,3,5)" rx="2" ry="2" />
<text x="597.73" y="1119.5" ></text>
</g>
<g >
<title>mark_slice_darken (163 samples, 0.01%)</title><rect x="612.9" y="1221" width="0.2" height="15.0" fill="rgb(214,81,28)" rx="2" ry="2" />
<text x="615.94" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (206 samples, 0.02%)</title><rect x="271.1" y="1237" width="0.2" height="15.0" fill="rgb(210,43,54)" rx="2" ry="2" />
<text x="274.10" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (260 samples, 0.02%)</title><rect x="733.4" y="1253" width="0.3" height="15.0" fill="rgb(242,66,16)" rx="2" ry="2" />
<text x="736.42" y="1263.5" ></text>
</g>
<g >
<title>rotr64 (136 samples, 0.01%)</title><rect x="566.0" y="1061" width="0.1" height="15.0" fill="rgb(219,120,51)" rx="2" ry="2" />
<text x="568.96" y="1071.5" ></text>
</g>
<g >
<title>caml_garbage_collection (196 samples, 0.02%)</title><rect x="71.5" y="1893" width="0.2" height="15.0" fill="rgb(232,133,38)" rx="2" ry="2" />
<text x="74.53" y="1903.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (189 samples, 0.02%)</title><rect x="550.4" y="1237" width="0.2" height="15.0" fill="rgb(249,29,50)" rx="2" ry="2" />
<text x="553.43" y="1247.5" ></text>
</g>
<g >
<title>page_fault (204 samples, 0.02%)</title><rect x="1161.7" y="1429" width="0.2" height="15.0" fill="rgb(227,208,40)" rx="2" ry="2" />
<text x="1164.71" y="1439.5" ></text>
</g>
<g >
<title>caml_blit_bytes (1,425 samples, 0.12%)</title><rect x="880.3" y="1237" width="1.4" height="15.0" fill="rgb(229,124,47)" rx="2" ry="2" />
<text x="883.30" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (112 samples, 0.01%)</title><rect x="745.8" y="1189" width="0.1" height="15.0" fill="rgb(211,177,2)" rx="2" ry="2" />
<text x="748.77" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__check_key_9192 (357 samples, 0.03%)</title><rect x="101.3" y="1205" width="0.4" height="15.0" fill="rgb(205,172,53)" rx="2" ry="2" />
<text x="104.32" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (648 samples, 0.05%)</title><rect x="516.5" y="101" width="0.7" height="15.0" fill="rgb(207,77,21)" rx="2" ry="2" />
<text x="519.55" y="111.5" ></text>
</g>
<g >
<title>memset (133 samples, 0.01%)</title><rect x="634.1" y="1205" width="0.1" height="15.0" fill="rgb(245,189,51)" rx="2" ry="2" />
<text x="637.05" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (118 samples, 0.01%)</title><rect x="1177.8" y="1141" width="0.1" height="15.0" fill="rgb(229,2,48)" rx="2" ry="2" />
<text x="1180.76" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (152 samples, 0.01%)</title><rect x="526.2" y="1013" width="0.2" height="15.0" fill="rgb(235,61,35)" rx="2" ry="2" />
<text x="529.24" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (542 samples, 0.04%)</title><rect x="343.4" y="1093" width="0.5" height="15.0" fill="rgb(224,128,27)" rx="2" ry="2" />
<text x="346.37" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (501 samples, 0.04%)</title><rect x="433.3" y="1205" width="0.4" height="15.0" fill="rgb(231,48,42)" rx="2" ry="2" />
<text x="436.26" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_002_PsYLVpVv__Main__entry (492 samples, 0.04%)</title><rect x="1182.6" y="1925" width="0.5" height="15.0" fill="rgb(242,49,29)" rx="2" ry="2" />
<text x="1185.59" y="1935.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (166 samples, 0.01%)</title><rect x="1177.5" y="1221" width="0.2" height="15.0" fill="rgb(241,99,13)" rx="2" ry="2" />
<text x="1180.54" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (4,091 samples, 0.34%)</title><rect x="679.7" y="1237" width="4.0" height="15.0" fill="rgb(218,158,52)" rx="2" ry="2" />
<text x="682.73" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__compare_2487 (628 samples, 0.05%)</title><rect x="412.1" y="1189" width="0.6" height="15.0" fill="rgb(237,207,26)" rx="2" ry="2" />
<text x="415.11" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1445" width="1.3" height="15.0" fill="rgb(254,149,33)" rx="2" ry="2" />
<text x="1175.52" y="1455.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (191 samples, 0.02%)</title><rect x="607.0" y="1221" width="0.2" height="15.0" fill="rgb(236,217,15)" rx="2" ry="2" />
<text x="609.97" y="1231.5" ></text>
</g>
<g >
<title>blake2b_final (547 samples, 0.04%)</title><rect x="509.8" y="1013" width="0.5" height="15.0" fill="rgb(252,48,51)" rx="2" ry="2" />
<text x="512.80" y="1023.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (493 samples, 0.04%)</title><rect x="462.4" y="1077" width="0.5" height="15.0" fill="rgb(223,56,25)" rx="2" ry="2" />
<text x="465.40" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (338 samples, 0.03%)</title><rect x="126.4" y="1029" width="0.3" height="15.0" fill="rgb(237,221,14)" rx="2" ry="2" />
<text x="129.41" y="1039.5" ></text>
</g>
<g >
<title>blake2b_compress (287 samples, 0.02%)</title><rect x="1187.5" y="37" width="0.3" height="15.0" fill="rgb(232,12,46)" rx="2" ry="2" />
<text x="1190.48" y="47.5" ></text>
</g>
<g >
<title>camlStdlib__map__bindings_aux_1489 (121 samples, 0.01%)</title><rect x="378.6" y="1237" width="0.2" height="15.0" fill="rgb(238,137,17)" rx="2" ry="2" />
<text x="381.64" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_contents_7343 (109 samples, 0.01%)</title><rect x="1176.8" y="1269" width="0.1" height="15.0" fill="rgb(226,189,7)" rx="2" ry="2" />
<text x="1179.82" y="1279.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (1,015 samples, 0.08%)</title><rect x="253.0" y="1221" width="1.0" height="15.0" fill="rgb(242,112,10)" rx="2" ry="2" />
<text x="256.00" y="1231.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (347 samples, 0.03%)</title><rect x="354.5" y="1205" width="0.3" height="15.0" fill="rgb(244,27,26)" rx="2" ry="2" />
<text x="357.50" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (121 samples, 0.01%)</title><rect x="579.4" y="1013" width="0.1" height="15.0" fill="rgb(239,150,5)" rx="2" ry="2" />
<text x="582.42" y="1023.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (170 samples, 0.01%)</title><rect x="1155.5" y="1413" width="0.2" height="15.0" fill="rgb(247,199,21)" rx="2" ry="2" />
<text x="1158.50" y="1423.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (397 samples, 0.03%)</title><rect x="618.0" y="1285" width="0.4" height="15.0" fill="rgb(209,103,41)" rx="2" ry="2" />
<text x="620.99" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1061" width="1.6" height="15.0" fill="rgb(213,110,21)" rx="2" ry="2" />
<text x="1189.27" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (7,392 samples, 0.61%)</title><rect x="282.4" y="1221" width="7.2" height="15.0" fill="rgb(243,187,37)" rx="2" ry="2" />
<text x="285.43" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_loop_1883 (164 samples, 0.01%)</title><rect x="1162.3" y="1461" width="0.1" height="15.0" fill="rgb(215,131,17)" rx="2" ry="2" />
<text x="1165.27" y="1471.5" ></text>
</g>
<g >
<title>memmove (154 samples, 0.01%)</title><rect x="297.3" y="1093" width="0.2" height="15.0" fill="rgb(233,88,23)" rx="2" ry="2" />
<text x="300.32" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__map__bal_1080 (189 samples, 0.02%)</title><rect x="262.1" y="1237" width="0.1" height="15.0" fill="rgb(254,16,16)" rx="2" ry="2" />
<text x="265.06" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_atom_1078 (403 samples, 0.03%)</title><rect x="968.1" y="1157" width="0.4" height="15.0" fill="rgb(247,208,6)" rx="2" ry="2" />
<text x="971.14" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (161 samples, 0.01%)</title><rect x="701.4" y="1205" width="0.1" height="15.0" fill="rgb(241,168,4)" rx="2" ry="2" />
<text x="704.39" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (158 samples, 0.01%)</title><rect x="580.8" y="1013" width="0.2" height="15.0" fill="rgb(205,107,0)" rx="2" ry="2" />
<text x="583.82" y="1023.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_map_6671 (951 samples, 0.08%)</title><rect x="107.8" y="1253" width="0.9" height="15.0" fill="rgb(241,196,25)" rx="2" ry="2" />
<text x="110.80" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (559 samples, 0.05%)</title><rect x="243.9" y="1285" width="0.5" height="15.0" fill="rgb(207,203,42)" rx="2" ry="2" />
<text x="246.90" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (1,630 samples, 0.13%)</title><rect x="79.4" y="1813" width="1.6" height="15.0" fill="rgb(209,75,31)" rx="2" ry="2" />
<text x="82.39" y="1823.5" ></text>
</g>
<g >
<title>blake2b_init_param (1,512 samples, 0.12%)</title><rect x="673.9" y="1221" width="1.5" height="15.0" fill="rgb(252,61,23)" rx="2" ry="2" />
<text x="676.94" y="1231.5" ></text>
</g>
<g >
<title>caml_blit_bytes (125 samples, 0.01%)</title><rect x="804.7" y="1205" width="0.1" height="15.0" fill="rgb(234,22,6)" rx="2" ry="2" />
<text x="807.68" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__fold_list_29887 (4,284 samples, 0.35%)</title><rect x="100.9" y="1285" width="4.2" height="15.0" fill="rgb(206,62,44)" rx="2" ry="2" />
<text x="103.91" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (270 samples, 0.02%)</title><rect x="74.7" y="1909" width="0.3" height="15.0" fill="rgb(230,115,17)" rx="2" ry="2" />
<text x="77.72" y="1919.5" ></text>
</g>
<g >
<title>mdb_midl_sort (576 samples, 0.05%)</title><rect x="1150.2" y="1429" width="0.6" height="15.0" fill="rgb(210,21,54)" rx="2" ry="2" />
<text x="1153.24" y="1439.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (126 samples, 0.01%)</title><rect x="646.2" y="1173" width="0.2" height="15.0" fill="rgb(250,73,42)" rx="2" ry="2" />
<text x="649.24" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (8,414 samples, 0.69%)</title><rect x="904.0" y="1237" width="8.1" height="15.0" fill="rgb(223,126,18)" rx="2" ry="2" />
<text x="906.98" y="1247.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (3,857 samples, 0.32%)</title><rect x="108.9" y="1237" width="3.7" height="15.0" fill="rgb(249,105,41)" rx="2" ry="2" />
<text x="111.88" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (616 samples, 0.05%)</title><rect x="159.6" y="1317" width="0.6" height="15.0" fill="rgb(236,111,52)" rx="2" ry="2" />
<text x="162.64" y="1327.5" ></text>
</g>
<g >
<title>mark_slice_darken (1,327 samples, 0.11%)</title><rect x="949.9" y="1029" width="1.3" height="15.0" fill="rgb(215,205,0)" rx="2" ry="2" />
<text x="952.91" y="1039.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (162 samples, 0.01%)</title><rect x="898.3" y="1157" width="0.2" height="15.0" fill="rgb(230,151,46)" rx="2" ry="2" />
<text x="901.34" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1429" width="1.3" height="15.0" fill="rgb(243,206,27)" rx="2" ry="2" />
<text x="1175.52" y="1439.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3927 (115 samples, 0.01%)</title><rect x="304.7" y="1125" width="0.1" height="15.0" fill="rgb(242,144,10)" rx="2" ry="2" />
<text x="307.66" y="1135.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__verify_predecessors_6394 (239 samples, 0.02%)</title><rect x="495.9" y="1365" width="0.3" height="15.0" fill="rgb(212,81,33)" rx="2" ry="2" />
<text x="498.95" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11257 (1,441 samples, 0.12%)</title><rect x="331.9" y="1317" width="1.4" height="15.0" fill="rgb(207,166,31)" rx="2" ry="2" />
<text x="334.87" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3652 (167 samples, 0.01%)</title><rect x="76.0" y="1861" width="0.2" height="15.0" fill="rgb(232,87,1)" rx="2" ry="2" />
<text x="78.99" y="1871.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,019 samples, 0.08%)</title><rect x="588.3" y="1125" width="0.9" height="15.0" fill="rgb(206,46,24)" rx="2" ry="2" />
<text x="591.25" y="1135.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (108 samples, 0.01%)</title><rect x="745.7" y="1157" width="0.1" height="15.0" fill="rgb(206,97,7)" rx="2" ry="2" />
<text x="748.67" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (2,102 samples, 0.17%)</title><rect x="321.4" y="1269" width="2.1" height="15.0" fill="rgb(226,152,45)" rx="2" ry="2" />
<text x="324.42" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (178 samples, 0.01%)</title><rect x="140.5" y="1333" width="0.2" height="15.0" fill="rgb(229,93,23)" rx="2" ry="2" />
<text x="143.50" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (110 samples, 0.01%)</title><rect x="110.7" y="1093" width="0.1" height="15.0" fill="rgb(218,105,42)" rx="2" ry="2" />
<text x="113.70" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_string (357 samples, 0.03%)</title><rect x="734.5" y="1221" width="0.3" height="15.0" fill="rgb(246,158,2)" rx="2" ry="2" />
<text x="737.47" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7349 (114 samples, 0.01%)</title><rect x="442.6" y="1237" width="0.1" height="15.0" fill="rgb(222,44,25)" rx="2" ry="2" />
<text x="445.58" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (1,507 samples, 0.12%)</title><rect x="605.7" y="1269" width="1.5" height="15.0" fill="rgb(218,181,6)" rx="2" ry="2" />
<text x="608.74" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (658 samples, 0.05%)</title><rect x="443.6" y="1221" width="0.6" height="15.0" fill="rgb(235,138,54)" rx="2" ry="2" />
<text x="446.58" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (173 samples, 0.01%)</title><rect x="617.2" y="1269" width="0.2" height="15.0" fill="rgb(232,12,39)" rx="2" ry="2" />
<text x="620.20" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (521 samples, 0.04%)</title><rect x="838.3" y="1093" width="0.5" height="15.0" fill="rgb(209,29,1)" rx="2" ry="2" />
<text x="841.26" y="1103.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3324 (330 samples, 0.03%)</title><rect x="1148.3" y="1461" width="0.3" height="15.0" fill="rgb(238,11,52)" rx="2" ry="2" />
<text x="1151.31" y="1471.5" ></text>
</g>
<g >
<title>mark_slice_darken (510 samples, 0.04%)</title><rect x="636.9" y="1205" width="0.5" height="15.0" fill="rgb(245,218,12)" rx="2" ry="2" />
<text x="639.90" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_9686 (130 samples, 0.01%)</title><rect x="1173.7" y="773" width="0.1" height="15.0" fill="rgb(222,149,48)" rx="2" ry="2" />
<text x="1176.67" y="783.5" ></text>
</g>
<g >
<title>camlIndex__Search__interpolation_search_1130 (199 samples, 0.02%)</title><rect x="175.9" y="1221" width="0.2" height="15.0" fill="rgb(217,76,10)" rx="2" ry="2" />
<text x="178.92" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (123 samples, 0.01%)</title><rect x="522.9" y="965" width="0.1" height="15.0" fill="rgb(243,93,22)" rx="2" ry="2" />
<text x="525.92" y="975.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (1,112 samples, 0.09%)</title><rect x="381.1" y="1237" width="1.0" height="15.0" fill="rgb(223,169,43)" rx="2" ry="2" />
<text x="384.06" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (962 samples, 0.08%)</title><rect x="474.2" y="1269" width="0.9" height="15.0" fill="rgb(225,83,52)" rx="2" ry="2" />
<text x="477.21" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (435 samples, 0.04%)</title><rect x="1166.8" y="1461" width="0.4" height="15.0" fill="rgb(208,215,47)" rx="2" ry="2" />
<text x="1169.79" y="1471.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (1,061 samples, 0.09%)</title><rect x="60.4" y="1893" width="1.1" height="15.0" fill="rgb(217,142,27)" rx="2" ry="2" />
<text x="63.43" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (273 samples, 0.02%)</title><rect x="95.0" y="1301" width="0.3" height="15.0" fill="rgb(233,219,9)" rx="2" ry="2" />
<text x="98.04" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1093" width="1.3" height="15.0" fill="rgb(213,23,48)" rx="2" ry="2" />
<text x="1175.52" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_9250 (25,037 samples, 2.06%)</title><rect x="170.5" y="1349" width="24.2" height="15.0" fill="rgb(252,18,44)" rx="2" ry="2" />
<text x="173.47" y="1359.5" >c..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (118 samples, 0.01%)</title><rect x="131.9" y="1205" width="0.1" height="15.0" fill="rgb(229,113,5)" rx="2" ry="2" />
<text x="134.86" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (938 samples, 0.08%)</title><rect x="985.8" y="1365" width="0.9" height="15.0" fill="rgb(231,118,14)" rx="2" ry="2" />
<text x="988.78" y="1375.5" ></text>
</g>
<g >
<title>rotr64 (136 samples, 0.01%)</title><rect x="557.9" y="1205" width="0.2" height="15.0" fill="rgb(222,137,52)" rx="2" ry="2" />
<text x="560.92" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (6,081 samples, 0.50%)</title><rect x="24.4" y="1989" width="5.9" height="15.0" fill="rgb(245,38,27)" rx="2" ry="2" />
<text x="27.37" y="1999.5" ></text>
</g>
<g >
<title>caml_compact_heap (520 samples, 0.04%)</title><rect x="344.9" y="1013" width="0.5" height="15.0" fill="rgb(240,187,0)" rx="2" ry="2" />
<text x="347.93" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (183 samples, 0.02%)</title><rect x="131.0" y="1189" width="0.2" height="15.0" fill="rgb(253,31,45)" rx="2" ry="2" />
<text x="134.05" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (672 samples, 0.06%)</title><rect x="800.4" y="1205" width="0.6" height="15.0" fill="rgb(207,92,3)" rx="2" ry="2" />
<text x="803.39" y="1215.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (13,339 samples, 1.10%)</title><rect x="1134.5" y="1445" width="13.0" height="15.0" fill="rgb(216,145,2)" rx="2" ry="2" />
<text x="1137.54" y="1455.5" ></text>
</g>
<g >
<title>mdb_cursor_set (248 samples, 0.02%)</title><rect x="485.9" y="1237" width="0.3" height="15.0" fill="rgb(230,23,44)" rx="2" ry="2" />
<text x="488.93" y="1247.5" ></text>
</g>
<g >
<title>blake2b_final (681 samples, 0.06%)</title><rect x="696.2" y="1269" width="0.7" height="15.0" fill="rgb(247,218,54)" rx="2" ry="2" />
<text x="699.24" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__add_8348 (105 samples, 0.01%)</title><rect x="435.1" y="1269" width="0.1" height="15.0" fill="rgb(234,166,40)" rx="2" ry="2" />
<text x="438.07" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__set_buffer_1279 (149 samples, 0.01%)</title><rect x="111.9" y="1157" width="0.2" height="15.0" fill="rgb(253,205,46)" rx="2" ry="2" />
<text x="114.91" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context__of_context_hash_4199 (569 samples, 0.05%)</title><rect x="153.3" y="1269" width="0.6" height="15.0" fill="rgb(234,141,48)" rx="2" ry="2" />
<text x="156.33" y="1279.5" ></text>
</g>
<g >
<title>caml_alloc_shr (141 samples, 0.01%)</title><rect x="23.6" y="2005" width="0.1" height="15.0" fill="rgb(252,185,22)" rx="2" ry="2" />
<text x="26.57" y="2015.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__pre_fetch_1287 (160 samples, 0.01%)</title><rect x="348.6" y="1157" width="0.2" height="15.0" fill="rgb(251,134,10)" rx="2" ry="2" />
<text x="351.62" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Helpers_services__register_19375 (783 samples, 0.06%)</title><rect x="1184.9" y="1893" width="0.8" height="15.0" fill="rgb(214,140,45)" rx="2" ry="2" />
<text x="1187.91" y="1903.5" ></text>
</g>
<g >
<title>digestif_blake2b_update (105 samples, 0.01%)</title><rect x="201.3" y="1173" width="0.1" height="15.0" fill="rgb(210,224,33)" rx="2" ry="2" />
<text x="204.35" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (163 samples, 0.01%)</title><rect x="108.5" y="1205" width="0.2" height="15.0" fill="rgb(213,45,25)" rx="2" ry="2" />
<text x="111.53" y="1215.5" ></text>
</g>
<g >
<title>memmove (580 samples, 0.05%)</title><rect x="825.2" y="1093" width="0.5" height="15.0" fill="rgb(223,21,9)" rx="2" ry="2" />
<text x="828.15" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (324 samples, 0.03%)</title><rect x="928.8" y="1157" width="0.3" height="15.0" fill="rgb(207,130,49)" rx="2" ry="2" />
<text x="931.80" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,670 samples, 0.14%)</title><rect x="1186.3" y="2021" width="1.6" height="15.0" fill="rgb(209,82,42)" rx="2" ry="2" />
<text x="1189.26" y="2031.5" ></text>
</g>
<g >
<title>caml_curry3_1 (105 samples, 0.01%)</title><rect x="250.3" y="1221" width="0.1" height="15.0" fill="rgb(220,223,45)" rx="2" ry="2" />
<text x="253.32" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11273 (165 samples, 0.01%)</title><rect x="1173.5" y="837" width="0.2" height="15.0" fill="rgb(210,151,9)" rx="2" ry="2" />
<text x="1176.51" y="847.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (276 samples, 0.02%)</title><rect x="127.8" y="997" width="0.3" height="15.0" fill="rgb(244,170,50)" rx="2" ry="2" />
<text x="130.80" y="1007.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__get_mbytes_3536 (127 samples, 0.01%)</title><rect x="97.2" y="1301" width="0.1" height="15.0" fill="rgb(240,186,27)" rx="2" ry="2" />
<text x="100.19" y="1311.5" ></text>
</g>
<g >
<title>mark_slice_darken (502 samples, 0.04%)</title><rect x="599.7" y="1093" width="0.5" height="15.0" fill="rgb(218,62,3)" rx="2" ry="2" />
<text x="602.69" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (178 samples, 0.01%)</title><rect x="430.9" y="1253" width="0.2" height="15.0" fill="rgb(224,22,0)" rx="2" ry="2" />
<text x="433.89" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__map__cardinal_1485 (106 samples, 0.01%)</title><rect x="278.3" y="1205" width="0.1" height="15.0" fill="rgb(242,38,8)" rx="2" ry="2" />
<text x="281.27" y="1215.5" ></text>
</g>
<g >
<title>caml_garbage_collection (2,342 samples, 0.19%)</title><rect x="949.3" y="1077" width="2.3" height="15.0" fill="rgb(231,146,43)" rx="2" ry="2" />
<text x="952.34" y="1087.5" ></text>
</g>
<g >
<title>caml_oldify_one (156 samples, 0.01%)</title><rect x="670.9" y="1221" width="0.1" height="15.0" fill="rgb(209,151,38)" rx="2" ry="2" />
<text x="673.86" y="1231.5" ></text>
</g>
<g >
<title>iov_iter_fault_in_readable (1,975 samples, 0.16%)</title><rect x="1157.7" y="1269" width="1.9" height="15.0" fill="rgb(207,47,25)" rx="2" ry="2" />
<text x="1160.72" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (183 samples, 0.02%)</title><rect x="547.4" y="1237" width="0.2" height="15.0" fill="rgb(205,125,10)" rx="2" ry="2" />
<text x="550.41" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (107 samples, 0.01%)</title><rect x="932.7" y="1109" width="0.1" height="15.0" fill="rgb(206,65,37)" rx="2" ry="2" />
<text x="935.68" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (186 samples, 0.02%)</title><rect x="236.1" y="1237" width="0.2" height="15.0" fill="rgb(226,74,54)" rx="2" ry="2" />
<text x="239.13" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (955 samples, 0.08%)</title><rect x="351.2" y="1221" width="1.0" height="15.0" fill="rgb(206,156,46)" rx="2" ry="2" />
<text x="354.25" y="1231.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (143 samples, 0.01%)</title><rect x="810.9" y="1141" width="0.2" height="15.0" fill="rgb(240,68,15)" rx="2" ry="2" />
<text x="813.91" y="1151.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (622 samples, 0.05%)</title><rect x="195.7" y="1317" width="0.6" height="15.0" fill="rgb(218,82,40)" rx="2" ry="2" />
<text x="198.73" y="1327.5" ></text>
</g>
<g >
<title>ml_blake2b_final (338 samples, 0.03%)</title><rect x="515.1" y="917" width="0.3" height="15.0" fill="rgb(236,50,3)" rx="2" ry="2" />
<text x="518.09" y="927.5" ></text>
</g>
<g >
<title>blake2b_compress (303 samples, 0.02%)</title><rect x="515.1" y="885" width="0.3" height="15.0" fill="rgb(238,102,45)" rx="2" ry="2" />
<text x="518.09" y="895.5" ></text>
</g>
<g >
<title>caml_call_gc (111 samples, 0.01%)</title><rect x="418.0" y="1189" width="0.1" height="15.0" fill="rgb(254,33,37)" rx="2" ry="2" />
<text x="420.97" y="1199.5" ></text>
</g>
<g >
<title>caml_alloc_string (128 samples, 0.01%)</title><rect x="588.3" y="1093" width="0.1" height="15.0" fill="rgb(226,31,37)" rx="2" ry="2" />
<text x="591.29" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (321 samples, 0.03%)</title><rect x="1183.2" y="1621" width="0.3" height="15.0" fill="rgb(210,114,50)" rx="2" ry="2" />
<text x="1186.15" y="1631.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9234 (219 samples, 0.02%)</title><rect x="130.3" y="1269" width="0.2" height="15.0" fill="rgb(248,110,27)" rx="2" ry="2" />
<text x="133.29" y="1279.5" ></text>
</g>
<g >
<title>caml_oldify_one (176 samples, 0.01%)</title><rect x="949.4" y="1013" width="0.2" height="15.0" fill="rgb(224,147,40)" rx="2" ry="2" />
<text x="952.38" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (125 samples, 0.01%)</title><rect x="1181.6" y="1189" width="0.2" height="15.0" fill="rgb(247,174,1)" rx="2" ry="2" />
<text x="1184.64" y="1199.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (180 samples, 0.01%)</title><rect x="1185.1" y="1461" width="0.1" height="15.0" fill="rgb(234,80,42)" rx="2" ry="2" />
<text x="1188.07" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin_pack__IO__append_9357 (448 samples, 0.04%)</title><rect x="444.5" y="1221" width="0.4" height="15.0" fill="rgb(242,181,25)" rx="2" ry="2" />
<text x="447.45" y="1231.5" ></text>
</g>
<g >
<title>stub_mdb_put (17,118 samples, 1.41%)</title><rect x="774.1" y="1253" width="16.6" height="15.0" fill="rgb(234,187,38)" rx="2" ry="2" />
<text x="777.15" y="1263.5" ></text>
</g>
<g >
<title>memmove (320 samples, 0.03%)</title><rect x="165.6" y="1301" width="0.3" height="15.0" fill="rgb(237,40,14)" rx="2" ry="2" />
<text x="168.60" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (171 samples, 0.01%)</title><rect x="478.5" y="1237" width="0.1" height="15.0" fill="rgb(206,5,20)" rx="2" ry="2" />
<text x="481.45" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (262 samples, 0.02%)</title><rect x="441.5" y="1221" width="0.3" height="15.0" fill="rgb(211,43,49)" rx="2" ry="2" />
<text x="444.50" y="1231.5" ></text>
</g>
<g >
<title>_IO_str_init_static_internal (158 samples, 0.01%)</title><rect x="810.0" y="1157" width="0.2" height="15.0" fill="rgb(227,117,8)" rx="2" ry="2" />
<text x="813.03" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (663 samples, 0.05%)</title><rect x="590.6" y="1141" width="0.7" height="15.0" fill="rgb(208,104,22)" rx="2" ry="2" />
<text x="593.61" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Node__to_entry_5277 (233 samples, 0.02%)</title><rect x="259.7" y="1221" width="0.2" height="15.0" fill="rgb(227,211,24)" rx="2" ry="2" />
<text x="262.71" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (348 samples, 0.03%)</title><rect x="1114.0" y="1381" width="0.3" height="15.0" fill="rgb(251,58,10)" rx="2" ry="2" />
<text x="1117.00" y="1391.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (469 samples, 0.04%)</title><rect x="923.6" y="1381" width="0.4" height="15.0" fill="rgb(229,171,41)" rx="2" ry="2" />
<text x="926.59" y="1391.5" ></text>
</g>
<g >
<title>caml_garbage_collection (148 samples, 0.01%)</title><rect x="615.4" y="1237" width="0.2" height="15.0" fill="rgb(214,196,44)" rx="2" ry="2" />
<text x="618.41" y="1247.5" ></text>
</g>
<g >
<title>sweep_slice (198 samples, 0.02%)</title><rect x="693.6" y="1253" width="0.2" height="15.0" fill="rgb(233,13,1)" rx="2" ry="2" />
<text x="696.59" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (333 samples, 0.03%)</title><rect x="1097.3" y="1349" width="0.3" height="15.0" fill="rgb(221,9,34)" rx="2" ry="2" />
<text x="1100.29" y="1359.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (230 samples, 0.02%)</title><rect x="955.0" y="1173" width="0.2" height="15.0" fill="rgb(222,147,48)" rx="2" ry="2" />
<text x="958.00" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (378 samples, 0.03%)</title><rect x="534.8" y="1093" width="0.4" height="15.0" fill="rgb(224,217,16)" rx="2" ry="2" />
<text x="537.81" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (807 samples, 0.07%)</title><rect x="710.9" y="1205" width="0.8" height="15.0" fill="rgb(241,86,39)" rx="2" ry="2" />
<text x="713.88" y="1215.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (218 samples, 0.02%)</title><rect x="710.2" y="1237" width="0.2" height="15.0" fill="rgb(207,102,50)" rx="2" ry="2" />
<text x="713.18" y="1247.5" ></text>
</g>
<g >
<title>caml_alloc_string (186 samples, 0.02%)</title><rect x="587.3" y="1077" width="0.1" height="15.0" fill="rgb(219,51,4)" rx="2" ry="2" />
<text x="590.27" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (2,434 samples, 0.20%)</title><rect x="968.5" y="1157" width="2.4" height="15.0" fill="rgb(245,156,48)" rx="2" ry="2" />
<text x="971.53" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (13,929 samples, 1.14%)</title><rect x="512.7" y="1045" width="13.5" height="15.0" fill="rgb(239,2,11)" rx="2" ry="2" />
<text x="515.71" y="1055.5" ></text>
</g>
<g >
<title>ml_blake2b_final (443 samples, 0.04%)</title><rect x="572.7" y="949" width="0.4" height="15.0" fill="rgb(223,182,54)" rx="2" ry="2" />
<text x="575.72" y="959.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (367 samples, 0.03%)</title><rect x="552.8" y="1285" width="0.3" height="15.0" fill="rgb(205,178,46)" rx="2" ry="2" />
<text x="555.79" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (346 samples, 0.03%)</title><rect x="932.3" y="1109" width="0.4" height="15.0" fill="rgb(237,26,45)" rx="2" ry="2" />
<text x="935.35" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (589 samples, 0.05%)</title><rect x="801.3" y="1221" width="0.6" height="15.0" fill="rgb(237,154,31)" rx="2" ry="2" />
<text x="804.33" y="1231.5" ></text>
</g>
<g >
<title>caml_next_frame_descriptor (870 samples, 0.07%)</title><rect x="1188.2" y="2021" width="0.9" height="15.0" fill="rgb(225,131,28)" rx="2" ry="2" />
<text x="1191.22" y="2031.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (135 samples, 0.01%)</title><rect x="828.2" y="1045" width="0.2" height="15.0" fill="rgb(227,87,0)" rx="2" ry="2" />
<text x="831.25" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (228 samples, 0.02%)</title><rect x="343.4" y="1077" width="0.2" height="15.0" fill="rgb(234,81,43)" rx="2" ry="2" />
<text x="346.39" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,430 samples, 0.12%)</title><rect x="607.2" y="1269" width="1.4" height="15.0" fill="rgb(234,186,45)" rx="2" ry="2" />
<text x="610.20" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_9250 (133 samples, 0.01%)</title><rect x="1176.1" y="1301" width="0.1" height="15.0" fill="rgb(207,14,36)" rx="2" ry="2" />
<text x="1179.08" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (186 samples, 0.02%)</title><rect x="78.1" y="1909" width="0.2" height="15.0" fill="rgb(249,90,41)" rx="2" ry="2" />
<text x="81.08" y="1919.5" ></text>
</g>
<g >
<title>apparmor_file_permission (165 samples, 0.01%)</title><rect x="411.6" y="1013" width="0.1" height="15.0" fill="rgb(247,179,11)" rx="2" ry="2" />
<text x="414.55" y="1023.5" ></text>
</g>
<g >
<title>ml_blake2b_final (607 samples, 0.05%)</title><rect x="506.8" y="1093" width="0.6" height="15.0" fill="rgb(213,176,31)" rx="2" ry="2" />
<text x="509.79" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,776 samples, 0.15%)</title><rect x="935.7" y="1125" width="1.7" height="15.0" fill="rgb(250,170,21)" rx="2" ry="2" />
<text x="938.71" y="1135.5" ></text>
</g>
<g >
<title>mark_slice (672 samples, 0.06%)</title><rect x="677.8" y="1221" width="0.6" height="15.0" fill="rgb(249,161,33)" rx="2" ry="2" />
<text x="680.78" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (5,327 samples, 0.44%)</title><rect x="803.1" y="1253" width="5.1" height="15.0" fill="rgb(210,21,46)" rx="2" ry="2" />
<text x="806.06" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (407 samples, 0.03%)</title><rect x="424.9" y="1205" width="0.4" height="15.0" fill="rgb(240,79,12)" rx="2" ry="2" />
<text x="427.87" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__underlying_2001 (140 samples, 0.01%)</title><rect x="991.7" y="1429" width="0.1" height="15.0" fill="rgb(232,206,46)" rx="2" ry="2" />
<text x="994.69" y="1439.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (156 samples, 0.01%)</title><rect x="224.2" y="1157" width="0.1" height="15.0" fill="rgb(224,58,6)" rx="2" ry="2" />
<text x="227.18" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (682 samples, 0.06%)</title><rect x="600.5" y="1205" width="0.7" height="15.0" fill="rgb(252,36,16)" rx="2" ry="2" />
<text x="603.50" y="1215.5" ></text>
</g>
<g >
<title>caml_blit_bytes (243 samples, 0.02%)</title><rect x="894.8" y="1221" width="0.2" height="15.0" fill="rgb(244,204,29)" rx="2" ry="2" />
<text x="897.76" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (854 samples, 0.07%)</title><rect x="95.6" y="1253" width="0.8" height="15.0" fill="rgb(252,228,14)" rx="2" ry="2" />
<text x="98.61" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (174 samples, 0.01%)</title><rect x="515.9" y="917" width="0.2" height="15.0" fill="rgb(249,125,0)" rx="2" ry="2" />
<text x="518.92" y="927.5" ></text>
</g>
<g >
<title>memmove (650 samples, 0.05%)</title><rect x="947.4" y="1093" width="0.6" height="15.0" fill="rgb(253,49,39)" rx="2" ry="2" />
<text x="950.36" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (128 samples, 0.01%)</title><rect x="384.7" y="1077" width="0.1" height="15.0" fill="rgb(216,164,12)" rx="2" ry="2" />
<text x="387.69" y="1087.5" ></text>
</g>
<g >
<title>memmove (104 samples, 0.01%)</title><rect x="1092.7" y="1349" width="0.1" height="15.0" fill="rgb(230,109,45)" rx="2" ry="2" />
<text x="1095.71" y="1359.5" ></text>
</g>
<g >
<title>vsnprintf (2,598 samples, 0.21%)</title><rect x="162.7" y="1301" width="2.5" height="15.0" fill="rgb(246,154,36)" rx="2" ry="2" />
<text x="165.67" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (609 samples, 0.05%)</title><rect x="890.4" y="1141" width="0.6" height="15.0" fill="rgb(226,156,36)" rx="2" ry="2" />
<text x="893.40" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (949 samples, 0.08%)</title><rect x="511.1" y="1029" width="0.9" height="15.0" fill="rgb(232,97,18)" rx="2" ry="2" />
<text x="514.12" y="1039.5" ></text>
</g>
<g >
<title>mdb_page_dirty (144 samples, 0.01%)</title><rect x="730.6" y="1189" width="0.1" height="15.0" fill="rgb(237,161,12)" rx="2" ry="2" />
<text x="733.58" y="1199.5" ></text>
</g>
<g >
<title>mark_slice (138 samples, 0.01%)</title><rect x="522.6" y="917" width="0.1" height="15.0" fill="rgb(208,16,20)" rx="2" ry="2" />
<text x="525.58" y="927.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (130 samples, 0.01%)</title><rect x="1173.7" y="789" width="0.1" height="15.0" fill="rgb(247,121,12)" rx="2" ry="2" />
<text x="1176.67" y="799.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (1,913 samples, 0.16%)</title><rect x="486.8" y="1301" width="1.8" height="15.0" fill="rgb(214,109,47)" rx="2" ry="2" />
<text x="489.75" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1045" width="1.6" height="15.0" fill="rgb(231,30,28)" rx="2" ry="2" />
<text x="1189.27" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (410 samples, 0.03%)</title><rect x="365.5" y="1157" width="0.4" height="15.0" fill="rgb(248,188,33)" rx="2" ry="2" />
<text x="368.49" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (211 samples, 0.02%)</title><rect x="888.1" y="1237" width="0.2" height="15.0" fill="rgb(230,93,4)" rx="2" ry="2" />
<text x="891.10" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (297 samples, 0.02%)</title><rect x="1187.5" y="101" width="0.3" height="15.0" fill="rgb(215,8,47)" rx="2" ry="2" />
<text x="1190.48" y="111.5" ></text>
</g>
<g >
<title>mark_slice_darken (147 samples, 0.01%)</title><rect x="531.8" y="997" width="0.1" height="15.0" fill="rgb(230,158,7)" rx="2" ry="2" />
<text x="534.80" y="1007.5" ></text>
</g>
<g >
<title>caml_alloc_string (151 samples, 0.01%)</title><rect x="518.6" y="901" width="0.2" height="15.0" fill="rgb(237,105,42)" rx="2" ry="2" />
<text x="521.64" y="911.5" ></text>
</g>
<g >
<title>mark_slice_darken (217 samples, 0.02%)</title><rect x="984.6" y="1269" width="0.2" height="15.0" fill="rgb(224,139,25)" rx="2" ry="2" />
<text x="987.57" y="1279.5" ></text>
</g>
<g >
<title>mdb_node_add (213 samples, 0.02%)</title><rect x="1147.2" y="1365" width="0.2" height="15.0" fill="rgb(241,29,0)" rx="2" ry="2" />
<text x="1150.21" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (118 samples, 0.01%)</title><rect x="127.6" y="1093" width="0.1" height="15.0" fill="rgb(219,94,18)" rx="2" ry="2" />
<text x="130.59" y="1103.5" ></text>
</g>
<g >
<title>blake2b_init0 (418 samples, 0.03%)</title><rect x="639.6" y="1173" width="0.4" height="15.0" fill="rgb(231,166,48)" rx="2" ry="2" />
<text x="642.57" y="1183.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (2,068 samples, 0.17%)</title><rect x="378.9" y="1221" width="2.1" height="15.0" fill="rgb(231,146,24)" rx="2" ry="2" />
<text x="381.95" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (109 samples, 0.01%)</title><rect x="463.9" y="1013" width="0.1" height="15.0" fill="rgb(244,39,34)" rx="2" ry="2" />
<text x="466.87" y="1023.5" ></text>
</g>
<g >
<title>caml_pread (179 samples, 0.01%)</title><rect x="457.0" y="1029" width="0.1" height="15.0" fill="rgb(254,220,21)" rx="2" ry="2" />
<text x="459.97" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_with_limit_1766 (117 samples, 0.01%)</title><rect x="1181.6" y="1173" width="0.2" height="15.0" fill="rgb(206,96,43)" rx="2" ry="2" />
<text x="1184.64" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (7,716 samples, 0.63%)</title><rect x="282.4" y="1237" width="7.4" height="15.0" fill="rgb(238,103,41)" rx="2" ry="2" />
<text x="285.36" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (233 samples, 0.02%)</title><rect x="301.9" y="1141" width="0.2" height="15.0" fill="rgb(231,67,14)" rx="2" ry="2" />
<text x="304.87" y="1151.5" ></text>
</g>
<g >
<title>camlBigstring__fun_2655 (117 samples, 0.01%)</title><rect x="1180.3" y="1205" width="0.2" height="15.0" fill="rgb(206,158,41)" rx="2" ry="2" />
<text x="1183.35" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (284 samples, 0.02%)</title><rect x="382.6" y="1141" width="0.2" height="15.0" fill="rgb(253,87,34)" rx="2" ry="2" />
<text x="385.56" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (127 samples, 0.01%)</title><rect x="131.9" y="1221" width="0.1" height="15.0" fill="rgb(236,35,1)" rx="2" ry="2" />
<text x="134.86" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (1,908 samples, 0.16%)</title><rect x="48.4" y="1941" width="1.8" height="15.0" fill="rgb(252,82,40)" rx="2" ry="2" />
<text x="51.39" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (29,137 samples, 2.39%)</title><rect x="927.4" y="1285" width="28.2" height="15.0" fill="rgb(235,30,37)" rx="2" ry="2" />
<text x="930.37" y="1295.5" >c..</text>
</g>
<g >
<title>caml_alloc_string (122 samples, 0.01%)</title><rect x="581.3" y="1013" width="0.2" height="15.0" fill="rgb(246,153,31)" rx="2" ry="2" />
<text x="584.34" y="1023.5" ></text>
</g>
<g >
<title>mdb_page_malloc (309 samples, 0.03%)</title><rect x="730.7" y="1189" width="0.3" height="15.0" fill="rgb(253,132,27)" rx="2" ry="2" />
<text x="733.72" y="1199.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (11,725 samples, 0.96%)</title><rect x="392.2" y="1157" width="11.3" height="15.0" fill="rgb(245,165,0)" rx="2" ry="2" />
<text x="395.15" y="1167.5" ></text>
</g>
<g >
<title>caml_raise_exn (1,067 samples, 0.09%)</title><rect x="1188.0" y="2053" width="1.1" height="15.0" fill="rgb(254,153,25)" rx="2" ry="2" />
<text x="1191.03" y="2063.5" ></text>
</g>
<g >
<title>store64 (847 samples, 0.07%)</title><rect x="634.3" y="1205" width="0.8" height="15.0" fill="rgb(247,184,31)" rx="2" ry="2" />
<text x="637.29" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (231 samples, 0.02%)</title><rect x="119.2" y="1125" width="0.2" height="15.0" fill="rgb(228,204,47)" rx="2" ry="2" />
<text x="122.17" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (510 samples, 0.04%)</title><rect x="677.9" y="1205" width="0.5" height="15.0" fill="rgb(223,8,3)" rx="2" ry="2" />
<text x="680.93" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__fun_4396 (4,042 samples, 0.33%)</title><rect x="186.0" y="1253" width="3.9" height="15.0" fill="rgb(219,151,27)" rx="2" ry="2" />
<text x="189.01" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (660 samples, 0.05%)</title><rect x="607.8" y="1253" width="0.6" height="15.0" fill="rgb(207,133,37)" rx="2" ry="2" />
<text x="610.80" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (559 samples, 0.05%)</title><rect x="524.0" y="997" width="0.6" height="15.0" fill="rgb(224,184,33)" rx="2" ry="2" />
<text x="527.05" y="1007.5" ></text>
</g>
<g >
<title>mdb_put (106 samples, 0.01%)</title><rect x="1172.1" y="1461" width="0.1" height="15.0" fill="rgb(249,88,48)" rx="2" ry="2" />
<text x="1175.09" y="1471.5" ></text>
</g>
<g >
<title>sweep_slice (157 samples, 0.01%)</title><rect x="289.0" y="1093" width="0.2" height="15.0" fill="rgb(253,102,25)" rx="2" ry="2" />
<text x="292.02" y="1103.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (2,653 samples, 0.22%)</title><rect x="697.2" y="1269" width="2.6" height="15.0" fill="rgb(251,185,13)" rx="2" ry="2" />
<text x="700.24" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__of_bytes_exn_1750 (12,127 samples, 1.00%)</title><rect x="143.2" y="1365" width="11.7" height="15.0" fill="rgb(214,96,15)" rx="2" ry="2" />
<text x="146.18" y="1375.5" ></text>
</g>
<g >
<title>mark_slice_darken (210 samples, 0.02%)</title><rect x="73.3" y="1829" width="0.2" height="15.0" fill="rgb(254,145,48)" rx="2" ry="2" />
<text x="76.31" y="1839.5" ></text>
</g>
<g >
<title>mark_slice (157 samples, 0.01%)</title><rect x="73.1" y="1829" width="0.1" height="15.0" fill="rgb(209,103,9)" rx="2" ry="2" />
<text x="76.10" y="1839.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,158 samples, 0.10%)</title><rect x="669.7" y="1285" width="1.1" height="15.0" fill="rgb(240,178,14)" rx="2" ry="2" />
<text x="672.65" y="1295.5" ></text>
</g>
<g >
<title>camlStdlib__format__scan_push_1920 (191 samples, 0.02%)</title><rect x="1162.8" y="1493" width="0.2" height="15.0" fill="rgb(241,126,4)" rx="2" ry="2" />
<text x="1165.84" y="1503.5" ></text>
</g>
<g >
<title>blake2b_compress (442 samples, 0.04%)</title><rect x="607.8" y="1173" width="0.5" height="15.0" fill="rgb(221,17,19)" rx="2" ry="2" />
<text x="610.85" y="1183.5" ></text>
</g>
<g >
<title>caml_call_gc (202 samples, 0.02%)</title><rect x="1167.5" y="1493" width="0.1" height="15.0" fill="rgb(207,26,8)" rx="2" ry="2" />
<text x="1170.45" y="1503.5" ></text>
</g>
<g >
<title>caml_alloc_string (125 samples, 0.01%)</title><rect x="551.5" y="1253" width="0.1" height="15.0" fill="rgb(206,220,47)" rx="2" ry="2" />
<text x="554.52" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (169 samples, 0.01%)</title><rect x="537.5" y="1109" width="0.1" height="15.0" fill="rgb(242,23,54)" rx="2" ry="2" />
<text x="540.48" y="1119.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__mem_9187 (162 samples, 0.01%)</title><rect x="280.9" y="1333" width="0.1" height="15.0" fill="rgb(211,110,4)" rx="2" ry="2" />
<text x="283.88" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_string (118 samples, 0.01%)</title><rect x="590.5" y="1109" width="0.1" height="15.0" fill="rgb(212,22,18)" rx="2" ry="2" />
<text x="593.47" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (525 samples, 0.04%)</title><rect x="56.3" y="1813" width="0.5" height="15.0" fill="rgb(207,79,47)" rx="2" ry="2" />
<text x="59.33" y="1823.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (1,521 samples, 0.12%)</title><rect x="898.1" y="1173" width="1.5" height="15.0" fill="rgb(246,163,23)" rx="2" ry="2" />
<text x="901.14" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (416 samples, 0.03%)</title><rect x="368.9" y="1189" width="0.4" height="15.0" fill="rgb(243,162,47)" rx="2" ry="2" />
<text x="371.85" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_002_PsYLVpVv__Services_registration__register0_fullctxt_16401 (397 samples, 0.03%)</title><rect x="1182.7" y="1877" width="0.3" height="15.0" fill="rgb(215,111,54)" rx="2" ry="2" />
<text x="1185.65" y="1887.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (513 samples, 0.04%)</title><rect x="572.7" y="997" width="0.5" height="15.0" fill="rgb(221,59,33)" rx="2" ry="2" />
<text x="575.71" y="1007.5" ></text>
</g>
<g >
<title>camlIndex__merge_from_log_3013 (14,360 samples, 1.18%)</title><rect x="50.9" y="1941" width="13.9" height="15.0" fill="rgb(241,53,11)" rx="2" ry="2" />
<text x="53.91" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__aux_9707 (32,099 samples, 2.64%)</title><rect x="353.7" y="1285" width="31.2" height="15.0" fill="rgb(210,214,45)" rx="2" ry="2" />
<text x="356.73" y="1295.5" >ca..</text>
</g>
<g >
<title>camlTezos_storage__Context_dump__add_blob_4185 (25,906 samples, 2.13%)</title><rect x="169.8" y="1381" width="25.2" height="15.0" fill="rgb(227,185,51)" rx="2" ry="2" />
<text x="172.85" y="1391.5" >c..</text>
</g>
<g >
<title>rotr64 (169 samples, 0.01%)</title><rect x="562.9" y="1125" width="0.2" height="15.0" fill="rgb(228,24,20)" rx="2" ry="2" />
<text x="565.92" y="1135.5" ></text>
</g>
<g >
<title>sweep_slice (137 samples, 0.01%)</title><rect x="428.0" y="1093" width="0.1" height="15.0" fill="rgb(213,109,2)" rx="2" ry="2" />
<text x="431.01" y="1103.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (558 samples, 0.05%)</title><rect x="570.1" y="1045" width="0.5" height="15.0" fill="rgb(224,137,9)" rx="2" ry="2" />
<text x="573.06" y="1055.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_trylock (169 samples, 0.01%)</title><rect x="415.5" y="1221" width="0.1" height="15.0" fill="rgb(246,88,31)" rx="2" ry="2" />
<text x="418.45" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (166 samples, 0.01%)</title><rect x="157.8" y="1333" width="0.1" height="15.0" fill="rgb(252,208,14)" rx="2" ry="2" />
<text x="160.77" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__fun_9992 (29,378 samples, 2.41%)</title><rect x="621.4" y="1301" width="28.5" height="15.0" fill="rgb(243,195,42)" rx="2" ry="2" />
<text x="624.39" y="1311.5" >ca..</text>
</g>
<g >
<title>camlIndex_unix__unsafe_read_1525 (189 samples, 0.02%)</title><rect x="467.9" y="1013" width="0.2" height="15.0" fill="rgb(218,153,45)" rx="2" ry="2" />
<text x="470.90" y="1023.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_loop_1883 (154 samples, 0.01%)</title><rect x="142.0" y="1285" width="0.1" height="15.0" fill="rgb(227,13,40)" rx="2" ry="2" />
<text x="144.99" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (673 samples, 0.06%)</title><rect x="590.0" y="1141" width="0.6" height="15.0" fill="rgb(243,73,12)" rx="2" ry="2" />
<text x="592.96" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__add_7291 (106 samples, 0.01%)</title><rect x="231.4" y="1317" width="0.1" height="15.0" fill="rgb(237,186,17)" rx="2" ry="2" />
<text x="234.44" y="1327.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (106 samples, 0.01%)</title><rect x="160.8" y="1301" width="0.1" height="15.0" fill="rgb(252,69,46)" rx="2" ry="2" />
<text x="163.84" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (3,251 samples, 0.27%)</title><rect x="77.8" y="1941" width="3.2" height="15.0" fill="rgb(221,10,47)" rx="2" ry="2" />
<text x="80.82" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (374 samples, 0.03%)</title><rect x="130.5" y="1221" width="0.4" height="15.0" fill="rgb(242,204,11)" rx="2" ry="2" />
<text x="133.52" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (255 samples, 0.02%)</title><rect x="702.1" y="1221" width="0.3" height="15.0" fill="rgb(235,87,45)" rx="2" ry="2" />
<text x="705.13" y="1231.5" ></text>
</g>
<g >
<title>stub_mdb_put (423 samples, 0.03%)</title><rect x="488.8" y="1253" width="0.4" height="15.0" fill="rgb(232,99,15)" rx="2" ry="2" />
<text x="491.81" y="1263.5" ></text>
</g>
<g >
<title>camlIndex_unix__aux_1515 (1,302 samples, 0.11%)</title><rect x="313.7" y="1189" width="1.3" height="15.0" fill="rgb(248,134,19)" rx="2" ry="2" />
<text x="316.70" y="1199.5" ></text>
</g>
<g >
<title>rotr64 (149 samples, 0.01%)</title><rect x="569.7" y="981" width="0.1" height="15.0" fill="rgb(254,71,45)" rx="2" ry="2" />
<text x="572.68" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (201 samples, 0.02%)</title><rect x="469.9" y="1077" width="0.1" height="15.0" fill="rgb(225,108,13)" rx="2" ry="2" />
<text x="472.85" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Operation_repr__check_6967 (248 samples, 0.02%)</title><rect x="1173.0" y="757" width="0.2" height="15.0" fill="rgb(216,66,33)" rx="2" ry="2" />
<text x="1176.00" y="767.5" ></text>
</g>
<g >
<title>caml_blit_bytes (124 samples, 0.01%)</title><rect x="395.8" y="1077" width="0.1" height="15.0" fill="rgb(254,73,45)" rx="2" ry="2" />
<text x="398.82" y="1087.5" ></text>
</g>
<g >
<title>camlLwt__run_in_resolution_loop_2292 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1253" width="1.3" height="15.0" fill="rgb(220,20,3)" rx="2" ry="2" />
<text x="1175.52" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (116 samples, 0.01%)</title><rect x="741.3" y="1221" width="0.1" height="15.0" fill="rgb(217,124,6)" rx="2" ry="2" />
<text x="744.32" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11447 (21,774 samples, 1.79%)</title><rect x="173.5" y="1317" width="21.1" height="15.0" fill="rgb(225,221,4)" rx="2" ry="2" />
<text x="176.51" y="1327.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (22,122 samples, 1.82%)</title><rect x="672.3" y="1317" width="21.5" height="15.0" fill="rgb(221,79,36)" rx="2" ry="2" />
<text x="675.33" y="1327.5" >c..</text>
</g>
<g >
<title>caml_alloc_string (112 samples, 0.01%)</title><rect x="62.9" y="1893" width="0.1" height="15.0" fill="rgb(247,134,35)" rx="2" ry="2" />
<text x="65.93" y="1903.5" ></text>
</g>
<g >
<title>caml_call_gc (676 samples, 0.06%)</title><rect x="68.7" y="1893" width="0.6" height="15.0" fill="rgb(225,162,20)" rx="2" ry="2" />
<text x="71.65" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (12,701 samples, 1.04%)</title><rect x="143.0" y="1381" width="12.3" height="15.0" fill="rgb(219,209,11)" rx="2" ry="2" />
<text x="145.95" y="1391.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (160 samples, 0.01%)</title><rect x="522.6" y="933" width="0.1" height="15.0" fill="rgb(216,227,1)" rx="2" ry="2" />
<text x="525.58" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (228 samples, 0.02%)</title><rect x="574.5" y="661" width="0.2" height="15.0" fill="rgb(249,24,12)" rx="2" ry="2" />
<text x="577.51" y="671.5" ></text>
</g>
<g >
<title>sweep_slice (133 samples, 0.01%)</title><rect x="896.4" y="1189" width="0.1" height="15.0" fill="rgb(214,75,49)" rx="2" ry="2" />
<text x="899.39" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (207 samples, 0.02%)</title><rect x="95.1" y="1285" width="0.2" height="15.0" fill="rgb(222,166,1)" rx="2" ry="2" />
<text x="98.10" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_001_PtCJ7pwo__Helpers_services__register_19273 (383 samples, 0.03%)</title><rect x="1182.2" y="1893" width="0.4" height="15.0" fill="rgb(239,92,10)" rx="2" ry="2" />
<text x="1185.19" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (404 samples, 0.03%)</title><rect x="552.2" y="1269" width="0.4" height="15.0" fill="rgb(250,50,50)" rx="2" ry="2" />
<text x="555.24" y="1279.5" ></text>
</g>
<g >
<title>caml_format_int (10,275 samples, 0.84%)</title><rect x="1122.5" y="1365" width="10.0" height="15.0" fill="rgb(230,222,29)" rx="2" ry="2" />
<text x="1125.55" y="1375.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (645 samples, 0.05%)</title><rect x="567.8" y="1077" width="0.6" height="15.0" fill="rgb(236,91,42)" rx="2" ry="2" />
<text x="570.77" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (468 samples, 0.04%)</title><rect x="127.7" y="1109" width="0.5" height="15.0" fill="rgb(233,22,35)" rx="2" ry="2" />
<text x="130.73" y="1119.5" ></text>
</g>
<g >
<title>caml_string_length (215 samples, 0.02%)</title><rect x="647.3" y="1205" width="0.2" height="15.0" fill="rgb(240,66,17)" rx="2" ry="2" />
<text x="650.28" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_list_1526 (286 samples, 0.02%)</title><rect x="955.0" y="1221" width="0.2" height="15.0" fill="rgb(236,27,36)" rx="2" ry="2" />
<text x="957.95" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (273 samples, 0.02%)</title><rect x="238.5" y="1173" width="0.2" height="15.0" fill="rgb(218,48,51)" rx="2" ry="2" />
<text x="241.46" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__resolve_2309 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1461" width="1.3" height="15.0" fill="rgb(251,13,45)" rx="2" ry="2" />
<text x="1175.52" y="1471.5" ></text>
</g>
<g >
<title>caml_garbage_collection (1,588 samples, 0.13%)</title><rect x="1169.1" y="1493" width="1.5" height="15.0" fill="rgb(212,152,20)" rx="2" ry="2" />
<text x="1172.06" y="1503.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (137 samples, 0.01%)</title><rect x="596.5" y="1157" width="0.2" height="15.0" fill="rgb(219,25,15)" rx="2" ry="2" />
<text x="599.52" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (512 samples, 0.04%)</title><rect x="734.3" y="1253" width="0.5" height="15.0" fill="rgb(219,107,25)" rx="2" ry="2" />
<text x="737.33" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (8,682 samples, 0.71%)</title><rect x="676.7" y="1269" width="8.4" height="15.0" fill="rgb(239,65,51)" rx="2" ry="2" />
<text x="679.73" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_append_9234 (12,730 samples, 1.05%)</title><rect x="340.4" y="1253" width="12.3" height="15.0" fill="rgb(212,217,22)" rx="2" ry="2" />
<text x="343.38" y="1263.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (3,684 samples, 0.30%)</title><rect x="207.7" y="1173" width="3.5" height="15.0" fill="rgb(225,77,31)" rx="2" ry="2" />
<text x="210.68" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (1,848 samples, 0.15%)</title><rect x="217.5" y="1269" width="1.8" height="15.0" fill="rgb(251,60,24)" rx="2" ry="2" />
<text x="220.50" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (142 samples, 0.01%)</title><rect x="405.9" y="1141" width="0.1" height="15.0" fill="rgb(213,35,4)" rx="2" ry="2" />
<text x="408.86" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,596 samples, 0.21%)</title><rect x="78.5" y="1893" width="2.5" height="15.0" fill="rgb(231,119,11)" rx="2" ry="2" />
<text x="81.45" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Chain_id__to_path_2345 (213 samples, 0.02%)</title><rect x="740.7" y="1301" width="0.2" height="15.0" fill="rgb(218,143,17)" rx="2" ry="2" />
<text x="743.68" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__compare_1005 (149 samples, 0.01%)</title><rect x="791.4" y="1237" width="0.1" height="15.0" fill="rgb(246,32,26)" rx="2" ry="2" />
<text x="794.38" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (108 samples, 0.01%)</title><rect x="551.1" y="1237" width="0.1" height="15.0" fill="rgb(214,2,30)" rx="2" ry="2" />
<text x="554.05" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (107 samples, 0.01%)</title><rect x="149.3" y="1221" width="0.1" height="15.0" fill="rgb(213,95,23)" rx="2" ry="2" />
<text x="152.34" y="1231.5" ></text>
</g>
<g >
<title>sweep_slice (421 samples, 0.03%)</title><rect x="951.2" y="1045" width="0.4" height="15.0" fill="rgb(236,24,43)" rx="2" ry="2" />
<text x="954.20" y="1055.5" ></text>
</g>
<g >
<title>mark_slice_darken (327 samples, 0.03%)</title><rect x="555.1" y="1221" width="0.3" height="15.0" fill="rgb(206,125,53)" rx="2" ry="2" />
<text x="558.09" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (815 samples, 0.07%)</title><rect x="926.0" y="1365" width="0.8" height="15.0" fill="rgb(233,125,51)" rx="2" ry="2" />
<text x="928.96" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (980 samples, 0.08%)</title><rect x="516.5" y="469" width="0.9" height="15.0" fill="rgb(252,73,27)" rx="2" ry="2" />
<text x="519.47" y="479.5" ></text>
</g>
<g >
<title>mark_slice (894 samples, 0.07%)</title><rect x="694.6" y="1253" width="0.9" height="15.0" fill="rgb(218,152,52)" rx="2" ry="2" />
<text x="697.63" y="1263.5" ></text>
</g>
<g >
<title>_IO_vfprintf_internal (1,060 samples, 0.09%)</title><rect x="810.2" y="1157" width="1.0" height="15.0" fill="rgb(219,205,34)" rx="2" ry="2" />
<text x="813.18" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (289 samples, 0.02%)</title><rect x="522.5" y="965" width="0.3" height="15.0" fill="rgb(247,46,45)" rx="2" ry="2" />
<text x="525.48" y="975.5" ></text>
</g>
<g >
<title>caml_garbage_collection (111 samples, 0.01%)</title><rect x="571.4" y="1013" width="0.1" height="15.0" fill="rgb(205,46,0)" rx="2" ry="2" />
<text x="574.39" y="1023.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_update (108 samples, 0.01%)</title><rect x="106.3" y="1157" width="0.1" height="15.0" fill="rgb(233,204,20)" rx="2" ry="2" />
<text x="109.29" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__prim_3669 (130 samples, 0.01%)</title><rect x="360.8" y="1141" width="0.1" height="15.0" fill="rgb(216,180,37)" rx="2" ry="2" />
<text x="363.77" y="1151.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (587 samples, 0.05%)</title><rect x="570.8" y="1029" width="0.5" height="15.0" fill="rgb(229,136,12)" rx="2" ry="2" />
<text x="573.78" y="1039.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fun_2604 (153 samples, 0.01%)</title><rect x="975.6" y="1109" width="0.2" height="15.0" fill="rgb(208,224,11)" rx="2" ry="2" />
<text x="978.64" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (387 samples, 0.03%)</title><rect x="99.0" y="1109" width="0.4" height="15.0" fill="rgb(251,124,28)" rx="2" ry="2" />
<text x="102.01" y="1119.5" ></text>
</g>
<g >
<title>mark_slice (176 samples, 0.01%)</title><rect x="811.7" y="1189" width="0.2" height="15.0" fill="rgb(254,217,22)" rx="2" ry="2" />
<text x="814.73" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1317" width="1.6" height="15.0" fill="rgb(246,53,16)" rx="2" ry="2" />
<text x="1189.27" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (1,220 samples, 0.10%)</title><rect x="105.6" y="1205" width="1.1" height="15.0" fill="rgb(218,62,38)" rx="2" ry="2" />
<text x="108.57" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (7,506 samples, 0.62%)</title><rect x="572.1" y="1029" width="7.3" height="15.0" fill="rgb(241,188,16)" rx="2" ry="2" />
<text x="575.14" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__string__concat_1101 (916 samples, 0.08%)</title><rect x="732.4" y="1301" width="0.9" height="15.0" fill="rgb(230,167,36)" rx="2" ry="2" />
<text x="735.42" y="1311.5" ></text>
</g>
<g >
<title>camlLwt__with_value_2040 (1,840 samples, 0.15%)</title><rect x="1180.0" y="1333" width="1.8" height="15.0" fill="rgb(207,18,49)" rx="2" ry="2" />
<text x="1183.03" y="1343.5" ></text>
</g>
<g >
<title>mdb_txn_commit (9,033 samples, 0.74%)</title><rect x="914.6" y="1317" width="8.8" height="15.0" fill="rgb(243,54,41)" rx="2" ry="2" />
<text x="917.62" y="1327.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (164 samples, 0.01%)</title><rect x="1184.4" y="1477" width="0.2" height="15.0" fill="rgb(250,117,2)" rx="2" ry="2" />
<text x="1187.44" y="1487.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (873 samples, 0.07%)</title><rect x="675.9" y="1269" width="0.8" height="15.0" fill="rgb(248,166,36)" rx="2" ry="2" />
<text x="678.88" y="1279.5" ></text>
</g>
<g >
<title>__GI___pthread_mutex_unlock (121 samples, 0.01%)</title><rect x="320.9" y="1253" width="0.1" height="15.0" fill="rgb(235,8,5)" rx="2" ry="2" />
<text x="323.92" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (286 samples, 0.02%)</title><rect x="381.1" y="1157" width="0.3" height="15.0" fill="rgb(233,92,41)" rx="2" ry="2" />
<text x="384.09" y="1167.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (163 samples, 0.01%)</title><rect x="429.5" y="1173" width="0.1" height="15.0" fill="rgb(229,3,38)" rx="2" ry="2" />
<text x="432.47" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (108 samples, 0.01%)</title><rect x="531.0" y="1045" width="0.1" height="15.0" fill="rgb(234,206,50)" rx="2" ry="2" />
<text x="534.01" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__fold_left_1162 (2,927 samples, 0.24%)</title><rect x="259.4" y="1253" width="2.9" height="15.0" fill="rgb(231,57,25)" rx="2" ry="2" />
<text x="262.44" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (109 samples, 0.01%)</title><rect x="486.6" y="1269" width="0.1" height="15.0" fill="rgb(239,71,4)" rx="2" ry="2" />
<text x="489.57" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__fun_11402 (2,102 samples, 0.17%)</title><rect x="101.2" y="1237" width="2.1" height="15.0" fill="rgb(211,134,15)" rx="2" ry="2" />
<text x="104.22" y="1247.5" ></text>
</g>
<g >
<title>memcpy (529 samples, 0.04%)</title><rect x="870.4" y="1189" width="0.5" height="15.0" fill="rgb(241,209,7)" rx="2" ry="2" />
<text x="873.36" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (226 samples, 0.02%)</title><rect x="884.7" y="1189" width="0.2" height="15.0" fill="rgb(241,35,11)" rx="2" ry="2" />
<text x="887.72" y="1199.5" ></text>
</g>
<g >
<title>Hacl_Impl_Ed25519_Verify_verify_ (108 samples, 0.01%)</title><rect x="1173.0" y="709" width="0.1" height="15.0" fill="rgb(232,110,8)" rx="2" ry="2" />
<text x="1176.00" y="719.5" ></text>
</g>
<g >
<title>mark_slice_darken (241 samples, 0.02%)</title><rect x="86.9" y="1797" width="0.2" height="15.0" fill="rgb(245,213,29)" rx="2" ry="2" />
<text x="89.90" y="1807.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (1,044 samples, 0.09%)</title><rect x="122.3" y="1157" width="1.0" height="15.0" fill="rgb(244,73,0)" rx="2" ry="2" />
<text x="125.30" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (303 samples, 0.02%)</title><rect x="989.0" y="1285" width="0.3" height="15.0" fill="rgb(250,161,7)" rx="2" ry="2" />
<text x="992.00" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (546 samples, 0.04%)</title><rect x="796.1" y="1221" width="0.5" height="15.0" fill="rgb(225,154,48)" rx="2" ry="2" />
<text x="799.08" y="1231.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (153 samples, 0.01%)</title><rect x="636.6" y="1221" width="0.2" height="15.0" fill="rgb(238,23,54)" rx="2" ry="2" />
<text x="639.61" y="1231.5" ></text>
</g>
<g >
<title>mark_slice_darken (208 samples, 0.02%)</title><rect x="734.6" y="1173" width="0.2" height="15.0" fill="rgb(237,86,12)" rx="2" ry="2" />
<text x="737.57" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (222 samples, 0.02%)</title><rect x="494.7" y="1333" width="0.2" height="15.0" fill="rgb(215,169,38)" rx="2" ry="2" />
<text x="497.70" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (4,813 samples, 0.40%)</title><rect x="733.9" y="1269" width="4.7" height="15.0" fill="rgb(242,167,41)" rx="2" ry="2" />
<text x="736.90" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (139 samples, 0.01%)</title><rect x="537.5" y="1093" width="0.1" height="15.0" fill="rgb(250,24,25)" rx="2" ry="2" />
<text x="540.51" y="1103.5" ></text>
</g>
<g >
<title>malloc_consolidate (270 samples, 0.02%)</title><rect x="772.7" y="1173" width="0.3" height="15.0" fill="rgb(213,41,17)" rx="2" ry="2" />
<text x="775.70" y="1183.5" ></text>
</g>
<g >
<title>ror64 (155 samples, 0.01%)</title><rect x="172.6" y="1237" width="0.1" height="15.0" fill="rgb(244,128,40)" rx="2" ry="2" />
<text x="175.58" y="1247.5" ></text>
</g>
<g >
<title>mdb_cursor_init (152 samples, 0.01%)</title><rect x="1007.5" y="1349" width="0.1" height="15.0" fill="rgb(214,2,42)" rx="2" ry="2" />
<text x="1010.50" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6970 (201 samples, 0.02%)</title><rect x="58.9" y="1877" width="0.2" height="15.0" fill="rgb(221,180,43)" rx="2" ry="2" />
<text x="61.86" y="1887.5" ></text>
</g>
<g >
<title>caml_hash (2,760 samples, 0.23%)</title><rect x="83.8" y="1877" width="2.7" height="15.0" fill="rgb(215,93,32)" rx="2" ry="2" />
<text x="86.80" y="1887.5" ></text>
</g>
<g >
<title>mark_slice (721 samples, 0.06%)</title><rect x="902.6" y="1205" width="0.7" height="15.0" fill="rgb(213,13,38)" rx="2" ry="2" />
<text x="905.57" y="1215.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (12,342 samples, 1.01%)</title><rect x="391.6" y="1173" width="11.9" height="15.0" fill="rgb(250,191,31)" rx="2" ry="2" />
<text x="394.58" y="1183.5" ></text>
</g>
<g >
<title>__memset_avx2_unaligned (161 samples, 0.01%)</title><rect x="667.6" y="1221" width="0.1" height="15.0" fill="rgb(232,131,6)" rx="2" ry="2" />
<text x="670.56" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (663 samples, 0.05%)</title><rect x="332.5" y="1301" width="0.7" height="15.0" fill="rgb(241,29,39)" rx="2" ry="2" />
<text x="335.55" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (109 samples, 0.01%)</title><rect x="888.5" y="1221" width="0.1" height="15.0" fill="rgb(211,178,1)" rx="2" ry="2" />
<text x="891.51" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (177 samples, 0.01%)</title><rect x="968.3" y="1141" width="0.2" height="15.0" fill="rgb(251,119,5)" rx="2" ry="2" />
<text x="971.30" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (362 samples, 0.03%)</title><rect x="984.5" y="1317" width="0.3" height="15.0" fill="rgb(228,179,1)" rx="2" ry="2" />
<text x="987.48" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (136 samples, 0.01%)</title><rect x="1162.9" y="1461" width="0.1" height="15.0" fill="rgb(230,34,30)" rx="2" ry="2" />
<text x="1165.89" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (109 samples, 0.01%)</title><rect x="1187.1" y="53" width="0.1" height="15.0" fill="rgb(226,151,54)" rx="2" ry="2" />
<text x="1190.05" y="63.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_elt_6690 (126 samples, 0.01%)</title><rect x="1173.7" y="597" width="0.1" height="15.0" fill="rgb(232,109,3)" rx="2" ry="2" />
<text x="1176.68" y="607.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (333 samples, 0.03%)</title><rect x="381.4" y="1141" width="0.4" height="15.0" fill="rgb(244,62,2)" rx="2" ry="2" />
<text x="384.43" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__refresh_2045 (282 samples, 0.02%)</title><rect x="1069.4" y="1381" width="0.3" height="15.0" fill="rgb(234,105,42)" rx="2" ry="2" />
<text x="1072.42" y="1391.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3357 (1,015 samples, 0.08%)</title><rect x="795.6" y="1285" width="1.0" height="15.0" fill="rgb(233,140,6)" rx="2" ry="2" />
<text x="798.63" y="1295.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (348 samples, 0.03%)</title><rect x="239.7" y="1317" width="0.4" height="15.0" fill="rgb(210,130,16)" rx="2" ry="2" />
<text x="242.74" y="1327.5" ></text>
</g>
<g >
<title>caml_blit_bytes (186 samples, 0.02%)</title><rect x="66.5" y="1909" width="0.2" height="15.0" fill="rgb(228,35,7)" rx="2" ry="2" />
<text x="69.54" y="1919.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (736 samples, 0.06%)</title><rect x="564.8" y="1173" width="0.7" height="15.0" fill="rgb(208,15,18)" rx="2" ry="2" />
<text x="567.82" y="1183.5" ></text>
</g>
<g >
<title>stub_mdb_put (106 samples, 0.01%)</title><rect x="1172.1" y="1477" width="0.1" height="15.0" fill="rgb(240,49,22)" rx="2" ry="2" />
<text x="1175.09" y="1487.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9251 (1,124 samples, 0.09%)</title><rect x="1171.0" y="1509" width="1.1" height="15.0" fill="rgb(210,172,28)" rx="2" ry="2" />
<text x="1173.99" y="1519.5" ></text>
</g>
<g >
<title>__fdget (208 samples, 0.02%)</title><rect x="410.9" y="1061" width="0.2" height="15.0" fill="rgb(233,170,18)" rx="2" ry="2" />
<text x="413.94" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (581 samples, 0.05%)</title><rect x="1185.0" y="1541" width="0.5" height="15.0" fill="rgb(247,179,32)" rx="2" ry="2" />
<text x="1187.99" y="1551.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__add_2239 (1,011 samples, 0.08%)</title><rect x="326.3" y="1333" width="1.0" height="15.0" fill="rgb(222,51,9)" rx="2" ry="2" />
<text x="329.31" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (119 samples, 0.01%)</title><rect x="601.6" y="1141" width="0.1" height="15.0" fill="rgb(244,108,27)" rx="2" ry="2" />
<text x="604.59" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9238 (811 samples, 0.07%)</title><rect x="745.2" y="1285" width="0.8" height="15.0" fill="rgb(218,38,4)" rx="2" ry="2" />
<text x="748.22" y="1295.5" ></text>
</g>
<g >
<title>camlDigestif_conv__of_raw_string_1949 (203 samples, 0.02%)</title><rect x="296.5" y="1141" width="0.2" height="15.0" fill="rgb(219,73,1)" rx="2" ry="2" />
<text x="299.53" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (895 samples, 0.07%)</title><rect x="516.5" y="261" width="0.9" height="15.0" fill="rgb(228,73,7)" rx="2" ry="2" />
<text x="519.49" y="271.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (160 samples, 0.01%)</title><rect x="593.5" y="1029" width="0.1" height="15.0" fill="rgb(209,168,9)" rx="2" ry="2" />
<text x="596.46" y="1039.5" ></text>
</g>
<g >
<title>memmove (233 samples, 0.02%)</title><rect x="244.2" y="1253" width="0.2" height="15.0" fill="rgb(222,99,9)" rx="2" ry="2" />
<text x="247.21" y="1263.5" ></text>
</g>
<g >
<title>sys_lseek (285 samples, 0.02%)</title><rect x="1160.7" y="1381" width="0.2" height="15.0" fill="rgb(253,29,11)" rx="2" ry="2" />
<text x="1163.67" y="1391.5" ></text>
</g>
<g >
<title>caml_hash (860 samples, 0.07%)</title><rect x="67.3" y="1909" width="0.8" height="15.0" fill="rgb(213,197,9)" rx="2" ry="2" />
<text x="70.29" y="1919.5" ></text>
</g>
<g >
<title>caml_alloc_string (205 samples, 0.02%)</title><rect x="586.3" y="1061" width="0.2" height="15.0" fill="rgb(243,2,3)" rx="2" ry="2" />
<text x="589.31" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (437 samples, 0.04%)</title><rect x="555.0" y="1237" width="0.4" height="15.0" fill="rgb(239,86,43)" rx="2" ry="2" />
<text x="558.00" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (111 samples, 0.01%)</title><rect x="124.0" y="1157" width="0.1" height="15.0" fill="rgb(250,137,46)" rx="2" ry="2" />
<text x="127.01" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (125 samples, 0.01%)</title><rect x="579.2" y="997" width="0.2" height="15.0" fill="rgb(244,161,22)" rx="2" ry="2" />
<text x="582.24" y="1007.5" ></text>
</g>
<g >
<title>mdb_page_split (317 samples, 0.03%)</title><rect x="1147.2" y="1381" width="0.3" height="15.0" fill="rgb(243,156,52)" rx="2" ry="2" />
<text x="1150.17" y="1391.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_7002 (4,234 samples, 0.35%)</title><rect x="252.3" y="1253" width="4.1" height="15.0" fill="rgb(240,157,0)" rx="2" ry="2" />
<text x="255.33" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (293 samples, 0.02%)</title><rect x="387.9" y="1141" width="0.3" height="15.0" fill="rgb(213,77,22)" rx="2" ry="2" />
<text x="390.90" y="1151.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (164 samples, 0.01%)</title><rect x="160.8" y="1349" width="0.1" height="15.0" fill="rgb(243,107,50)" rx="2" ry="2" />
<text x="163.78" y="1359.5" ></text>
</g>
<g >
<title>mark_slice (115 samples, 0.01%)</title><rect x="976.0" y="1029" width="0.1" height="15.0" fill="rgb(238,36,28)" rx="2" ry="2" />
<text x="978.99" y="1039.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (160 samples, 0.01%)</title><rect x="988.7" y="1349" width="0.1" height="15.0" fill="rgb(233,98,30)" rx="2" ry="2" />
<text x="991.68" y="1359.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (60,104 samples, 4.94%)</title><rect x="498.2" y="1317" width="58.3" height="15.0" fill="rgb(213,183,45)" rx="2" ry="2" />
<text x="501.19" y="1327.5" >camlSt..</text>
</g>
<g >
<title>caml_garbage_collection (113 samples, 0.01%)</title><rect x="955.4" y="1237" width="0.1" height="15.0" fill="rgb(214,215,25)" rx="2" ry="2" />
<text x="958.36" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (257 samples, 0.02%)</title><rect x="454.8" y="885" width="0.3" height="15.0" fill="rgb(216,56,30)" rx="2" ry="2" />
<text x="457.81" y="895.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__may_resize_1074 (105 samples, 0.01%)</title><rect x="1187.3" y="85" width="0.1" height="15.0" fill="rgb(241,134,12)" rx="2" ry="2" />
<text x="1190.33" y="95.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (127 samples, 0.01%)</title><rect x="900.6" y="1173" width="0.1" height="15.0" fill="rgb(247,156,19)" rx="2" ry="2" />
<text x="903.62" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__get_2036 (155 samples, 0.01%)</title><rect x="1147.5" y="1445" width="0.1" height="15.0" fill="rgb(238,150,24)" rx="2" ry="2" />
<text x="1150.49" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3668 (194 samples, 0.02%)</title><rect x="252.1" y="1253" width="0.2" height="15.0" fill="rgb(240,167,23)" rx="2" ry="2" />
<text x="255.14" y="1263.5" ></text>
</g>
<g >
<title>blake2b_final (598 samples, 0.05%)</title><rect x="566.3" y="1077" width="0.6" height="15.0" fill="rgb(209,55,28)" rx="2" ry="2" />
<text x="569.28" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__unsafe_mem_9183 (581 samples, 0.05%)</title><rect x="112.6" y="1237" width="0.6" height="15.0" fill="rgb(210,12,7)" rx="2" ry="2" />
<text x="115.62" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__get_mbytes_3536 (616 samples, 0.05%)</title><rect x="160.8" y="1365" width="0.6" height="15.0" fill="rgb(241,118,30)" rx="2" ry="2" />
<text x="163.77" y="1375.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1381" width="1.6" height="15.0" fill="rgb(221,117,20)" rx="2" ry="2" />
<text x="1189.27" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (166 samples, 0.01%)</title><rect x="113.3" y="1253" width="0.2" height="15.0" fill="rgb(225,108,29)" rx="2" ry="2" />
<text x="116.32" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (179 samples, 0.01%)</title><rect x="544.3" y="1189" width="0.1" height="15.0" fill="rgb(212,67,3)" rx="2" ry="2" />
<text x="547.25" y="1199.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (173 samples, 0.01%)</title><rect x="842.4" y="1077" width="0.2" height="15.0" fill="rgb(221,117,16)" rx="2" ry="2" />
<text x="845.44" y="1087.5" ></text>
</g>
<g >
<title>camlIndex__replace_3149 (286 samples, 0.02%)</title><rect x="383.1" y="1237" width="0.3" height="15.0" fill="rgb(220,110,30)" rx="2" ry="2" />
<text x="386.09" y="1247.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (214 samples, 0.02%)</title><rect x="1165.7" y="1445" width="0.2" height="15.0" fill="rgb(205,187,32)" rx="2" ry="2" />
<text x="1168.71" y="1455.5" ></text>
</g>
<g >
<title>mark_slice (461 samples, 0.04%)</title><rect x="985.2" y="1269" width="0.4" height="15.0" fill="rgb(212,75,32)" rx="2" ry="2" />
<text x="988.17" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (700 samples, 0.06%)</title><rect x="452.2" y="1045" width="0.7" height="15.0" fill="rgb(212,11,6)" rx="2" ry="2" />
<text x="455.19" y="1055.5" ></text>
</g>
<g >
<title>caml_call_gc (310 samples, 0.03%)</title><rect x="738.3" y="1221" width="0.3" height="15.0" fill="rgb(216,170,14)" rx="2" ry="2" />
<text x="741.25" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (356 samples, 0.03%)</title><rect x="522.1" y="965" width="0.3" height="15.0" fill="rgb(208,226,51)" rx="2" ry="2" />
<text x="525.10" y="975.5" ></text>
</g>
<g >
<title>mark_slice_darken (206 samples, 0.02%)</title><rect x="650.2" y="1237" width="0.2" height="15.0" fill="rgb(215,175,5)" rx="2" ry="2" />
<text x="653.21" y="1247.5" ></text>
</g>
<g >
<title>blake2b_compress (332 samples, 0.03%)</title><rect x="253.2" y="1189" width="0.3" height="15.0" fill="rgb(252,118,45)" rx="2" ry="2" />
<text x="256.19" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (110 samples, 0.01%)</title><rect x="983.9" y="1317" width="0.1" height="15.0" fill="rgb(206,202,52)" rx="2" ry="2" />
<text x="986.92" y="1327.5" ></text>
</g>
<g >
<title>caml_garbage_collection (127 samples, 0.01%)</title><rect x="745.1" y="1253" width="0.1" height="15.0" fill="rgb(211,176,35)" rx="2" ry="2" />
<text x="748.10" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (148 samples, 0.01%)</title><rect x="436.9" y="1221" width="0.1" height="15.0" fill="rgb(226,144,40)" rx="2" ry="2" />
<text x="439.87" y="1231.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (199 samples, 0.02%)</title><rect x="619.3" y="1269" width="0.2" height="15.0" fill="rgb(244,173,0)" rx="2" ry="2" />
<text x="622.32" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (782 samples, 0.06%)</title><rect x="579.4" y="1029" width="0.8" height="15.0" fill="rgb(247,90,51)" rx="2" ry="2" />
<text x="582.42" y="1039.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (1,895 samples, 0.16%)</title><rect x="1059.3" y="1301" width="1.9" height="15.0" fill="rgb(227,8,1)" rx="2" ry="2" />
<text x="1062.34" y="1311.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (137 samples, 0.01%)</title><rect x="742.2" y="1269" width="0.2" height="15.0" fill="rgb(245,98,32)" rx="2" ry="2" />
<text x="745.24" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (161 samples, 0.01%)</title><rect x="215.3" y="1189" width="0.1" height="15.0" fill="rgb(232,166,20)" rx="2" ry="2" />
<text x="218.26" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (120 samples, 0.01%)</title><rect x="587.3" y="1029" width="0.1" height="15.0" fill="rgb(236,112,32)" rx="2" ry="2" />
<text x="590.31" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__string__concat_1101 (120 samples, 0.01%)</title><rect x="487.8" y="1269" width="0.1" height="15.0" fill="rgb(243,46,4)" rx="2" ry="2" />
<text x="490.77" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (409 samples, 0.03%)</title><rect x="938.5" y="1125" width="0.4" height="15.0" fill="rgb(248,29,12)" rx="2" ry="2" />
<text x="941.48" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (628 samples, 0.05%)</title><rect x="208.8" y="1125" width="0.6" height="15.0" fill="rgb(208,126,39)" rx="2" ry="2" />
<text x="211.78" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (1,663 samples, 0.14%)</title><rect x="222.3" y="1189" width="1.6" height="15.0" fill="rgb(239,34,51)" rx="2" ry="2" />
<text x="225.26" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_inner_6633 (400 samples, 0.03%)</title><rect x="48.8" y="1893" width="0.3" height="15.0" fill="rgb(236,43,28)" rx="2" ry="2" />
<text x="51.76" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (106 samples, 0.01%)</title><rect x="123.4" y="1125" width="0.1" height="15.0" fill="rgb(205,120,48)" rx="2" ry="2" />
<text x="126.38" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_6653 (2,693 samples, 0.22%)</title><rect x="105.2" y="1269" width="2.6" height="15.0" fill="rgb(232,103,45)" rx="2" ry="2" />
<text x="108.17" y="1279.5" ></text>
</g>
<g >
<title>ml_blake2b_init (110 samples, 0.01%)</title><rect x="554.8" y="1237" width="0.1" height="15.0" fill="rgb(213,220,0)" rx="2" ry="2" />
<text x="557.80" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3925 (826 samples, 0.07%)</title><rect x="302.9" y="1141" width="0.8" height="15.0" fill="rgb(218,69,43)" rx="2" ry="2" />
<text x="305.87" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8235 (336 samples, 0.03%)</title><rect x="110.2" y="1109" width="0.3" height="15.0" fill="rgb(226,20,16)" rx="2" ry="2" />
<text x="113.17" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (239 samples, 0.02%)</title><rect x="531.2" y="1061" width="0.2" height="15.0" fill="rgb(234,225,21)" rx="2" ry="2" />
<text x="534.17" y="1071.5" ></text>
</g>
<g >
<title>mark_slice_darken (119 samples, 0.01%)</title><rect x="413.6" y="1125" width="0.1" height="15.0" fill="rgb(245,131,46)" rx="2" ry="2" />
<text x="416.56" y="1135.5" ></text>
</g>
<g >
<title>mark_slice_darken (383 samples, 0.03%)</title><rect x="806.7" y="1173" width="0.4" height="15.0" fill="rgb(229,65,52)" rx="2" ry="2" />
<text x="809.72" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (192 samples, 0.02%)</title><rect x="195.2" y="1365" width="0.2" height="15.0" fill="rgb(238,61,53)" rx="2" ry="2" />
<text x="198.23" y="1375.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_variable_pair_1525 (177 samples, 0.01%)</title><rect x="989.1" y="1253" width="0.2" height="15.0" fill="rgb(229,71,39)" rx="2" ry="2" />
<text x="992.13" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (135 samples, 0.01%)</title><rect x="124.3" y="1189" width="0.1" height="15.0" fill="rgb(250,127,27)" rx="2" ry="2" />
<text x="127.28" y="1199.5" ></text>
</g>
<g >
<title>stub_mdb_txn_commit (12,072 samples, 0.99%)</title><rect x="1150.2" y="1477" width="11.7" height="15.0" fill="rgb(220,97,34)" rx="2" ry="2" />
<text x="1153.22" y="1487.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__add_blob_4185 (134 samples, 0.01%)</title><rect x="1176.1" y="1333" width="0.1" height="15.0" fill="rgb(213,107,5)" rx="2" ry="2" />
<text x="1179.08" y="1343.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (136 samples, 0.01%)</title><rect x="886.9" y="1173" width="0.1" height="15.0" fill="rgb(219,208,22)" rx="2" ry="2" />
<text x="889.88" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (607 samples, 0.05%)</title><rect x="238.3" y="1205" width="0.6" height="15.0" fill="rgb(228,109,46)" rx="2" ry="2" />
<text x="241.31" y="1215.5" ></text>
</g>
<g >
<title>camlLwt__try_bind_2801 (110 samples, 0.01%)</title><rect x="1176.1" y="1285" width="0.1" height="15.0" fill="rgb(214,50,2)" rx="2" ry="2" />
<text x="1179.10" y="1295.5" ></text>
</g>
<g >
<title>mark_slice (153 samples, 0.01%)</title><rect x="589.0" y="1061" width="0.1" height="15.0" fill="rgb(244,223,36)" rx="2" ry="2" />
<text x="591.96" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_string (119 samples, 0.01%)</title><rect x="162.3" y="1285" width="0.1" height="15.0" fill="rgb(232,174,24)" rx="2" ry="2" />
<text x="165.31" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__first_pass_4196 (4,116 samples, 0.34%)</title><rect x="94.2" y="1333" width="4.0" height="15.0" fill="rgb(239,59,35)" rx="2" ry="2" />
<text x="97.19" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__v_9687 (240 samples, 0.02%)</title><rect x="108.5" y="1221" width="0.2" height="15.0" fill="rgb(217,47,45)" rx="2" ry="2" />
<text x="111.46" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (695 samples, 0.06%)</title><rect x="1149.4" y="1429" width="0.6" height="15.0" fill="rgb(248,67,24)" rx="2" ry="2" />
<text x="1152.37" y="1439.5" ></text>
</g>
<g >
<title>__find_specmb (116 samples, 0.01%)</title><rect x="811.1" y="1141" width="0.1" height="15.0" fill="rgb(214,1,6)" rx="2" ry="2" />
<text x="814.05" y="1151.5" ></text>
</g>
<g >
<title>camlDigestif__digesti_string_1925 (306 samples, 0.03%)</title><rect x="101.3" y="1189" width="0.3" height="15.0" fill="rgb(253,8,42)" rx="2" ry="2" />
<text x="104.32" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (138 samples, 0.01%)</title><rect x="420.5" y="1141" width="0.1" height="15.0" fill="rgb(249,32,47)" rx="2" ry="2" />
<text x="423.46" y="1151.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (305 samples, 0.03%)</title><rect x="117.7" y="1141" width="0.3" height="15.0" fill="rgb(208,50,20)" rx="2" ry="2" />
<text x="120.71" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_sprintf (127 samples, 0.01%)</title><rect x="94.2" y="1269" width="0.2" height="15.0" fill="rgb(229,94,25)" rx="2" ry="2" />
<text x="97.24" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8094 (176 samples, 0.01%)</title><rect x="400.5" y="1125" width="0.2" height="15.0" fill="rgb(237,159,47)" rx="2" ry="2" />
<text x="403.50" y="1135.5" ></text>
</g>
<g >
<title>tty_mode_ioctl (255 samples, 0.02%)</title><rect x="1165.1" y="1349" width="0.3" height="15.0" fill="rgb(238,155,12)" rx="2" ry="2" />
<text x="1168.13" y="1359.5" ></text>
</g>
<g >
<title>caml_stash_backtrace (644 samples, 0.05%)</title><rect x="18.0" y="2021" width="0.6" height="15.0" fill="rgb(220,136,16)" rx="2" ry="2" />
<text x="21.00" y="2031.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8288 (116 samples, 0.01%)</title><rect x="252.0" y="1253" width="0.1" height="15.0" fill="rgb(226,106,54)" rx="2" ry="2" />
<text x="255.03" y="1263.5" ></text>
</g>
<g >
<title>mdb_page_alloc (558 samples, 0.05%)</title><rect x="730.5" y="1205" width="0.5" height="15.0" fill="rgb(241,73,0)" rx="2" ry="2" />
<text x="733.48" y="1215.5" ></text>
</g>
<g >
<title>caml_oldify_one (202 samples, 0.02%)</title><rect x="690.1" y="1189" width="0.2" height="15.0" fill="rgb(245,53,13)" rx="2" ry="2" />
<text x="693.12" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (582 samples, 0.05%)</title><rect x="77.3" y="1941" width="0.5" height="15.0" fill="rgb(212,147,28)" rx="2" ry="2" />
<text x="80.25" y="1951.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__hash_9778 (9,091 samples, 0.75%)</title><rect x="449.9" y="1189" width="8.8" height="15.0" fill="rgb(253,26,12)" rx="2" ry="2" />
<text x="452.88" y="1199.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (851 samples, 0.07%)</title><rect x="197.6" y="1333" width="0.8" height="15.0" fill="rgb(221,83,0)" rx="2" ry="2" />
<text x="200.55" y="1343.5" ></text>
</g>
<g >
<title>generic_perform_write (500 samples, 0.04%)</title><rect x="921.3" y="1141" width="0.5" height="15.0" fill="rgb(210,177,23)" rx="2" ry="2" />
<text x="924.27" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (577 samples, 0.05%)</title><rect x="520.5" y="869" width="0.6" height="15.0" fill="rgb(223,127,2)" rx="2" ry="2" />
<text x="523.52" y="879.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (131 samples, 0.01%)</title><rect x="129.7" y="1189" width="0.1" height="15.0" fill="rgb(234,168,48)" rx="2" ry="2" />
<text x="132.65" y="1199.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (148 samples, 0.01%)</title><rect x="380.8" y="1205" width="0.1" height="15.0" fill="rgb(219,43,35)" rx="2" ry="2" />
<text x="383.79" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__fun_7713 (4,525 samples, 0.37%)</title><rect x="161.6" y="1365" width="4.4" height="15.0" fill="rgb(210,132,49)" rx="2" ry="2" />
<text x="164.63" y="1375.5" ></text>
</g>
<g >
<title>blake2b_final (643 samples, 0.05%)</title><rect x="503.8" y="1141" width="0.6" height="15.0" fill="rgb(207,128,45)" rx="2" ry="2" />
<text x="506.80" y="1151.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (4,579 samples, 0.38%)</title><rect x="1079.9" y="1333" width="4.4" height="15.0" fill="rgb(242,90,1)" rx="2" ry="2" />
<text x="1082.89" y="1343.5" ></text>
</g>
<g >
<title>sweep_slice (238 samples, 0.02%)</title><rect x="678.4" y="1221" width="0.3" height="15.0" fill="rgb(239,52,8)" rx="2" ry="2" />
<text x="681.43" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (233 samples, 0.02%)</title><rect x="414.3" y="1173" width="0.3" height="15.0" fill="rgb(219,63,24)" rx="2" ry="2" />
<text x="417.34" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8022 (149 samples, 0.01%)</title><rect x="301.2" y="1125" width="0.1" height="15.0" fill="rgb(249,225,42)" rx="2" ry="2" />
<text x="304.20" y="1135.5" ></text>
</g>
<g >
<title>caml_empty_minor_heap (139 samples, 0.01%)</title><rect x="1168.2" y="1461" width="0.1" height="15.0" fill="rgb(221,224,15)" rx="2" ry="2" />
<text x="1171.17" y="1471.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (210 samples, 0.02%)</title><rect x="911.7" y="1157" width="0.2" height="15.0" fill="rgb(206,49,15)" rx="2" ry="2" />
<text x="914.69" y="1167.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,113,727 samples, 91.52%)</title><rect x="92.4" y="1621" width="1079.9" height="15.0" fill="rgb(251,114,50)" rx="2" ry="2" />
<text x="95.38" y="1631.5" >camlLwt__iter_callback_list_2247</text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1493" width="1.3" height="15.0" fill="rgb(222,193,52)" rx="2" ry="2" />
<text x="1175.52" y="1503.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (510 samples, 0.04%)</title><rect x="1104.6" y="1301" width="0.5" height="15.0" fill="rgb(206,211,6)" rx="2" ry="2" />
<text x="1107.60" y="1311.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (328 samples, 0.03%)</title><rect x="936.7" y="1077" width="0.3" height="15.0" fill="rgb(225,194,31)" rx="2" ry="2" />
<text x="939.72" y="1087.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__find_2264 (291 samples, 0.02%)</title><rect x="465.1" y="1029" width="0.3" height="15.0" fill="rgb(211,115,31)" rx="2" ry="2" />
<text x="468.13" y="1039.5" ></text>
</g>
<g >
<title>caml_hash (317 samples, 0.03%)</title><rect x="342.7" y="1077" width="0.3" height="15.0" fill="rgb(216,170,36)" rx="2" ry="2" />
<text x="345.74" y="1087.5" ></text>
</g>
<g >
<title>rotr64 (242 samples, 0.02%)</title><rect x="560.0" y="1173" width="0.2" height="15.0" fill="rgb(225,179,17)" rx="2" ry="2" />
<text x="562.99" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7532 (423 samples, 0.03%)</title><rect x="248.2" y="1221" width="0.4" height="15.0" fill="rgb(212,176,19)" rx="2" ry="2" />
<text x="251.15" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (165 samples, 0.01%)</title><rect x="603.5" y="1189" width="0.2" height="15.0" fill="rgb(229,224,10)" rx="2" ry="2" />
<text x="606.51" y="1199.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (188 samples, 0.02%)</title><rect x="237.0" y="1237" width="0.1" height="15.0" fill="rgb(243,199,37)" rx="2" ry="2" />
<text x="239.95" y="1247.5" ></text>
</g>
<g >
<title>common_file_perm (173 samples, 0.01%)</title><rect x="314.6" y="1029" width="0.1" height="15.0" fill="rgb(246,189,31)" rx="2" ry="2" />
<text x="317.58" y="1039.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (550 samples, 0.05%)</title><rect x="884.0" y="1237" width="0.6" height="15.0" fill="rgb(222,48,9)" rx="2" ry="2" />
<text x="887.04" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (30,690 samples, 2.52%)</title><rect x="565.5" y="1173" width="29.8" height="15.0" fill="rgb(208,117,4)" rx="2" ry="2" />
<text x="568.54" y="1183.5" >ca..</text>
</g>
<g >
<title>caml_alloc_string (260 samples, 0.02%)</title><rect x="605.8" y="1237" width="0.2" height="15.0" fill="rgb(238,199,16)" rx="2" ry="2" />
<text x="608.79" y="1247.5" ></text>
</g>
<g >
<title>ml_blake2b_final (602 samples, 0.05%)</title><rect x="564.0" y="1141" width="0.6" height="15.0" fill="rgb(212,202,41)" rx="2" ry="2" />
<text x="567.02" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (559 samples, 0.05%)</title><rect x="404.8" y="1141" width="0.6" height="15.0" fill="rgb(216,76,45)" rx="2" ry="2" />
<text x="407.85" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (144 samples, 0.01%)</title><rect x="522.9" y="981" width="0.2" height="15.0" fill="rgb(248,131,2)" rx="2" ry="2" />
<text x="525.91" y="991.5" ></text>
</g>
<g >
<title>caml_call_gc (130 samples, 0.01%)</title><rect x="160.8" y="1333" width="0.1" height="15.0" fill="rgb(212,40,14)" rx="2" ry="2" />
<text x="163.81" y="1343.5" ></text>
</g>
<g >
<title>caml_garbage_collection (109 samples, 0.01%)</title><rect x="169.4" y="1349" width="0.1" height="15.0" fill="rgb(219,27,36)" rx="2" ry="2" />
<text x="172.38" y="1359.5" ></text>
</g>
<g >
<title>camlBigstring__of_bytes_1463 (142 samples, 0.01%)</title><rect x="773.6" y="1269" width="0.2" height="15.0" fill="rgb(209,185,4)" rx="2" ry="2" />
<text x="776.65" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="885" width="1.6" height="15.0" fill="rgb(222,3,50)" rx="2" ry="2" />
<text x="1189.27" y="895.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (199 samples, 0.02%)</title><rect x="524.1" y="981" width="0.2" height="15.0" fill="rgb(209,82,34)" rx="2" ry="2" />
<text x="527.14" y="991.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (1,326 samples, 0.11%)</title><rect x="327.4" y="1317" width="1.3" height="15.0" fill="rgb(205,10,24)" rx="2" ry="2" />
<text x="330.41" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (338 samples, 0.03%)</title><rect x="308.9" y="1157" width="0.3" height="15.0" fill="rgb(239,173,39)" rx="2" ry="2" />
<text x="311.87" y="1167.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (136 samples, 0.01%)</title><rect x="1172.4" y="1605" width="0.1" height="15.0" fill="rgb(211,105,19)" rx="2" ry="2" />
<text x="1175.39" y="1615.5" ></text>
</g>
<g >
<title>mark_slice (287 samples, 0.02%)</title><rect x="88.0" y="1909" width="0.2" height="15.0" fill="rgb(214,139,25)" rx="2" ry="2" />
<text x="90.96" y="1919.5" ></text>
</g>
<g >
<title>caml_alloc_string (132 samples, 0.01%)</title><rect x="593.8" y="1125" width="0.2" height="15.0" fill="rgb(239,7,51)" rx="2" ry="2" />
<text x="596.84" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (2,086 samples, 0.17%)</title><rect x="173.9" y="1221" width="2.0" height="15.0" fill="rgb(208,63,10)" rx="2" ry="2" />
<text x="176.87" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (383 samples, 0.03%)</title><rect x="826.7" y="1093" width="0.3" height="15.0" fill="rgb(225,103,53)" rx="2" ry="2" />
<text x="829.67" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (1,445 samples, 0.12%)</title><rect x="56.9" y="1893" width="1.4" height="15.0" fill="rgb(207,101,54)" rx="2" ry="2" />
<text x="59.93" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__array__sortto_1842 (2,793 samples, 0.23%)</title><rect x="78.3" y="1909" width="2.7" height="15.0" fill="rgb(247,212,16)" rx="2" ry="2" />
<text x="81.26" y="1919.5" ></text>
</g>
<g >
<title>caml_call_gc (1,058 samples, 0.09%)</title><rect x="841.8" y="1157" width="1.0" height="15.0" fill="rgb(231,61,39)" rx="2" ry="2" />
<text x="844.79" y="1167.5" ></text>
</g>
<g >
<title>n_tty_ioctl (132 samples, 0.01%)</title><rect x="157.1" y="1237" width="0.1" height="15.0" fill="rgb(243,217,14)" rx="2" ry="2" />
<text x="160.07" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_2775 (128 samples, 0.01%)</title><rect x="262.4" y="1237" width="0.1" height="15.0" fill="rgb(246,47,37)" rx="2" ry="2" />
<text x="265.40" y="1247.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (3,254 samples, 0.27%)</title><rect x="704.2" y="1301" width="3.1" height="15.0" fill="rgb(241,12,48)" rx="2" ry="2" />
<text x="707.18" y="1311.5" ></text>
</g>
<g >
<title>mark_slice (123 samples, 0.01%)</title><rect x="740.4" y="1237" width="0.1" height="15.0" fill="rgb(230,5,47)" rx="2" ry="2" />
<text x="743.38" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,271 samples, 0.10%)</title><rect x="742.9" y="1269" width="1.2" height="15.0" fill="rgb(245,7,39)" rx="2" ry="2" />
<text x="745.87" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (994 samples, 0.08%)</title><rect x="435.4" y="1253" width="1.0" height="15.0" fill="rgb(248,227,43)" rx="2" ry="2" />
<text x="438.39" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__int32_3815 (363 samples, 0.03%)</title><rect x="398.7" y="1109" width="0.3" height="15.0" fill="rgb(232,91,12)" rx="2" ry="2" />
<text x="401.67" y="1119.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (10,029 samples, 0.82%)</title><rect x="340.7" y="1205" width="9.7" height="15.0" fill="rgb(245,226,35)" rx="2" ry="2" />
<text x="343.67" y="1215.5" ></text>
</g>
<g >
<title>mark_slice (590 samples, 0.05%)</title><rect x="817.7" y="1125" width="0.6" height="15.0" fill="rgb(220,218,41)" rx="2" ry="2" />
<text x="820.73" y="1135.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (122 samples, 0.01%)</title><rect x="743.3" y="1189" width="0.1" height="15.0" fill="rgb(235,209,26)" rx="2" ry="2" />
<text x="746.33" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__blit_1059 (131 samples, 0.01%)</title><rect x="553.2" y="1269" width="0.2" height="15.0" fill="rgb(244,92,11)" rx="2" ry="2" />
<text x="556.23" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__mem_2999 (139 samples, 0.01%)</title><rect x="103.5" y="1189" width="0.1" height="15.0" fill="rgb(226,188,19)" rx="2" ry="2" />
<text x="106.51" y="1199.5" ></text>
</g>
<g >
<title>caml_gc_dispatch (176 samples, 0.01%)</title><rect x="669.5" y="1285" width="0.2" height="15.0" fill="rgb(206,195,8)" rx="2" ry="2" />
<text x="672.48" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (14,750 samples, 1.21%)</title><rect x="1134.0" y="1461" width="14.3" height="15.0" fill="rgb(231,63,21)" rx="2" ry="2" />
<text x="1137.01" y="1471.5" ></text>
</g>
<g >
<title>caml_call_gc (512 samples, 0.04%)</title><rect x="303.2" y="1125" width="0.5" height="15.0" fill="rgb(243,28,23)" rx="2" ry="2" />
<text x="306.17" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__$40$7e_2851 (2,036 samples, 0.17%)</title><rect x="387.0" y="1221" width="1.9" height="15.0" fill="rgb(251,186,24)" rx="2" ry="2" />
<text x="389.96" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (880 samples, 0.07%)</title><rect x="406.0" y="1141" width="0.9" height="15.0" fill="rgb(224,136,41)" rx="2" ry="2" />
<text x="409.01" y="1151.5" ></text>
</g>
<g >
<title>digestif_blake2b_finalize (871 samples, 0.07%)</title><rect x="202.7" y="1189" width="0.8" height="15.0" fill="rgb(249,93,15)" rx="2" ry="2" />
<text x="205.67" y="1199.5" ></text>
</g>
<g >
<title>blake2b_update (115 samples, 0.01%)</title><rect x="548.9" y="1173" width="0.1" height="15.0" fill="rgb(251,9,6)" rx="2" ry="2" />
<text x="551.87" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (258 samples, 0.02%)</title><rect x="208.8" y="1109" width="0.3" height="15.0" fill="rgb(221,168,1)" rx="2" ry="2" />
<text x="211.82" y="1119.5" ></text>
</g>
<g >
<title>camlLwt__get_2036 (209 samples, 0.02%)</title><rect x="732.2" y="1301" width="0.2" height="15.0" fill="rgb(211,75,48)" rx="2" ry="2" />
<text x="735.21" y="1311.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (4,689 samples, 0.39%)</title><rect x="176.6" y="1205" width="4.6" height="15.0" fill="rgb(254,206,14)" rx="2" ry="2" />
<text x="179.61" y="1215.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__format_of_iconv_3033 (114 samples, 0.01%)</title><rect x="161.9" y="1333" width="0.1" height="15.0" fill="rgb(216,41,24)" rx="2" ry="2" />
<text x="164.90" y="1343.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (130 samples, 0.01%)</title><rect x="516.2" y="917" width="0.1" height="15.0" fill="rgb(206,169,16)" rx="2" ry="2" />
<text x="519.15" y="927.5" ></text>
</g>
<g >
<title>sweep_slice (1,109 samples, 0.09%)</title><rect x="644.7" y="1221" width="1.1" height="15.0" fill="rgb(243,33,12)" rx="2" ry="2" />
<text x="647.74" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (369 samples, 0.03%)</title><rect x="181.4" y="1173" width="0.3" height="15.0" fill="rgb(207,180,49)" rx="2" ry="2" />
<text x="184.35" y="1183.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (223 samples, 0.02%)</title><rect x="223.9" y="1157" width="0.3" height="15.0" fill="rgb(226,174,38)" rx="2" ry="2" />
<text x="226.95" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="373" width="1.6" height="15.0" fill="rgb(234,161,49)" rx="2" ry="2" />
<text x="1189.27" y="383.5" ></text>
</g>
<g >
<title>__memmove_ssse3 (186 samples, 0.02%)</title><rect x="66.5" y="1877" width="0.2" height="15.0" fill="rgb(208,140,37)" rx="2" ry="2" />
<text x="69.54" y="1887.5" ></text>
</g>
<g >
<title>caml_mutex_lock (207 samples, 0.02%)</title><rect x="415.4" y="1237" width="0.2" height="15.0" fill="rgb(251,180,31)" rx="2" ry="2" />
<text x="418.42" y="1247.5" ></text>
</g>
<g >
<title>camlLwt__with_value_2040 (176,365 samples, 14.49%)</title><rect x="990.9" y="1525" width="171.0" height="15.0" fill="rgb(249,49,25)" rx="2" ry="2" />
<text x="993.92" y="1535.5" >camlLwt__with_value_2040</text>
</g>
<g >
<title>camlBlake2__final_1085 (708 samples, 0.06%)</title><rect x="509.8" y="1077" width="0.7" height="15.0" fill="rgb(218,22,24)" rx="2" ry="2" />
<text x="512.79" y="1087.5" ></text>
</g>
<g >
<title>caml_apply2 (1,037 samples, 0.09%)</title><rect x="59.4" y="1877" width="1.0" height="15.0" fill="rgb(249,34,15)" rx="2" ry="2" />
<text x="62.42" y="1887.5" ></text>
</g>
<g >
<title>caml_apply5 (782 samples, 0.06%)</title><rect x="384.1" y="1237" width="0.7" height="15.0" fill="rgb(246,178,27)" rx="2" ry="2" />
<text x="387.07" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (225 samples, 0.02%)</title><rect x="671.8" y="1221" width="0.2" height="15.0" fill="rgb(222,159,13)" rx="2" ry="2" />
<text x="674.78" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="645" width="1.6" height="15.0" fill="rgb(229,77,37)" rx="2" ry="2" />
<text x="1189.27" y="655.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (604 samples, 0.05%)</title><rect x="557.5" y="1269" width="0.6" height="15.0" fill="rgb(228,132,18)" rx="2" ry="2" />
<text x="560.53" y="1279.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (116 samples, 0.01%)</title><rect x="470.2" y="1205" width="0.1" height="15.0" fill="rgb(208,147,21)" rx="2" ry="2" />
<text x="473.15" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (2,754 samples, 0.23%)</title><rect x="425.9" y="1205" width="2.7" height="15.0" fill="rgb(217,54,38)" rx="2" ry="2" />
<text x="428.90" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (666 samples, 0.05%)</title><rect x="501.5" y="1237" width="0.6" height="15.0" fill="rgb(234,102,32)" rx="2" ry="2" />
<text x="504.47" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (131 samples, 0.01%)</title><rect x="545.7" y="1205" width="0.1" height="15.0" fill="rgb(226,144,18)" rx="2" ry="2" />
<text x="548.71" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (105 samples, 0.01%)</title><rect x="522.0" y="965" width="0.1" height="15.0" fill="rgb(245,67,45)" rx="2" ry="2" />
<text x="525.00" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7679 (452 samples, 0.04%)</title><rect x="407.5" y="1141" width="0.4" height="15.0" fill="rgb(225,100,27)" rx="2" ry="2" />
<text x="410.46" y="1151.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (188 samples, 0.02%)</title><rect x="190.8" y="1221" width="0.2" height="15.0" fill="rgb(253,201,44)" rx="2" ry="2" />
<text x="193.84" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (149 samples, 0.01%)</title><rect x="80.1" y="1733" width="0.1" height="15.0" fill="rgb(241,83,38)" rx="2" ry="2" />
<text x="83.10" y="1743.5" ></text>
</g>
<g >
<title>mark_slice_darken (105 samples, 0.01%)</title><rect x="619.8" y="1237" width="0.1" height="15.0" fill="rgb(244,191,47)" rx="2" ry="2" />
<text x="622.79" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6942 (147 samples, 0.01%)</title><rect x="443.8" y="1205" width="0.2" height="15.0" fill="rgb(249,10,21)" rx="2" ry="2" />
<text x="446.83" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_bucket_2302 (288 samples, 0.02%)</title><rect x="189.3" y="1221" width="0.2" height="15.0" fill="rgb(251,95,3)" rx="2" ry="2" />
<text x="192.27" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (951 samples, 0.08%)</title><rect x="431.9" y="1221" width="0.9" height="15.0" fill="rgb(207,153,46)" rx="2" ry="2" />
<text x="434.91" y="1231.5" ></text>
</g>
<g >
<title>rw_verify_area (177 samples, 0.01%)</title><rect x="47.2" y="1941" width="0.2" height="15.0" fill="rgb(211,176,6)" rx="2" ry="2" />
<text x="50.20" y="1951.5" ></text>
</g>
<g >
<title>caml_garbage_collection (196 samples, 0.02%)</title><rect x="858.7" y="1221" width="0.2" height="15.0" fill="rgb(253,53,19)" rx="2" ry="2" />
<text x="861.67" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (636 samples, 0.05%)</title><rect x="611.6" y="1221" width="0.7" height="15.0" fill="rgb(215,142,54)" rx="2" ry="2" />
<text x="614.65" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_merge_rev_1371 (159 samples, 0.01%)</title><rect x="263.1" y="1221" width="0.2" height="15.0" fill="rgb(233,98,38)" rx="2" ry="2" />
<text x="266.14" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_stdlib_unix__Utils__prnt_1089 (2,356 samples, 0.19%)</title><rect x="155.3" y="1381" width="2.3" height="15.0" fill="rgb(233,225,50)" rx="2" ry="2" />
<text x="158.27" y="1391.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (104 samples, 0.01%)</title><rect x="263.8" y="1141" width="0.1" height="15.0" fill="rgb(253,130,13)" rx="2" ry="2" />
<text x="266.81" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_print_string_2037 (108 samples, 0.01%)</title><rect x="142.5" y="1301" width="0.1" height="15.0" fill="rgb(218,86,24)" rx="2" ry="2" />
<text x="145.50" y="1311.5" ></text>
</g>
<g >
<title>camlLmdb__put_inner_3250 (13,801 samples, 1.13%)</title><rect x="718.8" y="1301" width="13.4" height="15.0" fill="rgb(236,193,29)" rx="2" ry="2" />
<text x="721.80" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (112 samples, 0.01%)</title><rect x="601.7" y="1189" width="0.1" height="15.0" fill="rgb(230,105,34)" rx="2" ry="2" />
<text x="604.73" y="1199.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (316 samples, 0.03%)</title><rect x="97.4" y="1221" width="0.3" height="15.0" fill="rgb(229,218,2)" rx="2" ry="2" />
<text x="100.44" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (1,004 samples, 0.08%)</title><rect x="559.4" y="1237" width="0.9" height="15.0" fill="rgb(211,145,22)" rx="2" ry="2" />
<text x="562.37" y="1247.5" ></text>
</g>
<g >
<title>mark_slice_darken (385 samples, 0.03%)</title><rect x="745.4" y="1173" width="0.4" height="15.0" fill="rgb(228,39,35)" rx="2" ry="2" />
<text x="748.40" y="1183.5" ></text>
</g>
<g >
<title>caml_oldify_mopup (128 samples, 0.01%)</title><rect x="700.9" y="1221" width="0.1" height="15.0" fill="rgb(227,176,44)" rx="2" ry="2" />
<text x="703.87" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__of_bytes_opt_2160 (157 samples, 0.01%)</title><rect x="153.2" y="1253" width="0.1" height="15.0" fill="rgb(221,129,22)" rx="2" ry="2" />
<text x="156.17" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (584 samples, 0.05%)</title><rect x="307.7" y="1173" width="0.5" height="15.0" fill="rgb(226,131,32)" rx="2" ry="2" />
<text x="310.68" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (354 samples, 0.03%)</title><rect x="611.9" y="1189" width="0.3" height="15.0" fill="rgb(224,46,44)" rx="2" ry="2" />
<text x="614.87" y="1199.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (122 samples, 0.01%)</title><rect x="388.0" y="1109" width="0.1" height="15.0" fill="rgb(217,90,50)" rx="2" ry="2" />
<text x="391.03" y="1119.5" ></text>
</g>
<g >
<title>do_writev (154 samples, 0.01%)</title><rect x="1155.5" y="1365" width="0.2" height="15.0" fill="rgb(254,66,35)" rx="2" ry="2" />
<text x="1158.52" y="1375.5" ></text>
</g>
<g >
<title>caml_apply5 (22,402 samples, 1.84%)</title><rect x="448.8" y="1269" width="21.7" height="15.0" fill="rgb(230,52,6)" rx="2" ry="2" />
<text x="451.80" y="1279.5" >c..</text>
</g>
<g >
<title>camlStdlib__bytes__sub_1032 (3,348 samples, 0.28%)</title><rect x="20.2" y="2037" width="3.2" height="15.0" fill="rgb(252,82,49)" rx="2" ry="2" />
<text x="23.17" y="2047.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="853" width="1.6" height="15.0" fill="rgb(247,103,8)" rx="2" ry="2" />
<text x="1189.27" y="863.5" ></text>
</g>
<g >
<title>sys_ioctl (168 samples, 0.01%)</title><rect x="96.7" y="1221" width="0.1" height="15.0" fill="rgb(218,211,4)" rx="2" ry="2" />
<text x="99.67" y="1231.5" ></text>
</g>
<g >
<title>blake2b_init (303 samples, 0.02%)</title><rect x="708.2" y="1253" width="0.3" height="15.0" fill="rgb(245,206,45)" rx="2" ry="2" />
<text x="711.24" y="1263.5" ></text>
</g>
<g >
<title>caml_garbage_collection (170 samples, 0.01%)</title><rect x="62.6" y="1861" width="0.2" height="15.0" fill="rgb(210,146,28)" rx="2" ry="2" />
<text x="65.61" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (505 samples, 0.04%)</title><rect x="468.9" y="1141" width="0.5" height="15.0" fill="rgb(229,199,32)" rx="2" ry="2" />
<text x="471.90" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__Search__search_1136 (8,639 samples, 0.71%)</title><rect x="176.1" y="1221" width="8.4" height="15.0" fill="rgb(227,82,35)" rx="2" ry="2" />
<text x="179.12" y="1231.5" ></text>
</g>
<g >
<title>ml_blake2b_final (643 samples, 0.05%)</title><rect x="567.8" y="1061" width="0.6" height="15.0" fill="rgb(224,70,23)" rx="2" ry="2" />
<text x="570.77" y="1071.5" ></text>
</g>
<g >
<title>mark_slice (1,030 samples, 0.08%)</title><rect x="844.2" y="1173" width="1.0" height="15.0" fill="rgb(226,98,40)" rx="2" ry="2" />
<text x="847.17" y="1183.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (623 samples, 0.05%)</title><rect x="507.5" y="1093" width="0.6" height="15.0" fill="rgb(234,111,47)" rx="2" ry="2" />
<text x="510.50" y="1103.5" ></text>
</g>
<g >
<title>mark_slice_darken (152 samples, 0.01%)</title><rect x="596.3" y="1093" width="0.1" height="15.0" fill="rgb(220,90,36)" rx="2" ry="2" />
<text x="599.26" y="1103.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (529 samples, 0.04%)</title><rect x="327.7" y="1285" width="0.5" height="15.0" fill="rgb(229,163,3)" rx="2" ry="2" />
<text x="330.68" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (881 samples, 0.07%)</title><rect x="975.3" y="1125" width="0.8" height="15.0" fill="rgb(254,149,51)" rx="2" ry="2" />
<text x="978.29" y="1135.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (2,082 samples, 0.17%)</title><rect x="211.5" y="1173" width="2.0" height="15.0" fill="rgb(218,158,15)" rx="2" ry="2" />
<text x="214.47" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (165 samples, 0.01%)</title><rect x="602.7" y="1189" width="0.1" height="15.0" fill="rgb(227,210,10)" rx="2" ry="2" />
<text x="605.66" y="1199.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (443 samples, 0.04%)</title><rect x="514.5" y="965" width="0.5" height="15.0" fill="rgb(231,106,49)" rx="2" ry="2" />
<text x="517.54" y="975.5" ></text>
</g>
<g >
<title>blake2b_final (536 samples, 0.04%)</title><rect x="510.5" y="997" width="0.5" height="15.0" fill="rgb(209,223,22)" rx="2" ry="2" />
<text x="513.50" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__bind_2604 (388 samples, 0.03%)</title><rect x="220.9" y="1285" width="0.4" height="15.0" fill="rgb(243,83,20)" rx="2" ry="2" />
<text x="223.88" y="1295.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (679 samples, 0.06%)</title><rect x="808.3" y="1237" width="0.7" height="15.0" fill="rgb(215,196,15)" rx="2" ry="2" />
<text x="811.33" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__fun_3072 (979 samples, 0.08%)</title><rect x="835.2" y="1141" width="0.9" height="15.0" fill="rgb(253,146,54)" rx="2" ry="2" />
<text x="838.17" y="1151.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (181 samples, 0.01%)</title><rect x="1185.2" y="1445" width="0.2" height="15.0" fill="rgb(252,133,52)" rx="2" ry="2" />
<text x="1188.25" y="1455.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (319 samples, 0.03%)</title><rect x="465.1" y="1045" width="0.3" height="15.0" fill="rgb(230,70,28)" rx="2" ry="2" />
<text x="468.12" y="1055.5" ></text>
</g>
<g >
<title>caml_string_compare (116 samples, 0.01%)</title><rect x="232.6" y="1253" width="0.1" height="15.0" fill="rgb(228,158,29)" rx="2" ry="2" />
<text x="235.62" y="1263.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (1,115 samples, 0.09%)</title><rect x="860.4" y="1157" width="1.1" height="15.0" fill="rgb(247,166,11)" rx="2" ry="2" />
<text x="863.41" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (400 samples, 0.03%)</title><rect x="584.0" y="965" width="0.4" height="15.0" fill="rgb(236,88,52)" rx="2" ry="2" />
<text x="586.97" y="975.5" ></text>
</g>
<g >
<title>mdb_put (13,277 samples, 1.09%)</title><rect x="1134.6" y="1413" width="12.9" height="15.0" fill="rgb(214,78,36)" rx="2" ry="2" />
<text x="1137.60" y="1423.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (772 samples, 0.06%)</title><rect x="508.2" y="1109" width="0.8" height="15.0" fill="rgb(238,25,3)" rx="2" ry="2" />
<text x="511.22" y="1119.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1173" width="1.6" height="15.0" fill="rgb(250,187,14)" rx="2" ry="2" />
<text x="1189.27" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (266 samples, 0.02%)</title><rect x="547.7" y="1221" width="0.3" height="15.0" fill="rgb(207,130,16)" rx="2" ry="2" />
<text x="550.70" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (242 samples, 0.02%)</title><rect x="707.7" y="1301" width="0.3" height="15.0" fill="rgb(235,197,29)" rx="2" ry="2" />
<text x="710.74" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_left_1889 (182 samples, 0.01%)</title><rect x="1162.3" y="1477" width="0.1" height="15.0" fill="rgb(235,193,48)" rx="2" ry="2" />
<text x="1165.26" y="1487.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (626 samples, 0.05%)</title><rect x="507.5" y="1109" width="0.6" height="15.0" fill="rgb(247,153,7)" rx="2" ry="2" />
<text x="510.49" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (336 samples, 0.03%)</title><rect x="548.5" y="1205" width="0.3" height="15.0" fill="rgb(208,210,7)" rx="2" ry="2" />
<text x="551.50" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (4,005 samples, 0.33%)</title><rect x="704.1" y="1333" width="3.9" height="15.0" fill="rgb(248,33,0)" rx="2" ry="2" />
<text x="707.09" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (224 samples, 0.02%)</title><rect x="488.0" y="1269" width="0.2" height="15.0" fill="rgb(229,24,33)" rx="2" ry="2" />
<text x="490.99" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (127 samples, 0.01%)</title><rect x="745.1" y="1269" width="0.1" height="15.0" fill="rgb(232,167,52)" rx="2" ry="2" />
<text x="748.10" y="1279.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (640 samples, 0.05%)</title><rect x="509.0" y="1061" width="0.6" height="15.0" fill="rgb(221,69,15)" rx="2" ry="2" />
<text x="512.00" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_adds_6697 (130 samples, 0.01%)</title><rect x="1173.7" y="725" width="0.1" height="15.0" fill="rgb(253,197,10)" rx="2" ry="2" />
<text x="1176.67" y="735.5" ></text>
</g>
<g >
<title>camlIrmin__Node__fun_8921 (479 samples, 0.04%)</title><rect x="259.5" y="1237" width="0.5" height="15.0" fill="rgb(230,19,54)" rx="2" ry="2" />
<text x="262.49" y="1247.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (158 samples, 0.01%)</title><rect x="740.7" y="1285" width="0.1" height="15.0" fill="rgb(230,167,22)" rx="2" ry="2" />
<text x="743.69" y="1295.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (1,147 samples, 0.09%)</title><rect x="682.5" y="1221" width="1.1" height="15.0" fill="rgb(215,222,18)" rx="2" ry="2" />
<text x="685.51" y="1231.5" ></text>
</g>
<g >
<title>camlBigstring__init_1315 (207 samples, 0.02%)</title><rect x="1180.3" y="1221" width="0.2" height="15.0" fill="rgb(230,225,54)" rx="2" ry="2" />
<text x="1183.28" y="1231.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (129 samples, 0.01%)</title><rect x="530.5" y="933" width="0.1" height="15.0" fill="rgb(227,161,50)" rx="2" ry="2" />
<text x="533.48" y="943.5" ></text>
</g>
<g >
<title>__find_specmb (528 samples, 0.04%)</title><rect x="1129.6" y="1285" width="0.5" height="15.0" fill="rgb(236,97,5)" rx="2" ry="2" />
<text x="1132.61" y="1295.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (105 samples, 0.01%)</title><rect x="896.9" y="1189" width="0.1" height="15.0" fill="rgb(235,223,24)" rx="2" ry="2" />
<text x="899.93" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__key_index_2236 (164 samples, 0.01%)</title><rect x="124.0" y="1173" width="0.2" height="15.0" fill="rgb(238,183,44)" rx="2" ry="2" />
<text x="127.01" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (25,414 samples, 2.09%)</title><rect x="818.4" y="1189" width="24.7" height="15.0" fill="rgb(250,45,32)" rx="2" ry="2" />
<text x="821.41" y="1199.5" >c..</text>
</g>
<g >
<title>camlTezos_shell__Snapshots__fun_9234 (28,001 samples, 2.30%)</title><rect x="715.5" y="1333" width="27.1" height="15.0" fill="rgb(227,188,36)" rx="2" ry="2" />
<text x="718.45" y="1343.5" >c..</text>
</g>
<g >
<title>unix_isatty (2,257 samples, 0.19%)</title><rect x="155.4" y="1365" width="2.2" height="15.0" fill="rgb(229,135,5)" rx="2" ry="2" />
<text x="158.37" y="1375.5" ></text>
</g>
<g >
<title>camlIndex_unix__with_lock_2869 (994 samples, 0.08%)</title><rect x="101.8" y="1189" width="1.0" height="15.0" fill="rgb(240,58,9)" rx="2" ry="2" />
<text x="104.84" y="1199.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (2,187 samples, 0.18%)</title><rect x="453.7" y="1077" width="2.1" height="15.0" fill="rgb(215,74,48)" rx="2" ry="2" />
<text x="456.73" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (700 samples, 0.06%)</title><rect x="582.1" y="1061" width="0.7" height="15.0" fill="rgb(206,206,47)" rx="2" ry="2" />
<text x="585.08" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (149 samples, 0.01%)</title><rect x="523.6" y="949" width="0.1" height="15.0" fill="rgb(207,114,2)" rx="2" ry="2" />
<text x="526.60" y="959.5" ></text>
</g>
<g >
<title>caml_alloc_string (400 samples, 0.03%)</title><rect x="72.4" y="1893" width="0.4" height="15.0" fill="rgb(209,72,16)" rx="2" ry="2" />
<text x="75.41" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_6961 (299 samples, 0.02%)</title><rect x="421.3" y="1173" width="0.3" height="15.0" fill="rgb(233,106,34)" rx="2" ry="2" />
<text x="424.34" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (280 samples, 0.02%)</title><rect x="1180.9" y="1189" width="0.3" height="15.0" fill="rgb(246,103,7)" rx="2" ry="2" />
<text x="1183.89" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,446 samples, 0.12%)</title><rect x="615.6" y="1269" width="1.4" height="15.0" fill="rgb(237,179,10)" rx="2" ry="2" />
<text x="618.56" y="1279.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (195 samples, 0.02%)</title><rect x="102.4" y="1125" width="0.2" height="15.0" fill="rgb(213,96,38)" rx="2" ry="2" />
<text x="105.39" y="1135.5" ></text>
</g>
<g >
<title>stub_mdb_txn_commit (9,034 samples, 0.74%)</title><rect x="914.6" y="1333" width="8.8" height="15.0" fill="rgb(207,199,12)" rx="2" ry="2" />
<text x="917.62" y="1343.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_key_3407 (136 samples, 0.01%)</title><rect x="1171.8" y="1445" width="0.1" height="15.0" fill="rgb(248,51,43)" rx="2" ry="2" />
<text x="1174.81" y="1455.5" ></text>
</g>
<g >
<title>camlIrmin__Type__to_bin_3757 (807 samples, 0.07%)</title><rect x="122.4" y="1141" width="0.8" height="15.0" fill="rgb(247,62,45)" rx="2" ry="2" />
<text x="125.42" y="1151.5" ></text>
</g>
<g >
<title>caml_garbage_collection (606 samples, 0.05%)</title><rect x="648.6" y="1253" width="0.6" height="15.0" fill="rgb(240,197,38)" rx="2" ry="2" />
<text x="651.61" y="1263.5" ></text>
</g>
<g >
<title>__GI___select (1,057 samples, 0.09%)</title><rect x="88.7" y="2005" width="1.0" height="15.0" fill="rgb(228,45,18)" rx="2" ry="2" />
<text x="91.70" y="2015.5" ></text>
</g>
<g >
<title>caml_apply2 (7,547 samples, 0.62%)</title><rect x="258.3" y="1285" width="7.3" height="15.0" fill="rgb(232,2,45)" rx="2" ry="2" />
<text x="261.29" y="1295.5" ></text>
</g>
<g >
<title>caml_call_gc (457 samples, 0.04%)</title><rect x="73.7" y="1877" width="0.4" height="15.0" fill="rgb(213,45,25)" rx="2" ry="2" />
<text x="76.69" y="1887.5" ></text>
</g>
<g >
<title>blake2b_final (588 samples, 0.05%)</title><rect x="557.5" y="1237" width="0.6" height="15.0" fill="rgb(239,10,39)" rx="2" ry="2" />
<text x="560.53" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (156 samples, 0.01%)</title><rect x="1177.7" y="1221" width="0.2" height="15.0" fill="rgb(250,95,46)" rx="2" ry="2" />
<text x="1180.75" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (590 samples, 0.05%)</title><rect x="191.1" y="1269" width="0.6" height="15.0" fill="rgb(231,23,38)" rx="2" ry="2" />
<text x="194.12" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (521 samples, 0.04%)</title><rect x="539.1" y="1157" width="0.5" height="15.0" fill="rgb(249,103,16)" rx="2" ry="2" />
<text x="542.06" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (124 samples, 0.01%)</title><rect x="428.8" y="1189" width="0.1" height="15.0" fill="rgb(249,185,42)" rx="2" ry="2" />
<text x="431.83" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (741 samples, 0.06%)</title><rect x="693.1" y="1269" width="0.7" height="15.0" fill="rgb(207,209,1)" rx="2" ry="2" />
<text x="696.06" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (360 samples, 0.03%)</title><rect x="606.5" y="1237" width="0.4" height="15.0" fill="rgb(209,71,20)" rx="2" ry="2" />
<text x="609.53" y="1247.5" ></text>
</g>
<g >
<title>___vsnprintf_chk (421 samples, 0.03%)</title><rect x="990.3" y="1445" width="0.4" height="15.0" fill="rgb(244,97,35)" rx="2" ry="2" />
<text x="993.26" y="1455.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__TzEndian__get_uint8_1098 (162 samples, 0.01%)</title><rect x="154.6" y="1333" width="0.1" height="15.0" fill="rgb(235,212,20)" rx="2" ry="2" />
<text x="157.59" y="1343.5" ></text>
</g>
<g >
<title>caml_alloc_string (255 samples, 0.02%)</title><rect x="619.7" y="1285" width="0.2" height="15.0" fill="rgb(236,28,5)" rx="2" ry="2" />
<text x="622.69" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_error_monad__Error_monad__fun_4982 (142 samples, 0.01%)</title><rect x="161.1" y="1349" width="0.1" height="15.0" fill="rgb(254,130,15)" rx="2" ry="2" />
<text x="164.08" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (141 samples, 0.01%)</title><rect x="588.6" y="1061" width="0.2" height="15.0" fill="rgb(246,192,29)" rx="2" ry="2" />
<text x="591.64" y="1071.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (1,845 samples, 0.15%)</title><rect x="461.6" y="1189" width="1.8" height="15.0" fill="rgb(253,220,2)" rx="2" ry="2" />
<text x="464.64" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__sort_1381 (349 samples, 0.03%)</title><rect x="377.8" y="1173" width="0.3" height="15.0" fill="rgb(236,123,11)" rx="2" ry="2" />
<text x="380.79" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (126 samples, 0.01%)</title><rect x="129.8" y="1221" width="0.1" height="15.0" fill="rgb(222,219,32)" rx="2" ry="2" />
<text x="132.80" y="1231.5" ></text>
</g>
<g >
<title>caml_mutex_unlock (150 samples, 0.01%)</title><rect x="430.4" y="1237" width="0.2" height="15.0" fill="rgb(209,219,32)" rx="2" ry="2" />
<text x="433.44" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (107 samples, 0.01%)</title><rect x="457.8" y="1061" width="0.1" height="15.0" fill="rgb(247,92,45)" rx="2" ry="2" />
<text x="460.84" y="1071.5" ></text>
</g>
<g >
<title>camlIndex_unix__append_1670 (277 samples, 0.02%)</title><rect x="64.6" y="1925" width="0.2" height="15.0" fill="rgb(215,40,1)" rx="2" ry="2" />
<text x="67.56" y="1935.5" ></text>
</g>
<g >
<title>caml_call_gc (129 samples, 0.01%)</title><rect x="846.2" y="1269" width="0.1" height="15.0" fill="rgb(214,214,50)" rx="2" ry="2" />
<text x="849.22" y="1279.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (252 samples, 0.02%)</title><rect x="1148.7" y="1429" width="0.3" height="15.0" fill="rgb(216,18,46)" rx="2" ry="2" />
<text x="1151.72" y="1439.5" ></text>
</g>
<g >
<title>__fget (163 samples, 0.01%)</title><rect x="314.1" y="1061" width="0.1" height="15.0" fill="rgb(245,7,15)" rx="2" ry="2" />
<text x="317.08" y="1071.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (747 samples, 0.06%)</title><rect x="130.5" y="1237" width="0.7" height="15.0" fill="rgb(246,23,7)" rx="2" ry="2" />
<text x="133.52" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (2,515 samples, 0.21%)</title><rect x="149.4" y="1253" width="2.5" height="15.0" fill="rgb(205,194,26)" rx="2" ry="2" />
<text x="152.45" y="1263.5" ></text>
</g>
<g >
<title>mdb_page_alloc (350 samples, 0.03%)</title><rect x="1067.4" y="1301" width="0.3" height="15.0" fill="rgb(206,128,25)" rx="2" ry="2" />
<text x="1070.39" y="1311.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (312 samples, 0.03%)</title><rect x="552.2" y="1253" width="0.4" height="15.0" fill="rgb(227,131,12)" rx="2" ry="2" />
<text x="555.25" y="1263.5" ></text>
</g>
<g >
<title>caml_blit_bytes (111 samples, 0.01%)</title><rect x="366.2" y="1141" width="0.1" height="15.0" fill="rgb(229,197,37)" rx="2" ry="2" />
<text x="369.18" y="1151.5" ></text>
</g>
<g >
<title>mark_slice (494 samples, 0.04%)</title><rect x="827.9" y="1077" width="0.5" height="15.0" fill="rgb(229,21,20)" rx="2" ry="2" />
<text x="830.90" y="1087.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (141 samples, 0.01%)</title><rect x="616.6" y="1221" width="0.1" height="15.0" fill="rgb(245,215,0)" rx="2" ry="2" />
<text x="619.57" y="1231.5" ></text>
</g>
<g >
<title>caml_apply2 (598 samples, 0.05%)</title><rect x="106.8" y="1221" width="0.6" height="15.0" fill="rgb(205,115,26)" rx="2" ry="2" />
<text x="109.78" y="1231.5" ></text>
</g>
<g >
<title>caml_start_program (41,948 samples, 3.45%)</title><rect x="47.7" y="2005" width="40.7" height="15.0" fill="rgb(205,117,10)" rx="2" ry="2" />
<text x="50.74" y="2015.5" >cam..</text>
</g>
<g >
<title>mark_slice_darken (711 samples, 0.06%)</title><rect x="686.6" y="1221" width="0.7" height="15.0" fill="rgb(237,174,46)" rx="2" ry="2" />
<text x="689.63" y="1231.5" ></text>
</g>
<g >
<title>current_time (177 samples, 0.01%)</title><rect x="1157.4" y="1269" width="0.2" height="15.0" fill="rgb(236,101,8)" rx="2" ry="2" />
<text x="1160.39" y="1279.5" ></text>
</g>
<g >
<title>mark_slice_darken (115 samples, 0.01%)</title><rect x="588.7" y="997" width="0.1" height="15.0" fill="rgb(206,219,35)" rx="2" ry="2" />
<text x="591.66" y="1007.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1557" width="1.3" height="15.0" fill="rgb(254,210,14)" rx="2" ry="2" />
<text x="1175.52" y="1567.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1237" width="1.6" height="15.0" fill="rgb(226,22,21)" rx="2" ry="2" />
<text x="1189.27" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin__Type__tuple_3667 (285 samples, 0.02%)</title><rect x="445.5" y="1221" width="0.3" height="15.0" fill="rgb(245,223,17)" rx="2" ry="2" />
<text x="448.49" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (1,029 samples, 0.08%)</title><rect x="301.4" y="1157" width="1.0" height="15.0" fill="rgb(223,111,24)" rx="2" ry="2" />
<text x="304.45" y="1167.5" ></text>
</g>
<g >
<title>ml_blake2b_final (640 samples, 0.05%)</title><rect x="509.0" y="1045" width="0.6" height="15.0" fill="rgb(233,97,1)" rx="2" ry="2" />
<text x="512.00" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (260 samples, 0.02%)</title><rect x="955.0" y="1189" width="0.2" height="15.0" fill="rgb(239,185,25)" rx="2" ry="2" />
<text x="957.98" y="1199.5" ></text>
</g>
<g >
<title>mdb_put (502 samples, 0.04%)</title><rect x="1171.1" y="1413" width="0.5" height="15.0" fill="rgb(209,84,12)" rx="2" ry="2" />
<text x="1174.10" y="1423.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (130 samples, 0.01%)</title><rect x="421.6" y="1157" width="0.2" height="15.0" fill="rgb(238,109,42)" rx="2" ry="2" />
<text x="424.64" y="1167.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (1,966 samples, 0.16%)</title><rect x="688.0" y="1285" width="1.9" height="15.0" fill="rgb(225,184,19)" rx="2" ry="2" />
<text x="691.00" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (140 samples, 0.01%)</title><rect x="49.5" y="1893" width="0.1" height="15.0" fill="rgb(232,217,23)" rx="2" ry="2" />
<text x="52.50" y="1903.5" ></text>
</g>
<g >
<title>mark_slice (521 samples, 0.04%)</title><rect x="913.9" y="1253" width="0.5" height="15.0" fill="rgb(224,220,9)" rx="2" ry="2" />
<text x="916.92" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__batch_9229 (165 samples, 0.01%)</title><rect x="1173.5" y="917" width="0.2" height="15.0" fill="rgb(248,152,31)" rx="2" ry="2" />
<text x="1176.51" y="927.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__find_8432 (310 samples, 0.03%)</title><rect x="469.4" y="1077" width="0.3" height="15.0" fill="rgb(205,20,50)" rx="2" ry="2" />
<text x="472.41" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (272 samples, 0.02%)</title><rect x="216.4" y="1237" width="0.2" height="15.0" fill="rgb(207,119,27)" rx="2" ry="2" />
<text x="219.36" y="1247.5" ></text>
</g>
<g >
<title>mark_slice (338 samples, 0.03%)</title><rect x="891.1" y="1173" width="0.4" height="15.0" fill="rgb(215,83,29)" rx="2" ry="2" />
<text x="894.14" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (820 samples, 0.07%)</title><rect x="485.6" y="1317" width="0.8" height="15.0" fill="rgb(240,43,50)" rx="2" ry="2" />
<text x="488.57" y="1327.5" ></text>
</g>
<g >
<title>mark_slice (633 samples, 0.05%)</title><rect x="68.7" y="1845" width="0.6" height="15.0" fill="rgb(221,36,44)" rx="2" ry="2" />
<text x="71.65" y="1855.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (613 samples, 0.05%)</title><rect x="568.6" y="1077" width="0.6" height="15.0" fill="rgb(229,134,6)" rx="2" ry="2" />
<text x="571.61" y="1087.5" ></text>
</g>
<g >
<title>caml_garbage_collection (144 samples, 0.01%)</title><rect x="714.6" y="1317" width="0.1" height="15.0" fill="rgb(226,199,23)" rx="2" ry="2" />
<text x="717.61" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (161 samples, 0.01%)</title><rect x="216.1" y="1237" width="0.2" height="15.0" fill="rgb(208,120,2)" rx="2" ry="2" />
<text x="219.12" y="1247.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (792 samples, 0.07%)</title><rect x="595.3" y="1173" width="0.8" height="15.0" fill="rgb(225,137,14)" rx="2" ry="2" />
<text x="598.29" y="1183.5" ></text>
</g>
<g >
<title>mdb_page_touch (326 samples, 0.03%)</title><rect x="869.5" y="1189" width="0.3" height="15.0" fill="rgb(207,49,49)" rx="2" ry="2" />
<text x="872.52" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (30,343 samples, 2.49%)</title><rect x="507.5" y="1141" width="29.4" height="15.0" fill="rgb(217,71,15)" rx="2" ry="2" />
<text x="510.47" y="1151.5" >ca..</text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__fixed_kind_bytes_1620 (114 samples, 0.01%)</title><rect x="604.1" y="1221" width="0.1" height="15.0" fill="rgb(231,26,8)" rx="2" ry="2" />
<text x="607.09" y="1231.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (2,010 samples, 0.17%)</title><rect x="529.1" y="1045" width="1.9" height="15.0" fill="rgb(224,128,15)" rx="2" ry="2" />
<text x="532.06" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Encoding__classify_desc_1690 (195 samples, 0.02%)</title><rect x="977.4" y="1269" width="0.2" height="15.0" fill="rgb(247,83,53)" rx="2" ry="2" />
<text x="980.37" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__hash_of_value_6653 (107 samples, 0.01%)</title><rect x="93.4" y="1189" width="0.1" height="15.0" fill="rgb(248,35,52)" rx="2" ry="2" />
<text x="96.37" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__fun_11106 (571 samples, 0.05%)</title><rect x="479.7" y="1301" width="0.6" height="15.0" fill="rgb(216,220,7)" rx="2" ry="2" />
<text x="482.72" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (274 samples, 0.02%)</title><rect x="469.8" y="1109" width="0.2" height="15.0" fill="rgb(243,93,28)" rx="2" ry="2" />
<text x="472.78" y="1119.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (5,332 samples, 0.44%)</title><rect x="796.7" y="1269" width="5.2" height="15.0" fill="rgb(239,129,11)" rx="2" ry="2" />
<text x="799.74" y="1279.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (846 samples, 0.07%)</title><rect x="896.7" y="1237" width="0.8" height="15.0" fill="rgb(228,76,49)" rx="2" ry="2" />
<text x="899.66" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (183 samples, 0.02%)</title><rect x="58.9" y="1861" width="0.2" height="15.0" fill="rgb(223,194,3)" rx="2" ry="2" />
<text x="61.87" y="1871.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__step_9727 (2,969 samples, 0.24%)</title><rect x="458.7" y="1189" width="2.9" height="15.0" fill="rgb(241,181,52)" rx="2" ry="2" />
<text x="461.70" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (2,749 samples, 0.23%)</title><rect x="66.8" y="1941" width="2.7" height="15.0" fill="rgb(213,85,28)" rx="2" ry="2" />
<text x="69.81" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (828 samples, 0.07%)</title><rect x="95.6" y="1237" width="0.8" height="15.0" fill="rgb(232,125,0)" rx="2" ry="2" />
<text x="98.64" y="1247.5" ></text>
</g>
<g >
<title>caml_finish_major_cycle (658 samples, 0.05%)</title><rect x="712.5" y="1221" width="0.7" height="15.0" fill="rgb(243,63,5)" rx="2" ry="2" />
<text x="715.52" y="1231.5" ></text>
</g>
<g >
<title>camlIndex__find_instance_2839 (230 samples, 0.02%)</title><rect x="386.6" y="1253" width="0.2" height="15.0" fill="rgb(251,5,36)" rx="2" ry="2" />
<text x="389.59" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (110 samples, 0.01%)</title><rect x="1184.6" y="1301" width="0.1" height="15.0" fill="rgb(250,61,32)" rx="2" ry="2" />
<text x="1187.60" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1573" width="1.6" height="15.0" fill="rgb(247,66,0)" rx="2" ry="2" />
<text x="1189.27" y="1583.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Dict__index_8602 (231 samples, 0.02%)</title><rect x="464.6" y="1141" width="0.2" height="15.0" fill="rgb(227,50,3)" rx="2" ry="2" />
<text x="467.61" y="1151.5" ></text>
</g>
<g >
<title>camlIndex__fun_4098 (114 samples, 0.01%)</title><rect x="388.8" y="1173" width="0.1" height="15.0" fill="rgb(253,44,31)" rx="2" ry="2" />
<text x="391.82" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (112 samples, 0.01%)</title><rect x="378.0" y="1125" width="0.1" height="15.0" fill="rgb(228,123,12)" rx="2" ry="2" />
<text x="381.02" y="1135.5" ></text>
</g>
<g >
<title>caml_alloc_string (386 samples, 0.03%)</title><rect x="885.2" y="1237" width="0.4" height="15.0" fill="rgb(205,94,21)" rx="2" ry="2" />
<text x="888.24" y="1247.5" ></text>
</g>
<g >
<title>blake2b_compress (144 samples, 0.01%)</title><rect x="108.2" y="1125" width="0.1" height="15.0" fill="rgb(254,63,16)" rx="2" ry="2" />
<text x="111.17" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (38,235 samples, 3.14%)</title><rect x="563.3" y="1221" width="37.0" height="15.0" fill="rgb(247,120,33)" rx="2" ry="2" />
<text x="566.27" y="1231.5" >cam..</text>
</g>
<g >
<title>mark_slice_darken (1,655 samples, 0.14%)</title><rect x="830.3" y="1077" width="1.6" height="15.0" fill="rgb(252,69,9)" rx="2" ry="2" />
<text x="833.30" y="1087.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (1,420 samples, 0.12%)</title><rect x="245.7" y="1253" width="1.4" height="15.0" fill="rgb(253,72,46)" rx="2" ry="2" />
<text x="248.70" y="1263.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (790 samples, 0.06%)</title><rect x="539.6" y="1173" width="0.8" height="15.0" fill="rgb(248,64,30)" rx="2" ry="2" />
<text x="542.62" y="1183.5" ></text>
</g>
<g >
<title>mdb_page_search_root (9,066 samples, 0.74%)</title><rect x="777.2" y="1173" width="8.8" height="15.0" fill="rgb(250,18,52)" rx="2" ry="2" />
<text x="780.16" y="1183.5" ></text>
</g>
<g >
<title>camlIrmin__Type__string_2376 (517 samples, 0.04%)</title><rect x="174.9" y="1189" width="0.5" height="15.0" fill="rgb(240,177,11)" rx="2" ry="2" />
<text x="177.91" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (663 samples, 0.05%)</title><rect x="1185.0" y="1765" width="0.6" height="15.0" fill="rgb(244,26,26)" rx="2" ry="2" />
<text x="1187.98" y="1775.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack_index__decode_8281 (262 samples, 0.02%)</title><rect x="121.3" y="1093" width="0.2" height="15.0" fill="rgb(242,132,5)" rx="2" ry="2" />
<text x="124.29" y="1103.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (925,189 samples, 76.03%)</title><rect x="92.4" y="1477" width="897.1" height="15.0" fill="rgb(228,31,15)" rx="2" ry="2" />
<text x="95.38" y="1487.5" >camlLwt__callback_2614</text>
</g>
<g >
<title>camlStdlib__format__make_formatter_2194 (903 samples, 0.07%)</title><rect x="167.6" y="1349" width="0.9" height="15.0" fill="rgb(233,59,4)" rx="2" ry="2" />
<text x="170.58" y="1359.5" ></text>
</g>
<g >
<title>camlIrmin__Type__aux_3611 (569 samples, 0.05%)</title><rect x="442.8" y="1221" width="0.5" height="15.0" fill="rgb(228,161,9)" rx="2" ry="2" />
<text x="445.80" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__fun_4745 (9,043 samples, 0.74%)</title><rect x="914.6" y="1365" width="8.8" height="15.0" fill="rgb(235,29,53)" rx="2" ry="2" />
<text x="917.62" y="1375.5" ></text>
</g>
<g >
<title>caml_alloc_string (299 samples, 0.02%)</title><rect x="550.1" y="1237" width="0.3" height="15.0" fill="rgb(229,229,24)" rx="2" ry="2" />
<text x="553.11" y="1247.5" ></text>
</g>
<g >
<title>camlCamlinternalFormat__convert_int_3047 (504 samples, 0.04%)</title><rect x="97.3" y="1285" width="0.5" height="15.0" fill="rgb(217,7,35)" rx="2" ry="2" />
<text x="100.34" y="1295.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (1,121 samples, 0.09%)</title><rect x="65.5" y="1877" width="1.0" height="15.0" fill="rgb(249,152,48)" rx="2" ry="2" />
<text x="68.45" y="1887.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (158 samples, 0.01%)</title><rect x="462.1" y="1029" width="0.2" height="15.0" fill="rgb(242,153,51)" rx="2" ry="2" />
<text x="465.12" y="1039.5" ></text>
</g>
<g >
<title>caml_garbage_collection (721 samples, 0.06%)</title><rect x="820.9" y="1141" width="0.7" height="15.0" fill="rgb(235,67,18)" rx="2" ry="2" />
<text x="823.90" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (1,358 samples, 0.11%)</title><rect x="599.0" y="1205" width="1.3" height="15.0" fill="rgb(210,22,6)" rx="2" ry="2" />
<text x="602.01" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (180 samples, 0.01%)</title><rect x="962.0" y="1173" width="0.2" height="15.0" fill="rgb(251,210,19)" rx="2" ry="2" />
<text x="965.00" y="1183.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_2281 (104 samples, 0.01%)</title><rect x="1183.2" y="1525" width="0.1" height="15.0" fill="rgb(238,191,28)" rx="2" ry="2" />
<text x="1186.20" y="1535.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1301" width="1.6" height="15.0" fill="rgb(227,130,16)" rx="2" ry="2" />
<text x="1189.27" y="1311.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7691 (443 samples, 0.04%)</title><rect x="310.7" y="1173" width="0.4" height="15.0" fill="rgb(229,185,33)" rx="2" ry="2" />
<text x="313.66" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (268 samples, 0.02%)</title><rect x="72.5" y="1877" width="0.3" height="15.0" fill="rgb(221,23,50)" rx="2" ry="2" />
<text x="75.54" y="1887.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (269 samples, 0.02%)</title><rect x="948.7" y="1109" width="0.2" height="15.0" fill="rgb(237,127,4)" rx="2" ry="2" />
<text x="951.66" y="1119.5" ></text>
</g>
<g >
<title>camlHex__of_string_fast_1108 (1,932 samples, 0.16%)</title><rect x="1112.1" y="1365" width="1.9" height="15.0" fill="rgb(238,100,7)" rx="2" ry="2" />
<text x="1115.12" y="1375.5" ></text>
</g>
<g >
<title>caml_call_gc (520 samples, 0.04%)</title><rect x="932.3" y="1157" width="0.5" height="15.0" fill="rgb(244,223,44)" rx="2" ry="2" />
<text x="935.28" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (261 samples, 0.02%)</title><rect x="120.1" y="1061" width="0.2" height="15.0" fill="rgb(213,223,39)" rx="2" ry="2" />
<text x="123.07" y="1071.5" ></text>
</g>
<g >
<title>sys_pread64 (122 samples, 0.01%)</title><rect x="457.0" y="965" width="0.1" height="15.0" fill="rgb(254,155,36)" rx="2" ry="2" />
<text x="460.01" y="975.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (2,459 samples, 0.20%)</title><rect x="293.8" y="1173" width="2.4" height="15.0" fill="rgb(231,204,16)" rx="2" ry="2" />
<text x="296.81" y="1183.5" ></text>
</g>
<g >
<title>caml_apply2 (273 samples, 0.02%)</title><rect x="368.3" y="1205" width="0.3" height="15.0" fill="rgb(251,59,40)" rx="2" ry="2" />
<text x="371.30" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__loop_1739 (331 samples, 0.03%)</title><rect x="989.0" y="1301" width="0.3" height="15.0" fill="rgb(223,12,44)" rx="2" ry="2" />
<text x="992.00" y="1311.5" ></text>
</g>
<g >
<title>rotr64 (3,296 samples, 0.27%)</title><rect x="630.6" y="1189" width="3.2" height="15.0" fill="rgb(214,144,30)" rx="2" ry="2" />
<text x="633.56" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Node__list_5563 (167 samples, 0.01%)</title><rect x="369.4" y="1173" width="0.2" height="15.0" fill="rgb(231,171,53)" rx="2" ry="2" />
<text x="372.43" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__read_rec_1524 (681 samples, 0.06%)</title><rect x="95.7" y="1221" width="0.6" height="15.0" fill="rgb(245,131,26)" rx="2" ry="2" />
<text x="98.66" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_4203 (135 samples, 0.01%)</title><rect x="1171.9" y="1461" width="0.2" height="15.0" fill="rgb(227,148,34)" rx="2" ry="2" />
<text x="1174.95" y="1471.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7522 (535 samples, 0.04%)</title><rect x="437.7" y="1253" width="0.5" height="15.0" fill="rgb(233,64,33)" rx="2" ry="2" />
<text x="440.67" y="1263.5" ></text>
</g>
<g >
<title>caml_alloc_string (402 samples, 0.03%)</title><rect x="984.0" y="1349" width="0.4" height="15.0" fill="rgb(217,154,53)" rx="2" ry="2" />
<text x="987.03" y="1359.5" ></text>
</g>
<g >
<title>caml_call_gc (713 samples, 0.06%)</title><rect x="887.3" y="1253" width="0.7" height="15.0" fill="rgb(235,39,40)" rx="2" ry="2" />
<text x="890.29" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter2_1195 (1,549 samples, 0.13%)</title><rect x="496.6" y="1333" width="1.5" height="15.0" fill="rgb(244,208,54)" rx="2" ry="2" />
<text x="499.58" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__copy_1024 (117 samples, 0.01%)</title><rect x="739.1" y="1269" width="0.2" height="15.0" fill="rgb(244,131,38)" rx="2" ry="2" />
<text x="742.14" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__array__loop_1826 (175 samples, 0.01%)</title><rect x="79.6" y="1781" width="0.1" height="15.0" fill="rgb(209,4,28)" rx="2" ry="2" />
<text x="82.56" y="1791.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (171 samples, 0.01%)</title><rect x="713.9" y="1285" width="0.2" height="15.0" fill="rgb(209,33,24)" rx="2" ry="2" />
<text x="716.94" y="1295.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (776 samples, 0.06%)</title><rect x="601.2" y="1221" width="0.7" height="15.0" fill="rgb(232,112,4)" rx="2" ry="2" />
<text x="604.18" y="1231.5" ></text>
</g>
<g >
<title>mdb_mid2l_search (1,092 samples, 0.09%)</title><rect x="868.4" y="1141" width="1.0" height="15.0" fill="rgb(238,199,32)" rx="2" ry="2" />
<text x="871.38" y="1151.5" ></text>
</g>
<g >
<title>caml_digestif_blake2b_st_finalize (2,435 samples, 0.20%)</title><rect x="265.8" y="1269" width="2.3" height="15.0" fill="rgb(242,37,37)" rx="2" ry="2" />
<text x="268.78" y="1279.5" ></text>
</g>
<g >
<title>camlStdlib__bytes__fill_1054 (114 samples, 0.01%)</title><rect x="372.4" y="1221" width="0.1" height="15.0" fill="rgb(246,149,53)" rx="2" ry="2" />
<text x="375.43" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__add_10733 (149 samples, 0.01%)</title><rect x="1173.5" y="789" width="0.2" height="15.0" fill="rgb(238,205,6)" rx="2" ry="2" />
<text x="1176.52" y="799.5" ></text>
</g>
<g >
<title>camlLwt__iter_callback_list_2247 (1,321 samples, 0.11%)</title><rect x="1172.5" y="1365" width="1.3" height="15.0" fill="rgb(217,155,20)" rx="2" ry="2" />
<text x="1175.52" y="1375.5" ></text>
</g>
<g >
<title>mark_slice (118 samples, 0.01%)</title><rect x="499.3" y="1253" width="0.2" height="15.0" fill="rgb(208,82,24)" rx="2" ry="2" />
<text x="502.34" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__buffer__create_1007 (936 samples, 0.08%)</title><rect x="1165.7" y="1493" width="0.9" height="15.0" fill="rgb(236,52,18)" rx="2" ry="2" />
<text x="1168.66" y="1503.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (1,274 samples, 0.10%)</title><rect x="971.0" y="1157" width="1.2" height="15.0" fill="rgb(217,183,50)" rx="2" ry="2" />
<text x="973.99" y="1167.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__is_in_buffer_1266 (124 samples, 0.01%)</title><rect x="404.2" y="1173" width="0.2" height="15.0" fill="rgb(222,213,48)" rx="2" ry="2" />
<text x="407.24" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (375 samples, 0.03%)</title><rect x="907.4" y="1125" width="0.4" height="15.0" fill="rgb(216,115,52)" rx="2" ry="2" />
<text x="910.42" y="1135.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (1,558 samples, 0.13%)</title><rect x="700.4" y="1285" width="1.5" height="15.0" fill="rgb(233,153,6)" rx="2" ry="2" />
<text x="703.41" y="1295.5" ></text>
</g>
<g >
<title>caml_apply2 (441 samples, 0.04%)</title><rect x="470.8" y="1301" width="0.5" height="15.0" fill="rgb(217,106,6)" rx="2" ry="2" />
<text x="473.84" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (899 samples, 0.07%)</title><rect x="549.1" y="1269" width="0.9" height="15.0" fill="rgb(224,115,32)" rx="2" ry="2" />
<text x="552.10" y="1279.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__to_path_2262 (7,536 samples, 0.62%)</title><rect x="889.2" y="1253" width="7.3" height="15.0" fill="rgb(223,188,22)" rx="2" ry="2" />
<text x="892.22" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3806 (320 samples, 0.03%)</title><rect x="399.6" y="1109" width="0.3" height="15.0" fill="rgb(252,3,47)" rx="2" ry="2" />
<text x="402.61" y="1119.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (224 samples, 0.02%)</title><rect x="236.1" y="1253" width="0.2" height="15.0" fill="rgb(248,18,45)" rx="2" ry="2" />
<text x="239.13" y="1263.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (213 samples, 0.02%)</title><rect x="687.1" y="1205" width="0.2" height="15.0" fill="rgb(207,2,26)" rx="2" ry="2" />
<text x="690.11" y="1215.5" ></text>
</g>
<g >
<title>caml_alloc_string (158 samples, 0.01%)</title><rect x="255.5" y="1205" width="0.1" height="15.0" fill="rgb(236,100,14)" rx="2" ry="2" />
<text x="258.49" y="1215.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1561 (179 samples, 0.01%)</title><rect x="550.4" y="1221" width="0.2" height="15.0" fill="rgb(208,142,28)" rx="2" ry="2" />
<text x="553.44" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fields_aux_2334 (132 samples, 0.01%)</title><rect x="430.9" y="1237" width="0.2" height="15.0" fill="rgb(249,8,13)" rx="2" ry="2" />
<text x="433.93" y="1247.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (118 samples, 0.01%)</title><rect x="235.6" y="1269" width="0.1" height="15.0" fill="rgb(245,99,31)" rx="2" ry="2" />
<text x="238.60" y="1279.5" ></text>
</g>
<g >
<title>mark_slice (137 samples, 0.01%)</title><rect x="413.5" y="1141" width="0.2" height="15.0" fill="rgb(213,9,42)" rx="2" ry="2" />
<text x="416.54" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_string (161 samples, 0.01%)</title><rect x="490.1" y="1349" width="0.1" height="15.0" fill="rgb(221,100,40)" rx="2" ry="2" />
<text x="493.07" y="1359.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (586 samples, 0.05%)</title><rect x="569.3" y="1061" width="0.6" height="15.0" fill="rgb(252,151,17)" rx="2" ry="2" />
<text x="572.33" y="1071.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (120 samples, 0.01%)</title><rect x="210.5" y="1061" width="0.1" height="15.0" fill="rgb(233,221,11)" rx="2" ry="2" />
<text x="213.48" y="1071.5" ></text>
</g>
<g >
<title>caml_alloc_string (200 samples, 0.02%)</title><rect x="531.2" y="1045" width="0.2" height="15.0" fill="rgb(249,74,17)" rx="2" ry="2" />
<text x="534.19" y="1055.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (552 samples, 0.05%)</title><rect x="1184.2" y="1653" width="0.5" height="15.0" fill="rgb(207,48,33)" rx="2" ry="2" />
<text x="1187.18" y="1663.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="661" width="1.6" height="15.0" fill="rgb(213,50,4)" rx="2" ry="2" />
<text x="1189.27" y="671.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="1205" width="1.6" height="15.0" fill="rgb(212,153,26)" rx="2" ry="2" />
<text x="1189.27" y="1215.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3666 (123 samples, 0.01%)</title><rect x="106.6" y="1189" width="0.1" height="15.0" fill="rgb(248,186,6)" rx="2" ry="2" />
<text x="109.60" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,660 samples, 0.14%)</title><rect x="1186.3" y="309" width="1.6" height="15.0" fill="rgb(230,5,33)" rx="2" ry="2" />
<text x="1189.27" y="319.5" ></text>
</g>
<g >
<title>__libc_pread64 (1,247 samples, 0.10%)</title><rect x="313.8" y="1157" width="1.2" height="15.0" fill="rgb(253,108,19)" rx="2" ry="2" />
<text x="316.75" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__format__output_acc_2364 (498 samples, 0.04%)</title><rect x="926.3" y="1333" width="0.4" height="15.0" fill="rgb(218,18,13)" rx="2" ry="2" />
<text x="929.26" y="1343.5" ></text>
</g>
<g >
<title>caml_tuplify2 (558 samples, 0.05%)</title><rect x="1133.4" y="1413" width="0.5" height="15.0" fill="rgb(249,25,33)" rx="2" ry="2" />
<text x="1136.37" y="1423.5" ></text>
</g>
<g >
<title>camlBlake2__init_1072 (15,090 samples, 1.24%)</title><rect x="672.9" y="1301" width="14.6" height="15.0" fill="rgb(220,106,53)" rx="2" ry="2" />
<text x="675.90" y="1311.5" ></text>
</g>
<g >
<title>blake2b_final (312 samples, 0.03%)</title><rect x="1186.3" y="53" width="0.3" height="15.0" fill="rgb(225,69,33)" rx="2" ry="2" />
<text x="1189.28" y="63.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (681 samples, 0.06%)</title><rect x="608.7" y="1221" width="0.6" height="15.0" fill="rgb(207,125,39)" rx="2" ry="2" />
<text x="611.69" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Pack__add_9250 (18,176 samples, 1.49%)</title><rect x="335.2" y="1301" width="17.6" height="15.0" fill="rgb(205,175,20)" rx="2" ry="2" />
<text x="338.22" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__format__flush_buffer_formatter_2237 (1,527 samples, 0.13%)</title><rect x="924.5" y="1365" width="1.5" height="15.0" fill="rgb(227,226,21)" rx="2" ry="2" />
<text x="927.48" y="1375.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_8214 (272 samples, 0.02%)</title><rect x="435.6" y="1221" width="0.3" height="15.0" fill="rgb(219,20,26)" rx="2" ry="2" />
<text x="438.60" y="1231.5" ></text>
</g>
<g >
<title>camlTezos_storage__Raw_store__store_3207 (51,129 samples, 4.20%)</title><rect x="746.1" y="1285" width="49.5" height="15.0" fill="rgb(220,16,16)" rx="2" ry="2" />
<text x="749.05" y="1295.5" >camlT..</text>
</g>
<g >
<title>caml_page_table_lookup (167 samples, 0.01%)</title><rect x="800.9" y="1173" width="0.1" height="15.0" fill="rgb(243,121,34)" rx="2" ry="2" />
<text x="803.86" y="1183.5" ></text>
</g>
<g >
<title>caml_garbage_collection (129 samples, 0.01%)</title><rect x="846.2" y="1253" width="0.1" height="15.0" fill="rgb(251,176,33)" rx="2" ry="2" />
<text x="849.22" y="1263.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (141 samples, 0.01%)</title><rect x="582.6" y="1013" width="0.1" height="15.0" fill="rgb(241,166,34)" rx="2" ry="2" />
<text x="585.60" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__second_pass_4211 (262 samples, 0.02%)</title><rect x="1181.8" y="1349" width="0.3" height="15.0" fill="rgb(242,210,49)" rx="2" ry="2" />
<text x="1184.81" y="1359.5" ></text>
</g>
<g >
<title>camlLwt_list__iter_s_1068 (778 samples, 0.06%)</title><rect x="130.5" y="1253" width="0.8" height="15.0" fill="rgb(220,206,53)" rx="2" ry="2" />
<text x="133.52" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (609 samples, 0.05%)</title><rect x="556.7" y="1301" width="0.6" height="15.0" fill="rgb(234,31,39)" rx="2" ry="2" />
<text x="559.69" y="1311.5" ></text>
</g>
<g >
<title>start_thread (45,865 samples, 3.77%)</title><rect x="47.7" y="2037" width="44.5" height="15.0" fill="rgb(252,75,48)" rx="2" ry="2" />
<text x="50.70" y="2047.5" >star..</text>
</g>
<g >
<title>blake2b_compress (143 samples, 0.01%)</title><rect x="515.9" y="853" width="0.2" height="15.0" fill="rgb(235,83,46)" rx="2" ry="2" />
<text x="518.93" y="863.5" ></text>
</g>
<g >
<title>mark_slice_darken (336 samples, 0.03%)</title><rect x="953.7" y="1093" width="0.4" height="15.0" fill="rgb(241,145,7)" rx="2" ry="2" />
<text x="956.73" y="1103.5" ></text>
</g>
<g >
<title>camlStdlib__map__fold_1294 (726 samples, 0.06%)</title><rect x="1172.8" y="805" width="0.7" height="15.0" fill="rgb(246,166,17)" rx="2" ry="2" />
<text x="1175.77" y="815.5" ></text>
</g>
<g >
<title>mark_slice (216 samples, 0.02%)</title><rect x="613.5" y="1221" width="0.2" height="15.0" fill="rgb(237,204,32)" rx="2" ry="2" />
<text x="616.47" y="1231.5" ></text>
</g>
<g >
<title>invert_pointer_at (279 samples, 0.02%)</title><rect x="677.5" y="1221" width="0.2" height="15.0" fill="rgb(238,21,48)" rx="2" ry="2" />
<text x="680.46" y="1231.5" ></text>
</g>
<g >
<title>caml_garbage_collection (228 samples, 0.02%)</title><rect x="1167.9" y="1509" width="0.2" height="15.0" fill="rgb(250,35,44)" rx="2" ry="2" />
<text x="1170.90" y="1519.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (12,715 samples, 1.04%)</title><rect x="356.2" y="1221" width="12.4" height="15.0" fill="rgb(220,192,44)" rx="2" ry="2" />
<text x="359.24" y="1231.5" ></text>
</g>
<g >
<title>__fdget_pos (131 samples, 0.01%)</title><rect x="204.7" y="1141" width="0.1" height="15.0" fill="rgb(249,178,20)" rx="2" ry="2" />
<text x="207.70" y="1151.5" ></text>
</g>
<g >
<title>camlStdlib__array__fold_left_1109 (125 samples, 0.01%)</title><rect x="259.3" y="1237" width="0.1" height="15.0" fill="rgb(239,114,17)" rx="2" ry="2" />
<text x="262.32" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (399 samples, 0.03%)</title><rect x="616.5" y="1253" width="0.4" height="15.0" fill="rgb(248,38,15)" rx="2" ry="2" />
<text x="619.50" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (10,254 samples, 0.84%)</title><rect x="514.0" y="1013" width="9.9" height="15.0" fill="rgb(220,183,50)" rx="2" ry="2" />
<text x="516.97" y="1023.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (117 samples, 0.01%)</title><rect x="1187.1" y="101" width="0.1" height="15.0" fill="rgb(238,109,38)" rx="2" ry="2" />
<text x="1190.05" y="111.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__write_rec_1765 (3,103 samples, 0.25%)</title><rect x="838.8" y="1141" width="3.0" height="15.0" fill="rgb(231,139,17)" rx="2" ry="2" />
<text x="841.78" y="1151.5" ></text>
</g>
<g >
<title>rotr64 (131 samples, 0.01%)</title><rect x="512.4" y="949" width="0.1" height="15.0" fill="rgb(228,73,6)" rx="2" ry="2" />
<text x="515.38" y="959.5" ></text>
</g>
<g >
<title>caml_alloc_string (296 samples, 0.02%)</title><rect x="543.9" y="1173" width="0.3" height="15.0" fill="rgb(218,112,34)" rx="2" ry="2" />
<text x="546.93" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (141 samples, 0.01%)</title><rect x="148.6" y="1253" width="0.2" height="15.0" fill="rgb(215,189,46)" rx="2" ry="2" />
<text x="151.61" y="1263.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (758 samples, 0.06%)</title><rect x="570.8" y="1045" width="0.7" height="15.0" fill="rgb(219,176,9)" rx="2" ry="2" />
<text x="573.76" y="1055.5" ></text>
</g>
<g >
<title>camlIndex__decode_entry_1212 (113 samples, 0.01%)</title><rect x="381.8" y="1141" width="0.1" height="15.0" fill="rgb(249,77,44)" rx="2" ry="2" />
<text x="384.78" y="1151.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__fixed_length_bytes_1428 (2,404 samples, 0.20%)</title><rect x="949.3" y="1109" width="2.3" height="15.0" fill="rgb(215,163,6)" rx="2" ry="2" />
<text x="952.28" y="1119.5" ></text>
</g>
<g >
<title>caml_modify (161 samples, 0.01%)</title><rect x="436.4" y="1253" width="0.1" height="15.0" fill="rgb(241,20,34)" rx="2" ry="2" />
<text x="439.36" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__iter_1148 (5,482 samples, 0.45%)</title><rect x="687.5" y="1301" width="5.3" height="15.0" fill="rgb(248,90,6)" rx="2" ry="2" />
<text x="690.53" y="1311.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__mem_2315 (159 samples, 0.01%)</title><rect x="112.9" y="1221" width="0.1" height="15.0" fill="rgb(223,109,1)" rx="2" ry="2" />
<text x="115.88" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__map__cardinal_1485 (116 samples, 0.01%)</title><rect x="279.3" y="1221" width="0.1" height="15.0" fill="rgb(241,198,24)" rx="2" ry="2" />
<text x="282.31" y="1231.5" ></text>
</g>
<g >
<title>__GI__IO_default_xsputn (161 samples, 0.01%)</title><rect x="899.3" y="1141" width="0.1" height="15.0" fill="rgb(228,148,32)" rx="2" ry="2" />
<text x="902.25" y="1151.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (682 samples, 0.06%)</title><rect x="23.7" y="1989" width="0.7" height="15.0" fill="rgb(223,222,53)" rx="2" ry="2" />
<text x="26.71" y="1999.5" ></text>
</g>
<g >
<title>caml_hash (126 samples, 0.01%)</title><rect x="189.7" y="1157" width="0.2" height="15.0" fill="rgb(219,80,20)" rx="2" ry="2" />
<text x="192.75" y="1167.5" ></text>
</g>
<g >
<title>memcpy (214 samples, 0.02%)</title><rect x="1068.0" y="1317" width="0.3" height="15.0" fill="rgb(221,29,4)" rx="2" ry="2" />
<text x="1071.05" y="1327.5" ></text>
</g>
<g >
<title>camlIndex__find_if_exists_2842 (836 samples, 0.07%)</title><rect x="102.0" y="1157" width="0.8" height="15.0" fill="rgb(232,186,40)" rx="2" ry="2" />
<text x="104.96" y="1167.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Bytes_encodings__set_int32_be_1119 (128 samples, 0.01%)</title><rect x="842.9" y="1173" width="0.1" height="15.0" fill="rgb(218,112,17)" rx="2" ry="2" />
<text x="845.90" y="1183.5" ></text>
</g>
<g >
<title>camlLwt__apply_3372 (67,204 samples, 5.52%)</title><rect x="848.4" y="1301" width="65.2" height="15.0" fill="rgb(252,151,26)" rx="2" ry="2" />
<text x="851.42" y="1311.5" >camlLwt..</text>
</g>
<g >
<title>caml_alloc_string (344 samples, 0.03%)</title><rect x="551.9" y="1253" width="0.3" height="15.0" fill="rgb(218,40,14)" rx="2" ry="2" />
<text x="554.86" y="1263.5" ></text>
</g>
<g >
<title>ml_blake2b_final (660 samples, 0.05%)</title><rect x="501.5" y="1205" width="0.6" height="15.0" fill="rgb(242,195,34)" rx="2" ry="2" />
<text x="504.48" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (256 samples, 0.02%)</title><rect x="485.2" y="1333" width="0.3" height="15.0" fill="rgb(219,78,40)" rx="2" ry="2" />
<text x="488.25" y="1343.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__value_9784 (375 samples, 0.03%)</title><rect x="127.7" y="1093" width="0.4" height="15.0" fill="rgb(229,184,3)" rx="2" ry="2" />
<text x="130.74" y="1103.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (856 samples, 0.07%)</title><rect x="635.7" y="1253" width="0.9" height="15.0" fill="rgb(205,44,15)" rx="2" ry="2" />
<text x="638.75" y="1263.5" ></text>
</g>
<g >
<title>camlLwt__callback_2614 (40,256 samples, 3.31%)</title><rect x="93.0" y="1349" width="39.1" height="15.0" fill="rgb(239,155,45)" rx="2" ry="2" />
<text x="96.04" y="1359.5" >cam..</text>
</g>
<g >
<title>camlIndex_unix__append_1670 (577 samples, 0.05%)</title><rect x="417.1" y="1205" width="0.6" height="15.0" fill="rgb(239,71,2)" rx="2" ry="2" />
<text x="420.10" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__store_3778 (11,705 samples, 0.96%)</title><rect x="902.0" y="1285" width="11.4" height="15.0" fill="rgb(245,183,32)" rx="2" ry="2" />
<text x="905.00" y="1295.5" ></text>
</g>
<g >
<title>camlBlake2__or_fail_1069 (1,122 samples, 0.09%)</title><rect x="610.3" y="1221" width="1.1" height="15.0" fill="rgb(244,124,25)" rx="2" ry="2" />
<text x="613.34" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7623 (104 samples, 0.01%)</title><rect x="216.4" y="1221" width="0.1" height="15.0" fill="rgb(234,53,7)" rx="2" ry="2" />
<text x="219.39" y="1231.5" ></text>
</g>
<g >
<title>uECC_verify_stub (136 samples, 0.01%)</title><rect x="1173.1" y="725" width="0.1" height="15.0" fill="rgb(229,55,17)" rx="2" ry="2" />
<text x="1176.11" y="735.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__step_4316 (3,214 samples, 0.26%)</title><rect x="614.0" y="1285" width="3.1" height="15.0" fill="rgb(205,11,47)" rx="2" ry="2" />
<text x="616.98" y="1295.5" ></text>
</g>
<g >
<title>mdb_page_malloc (307 samples, 0.03%)</title><rect x="876.4" y="1189" width="0.3" height="15.0" fill="rgb(246,63,21)" rx="2" ry="2" />
<text x="879.38" y="1199.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (381 samples, 0.03%)</title><rect x="718.2" y="1237" width="0.4" height="15.0" fill="rgb(220,229,38)" rx="2" ry="2" />
<text x="721.23" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__format__advance_left_1889 (3,869 samples, 0.32%)</title><rect x="136.2" y="1333" width="3.8" height="15.0" fill="rgb(241,186,2)" rx="2" ry="2" />
<text x="139.20" y="1343.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (569 samples, 0.05%)</title><rect x="574.4" y="917" width="0.6" height="15.0" fill="rgb(247,207,18)" rx="2" ry="2" />
<text x="577.40" y="927.5" ></text>
</g>
<g >
<title>mark_slice_darken (482 samples, 0.04%)</title><rect x="814.6" y="1189" width="0.4" height="15.0" fill="rgb(253,108,21)" rx="2" ry="2" />
<text x="817.58" y="1199.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (163 samples, 0.01%)</title><rect x="408.7" y="1077" width="0.2" height="15.0" fill="rgb(210,73,13)" rx="2" ry="2" />
<text x="411.73" y="1087.5" ></text>
</g>
<g >
<title>camlTezos_base__Operation__hash_2506 (916 samples, 0.08%)</title><rect x="531.2" y="1077" width="0.8" height="15.0" fill="rgb(226,185,30)" rx="2" ry="2" />
<text x="534.16" y="1087.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (105 samples, 0.01%)</title><rect x="275.2" y="1173" width="0.1" height="15.0" fill="rgb(252,193,20)" rx="2" ry="2" />
<text x="278.20" y="1183.5" ></text>
</g>
<g >
<title>mdb_node_add (4,751 samples, 0.39%)</title><rect x="871.8" y="1189" width="4.6" height="15.0" fill="rgb(214,114,52)" rx="2" ry="2" />
<text x="874.77" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__len_3839 (192 samples, 0.02%)</title><rect x="73.1" y="1893" width="0.2" height="15.0" fill="rgb(227,164,17)" rx="2" ry="2" />
<text x="76.08" y="1903.5" ></text>
</g>
<g >
<title>camlIrmin__Hash__encode_bin_5937 (3,266 samples, 0.27%)</title><rect x="358.8" y="1189" width="3.1" height="15.0" fill="rgb(207,112,49)" rx="2" ry="2" />
<text x="361.75" y="1199.5" ></text>
</g>
<g >
<title>camlTezos_storage__Context_dump__fun_6710 (477 samples, 0.04%)</title><rect x="483.5" y="1397" width="0.5" height="15.0" fill="rgb(216,70,21)" rx="2" ry="2" />
<text x="486.55" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (200 samples, 0.02%)</title><rect x="456.0" y="1045" width="0.2" height="15.0" fill="rgb(241,222,3)" rx="2" ry="2" />
<text x="458.97" y="1055.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (925 samples, 0.08%)</title><rect x="327.5" y="1301" width="0.9" height="15.0" fill="rgb(225,13,17)" rx="2" ry="2" />
<text x="330.47" y="1311.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__hash_bytes_2183 (650 samples, 0.05%)</title><rect x="536.2" y="1125" width="0.7" height="15.0" fill="rgb(236,40,39)" rx="2" ry="2" />
<text x="539.24" y="1135.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__fun_14214 (157 samples, 0.01%)</title><rect x="118.5" y="1189" width="0.2" height="15.0" fill="rgb(234,36,27)" rx="2" ry="2" />
<text x="121.53" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (794 samples, 0.07%)</title><rect x="574.3" y="933" width="0.8" height="15.0" fill="rgb(209,149,25)" rx="2" ry="2" />
<text x="577.31" y="943.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (21,154 samples, 1.74%)</title><rect x="567.7" y="1125" width="20.6" height="15.0" fill="rgb(215,176,8)" rx="2" ry="2" />
<text x="570.74" y="1135.5" ></text>
</g>
<g >
<title>memmove (455 samples, 0.04%)</title><rect x="834.7" y="1109" width="0.5" height="15.0" fill="rgb(240,14,49)" rx="2" ry="2" />
<text x="837.73" y="1119.5" ></text>
</g>
<g >
<title>blake2b_final (598 samples, 0.05%)</title><rect x="568.6" y="1029" width="0.6" height="15.0" fill="rgb(236,21,13)" rx="2" ry="2" />
<text x="571.62" y="1039.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1,621 samples, 0.13%)</title><rect x="771.5" y="1205" width="1.5" height="15.0" fill="rgb(242,180,10)" rx="2" ry="2" />
<text x="774.47" y="1215.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (693 samples, 0.06%)</title><rect x="530.1" y="997" width="0.7" height="15.0" fill="rgb(218,37,11)" rx="2" ry="2" />
<text x="533.10" y="1007.5" ></text>
</g>
<g >
<title>camlStdlib__format__pp_flush_queue_2026 (783 samples, 0.06%)</title><rect x="1163.7" y="1493" width="0.8" height="15.0" fill="rgb(207,49,7)" rx="2" ry="2" />
<text x="1166.73" y="1503.5" ></text>
</g>
<g >
<title>ml_blake2b_final (16,764 samples, 1.38%)</title><rect x="652.8" y="1269" width="16.2" height="15.0" fill="rgb(224,139,20)" rx="2" ry="2" />
<text x="655.78" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (414 samples, 0.03%)</title><rect x="649.4" y="1269" width="0.4" height="15.0" fill="rgb(213,99,37)" rx="2" ry="2" />
<text x="652.42" y="1279.5" ></text>
</g>
<g >
<title>caml_garbage_collection (734 samples, 0.06%)</title><rect x="817.7" y="1157" width="0.7" height="15.0" fill="rgb(243,177,17)" rx="2" ry="2" />
<text x="820.70" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Type__fun_7532 (142 samples, 0.01%)</title><rect x="186.7" y="1205" width="0.1" height="15.0" fill="rgb(227,19,16)" rx="2" ry="2" />
<text x="189.66" y="1215.5" ></text>
</g>
<g >
<title>camlStdlib__map__iter_1265 (110 samples, 0.01%)</title><rect x="334.1" y="1301" width="0.1" height="15.0" fill="rgb(209,14,34)" rx="2" ry="2" />
<text x="337.14" y="1311.5" ></text>
</g>
<g >
<title>caml_garbage_collection (141 samples, 0.01%)</title><rect x="210.5" y="1077" width="0.1" height="15.0" fill="rgb(233,170,27)" rx="2" ry="2" />
<text x="213.46" y="1087.5" ></text>
</g>
<g >
<title>mark_slice (192 samples, 0.02%)</title><rect x="198.1" y="1269" width="0.2" height="15.0" fill="rgb(243,56,19)" rx="2" ry="2" />
<text x="201.13" y="1279.5" ></text>
</g>
<g >
<title>rotr64 (198 samples, 0.02%)</title><rect x="558.9" y="1189" width="0.1" height="15.0" fill="rgb(242,126,37)" rx="2" ry="2" />
<text x="561.86" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (423 samples, 0.03%)</title><rect x="961.4" y="1077" width="0.4" height="15.0" fill="rgb(249,192,17)" rx="2" ry="2" />
<text x="964.41" y="1087.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (324 samples, 0.03%)</title><rect x="429.8" y="1173" width="0.3" height="15.0" fill="rgb(224,42,4)" rx="2" ry="2" />
<text x="432.83" y="1183.5" ></text>
</g>
<g >
<title>camlDigestif__fun_7412 (179 samples, 0.01%)</title><rect x="270.1" y="1221" width="0.2" height="15.0" fill="rgb(241,225,28)" rx="2" ry="2" />
<text x="273.14" y="1231.5" ></text>
</g>
<g >
<title>caml_hash_mix_string (304 samples, 0.02%)</title><rect x="67.5" y="1893" width="0.3" height="15.0" fill="rgb(231,45,14)" rx="2" ry="2" />
<text x="70.51" y="1903.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (932 samples, 0.08%)</title><rect x="516.5" y="357" width="0.9" height="15.0" fill="rgb(230,118,22)" rx="2" ry="2" />
<text x="519.48" y="367.5" ></text>
</g>
<g >
<title>mark_slice_darken (390 samples, 0.03%)</title><rect x="941.2" y="1045" width="0.4" height="15.0" fill="rgb(246,22,26)" rx="2" ry="2" />
<text x="944.18" y="1055.5" ></text>
</g>
<g >
<title>do_compare_val (113 samples, 0.01%)</title><rect x="463.3" y="1093" width="0.1" height="15.0" fill="rgb(234,219,43)" rx="2" ry="2" />
<text x="466.31" y="1103.5" ></text>
</g>
<g >
<title>caml_garbage_collection (125 samples, 0.01%)</title><rect x="973.8" y="1109" width="0.1" height="15.0" fill="rgb(231,6,52)" rx="2" ry="2" />
<text x="976.82" y="1119.5" ></text>
</g>
<g >
<title>mdb_txn_commit (118 samples, 0.01%)</title><rect x="489.9" y="1317" width="0.1" height="15.0" fill="rgb(232,113,12)" rx="2" ry="2" />
<text x="492.90" y="1327.5" ></text>
</g>
<g >
<title>memcpy (262 samples, 0.02%)</title><rect x="633.8" y="1205" width="0.3" height="15.0" fill="rgb(247,196,34)" rx="2" ry="2" />
<text x="636.80" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_storage__Store_helpers__to_path_4384 (2,834 samples, 0.23%)</title><rect x="809.2" y="1253" width="2.7" height="15.0" fill="rgb(248,168,16)" rx="2" ry="2" />
<text x="812.18" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (398 samples, 0.03%)</title><rect x="129.8" y="1285" width="0.4" height="15.0" fill="rgb(226,224,24)" rx="2" ry="2" />
<text x="132.80" y="1295.5" ></text>
</g>
<g >
<title>mdb_cmp_memn (14,527 samples, 1.19%)</title><rect x="1033.7" y="1269" width="14.1" height="15.0" fill="rgb(254,140,4)" rx="2" ry="2" />
<text x="1036.68" y="1279.5" ></text>
</g>
<g >
<title>camlCamlinternalLazy__force_lazy_block_1062 (1,484 samples, 0.12%)</title><rect x="109.8" y="1157" width="1.4" height="15.0" fill="rgb(212,96,23)" rx="2" ry="2" />
<text x="112.78" y="1167.5" ></text>
</g>
<g >
<title>ml_blake2b_final (495 samples, 0.04%)</title><rect x="512.8" y="981" width="0.4" height="15.0" fill="rgb(205,213,42)" rx="2" ry="2" />
<text x="515.75" y="991.5" ></text>
</g>
<g >
<title>blake2b_init (152 samples, 0.01%)</title><rect x="615.6" y="1189" width="0.2" height="15.0" fill="rgb(221,8,25)" rx="2" ry="2" />
<text x="618.64" y="1199.5" ></text>
</g>
<g >
<title>camlHacl__verify_1527 (112 samples, 0.01%)</title><rect x="1172.8" y="725" width="0.1" height="15.0" fill="rgb(218,100,2)" rx="2" ry="2" />
<text x="1175.83" y="735.5" ></text>
</g>
<g >
<title>caml_alloc_shr_aux (493 samples, 0.04%)</title><rect x="983.3" y="1285" width="0.5" height="15.0" fill="rgb(215,67,11)" rx="2" ry="2" />
<text x="986.31" y="1295.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (157 samples, 0.01%)</title><rect x="467.9" y="949" width="0.2" height="15.0" fill="rgb(205,51,47)" rx="2" ry="2" />
<text x="470.92" y="959.5" ></text>
</g>
<g >
<title>camlBlake2__fun_1565 (577 samples, 0.05%)</title><rect x="569.3" y="1045" width="0.6" height="15.0" fill="rgb(211,78,50)" rx="2" ry="2" />
<text x="572.34" y="1055.5" ></text>
</g>
<g >
<title>camlTezos_raw_protocol_005_PsBabyM1__Baking__fun_8546 (726 samples, 0.06%)</title><rect x="1172.8" y="821" width="0.7" height="15.0" fill="rgb(220,110,21)" rx="2" ry="2" />
<text x="1175.77" y="831.5" ></text>
</g>
<g >
<title>camlBlake2__final_1085 (819 samples, 0.07%)</title><rect x="564.0" y="1189" width="0.8" height="15.0" fill="rgb(220,178,50)" rx="2" ry="2" />
<text x="567.00" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (3,037 samples, 0.25%)</title><rect x="515.9" y="949" width="3.0" height="15.0" fill="rgb(219,71,22)" rx="2" ry="2" />
<text x="518.91" y="959.5" ></text>
</g>
<g >
<title>camlIrmin__Type__variant_3671 (390 samples, 0.03%)</title><rect x="440.0" y="1253" width="0.4" height="15.0" fill="rgb(245,49,44)" rx="2" ry="2" />
<text x="443.05" y="1263.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (190 samples, 0.02%)</title><rect x="1177.7" y="1285" width="0.2" height="15.0" fill="rgb(205,175,1)" rx="2" ry="2" />
<text x="1180.73" y="1295.5" ></text>
</g>
<g >
<title>camlThread__fun_2004 (41,948 samples, 3.45%)</title><rect x="47.7" y="1989" width="40.7" height="15.0" fill="rgb(243,181,21)" rx="2" ry="2" />
<text x="50.74" y="1999.5" >cam..</text>
</g>
<g >
<title>caml_major_collection_slice (118 samples, 0.01%)</title><rect x="336.7" y="1189" width="0.1" height="15.0" fill="rgb(223,154,7)" rx="2" ry="2" />
<text x="339.72" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (472 samples, 0.04%)</title><rect x="311.2" y="1173" width="0.4" height="15.0" fill="rgb(220,117,34)" rx="2" ry="2" />
<text x="314.16" y="1183.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (305 samples, 0.03%)</title><rect x="1183.7" y="1557" width="0.3" height="15.0" fill="rgb(205,66,16)" rx="2" ry="2" />
<text x="1186.67" y="1567.5" ></text>
</g>
<g >
<title>mark_slice (182 samples, 0.01%)</title><rect x="798.5" y="1189" width="0.2" height="15.0" fill="rgb(243,163,54)" rx="2" ry="2" />
<text x="801.50" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__map_3926 (111 samples, 0.01%)</title><rect x="111.4" y="1109" width="0.1" height="15.0" fill="rgb(254,56,43)" rx="2" ry="2" />
<text x="114.42" y="1119.5" ></text>
</g>
<g >
<title>caml_apply4 (869 samples, 0.07%)</title><rect x="97.3" y="1317" width="0.9" height="15.0" fill="rgb(254,29,47)" rx="2" ry="2" />
<text x="100.32" y="1327.5" ></text>
</g>
<g >
<title>camlIrmin__Type__short_hash_4076 (410 samples, 0.03%)</title><rect x="346.7" y="1125" width="0.4" height="15.0" fill="rgb(250,141,39)" rx="2" ry="2" />
<text x="349.73" y="1135.5" ></text>
</g>
<g >
<title>caml_garbage_collection (229 samples, 0.02%)</title><rect x="843.6" y="1173" width="0.2" height="15.0" fill="rgb(245,53,34)" rx="2" ry="2" />
<text x="846.56" y="1183.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (432 samples, 0.04%)</title><rect x="303.2" y="1093" width="0.5" height="15.0" fill="rgb(247,88,27)" rx="2" ry="2" />
<text x="306.25" y="1103.5" ></text>
</g>
<g >
<title>mark_slice (153 samples, 0.01%)</title><rect x="619.7" y="1253" width="0.2" height="15.0" fill="rgb(221,40,12)" rx="2" ry="2" />
<text x="622.74" y="1263.5" ></text>
</g>
<g >
<title>camlDigestif__unsafe_get_1771 (116 samples, 0.01%)</title><rect x="101.5" y="1173" width="0.1" height="15.0" fill="rgb(225,26,45)" rx="2" ry="2" />
<text x="104.49" y="1183.5" ></text>
</g>
<g >
<title>caml_raise_exn (7,538 samples, 0.62%)</title><rect x="38.8" y="2037" width="7.4" height="15.0" fill="rgb(223,214,15)" rx="2" ry="2" />
<text x="41.85" y="2047.5" ></text>
</g>
<g >
<title>mark_slice (464 samples, 0.04%)</title><rect x="195.7" y="1269" width="0.5" height="15.0" fill="rgb(218,107,3)" rx="2" ry="2" />
<text x="198.73" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (124 samples, 0.01%)</title><rect x="701.8" y="1269" width="0.1" height="15.0" fill="rgb(236,39,14)" rx="2" ry="2" />
<text x="704.80" y="1279.5" ></text>
</g>
<g >
<title>camlIrmin__Type__t_3924 (251 samples, 0.02%)</title><rect x="299.1" y="1157" width="0.2" height="15.0" fill="rgb(207,17,1)" rx="2" ry="2" />
<text x="302.08" y="1167.5" ></text>
</g>
<g >
<title>camlStdlib__list__stable_sort_1358 (265 samples, 0.02%)</title><rect x="378.2" y="1237" width="0.2" height="15.0" fill="rgb(233,86,4)" rx="2" ry="2" />
<text x="381.19" y="1247.5" ></text>
</g>
<g >
<title>caml_page_table_lookup (161 samples, 0.01%)</title><rect x="711.5" y="1189" width="0.2" height="15.0" fill="rgb(239,116,52)" rx="2" ry="2" />
<text x="714.51" y="1199.5" ></text>
</g>
<g >
<title>camlIrmin__Type__triple_3377 (168 samples, 0.01%)</title><rect x="58.3" y="1893" width="0.2" height="15.0" fill="rgb(230,45,15)" rx="2" ry="2" />
<text x="61.33" y="1903.5" ></text>
</g>
<g >
<title>mark_slice (272 samples, 0.02%)</title><rect x="548.5" y="1189" width="0.3" height="15.0" fill="rgb(247,36,44)" rx="2" ry="2" />
<text x="551.50" y="1199.5" ></text>
</g>
<g >
<title>caml_garbage_collection (137 samples, 0.01%)</title><rect x="973.4" y="1189" width="0.1" height="15.0" fill="rgb(219,139,38)" rx="2" ry="2" />
<text x="976.38" y="1199.5" ></text>
</g>
<g >
<title>camlStdlib__format__take_queue_1753 (237 samples, 0.02%)</title><rect x="139.7" y="1301" width="0.2" height="15.0" fill="rgb(219,206,12)" rx="2" ry="2" />
<text x="142.72" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__append_key_value_1159 (614 samples, 0.05%)</title><rect x="75.7" y="1893" width="0.6" height="15.0" fill="rgb(231,189,24)" rx="2" ry="2" />
<text x="78.69" y="1903.5" ></text>
</g>
<g >
<title>stub_mdb_put (506 samples, 0.04%)</title><rect x="1171.1" y="1429" width="0.5" height="15.0" fill="rgb(212,89,51)" rx="2" ry="2" />
<text x="1174.09" y="1439.5" ></text>
</g>
<g >
<title>caml_apply2 (317 samples, 0.03%)</title><rect x="328.7" y="1333" width="0.3" height="15.0" fill="rgb(207,56,13)" rx="2" ry="2" />
<text x="331.73" y="1343.5" ></text>
</g>
<g >
<title>ml_blake2b_final (581 samples, 0.05%)</title><rect x="567.0" y="1077" width="0.6" height="15.0" fill="rgb(222,142,50)" rx="2" ry="2" />
<text x="570.01" y="1087.5" ></text>
</g>
<g >
<title>caml_alloc_string (117 samples, 0.01%)</title><rect x="974.9" y="1125" width="0.1" height="15.0" fill="rgb(207,139,13)" rx="2" ry="2" />
<text x="977.93" y="1135.5" ></text>
</g>
<g >
<title>camlStdlib__map__add_1108 (115 samples, 0.01%)</title><rect x="280.1" y="1221" width="0.1" height="15.0" fill="rgb(228,174,46)" rx="2" ry="2" />
<text x="283.06" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__to_hash_6658 (12,163 samples, 1.00%)</title><rect x="269.0" y="1333" width="11.8" height="15.0" fill="rgb(223,163,31)" rx="2" ry="2" />
<text x="272.03" y="1343.5" ></text>
</g>
<g >
<title>mark_slice (162 samples, 0.01%)</title><rect x="809.0" y="1189" width="0.2" height="15.0" fill="rgb(220,149,41)" rx="2" ry="2" />
<text x="812.00" y="1199.5" ></text>
</g>
<g >
<title>memmove (1,166 samples, 0.10%)</title><rect x="793.6" y="1221" width="1.1" height="15.0" fill="rgb(214,125,50)" rx="2" ry="2" />
<text x="796.58" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_custom (475 samples, 0.04%)</title><rect x="773.0" y="1205" width="0.5" height="15.0" fill="rgb(243,78,16)" rx="2" ry="2" />
<text x="776.04" y="1215.5" ></text>
</g>
<g >
<title>caml_major_collection_slice (824 samples, 0.07%)</title><rect x="516.5" y="149" width="0.8" height="15.0" fill="rgb(210,22,27)" rx="2" ry="2" />
<text x="519.55" y="159.5" ></text>
</g>
<g >
<title>camlIndex__Fan__search_1111 (128 samples, 0.01%)</title><rect x="215.1" y="1189" width="0.2" height="15.0" fill="rgb(213,96,46)" rx="2" ry="2" />
<text x="218.13" y="1199.5" ></text>
</g>
<g >
<title>caml_compact_heap (1,050 samples, 0.09%)</title><rect x="1178.0" y="1173" width="1.0" height="15.0" fill="rgb(228,227,41)" rx="2" ry="2" />
<text x="1180.99" y="1183.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__to_bytes_exn_2000 (557 samples, 0.05%)</title><rect x="582.2" y="1045" width="0.6" height="15.0" fill="rgb(251,191,34)" rx="2" ry="2" />
<text x="585.22" y="1055.5" ></text>
</g>
<g >
<title>caml_garbage_collection (571 samples, 0.05%)</title><rect x="820.2" y="1109" width="0.6" height="15.0" fill="rgb(247,6,22)" rx="2" ry="2" />
<text x="823.21" y="1119.5" ></text>
</g>
<g >
<title>mdb_cursor_put (106 samples, 0.01%)</title><rect x="1172.1" y="1445" width="0.1" height="15.0" fill="rgb(240,139,25)" rx="2" ry="2" />
<text x="1175.09" y="1455.5" ></text>
</g>
<g >
<title>mark_slice_darken (122 samples, 0.01%)</title><rect x="590.8" y="1061" width="0.2" height="15.0" fill="rgb(247,94,1)" rx="2" ry="2" />
<text x="593.84" y="1071.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (298 samples, 0.02%)</title><rect x="1182.3" y="1781" width="0.2" height="15.0" fill="rgb(208,51,11)" rx="2" ry="2" />
<text x="1185.25" y="1791.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (239 samples, 0.02%)</title><rect x="1182.3" y="1733" width="0.2" height="15.0" fill="rgb(239,11,40)" rx="2" ry="2" />
<text x="1185.25" y="1743.5" ></text>
</g>
<g >
<title>camlStdlib__list__rev_sort_1382 (474 samples, 0.04%)</title><rect x="263.5" y="1205" width="0.4" height="15.0" fill="rgb(239,62,40)" rx="2" ry="2" />
<text x="266.45" y="1215.5" ></text>
</g>
<g >
<title>camlTezos_crypto__Blake2B__compute_4367 (3,320 samples, 0.27%)</title><rect x="610.0" y="1285" width="3.3" height="15.0" fill="rgb(220,92,31)" rx="2" ry="2" />
<text x="613.05" y="1295.5" ></text>
</g>
<g >
<title>mdb_cursor_put (499 samples, 0.04%)</title><rect x="1171.1" y="1397" width="0.5" height="15.0" fill="rgb(248,192,2)" rx="2" ry="2" />
<text x="1174.10" y="1407.5" ></text>
</g>
<g >
<title>camlIrmin__Tree__value_of_map_6671 (11,870 samples, 0.98%)</title><rect x="269.2" y="1317" width="11.5" height="15.0" fill="rgb(211,56,34)" rx="2" ry="2" />
<text x="272.21" y="1327.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (308 samples, 0.03%)</title><rect x="1182.7" y="1669" width="0.3" height="15.0" fill="rgb(236,55,11)" rx="2" ry="2" />
<text x="1185.67" y="1679.5" ></text>
</g>
<g >
<title>__memcpy_ssse3 (208 samples, 0.02%)</title><rect x="242.8" y="1205" width="0.2" height="15.0" fill="rgb(210,64,5)" rx="2" ry="2" />
<text x="245.75" y="1215.5" ></text>
</g>
<g >
<title>caml_compact_heap (945 samples, 0.08%)</title><rect x="529.2" y="997" width="0.9" height="15.0" fill="rgb(213,143,54)" rx="2" ry="2" />
<text x="532.18" y="1007.5" ></text>
</g>
<g >
<title>caml_compact_heap_maybe (691 samples, 0.06%)</title><rect x="739.4" y="1237" width="0.7" height="15.0" fill="rgb(254,6,17)" rx="2" ry="2" />
<text x="742.42" y="1247.5" ></text>
</g>
<g >
<title>caml_garbage_collection (414 samples, 0.03%)</title><rect x="649.4" y="1253" width="0.4" height="15.0" fill="rgb(235,48,2)" rx="2" ry="2" />
<text x="652.42" y="1263.5" ></text>
</g>
<g >
<title>blake2b_init (108 samples, 0.01%)</title><rect x="554.8" y="1221" width="0.1" height="15.0" fill="rgb(221,16,43)" rx="2" ry="2" />
<text x="557.81" y="1231.5" ></text>
</g>
<g >
<title>caml_alloc_string (1,035 samples, 0.09%)</title><rect x="700.8" y="1269" width="1.0" height="15.0" fill="rgb(222,161,43)" rx="2" ry="2" />
<text x="703.79" y="1279.5" ></text>
</g>
<g >
<title>caml_call_gc (277 samples, 0.02%)</title><rect x="73.3" y="1893" width="0.2" height="15.0" fill="rgb(217,180,34)" rx="2" ry="2" />
<text x="76.27" y="1903.5" ></text>
</g>
<g >
<title>sweep_slice (152 samples, 0.01%)</title><rect x="795.3" y="1221" width="0.2" height="15.0" fill="rgb(225,220,43)" rx="2" ry="2" />
<text x="798.30" y="1231.5" ></text>
</g>
<g >
<title>tty_mode_ioctl (109 samples, 0.01%)</title><rect x="157.1" y="1205" width="0.1" height="15.0" fill="rgb(227,163,18)" rx="2" ry="2" />
<text x="160.08" y="1215.5" ></text>
</g>
<g >
<title>caml_curry13_12 (902 samples, 0.07%)</title><rect x="445.8" y="1221" width="0.9" height="15.0" fill="rgb(234,108,33)" rx="2" ry="2" />
<text x="448.82" y="1231.5" ></text>
</g>
<g >
<title>camlIrmin__Type__char_3591 (525 samples, 0.04%)</title><rect x="364.8" y="1157" width="0.6" height="15.0" fill="rgb(246,139,51)" rx="2" ry="2" />
<text x="367.84" y="1167.5" ></text>
</g>
<g >
<title>camlIrmin__Store__of_hash_6539 (11,196 samples, 0.92%)</title><rect x="219.8" y="1317" width="10.9" height="15.0" fill="rgb(245,129,51)" rx="2" ry="2" />
<text x="222.83" y="1327.5" ></text>
</g>
<g >
<title>__fget_light (367 samples, 0.03%)</title><rect x="156.1" y="1253" width="0.3" height="15.0" fill="rgb(221,198,13)" rx="2" ry="2" />
<text x="159.07" y="1263.5" ></text>
</g>
<g >
<title>camlIrmin__Type__$3e$7c$3d_3789 (292 samples, 0.02%)</title><rect x="398.2" y="1125" width="0.3" height="15.0" fill="rgb(253,88,13)" rx="2" ry="2" />
<text x="401.24" y="1135.5" ></text>
</g>
<g >
<title>camlJson_encoding__schema_1635 (398 samples, 0.03%)</title><rect x="1183.1" y="1829" width="0.4" height="15.0" fill="rgb(231,31,16)" rx="2" ry="2" />
<text x="1186.13" y="1839.5" ></text>
</g>
<g >
<title>blake2b_final (544 samples, 0.04%)</title><rect x="570.1" y="997" width="0.5" height="15.0" fill="rgb(242,172,44)" rx="2" ry="2" />
<text x="573.07" y="1007.5" ></text>
</g>
<g >
<title>vsnprintf (573 samples, 0.05%)</title><rect x="986.0" y="1301" width="0.5" height="15.0" fill="rgb(221,113,15)" rx="2" ry="2" />
<text x="988.97" y="1311.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_entry_from_buffer_1262 (104 samples, 0.01%)</title><rect x="306.9" y="1205" width="0.1" height="15.0" fill="rgb(216,224,10)" rx="2" ry="2" />
<text x="309.93" y="1215.5" ></text>
</g>
<g >
<title>camlJson_encoding__object_schema_2279 (180 samples, 0.01%)</title><rect x="1185.1" y="1493" width="0.1" height="15.0" fill="rgb(232,20,2)" rx="2" ry="2" />
<text x="1188.07" y="1503.5" ></text>
</g>
<g >
<title>camlIndex__Io_array__get_1270 (134 samples, 0.01%)</title><rect x="382.9" y="1157" width="0.1" height="15.0" fill="rgb(245,25,3)" rx="2" ry="2" />
<text x="385.86" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (231 samples, 0.02%)</title><rect x="88.0" y="1893" width="0.2" height="15.0" fill="rgb(236,49,19)" rx="2" ry="2" />
<text x="91.01" y="1903.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_reader__check_remaining_bytes_1075 (172 samples, 0.01%)</title><rect x="931.0" y="1189" width="0.1" height="15.0" fill="rgb(212,65,23)" rx="2" ry="2" />
<text x="933.98" y="1199.5" ></text>
</g>
<g >
<title>mark_slice_darken (124 samples, 0.01%)</title><rect x="885.1" y="1173" width="0.1" height="15.0" fill="rgb(236,198,51)" rx="2" ry="2" />
<text x="888.05" y="1183.5" ></text>
</g>
<g >
<title>secure_zero_memory (125 samples, 0.01%)</title><rect x="667.7" y="1237" width="0.1" height="15.0" fill="rgb(220,94,53)" rx="2" ry="2" />
<text x="670.71" y="1247.5" ></text>
</g>
<g >
<title>camlIrmin_pack__Inode__index_9550 (349 samples, 0.03%)</title><rect x="277.9" y="1237" width="0.3" height="15.0" fill="rgb(230,113,6)" rx="2" ry="2" />
<text x="280.88" y="1247.5" ></text>
</g>
<g >
<title>camlStdlib__list__map_1124 (1,661 samples, 0.14%)</title><rect x="1186.3" y="1941" width="1.6" height="15.0" fill="rgb(244,153,16)" rx="2" ry="2" />
<text x="1189.27" y="1951.5" ></text>
</g>
<g >
<title>camlTezos_data_encoding__Binary_writer__int_1156 (167 samples, 0.01%)</title><rect x="737.3" y="1173" width="0.1" height="15.0" fill="rgb(210,39,25)" rx="2" ry="2" />
<text x="740.25" y="1183.5" ></text>
</g>
<g >
<title>__fdget (236 samples, 0.02%)</title><rect x="314.0" y="1093" width="0.2" height="15.0" fill="rgb(235,36,21)" rx="2" ry="2" />
<text x="317.01" y="1103.5" ></text>
</g>
<g >
<title>caml_alloc_small (230 samples, 0.02%)</title><rect x="650.9" y="1301" width="0.2" height="15.0" fill="rgb(217,172,16)" rx="2" ry="2" />
<text x="653.87" y="1311.5" ></text>
</g>
<g >
<title>mdb_page_search (7,946 samples, 0.65%)</title><rect x="720.2" y="1221" width="7.7" height="15.0" fill="rgb(208,108,28)" rx="2" ry="2" />
<text x="723.22" y="1231.5" ></text>
</g>
<g >
<title>camlStdlib__hashtbl__replace_2309 (912 samples, 0.07%)</title><rect x="188.8" y="1237" width="0.8" height="15.0" fill="rgb(231,148,33)" rx="2" ry="2" />
<text x="191.76" y="1247.5" ></text>
</g>
<g >
<title>mdb_cursor_put (138 samples, 0.01%)</title><rect x="130.7" y="1157" width="0.1" height="15.0" fill="rgb(251,27,15)" rx="2" ry="2" />
<text x="133.71" y="1167.5" ></text>
</g>
<g >
<title>mark_slice_darken (221 samples, 0.02%)</title><rect x="548.5" y="1173" width="0.3" height="15.0" fill="rgb(214,220,28)" rx="2" ry="2" />
<text x="551.55" y="1183.5" ></text>
</g>
<g >
<title>all (1,216,931 samples, 100%)</t
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment