aboutsummaryrefslogtreecommitdiffhomepage
path: root/traces/20240313-1101.svg
diff options
context:
space:
mode:
Diffstat (limited to 'traces/20240313-1101.svg')
-rw-r--r--traces/20240313-1101.svg22500
1 files changed, 22500 insertions, 0 deletions
diff --git a/traces/20240313-1101.svg b/traces/20240313-1101.svg
new file mode 100644
index 0000000..2742867
--- /dev/null
+++ b/traces/20240313-1101.svg
@@ -0,0 +1,22500 @@
+<?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="6646" onload="init(evt)" viewBox="0 0 1200 6646" 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, #ignorecase { opacity:0.1; cursor:pointer; }
+ #search:hover, #search.show, #ignorecase:hover, #ignorecase.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, currentSearchTerm, ignorecase, ignorecaseBtn;
+ function init(evt) {
+ details = document.getElementById("details").firstChild;
+ searchbtn = document.getElementById("search");
+ ignorecaseBtn = document.getElementById("ignorecase");
+ unzoombtn = document.getElementById("unzoom");
+ matchedtxt = document.getElementById("matched");
+ svg = document.getElementsByTagName("svg")[0];
+ searching = 0;
+ currentSearchTerm = null;
+ }
+
+ 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();
+ else if (e.target.id == "ignorecase") toggle_ignorecase();
+ }, 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)
+
+ // ctrl-I to toggle case-sensitive search
+ window.addEventListener("keydown",function (e) {
+ if (e.ctrlKey && e.keyCode === 73) {
+ e.preventDefault();
+ toggle_ignorecase();
+ }
+ }, 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);
+ }
+ }
+ }
+ search();
+ }
+ 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();
+ }
+
+ // search
+ function toggle_ignorecase() {
+ ignorecase = !ignorecase;
+ if (ignorecase) {
+ ignorecaseBtn.classList.add("show");
+ } else {
+ ignorecaseBtn.classList.remove("show");
+ }
+ reset_search();
+ 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_)"
+ + (ignorecase ? ", ignoring case" : "")
+ + "\nPress Ctrl-i to toggle case sensitivity", "");
+ if (term != null) {
+ currentSearchTerm = term;
+ search();
+ }
+ } else {
+ reset_search();
+ searching = 0;
+ currentSearchTerm = null;
+ searchbtn.classList.remove("show");
+ searchbtn.firstChild.nodeValue = "Search"
+ matchedtxt.classList.add("hide");
+ matchedtxt.firstChild.nodeValue = ""
+ }
+ }
+ function search(term) {
+ if (currentSearchTerm === null) return;
+ var term = currentSearchTerm;
+
+ var re = new RegExp(term, ignorecase ? 'i' : '');
+ 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="6646.0" fill="url(#background)" />
+<text id="title" x="600.00" y="24" >Flame Graph</text>
+<text id="details" x="10.00" y="6629" > </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="ignorecase" x="1174.00" y="24" >ic</text>
+<text id="matched" x="1090.00" y="6629" > </text>
+<g id="frames">
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="301.6" y="5013" width="0.5" height="15.0" fill="rgb(242,25,49)" rx="2" ry="2" />
+<text x="304.65" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="746.7" y="5301" width="0.4" height="15.0" fill="rgb(252,15,22)" rx="2" ry="2" />
+<text x="749.66" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.67%)</title><rect x="438.3" y="4709" width="7.9" height="15.0" fill="rgb(233,149,2)" rx="2" ry="2" />
+<text x="441.25" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4533" width="0.9" height="15.0" fill="rgb(228,146,3)" rx="2" ry="2" />
+<text x="467.23" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="521.2" y="5797" width="0.4" height="15.0" fill="rgb(247,126,47)" rx="2" ry="2" />
+<text x="524.22" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="1064.3" y="6405" width="7.1" height="15.0" fill="rgb(247,205,45)" rx="2" ry="2" />
+<text x="1067.29" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="342.7" y="5029" width="0.9" height="15.0" fill="rgb(234,150,3)" rx="2" ry="2" />
+<text x="345.71" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="509.9" y="5077" width="0.8" height="15.0" fill="rgb(210,189,39)" rx="2" ry="2" />
+<text x="512.91" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (143 samples, 5.08%)</title><rect x="386.7" y="5157" width="59.9" height="15.0" fill="rgb(237,36,52)" rx="2" ry="2" />
+<text x="389.71" y="5167.5" >Nsfisi..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3781" width="0.4" height="15.0" fill="rgb(245,148,7)" rx="2" ry="2" />
+<text x="546.43" y="3791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.96%)</title><rect x="483.5" y="5365" width="11.3" height="15.0" fill="rgb(241,66,12)" rx="2" ry="2" />
+<text x="486.51" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="355.3" y="5173" width="0.4" height="15.0" fill="rgb(217,78,7)" rx="2" ry="2" />
+<text x="358.28" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4997" width="0.9" height="15.0" fill="rgb(250,23,23)" rx="2" ry="2" />
+<text x="345.71" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4389" width="0.9" height="15.0" fill="rgb(214,139,41)" rx="2" ry="2" />
+<text x="467.23" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5717" width="0.4" height="15.0" fill="rgb(213,102,36)" rx="2" ry="2" />
+<text x="768.10" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4405" width="0.4" height="15.0" fill="rgb(245,169,5)" rx="2" ry="2" />
+<text x="1073.99" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5141" width="0.4" height="15.0" fill="rgb(231,31,53)" rx="2" ry="2" />
+<text x="563.19" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5701" width="0.8" height="15.0" fill="rgb(224,165,54)" rx="2" ry="2" />
+<text x="1120.09" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5141" width="0.9" height="15.0" fill="rgb(246,14,4)" rx="2" ry="2" />
+<text x="746.73" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="525.0" y="5877" width="6.7" height="15.0" fill="rgb(209,116,23)" rx="2" ry="2" />
+<text x="527.99" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5765" width="0.4" height="15.0" fill="rgb(208,65,40)" rx="2" ry="2" />
+<text x="1073.99" y="5775.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2357" width="0.4" height="15.0" fill="rgb(217,22,1)" rx="2" ry="2" />
+<text x="546.43" y="2367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3429" width="0.4" height="15.0" fill="rgb(213,32,25)" rx="2" ry="2" />
+<text x="437.90" y="3439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:264-267) (12 samples, 0.43%)</title><rect x="10.4" y="6533" width="5.0" height="15.0" fill="rgb(253,226,27)" rx="2" ry="2" />
+<text x="13.42" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="696.4" y="5205" width="2.9" height="15.0" fill="rgb(238,141,34)" rx="2" ry="2" />
+<text x="699.38" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4469" width="0.8" height="15.0" fill="rgb(227,184,54)" rx="2" ry="2" />
+<text x="429.10" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="5141" width="0.4" height="15.0" fill="rgb(226,80,9)" rx="2" ry="2" />
+<text x="351.58" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="328.9" y="4965" width="0.8" height="15.0" fill="rgb(227,65,46)" rx="2" ry="2" />
+<text x="331.88" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5525" width="0.4" height="15.0" fill="rgb(216,0,30)" rx="2" ry="2" />
+<text x="897.16" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4613" width="5.8" height="15.0" fill="rgb(210,22,36)" rx="2" ry="2" />
+<text x="490.28" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="434.1" y="4917" width="2.5" height="15.0" fill="rgb(252,114,7)" rx="2" ry="2" />
+<text x="437.06" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5285" width="0.8" height="15.0" fill="rgb(253,42,6)" rx="2" ry="2" />
+<text x="1120.09" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="809.9" y="5717" width="10.5" height="15.0" fill="rgb(221,212,6)" rx="2" ry="2" />
+<text x="812.94" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1147.7" y="6549" width="0.4" height="15.0" fill="rgb(214,115,13)" rx="2" ry="2" />
+<text x="1150.68" y="6559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3397" width="0.4" height="15.0" fill="rgb(212,178,36)" rx="2" ry="2" />
+<text x="546.43" y="3407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="747.1" y="5349" width="9.2" height="15.0" fill="rgb(234,52,9)" rx="2" ry="2" />
+<text x="750.08" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4869" width="0.9" height="15.0" fill="rgb(213,65,44)" rx="2" ry="2" />
+<text x="388.04" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="222.5" y="6437" width="0.4" height="15.0" fill="rgb(226,2,4)" rx="2" ry="2" />
+<text x="225.45" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="6021" width="0.4" height="15.0" fill="rgb(243,187,2)" rx="2" ry="2" />
+<text x="896.32" y="6031.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="597" width="0.4" height="15.0" fill="rgb(227,61,8)" rx="2" ry="2" />
+<text x="546.43" y="607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (8 samples, 0.28%)</title><rect x="225.4" y="6485" width="3.3" height="15.0" fill="rgb(230,4,32)" rx="2" ry="2" />
+<text x="228.38" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4565" width="0.4" height="15.0" fill="rgb(238,220,24)" rx="2" ry="2" />
+<text x="412.76" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5429" width="1.3" height="15.0" fill="rgb(237,179,30)" rx="2" ry="2" />
+<text x="760.14" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="4821" width="0.4" height="15.0" fill="rgb(226,82,46)" rx="2" ry="2" />
+<text x="487.77" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (33 samples, 1.17%)</title><rect x="398.9" y="4965" width="13.8" height="15.0" fill="rgb(209,21,47)" rx="2" ry="2" />
+<text x="401.86" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="767.2" y="5509" width="2.5" height="15.0" fill="rgb(252,88,37)" rx="2" ry="2" />
+<text x="770.19" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,231 samples, 43.71%)</title><rect x="250.1" y="6341" width="515.8" height="15.0" fill="rgb(232,114,5)" rx="2" ry="2" />
+<text x="253.11" y="6351.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="756.7" y="5429" width="0.4" height="15.0" fill="rgb(239,55,31)" rx="2" ry="2" />
+<text x="759.72" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="755.9" y="5237" width="0.4" height="15.0" fill="rgb(206,178,43)" rx="2" ry="2" />
+<text x="758.88" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="360.7" y="5141" width="17.6" height="15.0" fill="rgb(213,116,13)" rx="2" ry="2" />
+<text x="363.73" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="281.5" y="4837" width="0.9" height="15.0" fill="rgb(252,155,51)" rx="2" ry="2" />
+<text x="284.53" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="779.8" y="5445" width="17.6" height="15.0" fill="rgb(245,9,42)" rx="2" ry="2" />
+<text x="782.77" y="5455.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="85" width="0.4" height="15.0" fill="rgb(219,42,14)" rx="2" ry="2" />
+<text x="546.43" y="95.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="740.4" y="5189" width="4.2" height="15.0" fill="rgb(227,158,31)" rx="2" ry="2" />
+<text x="743.38" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="763.8" y="5973" width="1.7" height="15.0" fill="rgb(241,6,38)" rx="2" ry="2" />
+<text x="766.84" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (7 samples, 0.25%)</title><rect x="1146.0" y="6565" width="2.9" height="15.0" fill="rgb(245,119,14)" rx="2" ry="2" />
+<text x="1149.00" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4661" width="0.4" height="15.0" fill="rgb(230,77,34)" rx="2" ry="2" />
+<text x="412.76" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="554.7" y="5525" width="0.5" height="15.0" fill="rgb(234,92,15)" rx="2" ry="2" />
+<text x="557.74" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="279.0" y="4645" width="0.4" height="15.0" fill="rgb(251,98,17)" rx="2" ry="2" />
+<text x="282.02" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6261" width="1.3" height="15.0" fill="rgb(236,36,11)" rx="2" ry="2" />
+<text x="768.94" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4501" width="0.5" height="15.0" fill="rgb(249,132,40)" rx="2" ry="2" />
+<text x="346.13" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="282.8" y="5109" width="0.4" height="15.0" fill="rgb(245,3,1)" rx="2" ry="2" />
+<text x="285.79" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4837" width="0.9" height="15.0" fill="rgb(224,228,6)" rx="2" ry="2" />
+<text x="388.04" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (635 samples, 22.55%)</title><rect x="253.5" y="5573" width="266.0" height="15.0" fill="rgb(221,212,27)" rx="2" ry="2" />
+<text x="256.46" y="5583.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="481.8" y="5317" width="1.3" height="15.0" fill="rgb(241,226,53)" rx="2" ry="2" />
+<text x="484.83" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="511.2" y="5285" width="0.4" height="15.0" fill="rgb(232,80,34)" rx="2" ry="2" />
+<text x="514.16" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="438.3" y="4725" width="7.9" height="15.0" fill="rgb(252,181,11)" rx="2" ry="2" />
+<text x="441.25" y="4735.5" ></text>
+</g>
+<g >
+<title>print_r (2 samples, 0.07%)</title><rect x="1189.2" y="6565" width="0.8" height="15.0" fill="rgb(224,50,8)" rx="2" ry="2" />
+<text x="1192.16" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="756.3" y="5365" width="0.4" height="15.0" fill="rgb(212,106,10)" rx="2" ry="2" />
+<text x="759.30" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="279.9" y="4949" width="1.2" height="15.0" fill="rgb(216,37,14)" rx="2" ry="2" />
+<text x="282.86" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (3 samples, 0.11%)</title><rect x="150.4" y="6469" width="1.2" height="15.0" fill="rgb(242,197,9)" rx="2" ry="2" />
+<text x="153.38" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="543.8" y="5493" width="5.5" height="15.0" fill="rgb(254,174,39)" rx="2" ry="2" />
+<text x="546.85" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="4885" width="0.9" height="15.0" fill="rgb(236,217,0)" rx="2" ry="2" />
+<text x="345.71" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5749" width="0.4" height="15.0" fill="rgb(217,86,54)" rx="2" ry="2" />
+<text x="774.80" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="562.7" y="5605" width="0.4" height="15.0" fill="rgb(253,55,28)" rx="2" ry="2" />
+<text x="565.71" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (51 samples, 1.81%)</title><rect x="725.3" y="5301" width="21.4" height="15.0" fill="rgb(215,11,54)" rx="2" ry="2" />
+<text x="728.29" y="5311.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (45 samples, 1.60%)</title><rect x="535.5" y="5605" width="18.8" height="15.0" fill="rgb(210,104,0)" rx="2" ry="2" />
+<text x="538.47" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (42 samples, 1.49%)</title><rect x="496.1" y="5397" width="17.6" height="15.0" fill="rgb(227,97,49)" rx="2" ry="2" />
+<text x="499.08" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5285" width="0.4" height="15.0" fill="rgb(216,36,39)" rx="2" ry="2" />
+<text x="561.10" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4997" width="0.4" height="15.0" fill="rgb(230,68,8)" rx="2" ry="2" />
+<text x="487.77" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="682.1" y="5397" width="0.4" height="15.0" fill="rgb(232,207,0)" rx="2" ry="2" />
+<text x="685.13" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5237" width="0.4" height="15.0" fill="rgb(228,219,6)" rx="2" ry="2" />
+<text x="1073.99" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4917" width="0.4" height="15.0" fill="rgb(215,124,51)" rx="2" ry="2" />
+<text x="463.88" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5365" width="0.4" height="15.0" fill="rgb(209,140,25)" rx="2" ry="2" />
+<text x="561.10" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.92%)</title><rect x="777.3" y="5541" width="22.6" height="15.0" fill="rgb(225,170,48)" rx="2" ry="2" />
+<text x="780.25" y="5551.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="284.5" y="5173" width="4.2" height="15.0" fill="rgb(234,65,15)" rx="2" ry="2" />
+<text x="287.47" y="5183.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1175.8" y="6565" width="0.4" height="15.0" fill="rgb(252,144,10)" rx="2" ry="2" />
+<text x="1178.75" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="5141" width="0.9" height="15.0" fill="rgb(237,32,26)" rx="2" ry="2" />
+<text x="345.71" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (144 samples, 5.11%)</title><rect x="831.3" y="5717" width="60.3" height="15.0" fill="rgb(253,63,30)" rx="2" ry="2" />
+<text x="834.31" y="5727.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5173" width="0.4" height="15.0" fill="rgb(240,16,17)" rx="2" ry="2" />
+<text x="896.32" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.9" y="4885" width="0.5" height="15.0" fill="rgb(220,120,32)" rx="2" ry="2" />
+<text x="310.93" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4341" width="0.8" height="15.0" fill="rgb(235,35,16)" rx="2" ry="2" />
+<text x="1120.09" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="559.4" y="5589" width="0.4" height="15.0" fill="rgb(250,42,44)" rx="2" ry="2" />
+<text x="562.35" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="527.9" y="5605" width="3.4" height="15.0" fill="rgb(247,107,24)" rx="2" ry="2" />
+<text x="530.93" y="5615.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="629" width="0.4" height="15.0" fill="rgb(227,180,28)" rx="2" ry="2" />
+<text x="546.43" y="639.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1701" width="0.4" height="15.0" fill="rgb(234,89,45)" rx="2" ry="2" />
+<text x="546.43" y="1711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4629" width="0.4" height="15.0" fill="rgb(247,46,54)" rx="2" ry="2" />
+<text x="1073.99" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (70 samples, 2.49%)</title><rect x="311.7" y="5077" width="29.3" height="15.0" fill="rgb(235,107,19)" rx="2" ry="2" />
+<text x="314.70" y="5087.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (100 samples, 3.55%)</title><rect x="714.8" y="5429" width="41.9" height="15.0" fill="rgb(254,214,34)" rx="2" ry="2" />
+<text x="717.82" y="5439.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="4917" width="0.4" height="15.0" fill="rgb(221,113,50)" rx="2" ry="2" />
+<text x="475.19" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="822.1" y="5845" width="0.4" height="15.0" fill="rgb(227,127,52)" rx="2" ry="2" />
+<text x="825.09" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1076.4" y="6405" width="0.9" height="15.0" fill="rgb(208,185,53)" rx="2" ry="2" />
+<text x="1079.44" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4629" width="0.4" height="15.0" fill="rgb(222,74,18)" rx="2" ry="2" />
+<text x="412.76" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="429.0" y="4965" width="17.6" height="15.0" fill="rgb(228,102,26)" rx="2" ry="2" />
+<text x="432.03" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.46%)</title><rect x="683.8" y="5365" width="5.5" height="15.0" fill="rgb(245,194,21)" rx="2" ry="2" />
+<text x="686.81" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="463.4" y="4853" width="1.7" height="15.0" fill="rgb(245,99,34)" rx="2" ry="2" />
+<text x="466.39" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="890.0" y="5557" width="0.8" height="15.0" fill="rgb(227,206,7)" rx="2" ry="2" />
+<text x="892.97" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="276.5" y="4837" width="3.4" height="15.0" fill="rgb(249,132,0)" rx="2" ry="2" />
+<text x="279.51" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (1 samples, 0.04%)</title><rect x="301.6" y="5077" width="0.5" height="15.0" fill="rgb(251,216,26)" rx="2" ry="2" />
+<text x="304.65" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4773" width="0.4" height="15.0" fill="rgb(212,160,12)" rx="2" ry="2" />
+<text x="463.88" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="179.3" y="6501" width="0.4" height="15.0" fill="rgb(219,105,9)" rx="2" ry="2" />
+<text x="182.29" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit (2 samples, 0.07%)</title><rect x="15.9" y="6533" width="0.8" height="15.0" fill="rgb(212,92,45)" rx="2" ry="2" />
+<text x="18.87" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="282.8" y="4965" width="0.4" height="15.0" fill="rgb(208,225,0)" rx="2" ry="2" />
+<text x="285.79" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="457.5" y="4949" width="0.9" height="15.0" fill="rgb(252,21,45)" rx="2" ry="2" />
+<text x="460.53" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4853" width="0.8" height="15.0" fill="rgb(223,212,28)" rx="2" ry="2" />
+<text x="276.99" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (636 samples, 22.59%)</title><rect x="253.5" y="5717" width="266.5" height="15.0" fill="rgb(236,162,40)" rx="2" ry="2" />
+<text x="256.46" y="5727.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4933" width="0.4" height="15.0" fill="rgb(247,19,37)" rx="2" ry="2" />
+<text x="760.98" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="279.0" y="4661" width="0.4" height="15.0" fill="rgb(239,80,7)" rx="2" ry="2" />
+<text x="282.02" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4405" width="0.4" height="15.0" fill="rgb(211,72,15)" rx="2" ry="2" />
+<text x="412.76" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="5077" width="0.4" height="15.0" fill="rgb(209,139,4)" rx="2" ry="2" />
+<text x="351.58" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="5029" width="1.3" height="15.0" fill="rgb(239,212,3)" rx="2" ry="2" />
+<text x="348.65" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="499.4" y="5189" width="3.4" height="15.0" fill="rgb(215,124,43)" rx="2" ry="2" />
+<text x="502.43" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="767.2" y="6021" width="2.9" height="15.0" fill="rgb(210,160,49)" rx="2" ry="2" />
+<text x="770.19" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="252.6" y="5749" width="0.9" height="15.0" fill="rgb(205,219,33)" rx="2" ry="2" />
+<text x="255.62" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="564.8" y="5461" width="1.7" height="15.0" fill="rgb(208,117,37)" rx="2" ry="2" />
+<text x="567.80" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="396.8" y="4805" width="0.4" height="15.0" fill="rgb(217,69,52)" rx="2" ry="2" />
+<text x="399.77" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6021" width="0.4" height="15.0" fill="rgb(251,8,33)" rx="2" ry="2" />
+<text x="1073.99" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.4" y="5941" width="0.4" height="15.0" fill="rgb(208,162,49)" rx="2" ry="2" />
+<text x="766.42" y="5951.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4917" width="0.4" height="15.0" fill="rgb(239,148,18)" rx="2" ry="2" />
+<text x="546.43" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4821" width="1.7" height="15.0" fill="rgb(214,198,35)" rx="2" ry="2" />
+<text x="429.10" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="346.9" y="5061" width="0.4" height="15.0" fill="rgb(225,101,8)" rx="2" ry="2" />
+<text x="349.90" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5781" width="0.4" height="15.0" fill="rgb(236,29,1)" rx="2" ry="2" />
+<text x="767.68" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="835.5" y="5509" width="0.8" height="15.0" fill="rgb(247,138,0)" rx="2" ry="2" />
+<text x="838.50" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1109.5" y="6341" width="0.5" height="15.0" fill="rgb(228,91,54)" rx="2" ry="2" />
+<text x="1112.55" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 1.95%)</title><rect x="776.8" y="5557" width="23.1" height="15.0" fill="rgb(213,52,9)" rx="2" ry="2" />
+<text x="779.83" y="5567.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="524.2" y="5717" width="0.4" height="15.0" fill="rgb(242,207,2)" rx="2" ry="2" />
+<text x="527.15" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4149" width="0.5" height="15.0" fill="rgb(222,101,46)" rx="2" ry="2" />
+<text x="480.64" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1070.2" y="6261" width="1.2" height="15.0" fill="rgb(251,176,37)" rx="2" ry="2" />
+<text x="1073.16" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="281.5" y="4869" width="0.9" height="15.0" fill="rgb(240,223,22)" rx="2" ry="2" />
+<text x="284.53" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5189" width="0.4" height="15.0" fill="rgb(236,111,32)" rx="2" ry="2" />
+<text x="685.13" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="343.6" y="5221" width="5.4" height="15.0" fill="rgb(205,63,27)" rx="2" ry="2" />
+<text x="346.55" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="758.4" y="5461" width="0.4" height="15.0" fill="rgb(248,217,9)" rx="2" ry="2" />
+<text x="761.39" y="5471.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4453" width="0.4" height="15.0" fill="rgb(245,209,33)" rx="2" ry="2" />
+<text x="546.43" y="4463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4037" width="0.4" height="15.0" fill="rgb(217,110,11)" rx="2" ry="2" />
+<text x="546.43" y="4047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="426.1" y="4677" width="0.8" height="15.0" fill="rgb(226,180,16)" rx="2" ry="2" />
+<text x="429.10" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="476.4" y="4821" width="2.9" height="15.0" fill="rgb(228,104,20)" rx="2" ry="2" />
+<text x="479.38" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5717" width="0.4" height="15.0" fill="rgb(236,159,6)" rx="2" ry="2" />
+<text x="896.32" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1813" width="0.4" height="15.0" fill="rgb(205,216,30)" rx="2" ry="2" />
+<text x="546.43" y="1823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4917" width="1.7" height="15.0" fill="rgb(221,145,28)" rx="2" ry="2" />
+<text x="429.10" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.4" y="4853" width="0.5" height="15.0" fill="rgb(205,124,11)" rx="2" ry="2" />
+<text x="489.44" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="562.7" y="5525" width="0.4" height="15.0" fill="rgb(242,221,50)" rx="2" ry="2" />
+<text x="565.71" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4597" width="0.8" height="15.0" fill="rgb(235,186,42)" rx="2" ry="2" />
+<text x="1120.09" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4981" width="0.5" height="15.0" fill="rgb(253,209,33)" rx="2" ry="2" />
+<text x="469.75" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (26 samples, 0.92%)</title><rect x="520.8" y="6021" width="10.9" height="15.0" fill="rgb(239,221,16)" rx="2" ry="2" />
+<text x="523.80" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="527.9" y="5621" width="3.4" height="15.0" fill="rgb(247,98,31)" rx="2" ry="2" />
+<text x="530.93" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5397" width="0.4" height="15.0" fill="rgb(207,13,4)" rx="2" ry="2" />
+<text x="529.67" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2389" width="0.4" height="15.0" fill="rgb(247,202,46)" rx="2" ry="2" />
+<text x="546.43" y="2399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="5061" width="0.4" height="15.0" fill="rgb(250,196,53)" rx="2" ry="2" />
+<text x="475.19" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4421" width="0.4" height="15.0" fill="rgb(221,140,43)" rx="2" ry="2" />
+<text x="414.02" y="4431.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3445" width="0.4" height="15.0" fill="rgb(225,18,44)" rx="2" ry="2" />
+<text x="546.43" y="3455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6325" width="0.4" height="15.0" fill="rgb(212,93,12)" rx="2" ry="2" />
+<text x="1125.12" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Types\FuncType::equals (1 samples, 0.04%)</title><rect x="566.9" y="5525" width="0.4" height="15.0" fill="rgb(229,160,7)" rx="2" ry="2" />
+<text x="569.90" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="763.0" y="6069" width="2.5" height="15.0" fill="rgb(227,194,5)" rx="2" ry="2" />
+<text x="766.00" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (17 samples, 0.60%)</title><rect x="1165.3" y="6581" width="7.1" height="15.0" fill="rgb(232,65,3)" rx="2" ry="2" />
+<text x="1168.28" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (83 samples, 2.95%)</title><rect x="532.5" y="5797" width="34.8" height="15.0" fill="rgb(215,15,15)" rx="2" ry="2" />
+<text x="535.54" y="5807.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="463.4" y="4885" width="1.7" height="15.0" fill="rgb(229,133,49)" rx="2" ry="2" />
+<text x="466.39" y="4895.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3957" width="0.4" height="15.0" fill="rgb(242,34,45)" rx="2" ry="2" />
+<text x="546.43" y="3967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="527.9" y="5541" width="3.0" height="15.0" fill="rgb(221,168,5)" rx="2" ry="2" />
+<text x="530.93" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="885.4" y="5429" width="0.4" height="15.0" fill="rgb(228,99,15)" rx="2" ry="2" />
+<text x="888.36" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="282.8" y="4949" width="0.4" height="15.0" fill="rgb(233,84,26)" rx="2" ry="2" />
+<text x="285.79" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="532.1" y="5781" width="0.4" height="15.0" fill="rgb(241,195,23)" rx="2" ry="2" />
+<text x="535.12" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="836.3" y="5605" width="0.9" height="15.0" fill="rgb(221,38,50)" rx="2" ry="2" />
+<text x="839.34" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5669" width="0.4" height="15.0" fill="rgb(219,94,17)" rx="2" ry="2" />
+<text x="767.68" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="410.6" y="4757" width="0.8" height="15.0" fill="rgb(209,192,8)" rx="2" ry="2" />
+<text x="413.60" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5157" width="0.4" height="15.0" fill="rgb(215,170,8)" rx="2" ry="2" />
+<text x="1073.99" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="283.2" y="5093" width="1.3" height="15.0" fill="rgb(219,106,49)" rx="2" ry="2" />
+<text x="286.21" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3797" width="5.0" height="15.0" fill="rgb(220,70,0)" rx="2" ry="2" />
+<text x="491.12" y="3807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="478.1" y="4757" width="1.2" height="15.0" fill="rgb(248,77,48)" rx="2" ry="2" />
+<text x="481.06" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4373" width="0.9" height="15.0" fill="rgb(253,40,27)" rx="2" ry="2" />
+<text x="467.23" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5365" width="0.4" height="15.0" fill="rgb(246,43,38)" rx="2" ry="2" />
+<text x="563.19" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="800.7" y="5685" width="0.4" height="15.0" fill="rgb(218,168,39)" rx="2" ry="2" />
+<text x="803.72" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1138.5" y="6549" width="0.4" height="15.0" fill="rgb(218,51,0)" rx="2" ry="2" />
+<text x="1141.46" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="247.6" y="6021" width="0.4" height="15.0" fill="rgb(228,131,51)" rx="2" ry="2" />
+<text x="250.59" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4677" width="0.8" height="15.0" fill="rgb(236,221,0)" rx="2" ry="2" />
+<text x="1120.09" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4757" width="0.9" height="15.0" fill="rgb(236,27,43)" rx="2" ry="2" />
+<text x="388.04" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="768.0" y="5285" width="0.5" height="15.0" fill="rgb(245,11,15)" rx="2" ry="2" />
+<text x="771.03" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="334.8" y="4853" width="0.4" height="15.0" fill="rgb(242,202,34)" rx="2" ry="2" />
+<text x="337.75" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="531.3" y="5701" width="0.4" height="15.0" fill="rgb(246,153,17)" rx="2" ry="2" />
+<text x="534.28" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1076.4" y="6421" width="0.9" height="15.0" fill="rgb(254,62,35)" rx="2" ry="2" />
+<text x="1079.44" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="545.1" y="5445" width="4.2" height="15.0" fill="rgb(231,44,8)" rx="2" ry="2" />
+<text x="548.11" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (31 samples, 1.10%)</title><rect x="498.2" y="5285" width="13.0" height="15.0" fill="rgb(254,76,9)" rx="2" ry="2" />
+<text x="501.17" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="5045" width="0.4" height="15.0" fill="rgb(217,38,44)" rx="2" ry="2" />
+<text x="351.58" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3621" width="0.4" height="15.0" fill="rgb(253,96,51)" rx="2" ry="2" />
+<text x="437.90" y="3631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5717" width="0.4" height="15.0" fill="rgb(240,39,21)" rx="2" ry="2" />
+<text x="523.38" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2181" width="0.4" height="15.0" fill="rgb(248,62,24)" rx="2" ry="2" />
+<text x="546.43" y="2191.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3349" width="0.4" height="15.0" fill="rgb(242,219,16)" rx="2" ry="2" />
+<text x="546.43" y="3359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="759.2" y="5909" width="2.5" height="15.0" fill="rgb(205,34,50)" rx="2" ry="2" />
+<text x="762.23" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="744.6" y="5237" width="0.4" height="15.0" fill="rgb(225,102,3)" rx="2" ry="2" />
+<text x="747.57" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="520.8" y="5925" width="10.9" height="15.0" fill="rgb(242,72,45)" rx="2" ry="2" />
+<text x="523.80" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5573" width="1.3" height="15.0" fill="rgb(233,165,16)" rx="2" ry="2" />
+<text x="760.14" y="5583.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1189" width="0.4" height="15.0" fill="rgb(218,107,22)" rx="2" ry="2" />
+<text x="546.43" y="1199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="396.3" y="4933" width="2.1" height="15.0" fill="rgb(249,229,38)" rx="2" ry="2" />
+<text x="399.35" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.6" y="5077" width="0.4" height="15.0" fill="rgb(235,61,24)" rx="2" ry="2" />
+<text x="294.59" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.9" y="4549" width="0.9" height="15.0" fill="rgb(239,132,44)" rx="2" ry="2" />
+<text x="429.94" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="328.9" y="4981" width="0.8" height="15.0" fill="rgb(222,24,17)" rx="2" ry="2" />
+<text x="331.88" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="6117" width="0.4" height="15.0" fill="rgb(239,140,48)" rx="2" ry="2" />
+<text x="896.32" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="877.8" y="5589" width="0.4" height="15.0" fill="rgb(217,11,46)" rx="2" ry="2" />
+<text x="880.82" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="525.4" y="5413" width="0.8" height="15.0" fill="rgb(213,187,53)" rx="2" ry="2" />
+<text x="528.41" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="746.7" y="5253" width="0.4" height="15.0" fill="rgb(237,90,50)" rx="2" ry="2" />
+<text x="749.66" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="804.9" y="5685" width="0.4" height="15.0" fill="rgb(231,160,20)" rx="2" ry="2" />
+<text x="807.91" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="472.6" y="5189" width="7.1" height="15.0" fill="rgb(241,198,3)" rx="2" ry="2" />
+<text x="475.61" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="517.9" y="5093" width="0.4" height="15.0" fill="rgb(233,72,54)" rx="2" ry="2" />
+<text x="520.87" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5061" width="0.4" height="15.0" fill="rgb(233,114,30)" rx="2" ry="2" />
+<text x="563.19" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5317" width="0.4" height="15.0" fill="rgb(220,190,42)" rx="2" ry="2" />
+<text x="1073.99" y="5327.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1173.2" y="6565" width="0.5" height="15.0" fill="rgb(221,160,51)" rx="2" ry="2" />
+<text x="1176.24" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4325" width="0.4" height="15.0" fill="rgb(240,12,38)" rx="2" ry="2" />
+<text x="443.77" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4917" width="0.4" height="15.0" fill="rgb(254,105,21)" rx="2" ry="2" />
+<text x="760.98" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="406.4" y="4917" width="5.9" height="15.0" fill="rgb(217,51,23)" rx="2" ry="2" />
+<text x="409.41" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="381.7" y="5093" width="4.6" height="15.0" fill="rgb(236,192,16)" rx="2" ry="2" />
+<text x="384.68" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="741" width="0.4" height="15.0" fill="rgb(243,124,48)" rx="2" ry="2" />
+<text x="546.43" y="751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::ensureNBytesRemains (1 samples, 0.04%)</title><rect x="14.6" y="6453" width="0.4" height="15.0" fill="rgb(226,80,44)" rx="2" ry="2" />
+<text x="17.61" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1120.0" y="6517" width="0.4" height="15.0" fill="rgb(232,123,8)" rx="2" ry="2" />
+<text x="1123.02" y="6527.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="569.8" y="5765" width="0.4" height="15.0" fill="rgb(253,209,15)" rx="2" ry="2" />
+<text x="572.83" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4725" width="0.4" height="15.0" fill="rgb(209,16,24)" rx="2" ry="2" />
+<text x="496.98" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="397.2" y="4773" width="0.4" height="15.0" fill="rgb(234,183,13)" rx="2" ry="2" />
+<text x="400.19" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="382.5" y="5061" width="3.8" height="15.0" fill="rgb(207,183,49)" rx="2" ry="2" />
+<text x="385.52" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5349" width="0.4" height="15.0" fill="rgb(237,91,1)" rx="2" ry="2" />
+<text x="529.67" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5381" width="0.4" height="15.0" fill="rgb(210,12,12)" rx="2" ry="2" />
+<text x="529.67" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="4853" width="1.3" height="15.0" fill="rgb(220,2,40)" rx="2" ry="2" />
+<text x="348.65" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="53" width="0.4" height="15.0" fill="rgb(248,80,8)" rx="2" ry="2" />
+<text x="546.43" y="63.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="419.8" y="5013" width="1.7" height="15.0" fill="rgb(234,53,27)" rx="2" ry="2" />
+<text x="422.82" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5605" width="1.3" height="15.0" fill="rgb(252,225,4)" rx="2" ry="2" />
+<text x="760.14" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="798.2" y="5317" width="1.7" height="15.0" fill="rgb(245,124,27)" rx="2" ry="2" />
+<text x="801.20" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="836.8" y="5573" width="0.4" height="15.0" fill="rgb(208,101,37)" rx="2" ry="2" />
+<text x="839.75" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="249.3" y="5909" width="0.4" height="15.0" fill="rgb(224,210,5)" rx="2" ry="2" />
+<text x="252.27" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="397.2" y="4805" width="0.4" height="15.0" fill="rgb(223,137,50)" rx="2" ry="2" />
+<text x="400.19" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="767.6" y="5333" width="0.9" height="15.0" fill="rgb(207,76,35)" rx="2" ry="2" />
+<text x="770.61" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5413" width="0.4" height="15.0" fill="rgb(227,150,21)" rx="2" ry="2" />
+<text x="897.16" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="439.9" y="4613" width="1.3" height="15.0" fill="rgb(235,85,35)" rx="2" ry="2" />
+<text x="442.93" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5589" width="0.4" height="15.0" fill="rgb(250,104,13)" rx="2" ry="2" />
+<text x="529.67" y="5599.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="263.1" y="5061" width="0.4" height="15.0" fill="rgb(208,146,27)" rx="2" ry="2" />
+<text x="266.10" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="4933" width="0.5" height="15.0" fill="rgb(231,39,41)" rx="2" ry="2" />
+<text x="716.14" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5861" width="0.4" height="15.0" fill="rgb(213,99,9)" rx="2" ry="2" />
+<text x="896.32" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="328.0" y="4869" width="0.5" height="15.0" fill="rgb(241,226,3)" rx="2" ry="2" />
+<text x="331.05" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.88%)</title><rect x="777.7" y="5525" width="22.2" height="15.0" fill="rgb(225,70,30)" rx="2" ry="2" />
+<text x="780.67" y="5535.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4021" width="0.4" height="15.0" fill="rgb(210,119,12)" rx="2" ry="2" />
+<text x="1120.51" y="4031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4597" width="5.8" height="15.0" fill="rgb(250,34,36)" rx="2" ry="2" />
+<text x="490.28" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6133" width="1.3" height="15.0" fill="rgb(207,27,47)" rx="2" ry="2" />
+<text x="768.94" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="509.1" y="5093" width="0.4" height="15.0" fill="rgb(205,160,53)" rx="2" ry="2" />
+<text x="512.07" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.9" y="5205" width="0.4" height="15.0" fill="rgb(253,63,5)" rx="2" ry="2" />
+<text x="486.93" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.4" y="4981" width="0.4" height="15.0" fill="rgb(228,199,4)" rx="2" ry="2" />
+<text x="347.39" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="531.3" y="5717" width="0.4" height="15.0" fill="rgb(236,77,4)" rx="2" ry="2" />
+<text x="534.28" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4197" width="0.4" height="15.0" fill="rgb(215,10,15)" rx="2" ry="2" />
+<text x="1120.51" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="5045" width="0.8" height="15.0" fill="rgb(232,83,42)" rx="2" ry="2" />
+<text x="512.91" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4661" width="0.4" height="15.0" fill="rgb(212,228,37)" rx="2" ry="2" />
+<text x="496.98" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.9" y="4693" width="0.9" height="15.0" fill="rgb(214,129,44)" rx="2" ry="2" />
+<text x="429.94" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="347.3" y="5173" width="1.7" height="15.0" fill="rgb(205,32,21)" rx="2" ry="2" />
+<text x="350.32" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4165" width="0.4" height="15.0" fill="rgb(227,120,44)" rx="2" ry="2" />
+<text x="1120.51" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="560.2" y="5461" width="0.4" height="15.0" fill="rgb(210,100,24)" rx="2" ry="2" />
+<text x="563.19" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6037" width="0.9" height="15.0" fill="rgb(233,78,29)" rx="2" ry="2" />
+<text x="896.74" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="266.9" y="5029" width="0.4" height="15.0" fill="rgb(220,94,42)" rx="2" ry="2" />
+<text x="269.87" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.21%)</title><rect x="268.5" y="5109" width="14.3" height="15.0" fill="rgb(209,185,6)" rx="2" ry="2" />
+<text x="271.54" y="5119.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="677" width="0.4" height="15.0" fill="rgb(222,70,30)" rx="2" ry="2" />
+<text x="546.43" y="687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="370.0" y="5045" width="0.4" height="15.0" fill="rgb(227,160,39)" rx="2" ry="2" />
+<text x="372.95" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6277" width="1.3" height="15.0" fill="rgb(251,50,50)" rx="2" ry="2" />
+<text x="768.94" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5173" width="0.4" height="15.0" fill="rgb(251,221,38)" rx="2" ry="2" />
+<text x="497.40" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4965" width="0.9" height="15.0" fill="rgb(221,4,37)" rx="2" ry="2" />
+<text x="388.04" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="512.4" y="4965" width="0.4" height="15.0" fill="rgb(223,161,7)" rx="2" ry="2" />
+<text x="515.42" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="251.4" y="5701" width="0.4" height="15.0" fill="rgb(226,209,22)" rx="2" ry="2" />
+<text x="254.36" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4053" width="0.4" height="15.0" fill="rgb(252,117,6)" rx="2" ry="2" />
+<text x="467.65" y="4063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="515.8" y="5173" width="1.7" height="15.0" fill="rgb(219,17,53)" rx="2" ry="2" />
+<text x="518.77" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="1151.9" y="6581" width="6.7" height="15.0" fill="rgb(249,127,44)" rx="2" ry="2" />
+<text x="1154.87" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="749.2" y="5125" width="0.8" height="15.0" fill="rgb(249,224,20)" rx="2" ry="2" />
+<text x="752.18" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5973" width="0.4" height="15.0" fill="rgb(254,160,12)" rx="2" ry="2" />
+<text x="766.00" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="767.6" y="5317" width="0.9" height="15.0" fill="rgb(216,138,14)" rx="2" ry="2" />
+<text x="770.61" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="422.7" y="4693" width="0.5" height="15.0" fill="rgb(242,22,19)" rx="2" ry="2" />
+<text x="425.75" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="775.6" y="5525" width="0.8" height="15.0" fill="rgb(226,104,4)" rx="2" ry="2" />
+<text x="778.58" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="278.6" y="4757" width="0.8" height="15.0" fill="rgb(229,160,29)" rx="2" ry="2" />
+<text x="281.60" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4565" width="0.4" height="15.0" fill="rgb(232,98,10)" rx="2" ry="2" />
+<text x="414.02" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="263.5" y="5061" width="1.3" height="15.0" fill="rgb(254,175,4)" rx="2" ry="2" />
+<text x="266.52" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.36%)</title><rect x="554.3" y="5605" width="4.2" height="15.0" fill="rgb(233,221,4)" rx="2" ry="2" />
+<text x="557.33" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (636 samples, 22.59%)</title><rect x="253.5" y="5765" width="266.5" height="15.0" fill="rgb(228,9,1)" rx="2" ry="2" />
+<text x="256.46" y="5775.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="747.9" y="5077" width="0.9" height="15.0" fill="rgb(221,39,43)" rx="2" ry="2" />
+<text x="750.92" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="712.3" y="5269" width="0.4" height="15.0" fill="rgb(245,208,42)" rx="2" ry="2" />
+<text x="715.30" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.0" y="4837" width="0.4" height="15.0" fill="rgb(231,48,18)" rx="2" ry="2" />
+<text x="515.00" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.4" y="5013" width="0.5" height="15.0" fill="rgb(205,158,49)" rx="2" ry="2" />
+<text x="489.44" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (508 samples, 18.04%)</title><rect x="257.6" y="5381" width="212.9" height="15.0" fill="rgb(253,195,43)" rx="2" ry="2" />
+<text x="260.65" y="5391.5" >Nsfisis\Waddiwasi\Execution\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="779.8" y="5461" width="17.6" height="15.0" fill="rgb(231,207,2)" rx="2" ry="2" />
+<text x="782.77" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5429" width="0.4" height="15.0" fill="rgb(244,76,24)" rx="2" ry="2" />
+<text x="761.39" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="878.7" y="5621" width="0.4" height="15.0" fill="rgb(238,63,1)" rx="2" ry="2" />
+<text x="881.66" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3413" width="0.4" height="15.0" fill="rgb(223,168,34)" rx="2" ry="2" />
+<text x="546.43" y="3423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (635 samples, 22.55%)</title><rect x="253.5" y="5557" width="266.0" height="15.0" fill="rgb(223,164,3)" rx="2" ry="2" />
+<text x="256.46" y="5567.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (301 samples, 10.69%)</title><rect x="767.2" y="6069" width="126.1" height="15.0" fill="rgb(254,66,54)" rx="2" ry="2" />
+<text x="770.19" y="6079.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="342.3" y="5237" width="1.3" height="15.0" fill="rgb(227,218,40)" rx="2" ry="2" />
+<text x="345.29" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="526.7" y="5477" width="0.4" height="15.0" fill="rgb(253,4,22)" rx="2" ry="2" />
+<text x="529.67" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="308.8" y="4965" width="1.2" height="15.0" fill="rgb(227,194,11)" rx="2" ry="2" />
+<text x="311.77" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.9" y="4917" width="0.5" height="15.0" fill="rgb(211,48,32)" rx="2" ry="2" />
+<text x="310.93" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (344 samples, 12.22%)</title><rect x="531.7" y="5909" width="144.1" height="15.0" fill="rgb(240,123,7)" rx="2" ry="2" />
+<text x="534.70" y="5919.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="183.5" y="6453" width="0.8" height="15.0" fill="rgb(220,81,20)" rx="2" ry="2" />
+<text x="186.48" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1109.5" y="6325" width="0.5" height="15.0" fill="rgb(224,68,32)" rx="2" ry="2" />
+<text x="1112.55" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4533" width="0.5" height="15.0" fill="rgb(250,5,14)" rx="2" ry="2" />
+<text x="480.64" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="346.1" y="4821" width="0.4" height="15.0" fill="rgb(220,194,31)" rx="2" ry="2" />
+<text x="349.07" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3989" width="0.4" height="15.0" fill="rgb(233,53,7)" rx="2" ry="2" />
+<text x="546.43" y="3999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="496.1" y="5365" width="17.6" height="15.0" fill="rgb(212,186,5)" rx="2" ry="2" />
+<text x="499.08" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="803.2" y="5573" width="0.5" height="15.0" fill="rgb(209,129,40)" rx="2" ry="2" />
+<text x="806.23" y="5583.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1845" width="0.4" height="15.0" fill="rgb(239,74,43)" rx="2" ry="2" />
+<text x="546.43" y="1855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (144 samples, 5.11%)</title><rect x="288.7" y="5301" width="60.3" height="15.0" fill="rgb(220,76,1)" rx="2" ry="2" />
+<text x="291.66" y="5311.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.0" y="5925" width="0.4" height="15.0" fill="rgb(211,70,43)" rx="2" ry="2" />
+<text x="766.00" y="5935.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3317" width="0.4" height="15.0" fill="rgb(254,122,15)" rx="2" ry="2" />
+<text x="546.43" y="3327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5781" width="0.4" height="15.0" fill="rgb(209,178,25)" rx="2" ry="2" />
+<text x="524.22" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="5077" width="6.7" height="15.0" fill="rgb(241,108,32)" rx="2" ry="2" />
+<text x="489.86" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6485" width="0.5" height="15.0" fill="rgb(254,115,37)" rx="2" ry="2" />
+<text x="1050.95" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5477" width="0.4" height="15.0" fill="rgb(249,72,4)" rx="2" ry="2" />
+<text x="761.39" y="5487.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="812.5" y="5685" width="0.4" height="15.0" fill="rgb(222,126,0)" rx="2" ry="2" />
+<text x="815.45" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (16 samples, 0.57%)</title><rect x="486.9" y="5173" width="6.7" height="15.0" fill="rgb(248,154,15)" rx="2" ry="2" />
+<text x="489.86" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4757" width="0.4" height="15.0" fill="rgb(253,19,41)" rx="2" ry="2" />
+<text x="329.79" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="434.5" y="4773" width="0.8" height="15.0" fill="rgb(241,185,50)" rx="2" ry="2" />
+<text x="437.48" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6069" width="1.3" height="15.0" fill="rgb(225,20,43)" rx="2" ry="2" />
+<text x="768.94" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="396.3" y="4965" width="2.1" height="15.0" fill="rgb(216,50,19)" rx="2" ry="2" />
+<text x="399.35" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5605" width="0.5" height="15.0" fill="rgb(248,195,3)" rx="2" ry="2" />
+<text x="894.65" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (64 samples, 2.27%)</title><rect x="774.3" y="5733" width="26.8" height="15.0" fill="rgb(251,74,15)" rx="2" ry="2" />
+<text x="777.32" y="5743.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6325" width="0.4" height="15.0" fill="rgb(209,78,53)" rx="2" ry="2" />
+<text x="13.42" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Types\ResultType::equals (1 samples, 0.04%)</title><rect x="566.9" y="5509" width="0.4" height="15.0" fill="rgb(218,99,12)" rx="2" ry="2" />
+<text x="569.90" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="754.2" y="5141" width="1.7" height="15.0" fill="rgb(230,75,53)" rx="2" ry="2" />
+<text x="757.20" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2853" width="0.4" height="15.0" fill="rgb(242,179,13)" rx="2" ry="2" />
+<text x="546.43" y="2863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="396.8" y="4757" width="0.4" height="15.0" fill="rgb(213,10,25)" rx="2" ry="2" />
+<text x="399.77" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="337.3" y="4869" width="3.7" height="15.0" fill="rgb(242,21,26)" rx="2" ry="2" />
+<text x="340.27" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="517.9" y="5269" width="0.4" height="15.0" fill="rgb(209,108,31)" rx="2" ry="2" />
+<text x="520.87" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="342.7" y="5045" width="0.9" height="15.0" fill="rgb(213,196,20)" rx="2" ry="2" />
+<text x="345.71" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="560.2" y="5445" width="0.4" height="15.0" fill="rgb(222,75,26)" rx="2" ry="2" />
+<text x="563.19" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4229" width="0.5" height="15.0" fill="rgb(228,59,42)" rx="2" ry="2" />
+<text x="480.64" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="797.8" y="5397" width="2.1" height="15.0" fill="rgb(228,70,13)" rx="2" ry="2" />
+<text x="800.78" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2437" width="0.4" height="15.0" fill="rgb(251,225,39)" rx="2" ry="2" />
+<text x="546.43" y="2447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="767.2" y="5445" width="1.3" height="15.0" fill="rgb(215,194,14)" rx="2" ry="2" />
+<text x="770.19" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="509.9" y="5141" width="0.8" height="15.0" fill="rgb(244,76,21)" rx="2" ry="2" />
+<text x="512.91" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3557" width="0.4" height="15.0" fill="rgb(219,132,18)" rx="2" ry="2" />
+<text x="437.90" y="3567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5557" width="81.3" height="15.0" fill="rgb(247,83,22)" rx="2" ry="2" />
+<text x="678.85" y="5567.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="456.3" y="5013" width="1.2" height="15.0" fill="rgb(252,131,19)" rx="2" ry="2" />
+<text x="459.27" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="427.4" y="4485" width="0.4" height="15.0" fill="rgb(219,192,24)" rx="2" ry="2" />
+<text x="430.36" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="527.9" y="5445" width="0.9" height="15.0" fill="rgb(222,30,29)" rx="2" ry="2" />
+<text x="530.93" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="6037" width="0.4" height="15.0" fill="rgb(240,219,29)" rx="2" ry="2" />
+<text x="768.52" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="740.0" y="5205" width="4.6" height="15.0" fill="rgb(248,184,37)" rx="2" ry="2" />
+<text x="742.96" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (286 samples, 10.16%)</title><rect x="349.8" y="5349" width="119.9" height="15.0" fill="rgb(216,34,23)" rx="2" ry="2" />
+<text x="352.84" y="5359.5" >Nsfisis\Waddiw..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6197" width="0.4" height="15.0" fill="rgb(227,81,50)" rx="2" ry="2" />
+<text x="1143.55" y="6207.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1269" width="0.4" height="15.0" fill="rgb(210,218,29)" rx="2" ry="2" />
+<text x="546.43" y="1279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="457.5" y="4933" width="0.9" height="15.0" fill="rgb(251,45,1)" rx="2" ry="2" />
+<text x="460.53" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="668.7" y="5221" width="0.4" height="15.0" fill="rgb(223,180,6)" rx="2" ry="2" />
+<text x="671.72" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (243 samples, 8.63%)</title><rect x="574.0" y="5477" width="101.8" height="15.0" fill="rgb(215,98,3)" rx="2" ry="2" />
+<text x="577.02" y="5487.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3269" width="0.4" height="15.0" fill="rgb(235,33,21)" rx="2" ry="2" />
+<text x="546.43" y="3279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (574 samples, 20.38%)</title><rect x="254.7" y="5461" width="240.5" height="15.0" fill="rgb(237,195,22)" rx="2" ry="2" />
+<text x="257.72" y="5471.5" >Nsfisis\Waddiwasi\Execution\Run..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (153 samples, 5.43%)</title><rect x="828.0" y="5733" width="64.1" height="15.0" fill="rgb(247,185,22)" rx="2" ry="2" />
+<text x="830.95" y="5743.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="885.8" y="5605" width="5.0" height="15.0" fill="rgb(244,76,26)" rx="2" ry="2" />
+<text x="888.78" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4789" width="0.4" height="15.0" fill="rgb(248,99,41)" rx="2" ry="2" />
+<text x="364.57" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="278.6" y="4709" width="0.8" height="15.0" fill="rgb(250,39,42)" rx="2" ry="2" />
+<text x="281.60" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (98 samples, 3.48%)</title><rect x="837.6" y="5637" width="41.1" height="15.0" fill="rgb(225,168,26)" rx="2" ry="2" />
+<text x="840.59" y="5647.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (304 samples, 10.80%)</title><rect x="767.2" y="6485" width="127.4" height="15.0" fill="rgb(229,22,49)" rx="2" ry="2" />
+<text x="770.19" y="6495.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.6" y="5589" width="0.5" height="15.0" fill="rgb(253,27,11)" rx="2" ry="2" />
+<text x="894.65" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5781" width="0.4" height="15.0" fill="rgb(218,135,3)" rx="2" ry="2" />
+<text x="774.80" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="518.3" y="5349" width="0.4" height="15.0" fill="rgb(212,40,8)" rx="2" ry="2" />
+<text x="521.29" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4837" width="0.4" height="15.0" fill="rgb(207,6,47)" rx="2" ry="2" />
+<text x="760.98" y="4847.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3925" width="0.4" height="15.0" fill="rgb(239,212,2)" rx="2" ry="2" />
+<text x="437.90" y="3935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5557" width="0.8" height="15.0" fill="rgb(211,213,29)" rx="2" ry="2" />
+<text x="528.41" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="5109" width="0.5" height="15.0" fill="rgb(210,8,10)" rx="2" ry="2" />
+<text x="469.75" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4613" width="0.4" height="15.0" fill="rgb(235,105,48)" rx="2" ry="2" />
+<text x="463.88" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="460.0" y="4949" width="1.3" height="15.0" fill="rgb(243,184,46)" rx="2" ry="2" />
+<text x="463.04" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="505.3" y="5077" width="3.4" height="15.0" fill="rgb(251,124,3)" rx="2" ry="2" />
+<text x="508.30" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (123 samples, 4.37%)</title><rect x="289.5" y="5173" width="51.5" height="15.0" fill="rgb(234,90,49)" rx="2" ry="2" />
+<text x="292.50" y="5183.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="485.2" y="5061" width="1.2" height="15.0" fill="rgb(224,94,32)" rx="2" ry="2" />
+<text x="488.18" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="362.0" y="4869" width="6.7" height="15.0" fill="rgb(208,224,30)" rx="2" ry="2" />
+<text x="364.99" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="344.4" y="5077" width="0.4" height="15.0" fill="rgb(250,2,43)" rx="2" ry="2" />
+<text x="347.39" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2293" width="0.4" height="15.0" fill="rgb(233,216,48)" rx="2" ry="2" />
+<text x="437.90" y="2303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="252.2" y="5749" width="0.4" height="15.0" fill="rgb(252,39,18)" rx="2" ry="2" />
+<text x="255.20" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.49%)</title><rect x="360.7" y="5189" width="17.6" height="15.0" fill="rgb(211,31,12)" rx="2" ry="2" />
+<text x="363.73" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5749" width="0.4" height="15.0" fill="rgb(213,96,34)" rx="2" ry="2" />
+<text x="1073.99" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5701" width="0.4" height="15.0" fill="rgb(240,7,28)" rx="2" ry="2" />
+<text x="896.32" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4677" width="0.4" height="15.0" fill="rgb(209,59,45)" rx="2" ry="2" />
+<text x="489.86" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="413.1" y="5093" width="0.4" height="15.0" fill="rgb(252,119,12)" rx="2" ry="2" />
+<text x="416.11" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="275.2" y="4613" width="0.5" height="15.0" fill="rgb(209,97,20)" rx="2" ry="2" />
+<text x="278.25" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4597" width="0.4" height="15.0" fill="rgb(208,93,51)" rx="2" ry="2" />
+<text x="412.76" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="401.8" y="4805" width="0.4" height="15.0" fill="rgb(228,104,47)" rx="2" ry="2" />
+<text x="404.80" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4421" width="0.4" height="15.0" fill="rgb(233,158,26)" rx="2" ry="2" />
+<text x="437.90" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="502.8" y="5237" width="8.4" height="15.0" fill="rgb(248,198,45)" rx="2" ry="2" />
+<text x="505.78" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5653" width="0.4" height="15.0" fill="rgb(228,209,39)" rx="2" ry="2" />
+<text x="767.26" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5845" width="1.3" height="15.0" fill="rgb(250,63,39)" rx="2" ry="2" />
+<text x="760.14" y="5855.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3813" width="0.4" height="15.0" fill="rgb(227,131,40)" rx="2" ry="2" />
+<text x="546.43" y="3823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="420.2" y="4917" width="1.3" height="15.0" fill="rgb(250,3,12)" rx="2" ry="2" />
+<text x="423.23" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="554.7" y="5573" width="3.8" height="15.0" fill="rgb(248,48,1)" rx="2" ry="2" />
+<text x="557.74" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4501" width="0.4" height="15.0" fill="rgb(216,227,33)" rx="2" ry="2" />
+<text x="437.90" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="282.8" y="5093" width="0.4" height="15.0" fill="rgb(225,2,36)" rx="2" ry="2" />
+<text x="285.79" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4565" width="0.5" height="15.0" fill="rgb(239,103,21)" rx="2" ry="2" />
+<text x="346.13" y="4575.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="405" width="0.4" height="15.0" fill="rgb(248,133,53)" rx="2" ry="2" />
+<text x="546.43" y="415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="5765" width="0.4" height="15.0" fill="rgb(243,46,34)" rx="2" ry="2" />
+<text x="768.52" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4613" width="0.5" height="15.0" fill="rgb(237,71,24)" rx="2" ry="2" />
+<text x="346.13" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="767.2" y="5429" width="1.3" height="15.0" fill="rgb(247,191,8)" rx="2" ry="2" />
+<text x="770.19" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.3" y="5397" width="0.4" height="15.0" fill="rgb(249,94,17)" rx="2" ry="2" />
+<text x="565.29" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.4" y="5957" width="0.4" height="15.0" fill="rgb(237,188,39)" rx="2" ry="2" />
+<text x="766.42" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="509.9" y="5157" width="1.3" height="15.0" fill="rgb(247,23,34)" rx="2" ry="2" />
+<text x="512.91" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="801.6" y="5701" width="3.7" height="15.0" fill="rgb(232,139,43)" rx="2" ry="2" />
+<text x="804.56" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="510.7" y="5125" width="0.5" height="15.0" fill="rgb(205,0,14)" rx="2" ry="2" />
+<text x="513.75" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="297.0" y="4981" width="0.5" height="15.0" fill="rgb(232,130,4)" rx="2" ry="2" />
+<text x="300.04" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5397" width="1.3" height="15.0" fill="rgb(228,50,10)" rx="2" ry="2" />
+<text x="760.14" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5621" width="0.4" height="15.0" fill="rgb(251,86,33)" rx="2" ry="2" />
+<text x="524.22" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6069" width="0.8" height="15.0" fill="rgb(218,65,51)" rx="2" ry="2" />
+<text x="1120.09" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6117" width="0.8" height="15.0" fill="rgb(231,212,11)" rx="2" ry="2" />
+<text x="1120.09" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4149" width="0.4" height="15.0" fill="rgb(244,204,0)" rx="2" ry="2" />
+<text x="467.65" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="501.1" y="5141" width="1.7" height="15.0" fill="rgb(214,134,5)" rx="2" ry="2" />
+<text x="504.11" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4725" width="0.4" height="15.0" fill="rgb(207,210,44)" rx="2" ry="2" />
+<text x="364.57" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5733" width="0.4" height="15.0" fill="rgb(211,167,7)" rx="2" ry="2" />
+<text x="768.52" y="5743.5" ></text>
+</g>
+<g >
+<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.04%)</title><rect x="10.0" y="6565" width="0.4" height="15.0" fill="rgb(238,12,39)" rx="2" ry="2" />
+<text x="13.00" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="393.4" y="5013" width="0.4" height="15.0" fill="rgb(217,90,53)" rx="2" ry="2" />
+<text x="396.42" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4229" width="5.4" height="15.0" fill="rgb(214,135,43)" rx="2" ry="2" />
+<text x="490.70" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5813" width="0.4" height="15.0" fill="rgb(219,187,19)" rx="2" ry="2" />
+<text x="768.10" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="5125" width="0.9" height="15.0" fill="rgb(207,200,26)" rx="2" ry="2" />
+<text x="746.73" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="799.0" y="5253" width="0.9" height="15.0" fill="rgb(233,157,43)" rx="2" ry="2" />
+<text x="802.04" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="384.2" y="5029" width="2.1" height="15.0" fill="rgb(205,160,34)" rx="2" ry="2" />
+<text x="387.20" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.67%)</title><rect x="341.0" y="5253" width="8.0" height="15.0" fill="rgb(210,15,18)" rx="2" ry="2" />
+<text x="344.04" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5525" width="81.3" height="15.0" fill="rgb(251,8,9)" rx="2" ry="2" />
+<text x="678.85" y="5535.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="566.1" y="5285" width="0.4" height="15.0" fill="rgb(247,224,1)" rx="2" ry="2" />
+<text x="569.06" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4709" width="0.9" height="15.0" fill="rgb(205,172,4)" rx="2" ry="2" />
+<text x="388.04" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="749.2" y="5221" width="0.8" height="15.0" fill="rgb(221,167,19)" rx="2" ry="2" />
+<text x="752.18" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5333" width="0.4" height="15.0" fill="rgb(250,208,45)" rx="2" ry="2" />
+<text x="685.13" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="435.7" y="4709" width="0.5" height="15.0" fill="rgb(247,141,52)" rx="2" ry="2" />
+<text x="438.74" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.4" y="5013" width="0.4" height="15.0" fill="rgb(219,113,17)" rx="2" ry="2" />
+<text x="515.42" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="469.7" y="5365" width="0.4" height="15.0" fill="rgb(212,185,8)" rx="2" ry="2" />
+<text x="472.68" y="5375.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1461" width="0.4" height="15.0" fill="rgb(243,17,11)" rx="2" ry="2" />
+<text x="546.43" y="1471.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2565" width="0.4" height="15.0" fill="rgb(215,160,12)" rx="2" ry="2" />
+<text x="546.43" y="2575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5909" width="81.3" height="15.0" fill="rgb(206,74,37)" rx="2" ry="2" />
+<text x="678.85" y="5919.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4421" width="0.4" height="15.0" fill="rgb(215,9,26)" rx="2" ry="2" />
+<text x="546.43" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="248.0" y="6213" width="2.1" height="15.0" fill="rgb(217,176,39)" rx="2" ry="2" />
+<text x="251.01" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5109" width="0.4" height="15.0" fill="rgb(206,18,21)" rx="2" ry="2" />
+<text x="896.32" y="5119.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (4 samples, 0.14%)</title><rect x="182.6" y="6469" width="1.7" height="15.0" fill="rgb(215,162,3)" rx="2" ry="2" />
+<text x="185.64" y="6479.5" ></text>
+</g>
+<g >
+<title>chr (3 samples, 0.11%)</title><rect x="1148.9" y="6565" width="1.3" height="15.0" fill="rgb(227,195,7)" rx="2" ry="2" />
+<text x="1151.93" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5605" width="0.4" height="15.0" fill="rgb(233,212,26)" rx="2" ry="2" />
+<text x="576.60" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6437" width="0.5" height="15.0" fill="rgb(229,206,40)" rx="2" ry="2" />
+<text x="1050.95" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="1142.6" y="6517" width="0.5" height="15.0" fill="rgb(227,187,25)" rx="2" ry="2" />
+<text x="1145.65" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="346.9" y="5029" width="0.4" height="15.0" fill="rgb(248,156,30)" rx="2" ry="2" />
+<text x="349.90" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="4981" width="0.4" height="15.0" fill="rgb(211,110,22)" rx="2" ry="2" />
+<text x="475.19" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="556.4" y="5509" width="0.4" height="15.0" fill="rgb(247,151,37)" rx="2" ry="2" />
+<text x="559.42" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="363.2" y="4837" width="5.5" height="15.0" fill="rgb(247,147,22)" rx="2" ry="2" />
+<text x="366.25" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="704.3" y="5397" width="10.5" height="15.0" fill="rgb(210,78,34)" rx="2" ry="2" />
+<text x="707.34" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5317" width="0.4" height="15.0" fill="rgb(250,1,31)" rx="2" ry="2" />
+<text x="569.06" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="385.0" y="4661" width="0.5" height="15.0" fill="rgb(229,37,51)" rx="2" ry="2" />
+<text x="388.04" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="338.9" y="4661" width="2.1" height="15.0" fill="rgb(223,106,1)" rx="2" ry="2" />
+<text x="341.94" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4181" width="0.4" height="15.0" fill="rgb(212,227,8)" rx="2" ry="2" />
+<text x="546.43" y="4191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (156 samples, 5.54%)</title><rect x="826.7" y="5781" width="65.4" height="15.0" fill="rgb(245,122,45)" rx="2" ry="2" />
+<text x="829.70" y="5791.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="417.3" y="4885" width="2.1" height="15.0" fill="rgb(210,66,21)" rx="2" ry="2" />
+<text x="420.30" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="563.5" y="5525" width="0.5" height="15.0" fill="rgb(214,141,37)" rx="2" ry="2" />
+<text x="566.54" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="281.1" y="4837" width="0.4" height="15.0" fill="rgb(245,54,31)" rx="2" ry="2" />
+<text x="284.12" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4645" width="0.4" height="15.0" fill="rgb(253,52,6)" rx="2" ry="2" />
+<text x="496.98" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="485.6" y="4981" width="0.8" height="15.0" fill="rgb(215,208,45)" rx="2" ry="2" />
+<text x="488.60" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5797" width="0.4" height="15.0" fill="rgb(248,121,40)" rx="2" ry="2" />
+<text x="768.10" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1140.6" y="6405" width="0.4" height="15.0" fill="rgb(229,67,37)" rx="2" ry="2" />
+<text x="1143.55" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="564.0" y="5589" width="3.3" height="15.0" fill="rgb(232,160,53)" rx="2" ry="2" />
+<text x="566.96" y="5599.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="837.6" y="5605" width="0.4" height="15.0" fill="rgb(206,217,43)" rx="2" ry="2" />
+<text x="840.59" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4997" width="0.4" height="15.0" fill="rgb(212,58,18)" rx="2" ry="2" />
+<text x="496.98" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (2 samples, 0.07%)</title><rect x="457.5" y="4901" width="0.9" height="15.0" fill="rgb(237,48,0)" rx="2" ry="2" />
+<text x="460.53" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4805" width="0.4" height="15.0" fill="rgb(239,83,29)" rx="2" ry="2" />
+<text x="487.77" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.0" y="4869" width="0.4" height="15.0" fill="rgb(246,191,26)" rx="2" ry="2" />
+<text x="333.98" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5445" width="0.4" height="15.0" fill="rgb(214,186,24)" rx="2" ry="2" />
+<text x="529.67" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="670.0" y="5237" width="0.4" height="15.0" fill="rgb(245,186,0)" rx="2" ry="2" />
+<text x="672.98" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::I32Store8 (40 samples, 1.42%)</title><rect x="230.0" y="6517" width="16.8" height="15.0" fill="rgb(239,214,48)" rx="2" ry="2" />
+<text x="232.99" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="229.2" y="6501" width="0.8" height="15.0" fill="rgb(243,119,12)" rx="2" ry="2" />
+<text x="232.15" y="6511.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:286-297) (26 samples, 0.92%)</title><rect x="520.8" y="6037" width="10.9" height="15.0" fill="rgb(246,74,45)" rx="2" ry="2" />
+<text x="523.80" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="850.6" y="5589" width="0.4" height="15.0" fill="rgb(227,96,22)" rx="2" ry="2" />
+<text x="853.58" y="5599.5" ></text>
+</g>
+<g >
+<title>chr (1 samples, 0.04%)</title><rect x="1151.4" y="6533" width="0.5" height="15.0" fill="rgb(224,115,31)" rx="2" ry="2" />
+<text x="1154.45" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5189" width="0.4" height="15.0" fill="rgb(206,42,34)" rx="2" ry="2" />
+<text x="357.03" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.4" y="4997" width="0.5" height="15.0" fill="rgb(236,34,15)" rx="2" ry="2" />
+<text x="489.44" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6133" width="0.8" height="15.0" fill="rgb(246,12,28)" rx="2" ry="2" />
+<text x="1120.09" y="6143.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1237" width="0.4" height="15.0" fill="rgb(209,196,48)" rx="2" ry="2" />
+<text x="546.43" y="1247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4949" width="0.8" height="15.0" fill="rgb(220,61,45)" rx="2" ry="2" />
+<text x="512.91" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2741" width="0.4" height="15.0" fill="rgb(252,155,35)" rx="2" ry="2" />
+<text x="437.90" y="2751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="689.3" y="5349" width="0.4" height="15.0" fill="rgb(226,106,43)" rx="2" ry="2" />
+<text x="692.25" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="401.0" y="4949" width="0.4" height="15.0" fill="rgb(206,207,12)" rx="2" ry="2" />
+<text x="403.96" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (302 samples, 10.72%)</title><rect x="767.2" y="6357" width="126.5" height="15.0" fill="rgb(250,203,12)" rx="2" ry="2" />
+<text x="770.19" y="6367.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5397" width="0.4" height="15.0" fill="rgb(232,192,22)" rx="2" ry="2" />
+<text x="563.19" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="262.3" y="5173" width="5.0" height="15.0" fill="rgb(252,210,44)" rx="2" ry="2" />
+<text x="265.26" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (25 samples, 0.89%)</title><rect x="483.9" y="5333" width="10.5" height="15.0" fill="rgb(235,76,52)" rx="2" ry="2" />
+<text x="486.93" y="5343.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3285" width="0.4" height="15.0" fill="rgb(229,1,45)" rx="2" ry="2" />
+<text x="437.90" y="3295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="423.6" y="4661" width="0.4" height="15.0" fill="rgb(248,107,25)" rx="2" ry="2" />
+<text x="426.59" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="472.6" y="5173" width="7.1" height="15.0" fill="rgb(222,168,4)" rx="2" ry="2" />
+<text x="475.61" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5669" width="2.5" height="15.0" fill="rgb(243,203,40)" rx="2" ry="2" />
+<text x="770.19" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5541" width="0.4" height="15.0" fill="rgb(239,169,30)" rx="2" ry="2" />
+<text x="768.52" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4037" width="5.4" height="15.0" fill="rgb(238,138,23)" rx="2" ry="2" />
+<text x="490.70" y="4047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5893" width="0.4" height="15.0" fill="rgb(221,184,16)" rx="2" ry="2" />
+<text x="1073.99" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (84 samples, 2.98%)</title><rect x="532.1" y="5861" width="35.2" height="15.0" fill="rgb(215,83,49)" rx="2" ry="2" />
+<text x="535.12" y="5871.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5925" width="0.4" height="15.0" fill="rgb(226,129,47)" rx="2" ry="2" />
+<text x="1073.99" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="295.8" y="4997" width="2.1" height="15.0" fill="rgb(235,23,21)" rx="2" ry="2" />
+<text x="298.78" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1733" width="0.4" height="15.0" fill="rgb(246,180,24)" rx="2" ry="2" />
+<text x="546.43" y="1743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4613" width="0.4" height="15.0" fill="rgb(214,152,31)" rx="2" ry="2" />
+<text x="496.98" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="774.3" y="5685" width="2.1" height="15.0" fill="rgb(229,99,8)" rx="2" ry="2" />
+<text x="777.32" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="695.5" y="5285" width="3.8" height="15.0" fill="rgb(207,50,52)" rx="2" ry="2" />
+<text x="698.54" y="5295.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="703.5" y="5413" width="0.4" height="15.0" fill="rgb(205,14,24)" rx="2" ry="2" />
+<text x="706.50" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1077.3" y="6501" width="0.4" height="15.0" fill="rgb(236,182,43)" rx="2" ry="2" />
+<text x="1080.28" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1077.3" y="6485" width="0.4" height="15.0" fill="rgb(251,26,49)" rx="2" ry="2" />
+<text x="1080.28" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="530.9" y="5525" width="0.4" height="15.0" fill="rgb(209,148,2)" rx="2" ry="2" />
+<text x="533.86" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="511.6" y="5285" width="2.1" height="15.0" fill="rgb(251,227,47)" rx="2" ry="2" />
+<text x="514.58" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="463.4" y="4869" width="1.7" height="15.0" fill="rgb(254,163,17)" rx="2" ry="2" />
+<text x="466.39" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4469" width="0.4" height="15.0" fill="rgb(232,69,41)" rx="2" ry="2" />
+<text x="437.90" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="535.0" y="5573" width="0.5" height="15.0" fill="rgb(214,62,5)" rx="2" ry="2" />
+<text x="538.05" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5285" width="0.4" height="15.0" fill="rgb(231,133,1)" rx="2" ry="2" />
+<text x="520.87" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.3" y="5573" width="0.4" height="15.0" fill="rgb(226,123,14)" rx="2" ry="2" />
+<text x="767.26" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="765.5" y="5429" width="0.4" height="15.0" fill="rgb(242,123,36)" rx="2" ry="2" />
+<text x="768.52" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="291.6" y="5029" width="0.4" height="15.0" fill="rgb(211,215,21)" rx="2" ry="2" />
+<text x="294.59" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3909" width="0.4" height="15.0" fill="rgb(228,187,52)" rx="2" ry="2" />
+<text x="546.43" y="3919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4309" width="5.4" height="15.0" fill="rgb(217,27,10)" rx="2" ry="2" />
+<text x="490.70" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,224 samples, 43.47%)</title><rect x="250.1" y="6149" width="512.9" height="15.0" fill="rgb(252,110,31)" rx="2" ry="2" />
+<text x="253.11" y="6159.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4693" width="0.4" height="15.0" fill="rgb(222,228,30)" rx="2" ry="2" />
+<text x="329.79" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.7" y="5621" width="0.5" height="15.0" fill="rgb(207,21,35)" rx="2" ry="2" />
+<text x="896.74" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4549" width="0.4" height="15.0" fill="rgb(237,173,14)" rx="2" ry="2" />
+<text x="489.86" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="520.4" y="6005" width="0.4" height="15.0" fill="rgb(233,41,18)" rx="2" ry="2" />
+<text x="523.38" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="5061" width="0.4" height="15.0" fill="rgb(230,146,6)" rx="2" ry="2" />
+<text x="496.98" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (14 samples, 0.50%)</title><rect x="487.3" y="4645" width="5.8" height="15.0" fill="rgb(224,92,50)" rx="2" ry="2" />
+<text x="490.28" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="5029" width="0.4" height="15.0" fill="rgb(254,71,9)" rx="2" ry="2" />
+<text x="487.77" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="822.1" y="5781" width="0.4" height="15.0" fill="rgb(206,142,35)" rx="2" ry="2" />
+<text x="825.09" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="333.5" y="4757" width="0.4" height="15.0" fill="rgb(206,130,38)" rx="2" ry="2" />
+<text x="336.49" y="4767.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2325" width="0.4" height="15.0" fill="rgb(217,50,5)" rx="2" ry="2" />
+<text x="437.90" y="2335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (3 samples, 0.11%)</title><rect x="10.4" y="6437" width="1.3" height="15.0" fill="rgb(248,1,4)" rx="2" ry="2" />
+<text x="13.42" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="798.2" y="5349" width="1.7" height="15.0" fill="rgb(208,57,1)" rx="2" ry="2" />
+<text x="801.20" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.7" y="6453" width="0.4" height="15.0" fill="rgb(226,226,42)" rx="2" ry="2" />
+<text x="1101.65" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6149" width="0.4" height="15.0" fill="rgb(221,204,9)" rx="2" ry="2" />
+<text x="1073.99" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5941" width="0.9" height="15.0" fill="rgb(215,219,54)" rx="2" ry="2" />
+<text x="896.74" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1047.9" y="6533" width="0.5" height="15.0" fill="rgb(248,25,36)" rx="2" ry="2" />
+<text x="1050.95" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="434.5" y="4693" width="0.8" height="15.0" fill="rgb(234,108,38)" rx="2" ry="2" />
+<text x="437.48" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5205" width="0.4" height="15.0" fill="rgb(246,86,42)" rx="2" ry="2" />
+<text x="760.98" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="368.7" y="4757" width="0.4" height="15.0" fill="rgb(205,151,32)" rx="2" ry="2" />
+<text x="371.69" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5381" width="101.8" height="15.0" fill="rgb(254,53,21)" rx="2" ry="2" />
+<text x="577.02" y="5391.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3509" width="0.4" height="15.0" fill="rgb(228,8,43)" rx="2" ry="2" />
+<text x="437.90" y="3519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="509.5" y="5189" width="1.7" height="15.0" fill="rgb(250,212,42)" rx="2" ry="2" />
+<text x="512.49" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="507.0" y="5029" width="1.2" height="15.0" fill="rgb(236,45,37)" rx="2" ry="2" />
+<text x="509.97" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5109" width="0.8" height="15.0" fill="rgb(205,96,18)" rx="2" ry="2" />
+<text x="1120.09" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4549" width="0.5" height="15.0" fill="rgb(211,3,6)" rx="2" ry="2" />
+<text x="346.13" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="762.6" y="5909" width="0.4" height="15.0" fill="rgb(220,207,48)" rx="2" ry="2" />
+<text x="765.59" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="260.2" y="5301" width="0.4" height="15.0" fill="rgb(238,167,34)" rx="2" ry="2" />
+<text x="263.16" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="382.1" y="5061" width="0.4" height="15.0" fill="rgb(248,15,36)" rx="2" ry="2" />
+<text x="385.10" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4693" width="0.4" height="15.0" fill="rgb(235,98,21)" rx="2" ry="2" />
+<text x="489.86" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.7" y="6405" width="0.4" height="15.0" fill="rgb(238,60,22)" rx="2" ry="2" />
+<text x="1101.65" y="6415.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1317" width="0.4" height="15.0" fill="rgb(212,57,14)" rx="2" ry="2" />
+<text x="546.43" y="1327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4517" width="0.9" height="15.0" fill="rgb(216,77,26)" rx="2" ry="2" />
+<text x="467.23" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="877.8" y="5573" width="0.4" height="15.0" fill="rgb(208,52,34)" rx="2" ry="2" />
+<text x="880.82" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1123.0" y="6437" width="0.4" height="15.0" fill="rgb(231,159,44)" rx="2" ry="2" />
+<text x="1125.95" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (65 samples, 2.31%)</title><rect x="773.9" y="5813" width="27.2" height="15.0" fill="rgb(220,38,37)" rx="2" ry="2" />
+<text x="776.90" y="5823.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (259 samples, 9.20%)</title><rect x="567.3" y="5861" width="108.5" height="15.0" fill="rgb(236,228,5)" rx="2" ry="2" />
+<text x="570.32" y="5871.5" >Nsfisis\Waddi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (68 samples, 2.41%)</title><rect x="312.5" y="5061" width="28.5" height="15.0" fill="rgb(219,208,11)" rx="2" ry="2" />
+<text x="315.54" y="5071.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5269" width="0.4" height="15.0" fill="rgb(230,24,34)" rx="2" ry="2" />
+<text x="563.19" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="423.6" y="4677" width="0.4" height="15.0" fill="rgb(254,14,34)" rx="2" ry="2" />
+<text x="426.59" y="4687.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="773" width="0.4" height="15.0" fill="rgb(232,113,21)" rx="2" ry="2" />
+<text x="546.43" y="783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (23 samples, 0.82%)</title><rect x="449.1" y="5285" width="9.7" height="15.0" fill="rgb(211,182,1)" rx="2" ry="2" />
+<text x="452.15" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (301 samples, 10.69%)</title><rect x="767.2" y="6101" width="126.1" height="15.0" fill="rgb(244,99,10)" rx="2" ry="2" />
+<text x="770.19" y="6111.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3893" width="0.4" height="15.0" fill="rgb(248,198,19)" rx="2" ry="2" />
+<text x="437.90" y="3903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (27 samples, 0.96%)</title><rect x="161.7" y="6485" width="11.3" height="15.0" fill="rgb(215,100,18)" rx="2" ry="2" />
+<text x="164.69" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6261" width="0.9" height="15.0" fill="rgb(239,202,46)" rx="2" ry="2" />
+<text x="896.74" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="354.0" y="5253" width="0.4" height="15.0" fill="rgb(222,208,50)" rx="2" ry="2" />
+<text x="357.03" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="532.1" y="5701" width="0.4" height="15.0" fill="rgb(247,47,2)" rx="2" ry="2" />
+<text x="535.12" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6277" width="0.5" height="15.0" fill="rgb(241,28,13)" rx="2" ry="2" />
+<text x="1050.95" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (15 samples, 0.53%)</title><rect x="413.5" y="5077" width="6.3" height="15.0" fill="rgb(222,170,54)" rx="2" ry="2" />
+<text x="416.53" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5013" width="1.6" height="15.0" fill="rgb(212,27,6)" rx="2" ry="2" />
+<text x="545.17" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5125" width="0.4" height="15.0" fill="rgb(251,194,40)" rx="2" ry="2" />
+<text x="520.87" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5701" width="0.4" height="15.0" fill="rgb(224,207,31)" rx="2" ry="2" />
+<text x="774.80" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4869" width="0.4" height="15.0" fill="rgb(213,93,6)" rx="2" ry="2" />
+<text x="546.43" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="891.2" y="5685" width="0.4" height="15.0" fill="rgb(253,175,33)" rx="2" ry="2" />
+<text x="894.23" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="564.4" y="5509" width="2.1" height="15.0" fill="rgb(250,57,43)" rx="2" ry="2" />
+<text x="567.38" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5669" width="0.4" height="15.0" fill="rgb(227,149,18)" rx="2" ry="2" />
+<text x="895.49" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5317" width="101.8" height="15.0" fill="rgb(240,218,43)" rx="2" ry="2" />
+<text x="577.02" y="5327.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5589" width="0.4" height="15.0" fill="rgb(245,20,32)" rx="2" ry="2" />
+<text x="761.39" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4949" width="0.5" height="15.0" fill="rgb(250,8,33)" rx="2" ry="2" />
+<text x="489.44" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4565" width="0.4" height="15.0" fill="rgb(232,71,49)" rx="2" ry="2" />
+<text x="489.86" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4789" width="0.4" height="15.0" fill="rgb(245,25,46)" rx="2" ry="2" />
+<text x="463.88" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4517" width="0.5" height="15.0" fill="rgb(249,101,17)" rx="2" ry="2" />
+<text x="480.64" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="471.4" y="5365" width="8.3" height="15.0" fill="rgb(215,142,51)" rx="2" ry="2" />
+<text x="474.36" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="325.5" y="4805" width="0.9" height="15.0" fill="rgb(210,117,25)" rx="2" ry="2" />
+<text x="328.53" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="763.8" y="5909" width="1.3" height="15.0" fill="rgb(252,131,29)" rx="2" ry="2" />
+<text x="766.84" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="341.0" y="5269" width="8.0" height="15.0" fill="rgb(205,21,39)" rx="2" ry="2" />
+<text x="344.04" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="510.7" y="5141" width="0.5" height="15.0" fill="rgb(249,92,10)" rx="2" ry="2" />
+<text x="513.75" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="501.1" y="5157" width="1.7" height="15.0" fill="rgb(214,224,28)" rx="2" ry="2" />
+<text x="504.11" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="748.8" y="5269" width="1.2" height="15.0" fill="rgb(227,112,21)" rx="2" ry="2" />
+<text x="751.76" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="4949" width="0.4" height="15.0" fill="rgb(234,6,38)" rx="2" ry="2" />
+<text x="351.58" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4725" width="0.4" height="15.0" fill="rgb(241,153,9)" rx="2" ry="2" />
+<text x="329.79" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1172.0" y="6549" width="0.4" height="15.0" fill="rgb(207,120,13)" rx="2" ry="2" />
+<text x="1174.98" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="4965" width="0.4" height="15.0" fill="rgb(235,178,47)" rx="2" ry="2" />
+<text x="416.11" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3653" width="0.4" height="15.0" fill="rgb(206,33,20)" rx="2" ry="2" />
+<text x="437.90" y="3663.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="373" width="0.4" height="15.0" fill="rgb(214,155,21)" rx="2" ry="2" />
+<text x="546.43" y="383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5541" width="0.4" height="15.0" fill="rgb(242,63,0)" rx="2" ry="2" />
+<text x="896.32" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="524.2" y="5701" width="0.4" height="15.0" fill="rgb(238,23,30)" rx="2" ry="2" />
+<text x="527.15" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="494.8" y="5365" width="0.4" height="15.0" fill="rgb(228,184,15)" rx="2" ry="2" />
+<text x="497.82" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="874.0" y="5461" width="2.6" height="15.0" fill="rgb(210,172,41)" rx="2" ry="2" />
+<text x="877.05" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="762.6" y="5957" width="0.4" height="15.0" fill="rgb(226,209,14)" rx="2" ry="2" />
+<text x="765.59" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="695.5" y="5301" width="3.8" height="15.0" fill="rgb(252,22,4)" rx="2" ry="2" />
+<text x="698.54" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4693" width="0.5" height="15.0" fill="rgb(224,184,15)" rx="2" ry="2" />
+<text x="480.64" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="760.5" y="5845" width="1.2" height="15.0" fill="rgb(211,202,33)" rx="2" ry="2" />
+<text x="763.49" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (576 samples, 20.45%)</title><rect x="253.9" y="5493" width="241.3" height="15.0" fill="rgb(219,174,54)" rx="2" ry="2" />
+<text x="256.88" y="5503.5" >Nsfisis\Waddiwasi\Execution\Runt..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5733" width="101.8" height="15.0" fill="rgb(217,27,11)" rx="2" ry="2" />
+<text x="577.02" y="5743.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="338.9" y="4757" width="2.1" height="15.0" fill="rgb(239,151,4)" rx="2" ry="2" />
+<text x="341.94" y="4767.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2213" width="0.4" height="15.0" fill="rgb(228,69,44)" rx="2" ry="2" />
+<text x="546.43" y="2223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="345.6" y="5125" width="1.7" height="15.0" fill="rgb(253,102,47)" rx="2" ry="2" />
+<text x="348.65" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="882.8" y="5573" width="3.0" height="15.0" fill="rgb(221,6,19)" rx="2" ry="2" />
+<text x="885.85" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="262.3" y="5189" width="5.0" height="15.0" fill="rgb(253,121,13)" rx="2" ry="2" />
+<text x="265.26" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6517" width="0.4" height="15.0" fill="rgb(211,103,53)" rx="2" ry="2" />
+<text x="1125.12" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="344.8" y="5045" width="0.4" height="15.0" fill="rgb(222,154,9)" rx="2" ry="2" />
+<text x="347.81" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="511.6" y="5109" width="0.8" height="15.0" fill="rgb(211,131,52)" rx="2" ry="2" />
+<text x="514.58" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4597" width="0.8" height="15.0" fill="rgb(250,149,30)" rx="2" ry="2" />
+<text x="413.60" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4837" width="0.4" height="15.0" fill="rgb(235,84,38)" rx="2" ry="2" />
+<text x="364.57" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6021" width="0.9" height="15.0" fill="rgb(243,213,27)" rx="2" ry="2" />
+<text x="896.74" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (301 samples, 10.69%)</title><rect x="767.2" y="6085" width="126.1" height="15.0" fill="rgb(212,51,11)" rx="2" ry="2" />
+<text x="770.19" y="6095.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6101" width="2.1" height="15.0" fill="rgb(237,100,35)" rx="2" ry="2" />
+<text x="251.01" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1183.7" y="6517" width="0.4" height="15.0" fill="rgb(226,96,51)" rx="2" ry="2" />
+<text x="1186.71" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5269" width="0.4" height="15.0" fill="rgb(215,168,13)" rx="2" ry="2" />
+<text x="569.06" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="4981" width="0.4" height="15.0" fill="rgb(219,149,6)" rx="2" ry="2" />
+<text x="487.77" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="4997" width="0.4" height="15.0" fill="rgb(235,137,3)" rx="2" ry="2" />
+<text x="520.87" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (226 samples, 8.03%)</title><rect x="352.4" y="5317" width="94.7" height="15.0" fill="rgb(210,179,35)" rx="2" ry="2" />
+<text x="355.35" y="5327.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.4" y="4997" width="0.4" height="15.0" fill="rgb(229,205,21)" rx="2" ry="2" />
+<text x="515.42" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="376.7" y="4965" width="1.2" height="15.0" fill="rgb(234,1,2)" rx="2" ry="2" />
+<text x="379.65" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.36%)</title><rect x="554.3" y="5621" width="4.2" height="15.0" fill="rgb(224,36,21)" rx="2" ry="2" />
+<text x="557.33" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.8" y="5045" width="0.5" height="15.0" fill="rgb(239,15,41)" rx="2" ry="2" />
+<text x="515.84" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6277" width="0.9" height="15.0" fill="rgb(254,53,40)" rx="2" ry="2" />
+<text x="896.74" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5093" width="0.4" height="15.0" fill="rgb(207,39,21)" rx="2" ry="2" />
+<text x="497.40" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="327.2" y="4821" width="0.4" height="15.0" fill="rgb(208,164,30)" rx="2" ry="2" />
+<text x="330.21" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1445" width="0.4" height="15.0" fill="rgb(241,226,40)" rx="2" ry="2" />
+<text x="546.43" y="1455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5589" width="1.3" height="15.0" fill="rgb(246,79,50)" rx="2" ry="2" />
+<text x="760.14" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1140.6" y="6485" width="0.8" height="15.0" fill="rgb(253,137,49)" rx="2" ry="2" />
+<text x="1143.55" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="494.8" y="5333" width="0.4" height="15.0" fill="rgb(211,36,7)" rx="2" ry="2" />
+<text x="497.82" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="524.6" y="5749" width="0.4" height="15.0" fill="rgb(218,107,25)" rx="2" ry="2" />
+<text x="527.57" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1098.7" y="6517" width="0.4" height="15.0" fill="rgb(222,204,11)" rx="2" ry="2" />
+<text x="1101.65" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="4021" width="5.0" height="15.0" fill="rgb(218,56,15)" rx="2" ry="2" />
+<text x="491.12" y="4031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4757" width="0.5" height="15.0" fill="rgb(207,46,48)" rx="2" ry="2" />
+<text x="469.75" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="869.9" y="5477" width="6.7" height="15.0" fill="rgb(237,152,28)" rx="2" ry="2" />
+<text x="872.86" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.7" y="5349" width="0.4" height="15.0" fill="rgb(224,43,41)" rx="2" ry="2" />
+<text x="472.68" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5029" width="0.5" height="15.0" fill="rgb(233,141,22)" rx="2" ry="2" />
+<text x="716.14" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5621" width="0.4" height="15.0" fill="rgb(217,214,7)" rx="2" ry="2" />
+<text x="766.00" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="252.2" y="5621" width="0.4" height="15.0" fill="rgb(226,209,48)" rx="2" ry="2" />
+<text x="255.20" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2821" width="0.4" height="15.0" fill="rgb(210,6,38)" rx="2" ry="2" />
+<text x="546.43" y="2831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4773" width="0.8" height="15.0" fill="rgb(240,213,45)" rx="2" ry="2" />
+<text x="276.99" y="4783.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4165" width="0.4" height="15.0" fill="rgb(218,115,5)" rx="2" ry="2" />
+<text x="546.43" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="484.8" y="5157" width="1.6" height="15.0" fill="rgb(254,157,40)" rx="2" ry="2" />
+<text x="487.77" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,239 samples, 44.00%)</title><rect x="246.8" y="6373" width="519.1" height="15.0" fill="rgb(217,18,25)" rx="2" ry="2" />
+<text x="249.75" y="6383.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5093" width="0.4" height="15.0" fill="rgb(207,43,21)" rx="2" ry="2" />
+<text x="357.03" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="463.4" y="4789" width="1.7" height="15.0" fill="rgb(242,140,35)" rx="2" ry="2" />
+<text x="466.39" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6357" width="0.9" height="15.0" fill="rgb(234,116,15)" rx="2" ry="2" />
+<text x="896.74" y="6367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="549" width="0.4" height="15.0" fill="rgb(244,77,42)" rx="2" ry="2" />
+<text x="546.43" y="559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2581" width="0.4" height="15.0" fill="rgb(217,117,21)" rx="2" ry="2" />
+<text x="546.43" y="2591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeLabelIdx (1 samples, 0.04%)</title><rect x="10.8" y="6341" width="0.5" height="15.0" fill="rgb(218,139,51)" rx="2" ry="2" />
+<text x="13.84" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="355.3" y="5109" width="0.4" height="15.0" fill="rgb(251,87,28)" rx="2" ry="2" />
+<text x="358.28" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4325" width="0.5" height="15.0" fill="rgb(248,118,3)" rx="2" ry="2" />
+<text x="480.64" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="5045" width="1.3" height="15.0" fill="rgb(215,229,1)" rx="2" ry="2" />
+<text x="348.65" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5813" width="0.4" height="15.0" fill="rgb(232,104,37)" rx="2" ry="2" />
+<text x="896.32" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.2" y="5653" width="0.4" height="15.0" fill="rgb(216,60,33)" rx="2" ry="2" />
+<text x="576.18" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="768.5" y="5413" width="1.2" height="15.0" fill="rgb(237,184,30)" rx="2" ry="2" />
+<text x="771.45" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.2" y="5509" width="0.5" height="15.0" fill="rgb(225,156,29)" rx="2" ry="2" />
+<text x="529.25" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="280.3" y="4869" width="0.8" height="15.0" fill="rgb(251,21,38)" rx="2" ry="2" />
+<text x="283.28" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="569.0" y="5797" width="4.6" height="15.0" fill="rgb(240,226,6)" rx="2" ry="2" />
+<text x="571.99" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.6" y="4949" width="0.4" height="15.0" fill="rgb(244,59,16)" rx="2" ry="2" />
+<text x="475.61" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="5813" width="0.9" height="15.0" fill="rgb(254,79,22)" rx="2" ry="2" />
+<text x="896.74" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.6" y="4981" width="0.4" height="15.0" fill="rgb(210,104,10)" rx="2" ry="2" />
+<text x="294.59" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (94 samples, 3.34%)</title><rect x="839.3" y="5605" width="39.4" height="15.0" fill="rgb(210,179,3)" rx="2" ry="2" />
+<text x="842.27" y="5615.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4293" width="0.4" height="15.0" fill="rgb(242,38,14)" rx="2" ry="2" />
+<text x="443.77" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5541" width="0.4" height="15.0" fill="rgb(247,172,16)" rx="2" ry="2" />
+<text x="576.60" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.9" y="5125" width="0.4" height="15.0" fill="rgb(232,40,29)" rx="2" ry="2" />
+<text x="486.93" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="527.9" y="5701" width="3.4" height="15.0" fill="rgb(240,4,25)" rx="2" ry="2" />
+<text x="530.93" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2309" width="0.4" height="15.0" fill="rgb(252,86,32)" rx="2" ry="2" />
+<text x="546.43" y="2319.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3477" width="0.4" height="15.0" fill="rgb(214,74,24)" rx="2" ry="2" />
+<text x="437.90" y="3487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6021" width="2.1" height="15.0" fill="rgb(227,207,24)" rx="2" ry="2" />
+<text x="251.01" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="321.8" y="4821" width="0.8" height="15.0" fill="rgb(241,25,11)" rx="2" ry="2" />
+<text x="324.76" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="532.1" y="5797" width="0.4" height="15.0" fill="rgb(224,220,42)" rx="2" ry="2" />
+<text x="535.12" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="263.5" y="5045" width="1.3" height="15.0" fill="rgb(216,125,11)" rx="2" ry="2" />
+<text x="266.52" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="390.1" y="4997" width="0.4" height="15.0" fill="rgb(207,212,38)" rx="2" ry="2" />
+<text x="393.06" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="464.2" y="4245" width="0.9" height="15.0" fill="rgb(233,149,23)" rx="2" ry="2" />
+<text x="467.23" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4629" width="0.4" height="15.0" fill="rgb(242,169,4)" rx="2" ry="2" />
+<text x="364.57" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.88%)</title><rect x="424.4" y="5013" width="22.2" height="15.0" fill="rgb(208,144,31)" rx="2" ry="2" />
+<text x="427.42" y="5023.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2725" width="0.4" height="15.0" fill="rgb(229,53,37)" rx="2" ry="2" />
+<text x="437.90" y="2735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4741" width="0.4" height="15.0" fill="rgb(243,117,29)" rx="2" ry="2" />
+<text x="1073.99" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4629" width="0.4" height="15.0" fill="rgb(249,215,33)" rx="2" ry="2" />
+<text x="496.98" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5749" width="1.3" height="15.0" fill="rgb(251,108,26)" rx="2" ry="2" />
+<text x="760.14" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (3 samples, 0.11%)</title><rect x="10.4" y="6453" width="1.3" height="15.0" fill="rgb(244,225,40)" rx="2" ry="2" />
+<text x="13.42" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5541" width="0.4" height="15.0" fill="rgb(214,94,41)" rx="2" ry="2" />
+<text x="895.49" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5669" width="0.8" height="15.0" fill="rgb(252,20,13)" rx="2" ry="2" />
+<text x="1120.09" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1140.6" y="6277" width="0.4" height="15.0" fill="rgb(221,189,42)" rx="2" ry="2" />
+<text x="1143.55" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5605" width="0.4" height="15.0" fill="rgb(246,154,52)" rx="2" ry="2" />
+<text x="1073.99" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5621" width="0.4" height="15.0" fill="rgb(246,182,9)" rx="2" ry="2" />
+<text x="768.52" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6133" width="0.4" height="15.0" fill="rgb(253,169,12)" rx="2" ry="2" />
+<text x="13.42" y="6143.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3253" width="0.4" height="15.0" fill="rgb(206,159,36)" rx="2" ry="2" />
+<text x="437.90" y="3263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeSection (12 samples, 0.43%)</title><rect x="10.4" y="6549" width="5.0" height="15.0" fill="rgb(235,197,16)" rx="2" ry="2" />
+<text x="13.42" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4853" width="0.4" height="15.0" fill="rgb(253,101,51)" rx="2" ry="2" />
+<text x="760.98" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (3 samples, 0.11%)</title><rect x="10.4" y="6469" width="1.3" height="15.0" fill="rgb(247,160,50)" rx="2" ry="2" />
+<text x="13.42" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (243 samples, 8.63%)</title><rect x="574.0" y="5765" width="101.8" height="15.0" fill="rgb(242,6,22)" rx="2" ry="2" />
+<text x="577.02" y="5775.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="525.4" y="5429" width="0.8" height="15.0" fill="rgb(208,116,52)" rx="2" ry="2" />
+<text x="528.41" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.4" y="4741" width="0.4" height="15.0" fill="rgb(228,129,42)" rx="2" ry="2" />
+<text x="321.41" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (9 samples, 0.32%)</title><rect x="11.7" y="6485" width="3.7" height="15.0" fill="rgb(210,114,42)" rx="2" ry="2" />
+<text x="14.68" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4213" width="5.4" height="15.0" fill="rgb(240,14,20)" rx="2" ry="2" />
+<text x="490.70" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.39%)</title><rect x="751.3" y="5253" width="4.6" height="15.0" fill="rgb(217,167,11)" rx="2" ry="2" />
+<text x="754.27" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="457.5" y="5013" width="0.9" height="15.0" fill="rgb(209,29,10)" rx="2" ry="2" />
+<text x="460.53" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="761.3" y="5765" width="0.4" height="15.0" fill="rgb(223,214,44)" rx="2" ry="2" />
+<text x="764.33" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="804.9" y="5669" width="0.4" height="15.0" fill="rgb(224,42,12)" rx="2" ry="2" />
+<text x="807.91" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="456.3" y="5205" width="2.5" height="15.0" fill="rgb(205,152,33)" rx="2" ry="2" />
+<text x="459.27" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4277" width="0.4" height="15.0" fill="rgb(230,220,35)" rx="2" ry="2" />
+<text x="546.43" y="4287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="504.9" y="5077" width="0.4" height="15.0" fill="rgb(252,88,53)" rx="2" ry="2" />
+<text x="507.88" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="329.3" y="4933" width="0.4" height="15.0" fill="rgb(250,224,38)" rx="2" ry="2" />
+<text x="332.30" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="679.6" y="5429" width="0.4" height="15.0" fill="rgb(207,199,51)" rx="2" ry="2" />
+<text x="682.62" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (51 samples, 1.81%)</title><rect x="267.3" y="5237" width="21.4" height="15.0" fill="rgb(216,37,7)" rx="2" ry="2" />
+<text x="270.29" y="5247.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.0" y="6293" width="0.4" height="15.0" fill="rgb(254,36,37)" rx="2" ry="2" />
+<text x="1143.97" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5173" width="0.4" height="15.0" fill="rgb(210,97,22)" rx="2" ry="2" />
+<text x="520.87" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="464.7" y="4229" width="0.4" height="15.0" fill="rgb(218,26,10)" rx="2" ry="2" />
+<text x="467.65" y="4239.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2981" width="0.4" height="15.0" fill="rgb(254,152,32)" rx="2" ry="2" />
+<text x="437.90" y="2991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="558.9" y="5717" width="8.4" height="15.0" fill="rgb(245,8,5)" rx="2" ry="2" />
+<text x="561.93" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="486.9" y="5205" width="7.5" height="15.0" fill="rgb(250,183,34)" rx="2" ry="2" />
+<text x="489.86" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5813" width="0.4" height="15.0" fill="rgb(238,158,17)" rx="2" ry="2" />
+<text x="768.52" y="5823.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (10 samples, 0.36%)</title><rect x="180.5" y="6485" width="4.2" height="15.0" fill="rgb(209,100,28)" rx="2" ry="2" />
+<text x="183.55" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="247.6" y="6213" width="0.4" height="15.0" fill="rgb(223,10,2)" rx="2" ry="2" />
+<text x="250.59" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4645" width="0.8" height="15.0" fill="rgb(249,186,21)" rx="2" ry="2" />
+<text x="1120.09" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5845" width="0.4" height="15.0" fill="rgb(231,91,12)" rx="2" ry="2" />
+<text x="768.10" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="457.5" y="4965" width="0.9" height="15.0" fill="rgb(238,140,39)" rx="2" ry="2" />
+<text x="460.53" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4581" width="0.4" height="15.0" fill="rgb(210,87,0)" rx="2" ry="2" />
+<text x="489.86" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,224 samples, 43.47%)</title><rect x="250.1" y="6245" width="512.9" height="15.0" fill="rgb(205,31,44)" rx="2" ry="2" />
+<text x="253.11" y="6255.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (99 samples, 3.52%)</title><rect x="837.2" y="5669" width="41.5" height="15.0" fill="rgb(252,26,43)" rx="2" ry="2" />
+<text x="840.17" y="5679.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="455.0" y="5125" width="0.4" height="15.0" fill="rgb(235,114,45)" rx="2" ry="2" />
+<text x="458.01" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5205" width="0.4" height="15.0" fill="rgb(225,111,39)" rx="2" ry="2" />
+<text x="896.32" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4501" width="0.4" height="15.0" fill="rgb(248,80,53)" rx="2" ry="2" />
+<text x="1073.99" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.9" y="4597" width="0.9" height="15.0" fill="rgb(205,216,32)" rx="2" ry="2" />
+<text x="429.94" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.9" y="4981" width="0.5" height="15.0" fill="rgb(254,115,11)" rx="2" ry="2" />
+<text x="310.93" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="4949" width="0.4" height="15.0" fill="rgb(240,119,4)" rx="2" ry="2" />
+<text x="357.03" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="759.7" y="5845" width="0.8" height="15.0" fill="rgb(231,122,46)" rx="2" ry="2" />
+<text x="762.65" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5077" width="0.4" height="15.0" fill="rgb(228,95,23)" rx="2" ry="2" />
+<text x="563.19" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="346.9" y="5045" width="0.4" height="15.0" fill="rgb(208,63,38)" rx="2" ry="2" />
+<text x="349.90" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="5077" width="0.4" height="15.0" fill="rgb(210,40,25)" rx="2" ry="2" />
+<text x="416.11" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="301.6" y="5029" width="0.5" height="15.0" fill="rgb(209,156,8)" rx="2" ry="2" />
+<text x="304.65" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1075.2" y="6437" width="0.4" height="15.0" fill="rgb(250,70,46)" rx="2" ry="2" />
+<text x="1078.18" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="515.8" y="5141" width="1.7" height="15.0" fill="rgb(246,49,45)" rx="2" ry="2" />
+<text x="518.77" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3541" width="0.4" height="15.0" fill="rgb(216,221,10)" rx="2" ry="2" />
+<text x="546.43" y="3551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="1139.7" y="6549" width="3.8" height="15.0" fill="rgb(222,161,39)" rx="2" ry="2" />
+<text x="1142.72" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="473.0" y="5061" width="6.7" height="15.0" fill="rgb(207,82,22)" rx="2" ry="2" />
+<text x="476.03" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.9" y="5029" width="0.4" height="15.0" fill="rgb(246,120,1)" rx="2" ry="2" />
+<text x="486.93" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="767.2" y="5525" width="2.5" height="15.0" fill="rgb(249,73,21)" rx="2" ry="2" />
+<text x="770.19" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (55 samples, 1.95%)</title><rect x="495.7" y="5429" width="23.0" height="15.0" fill="rgb(219,96,16)" rx="2" ry="2" />
+<text x="498.66" y="5439.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="385.9" y="4997" width="0.4" height="15.0" fill="rgb(216,151,34)" rx="2" ry="2" />
+<text x="388.87" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5669" width="0.9" height="15.0" fill="rgb(219,96,11)" rx="2" ry="2" />
+<text x="896.74" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3877" width="5.0" height="15.0" fill="rgb(234,223,51)" rx="2" ry="2" />
+<text x="491.12" y="3887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5637" width="1.3" height="15.0" fill="rgb(232,189,49)" rx="2" ry="2" />
+<text x="760.14" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5637" width="0.4" height="15.0" fill="rgb(237,83,21)" rx="2" ry="2" />
+<text x="767.26" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="767.2" y="6037" width="2.9" height="15.0" fill="rgb(228,179,4)" rx="2" ry="2" />
+<text x="770.19" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6373" width="0.5" height="15.0" fill="rgb(217,204,30)" rx="2" ry="2" />
+<text x="1050.95" y="6383.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1925" width="0.4" height="15.0" fill="rgb(220,168,18)" rx="2" ry="2" />
+<text x="546.43" y="1935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5573" width="0.4" height="15.0" fill="rgb(249,189,35)" rx="2" ry="2" />
+<text x="896.32" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1119.2" y="6485" width="0.4" height="15.0" fill="rgb(221,27,20)" rx="2" ry="2" />
+<text x="1122.18" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5685" width="0.4" height="15.0" fill="rgb(247,126,2)" rx="2" ry="2" />
+<text x="896.32" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4405" width="0.4" height="15.0" fill="rgb(243,171,53)" rx="2" ry="2" />
+<text x="414.02" y="4415.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3173" width="0.4" height="15.0" fill="rgb(215,199,26)" rx="2" ry="2" />
+<text x="546.43" y="3183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.4" y="4773" width="0.4" height="15.0" fill="rgb(222,208,8)" rx="2" ry="2" />
+<text x="321.41" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="468.4" y="5205" width="0.4" height="15.0" fill="rgb(225,106,20)" rx="2" ry="2" />
+<text x="471.42" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4949" width="0.8" height="15.0" fill="rgb(224,226,28)" rx="2" ry="2" />
+<text x="276.99" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6309" width="1.3" height="15.0" fill="rgb(217,36,18)" rx="2" ry="2" />
+<text x="768.94" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="481.8" y="5285" width="1.3" height="15.0" fill="rgb(250,99,21)" rx="2" ry="2" />
+<text x="484.83" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="755.9" y="5221" width="0.4" height="15.0" fill="rgb(237,52,4)" rx="2" ry="2" />
+<text x="758.88" y="5231.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="282.4" y="5061" width="0.4" height="15.0" fill="rgb(222,63,21)" rx="2" ry="2" />
+<text x="285.37" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2517" width="0.4" height="15.0" fill="rgb(232,163,41)" rx="2" ry="2" />
+<text x="437.90" y="2527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4725" width="0.8" height="15.0" fill="rgb(240,225,6)" rx="2" ry="2" />
+<text x="512.91" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5237" width="0.8" height="15.0" fill="rgb(214,201,43)" rx="2" ry="2" />
+<text x="1120.09" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4533" width="0.4" height="15.0" fill="rgb(222,8,35)" rx="2" ry="2" />
+<text x="1073.99" y="4543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1061" width="0.4" height="15.0" fill="rgb(247,49,15)" rx="2" ry="2" />
+<text x="546.43" y="1071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5141" width="0.4" height="15.0" fill="rgb(229,183,15)" rx="2" ry="2" />
+<text x="520.87" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="4981" width="0.9" height="15.0" fill="rgb(243,188,20)" rx="2" ry="2" />
+<text x="345.71" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5493" width="0.4" height="15.0" fill="rgb(237,32,0)" rx="2" ry="2" />
+<text x="897.16" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4597" width="0.5" height="15.0" fill="rgb(226,72,30)" rx="2" ry="2" />
+<text x="346.13" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5285" width="101.8" height="15.0" fill="rgb(239,20,53)" rx="2" ry="2" />
+<text x="577.02" y="5295.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (17 samples, 0.60%)</title><rect x="458.8" y="5157" width="7.1" height="15.0" fill="rgb(215,142,19)" rx="2" ry="2" />
+<text x="461.79" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="771.8" y="5909" width="0.4" height="15.0" fill="rgb(218,208,27)" rx="2" ry="2" />
+<text x="774.80" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1162.3" y="6501" width="0.9" height="15.0" fill="rgb(222,179,33)" rx="2" ry="2" />
+<text x="1165.34" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="770.1" y="5989" width="0.4" height="15.0" fill="rgb(240,198,9)" rx="2" ry="2" />
+<text x="773.13" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="397.6" y="4901" width="0.8" height="15.0" fill="rgb(214,20,5)" rx="2" ry="2" />
+<text x="400.61" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,224 samples, 43.47%)</title><rect x="250.1" y="6261" width="512.9" height="15.0" fill="rgb(249,78,39)" rx="2" ry="2" />
+<text x="253.11" y="6271.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Label (1 samples, 0.04%)</title><rect x="1118.3" y="6389" width="0.5" height="15.0" fill="rgb(237,1,5)" rx="2" ry="2" />
+<text x="1121.35" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5429" width="0.4" height="15.0" fill="rgb(242,147,21)" rx="2" ry="2" />
+<text x="529.67" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (114 samples, 4.05%)</title><rect x="773.5" y="5893" width="47.7" height="15.0" fill="rgb(227,88,18)" rx="2" ry="2" />
+<text x="776.48" y="5903.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="511.6" y="5045" width="0.8" height="15.0" fill="rgb(233,35,24)" rx="2" ry="2" />
+<text x="514.58" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4533" width="0.8" height="15.0" fill="rgb(250,54,46)" rx="2" ry="2" />
+<text x="1120.09" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5301" width="0.4" height="15.0" fill="rgb(230,145,20)" rx="2" ry="2" />
+<text x="896.32" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5109" width="0.4" height="15.0" fill="rgb(221,111,3)" rx="2" ry="2" />
+<text x="563.19" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6085" width="0.4" height="15.0" fill="rgb(233,1,37)" rx="2" ry="2" />
+<text x="13.42" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5237" width="0.4" height="15.0" fill="rgb(235,73,54)" rx="2" ry="2" />
+<text x="357.03" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (172 samples, 6.11%)</title><rect x="821.2" y="5893" width="72.1" height="15.0" fill="rgb(237,18,17)" rx="2" ry="2" />
+<text x="824.25" y="5903.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="472.2" y="5205" width="0.4" height="15.0" fill="rgb(218,12,7)" rx="2" ry="2" />
+<text x="475.19" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="4981" width="0.4" height="15.0" fill="rgb(254,107,16)" rx="2" ry="2" />
+<text x="357.03" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="757.1" y="5941" width="1.7" height="15.0" fill="rgb(207,119,10)" rx="2" ry="2" />
+<text x="760.14" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (225 samples, 7.99%)</title><rect x="352.8" y="5301" width="94.3" height="15.0" fill="rgb(220,186,27)" rx="2" ry="2" />
+<text x="355.77" y="5311.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1124.6" y="6517" width="0.9" height="15.0" fill="rgb(216,15,8)" rx="2" ry="2" />
+<text x="1127.63" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="527.9" y="5525" width="3.0" height="15.0" fill="rgb(246,217,29)" rx="2" ry="2" />
+<text x="530.93" y="5535.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1509" width="0.4" height="15.0" fill="rgb(212,84,26)" rx="2" ry="2" />
+<text x="546.43" y="1519.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2549" width="0.4" height="15.0" fill="rgb(250,94,39)" rx="2" ry="2" />
+<text x="437.90" y="2559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (44 samples, 1.56%)</title><rect x="394.7" y="4997" width="18.4" height="15.0" fill="rgb(248,225,35)" rx="2" ry="2" />
+<text x="397.67" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4837" width="0.4" height="15.0" fill="rgb(253,104,16)" rx="2" ry="2" />
+<text x="496.98" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="501.1" y="5125" width="1.7" height="15.0" fill="rgb(217,5,14)" rx="2" ry="2" />
+<text x="504.11" y="5135.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:286-297) (2 samples, 0.07%)</title><rect x="893.7" y="5845" width="0.9" height="15.0" fill="rgb(228,62,20)" rx="2" ry="2" />
+<text x="896.74" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1139.3" y="6549" width="0.4" height="15.0" fill="rgb(233,23,3)" rx="2" ry="2" />
+<text x="1142.30" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5125" width="0.4" height="15.0" fill="rgb(219,95,45)" rx="2" ry="2" />
+<text x="563.19" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5509" width="0.4" height="15.0" fill="rgb(235,146,29)" rx="2" ry="2" />
+<text x="761.39" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5957" width="0.4" height="15.0" fill="rgb(211,131,33)" rx="2" ry="2" />
+<text x="523.38" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1140.6" y="6469" width="0.8" height="15.0" fill="rgb(230,138,16)" rx="2" ry="2" />
+<text x="1143.55" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="4885" width="0.4" height="15.0" fill="rgb(208,185,10)" rx="2" ry="2" />
+<text x="487.77" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="761.7" y="5941" width="0.5" height="15.0" fill="rgb(242,174,3)" rx="2" ry="2" />
+<text x="764.75" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4629" width="0.5" height="15.0" fill="rgb(246,38,12)" rx="2" ry="2" />
+<text x="346.13" y="4639.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="181" width="0.4" height="15.0" fill="rgb(235,22,33)" rx="2" ry="2" />
+<text x="546.43" y="191.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="229.2" y="6485" width="0.4" height="15.0" fill="rgb(212,137,48)" rx="2" ry="2" />
+<text x="232.15" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="424.0" y="4757" width="0.4" height="15.0" fill="rgb(247,98,46)" rx="2" ry="2" />
+<text x="427.01" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="446.6" y="5189" width="0.5" height="15.0" fill="rgb(227,164,54)" rx="2" ry="2" />
+<text x="449.63" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5765" width="0.8" height="15.0" fill="rgb(223,35,15)" rx="2" ry="2" />
+<text x="1120.09" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5685" width="0.4" height="15.0" fill="rgb(220,76,30)" rx="2" ry="2" />
+<text x="524.22" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.0" y="4917" width="0.4" height="15.0" fill="rgb(240,199,2)" rx="2" ry="2" />
+<text x="515.00" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="247.6" y="6037" width="0.4" height="15.0" fill="rgb(217,175,12)" rx="2" ry="2" />
+<text x="250.59" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5413" width="101.8" height="15.0" fill="rgb(215,86,46)" rx="2" ry="2" />
+<text x="577.02" y="5423.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1138.5" y="6517" width="0.4" height="15.0" fill="rgb(240,144,22)" rx="2" ry="2" />
+<text x="1141.46" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="269.4" y="4997" width="2.9" height="15.0" fill="rgb(221,34,24)" rx="2" ry="2" />
+<text x="272.38" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4597" width="0.8" height="15.0" fill="rgb(248,118,36)" rx="2" ry="2" />
+<text x="512.91" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="1120.9" y="6501" width="0.4" height="15.0" fill="rgb(220,123,3)" rx="2" ry="2" />
+<text x="1123.86" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="456.3" y="5157" width="2.1" height="15.0" fill="rgb(254,115,31)" rx="2" ry="2" />
+<text x="459.27" y="5167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4197" width="0.4" height="15.0" fill="rgb(247,65,18)" rx="2" ry="2" />
+<text x="437.90" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="528.8" y="5461" width="2.1" height="15.0" fill="rgb(237,5,2)" rx="2" ry="2" />
+<text x="531.76" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4469" width="0.8" height="15.0" fill="rgb(219,216,34)" rx="2" ry="2" />
+<text x="1120.09" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4789" width="0.4" height="15.0" fill="rgb(250,200,11)" rx="2" ry="2" />
+<text x="272.80" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5733" width="0.4" height="15.0" fill="rgb(235,55,7)" rx="2" ry="2" />
+<text x="768.10" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4725" width="0.4" height="15.0" fill="rgb(251,15,49)" rx="2" ry="2" />
+<text x="760.98" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="151.2" y="6453" width="0.4" height="15.0" fill="rgb(254,101,36)" rx="2" ry="2" />
+<text x="154.21" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1162.3" y="6453" width="0.5" height="15.0" fill="rgb(207,127,12)" rx="2" ry="2" />
+<text x="1165.34" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4069" width="5.4" height="15.0" fill="rgb(225,164,16)" rx="2" ry="2" />
+<text x="490.70" y="4079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.92%)</title><rect x="390.5" y="5061" width="22.6" height="15.0" fill="rgb(234,3,0)" rx="2" ry="2" />
+<text x="393.48" y="5071.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4469" width="0.5" height="15.0" fill="rgb(230,195,31)" rx="2" ry="2" />
+<text x="480.64" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4869" width="0.5" height="15.0" fill="rgb(227,88,37)" rx="2" ry="2" />
+<text x="489.44" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.4" y="4389" width="0.4" height="15.0" fill="rgb(216,26,38)" rx="2" ry="2" />
+<text x="430.36" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="411.9" y="4821" width="0.4" height="15.0" fill="rgb(218,100,23)" rx="2" ry="2" />
+<text x="414.85" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="570.2" y="5781" width="0.5" height="15.0" fill="rgb(213,48,0)" rx="2" ry="2" />
+<text x="573.25" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5205" width="0.4" height="15.0" fill="rgb(225,7,16)" rx="2" ry="2" />
+<text x="357.03" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="799.0" y="5189" width="0.9" height="15.0" fill="rgb(227,134,45)" rx="2" ry="2" />
+<text x="802.04" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5717" width="101.8" height="15.0" fill="rgb(208,135,43)" rx="2" ry="2" />
+<text x="577.02" y="5727.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4677" width="0.5" height="15.0" fill="rgb(237,29,37)" rx="2" ry="2" />
+<text x="469.75" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4565" width="5.8" height="15.0" fill="rgb(224,103,1)" rx="2" ry="2" />
+<text x="490.28" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="570.7" y="5781" width="2.9" height="15.0" fill="rgb(235,185,15)" rx="2" ry="2" />
+<text x="573.67" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5493" width="0.5" height="15.0" fill="rgb(213,179,28)" rx="2" ry="2" />
+<text x="573.25" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5141" width="0.8" height="15.0" fill="rgb(206,30,18)" rx="2" ry="2" />
+<text x="1120.09" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="682.1" y="5253" width="0.4" height="15.0" fill="rgb(239,40,52)" rx="2" ry="2" />
+<text x="685.13" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (1 samples, 0.04%)</title><rect x="893.3" y="5397" width="0.4" height="15.0" fill="rgb(208,136,42)" rx="2" ry="2" />
+<text x="896.32" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5749" width="0.4" height="15.0" fill="rgb(235,58,18)" rx="2" ry="2" />
+<text x="766.00" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.0" y="4901" width="0.4" height="15.0" fill="rgb(247,216,47)" rx="2" ry="2" />
+<text x="515.00" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (4 samples, 0.14%)</title><rect x="835.5" y="5685" width="1.7" height="15.0" fill="rgb(239,6,48)" rx="2" ry="2" />
+<text x="838.50" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5413" width="0.8" height="15.0" fill="rgb(242,88,3)" rx="2" ry="2" />
+<text x="1120.09" y="5423.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4309" width="0.4" height="15.0" fill="rgb(216,7,21)" rx="2" ry="2" />
+<text x="546.43" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (8 samples, 0.28%)</title><rect x="238.8" y="6501" width="3.3" height="15.0" fill="rgb(237,136,37)" rx="2" ry="2" />
+<text x="241.79" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5733" width="0.4" height="15.0" fill="rgb(207,71,15)" rx="2" ry="2" />
+<text x="766.00" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6357" width="0.4" height="15.0" fill="rgb(211,166,48)" rx="2" ry="2" />
+<text x="1125.12" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5477" width="0.8" height="15.0" fill="rgb(242,224,46)" rx="2" ry="2" />
+<text x="528.41" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="890.8" y="5589" width="0.4" height="15.0" fill="rgb(247,157,28)" rx="2" ry="2" />
+<text x="893.81" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5477" width="1.3" height="15.0" fill="rgb(227,19,45)" rx="2" ry="2" />
+<text x="760.14" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="378.8" y="5189" width="0.4" height="15.0" fill="rgb(248,227,10)" rx="2" ry="2" />
+<text x="381.75" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="5013" width="0.4" height="15.0" fill="rgb(209,41,39)" rx="2" ry="2" />
+<text x="475.19" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4693" width="0.5" height="15.0" fill="rgb(226,157,15)" rx="2" ry="2" />
+<text x="346.13" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="343.6" y="5237" width="5.4" height="15.0" fill="rgb(247,173,54)" rx="2" ry="2" />
+<text x="346.55" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5541" width="2.5" height="15.0" fill="rgb(230,65,8)" rx="2" ry="2" />
+<text x="770.19" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="460.9" y="4837" width="0.4" height="15.0" fill="rgb(218,129,28)" rx="2" ry="2" />
+<text x="463.88" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="437.0" y="4917" width="9.2" height="15.0" fill="rgb(233,151,53)" rx="2" ry="2" />
+<text x="440.00" y="4927.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2757" width="0.4" height="15.0" fill="rgb(251,109,46)" rx="2" ry="2" />
+<text x="546.43" y="2767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4821" width="0.8" height="15.0" fill="rgb(250,131,2)" rx="2" ry="2" />
+<text x="1120.09" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="762.2" y="6053" width="0.8" height="15.0" fill="rgb(246,208,52)" rx="2" ry="2" />
+<text x="765.17" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="260.2" y="5333" width="0.4" height="15.0" fill="rgb(241,226,14)" rx="2" ry="2" />
+<text x="263.16" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4277" width="5.4" height="15.0" fill="rgb(223,135,16)" rx="2" ry="2" />
+<text x="490.70" y="4287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="463.4" y="4773" width="1.7" height="15.0" fill="rgb(232,61,17)" rx="2" ry="2" />
+<text x="466.39" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="835.5" y="5525" width="0.8" height="15.0" fill="rgb(215,121,19)" rx="2" ry="2" />
+<text x="838.50" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4437" width="0.4" height="15.0" fill="rgb(247,224,44)" rx="2" ry="2" />
+<text x="496.98" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (38 samples, 1.35%)</title><rect x="313.0" y="4997" width="15.9" height="15.0" fill="rgb(207,38,35)" rx="2" ry="2" />
+<text x="315.96" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="300.0" y="4997" width="1.6" height="15.0" fill="rgb(250,209,32)" rx="2" ry="2" />
+<text x="302.97" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="486.9" y="5189" width="7.5" height="15.0" fill="rgb(210,187,30)" rx="2" ry="2" />
+<text x="489.86" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.0" y="6357" width="0.4" height="15.0" fill="rgb(210,97,19)" rx="2" ry="2" />
+<text x="1143.97" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="282.8" y="5013" width="0.4" height="15.0" fill="rgb(211,192,14)" rx="2" ry="2" />
+<text x="285.79" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5173" width="0.5" height="15.0" fill="rgb(213,219,6)" rx="2" ry="2" />
+<text x="716.14" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4453" width="0.9" height="15.0" fill="rgb(242,158,22)" rx="2" ry="2" />
+<text x="443.35" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4645" width="0.8" height="15.0" fill="rgb(205,130,33)" rx="2" ry="2" />
+<text x="413.60" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="368.7" y="4885" width="0.4" height="15.0" fill="rgb(254,78,11)" rx="2" ry="2" />
+<text x="371.69" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (35 samples, 1.24%)</title><rect x="314.2" y="4965" width="14.7" height="15.0" fill="rgb(232,58,29)" rx="2" ry="2" />
+<text x="317.22" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6133" width="0.4" height="15.0" fill="rgb(241,99,9)" rx="2" ry="2" />
+<text x="1073.99" y="6143.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1941" width="0.4" height="15.0" fill="rgb(222,138,0)" rx="2" ry="2" />
+<text x="546.43" y="1951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="476.4" y="4837" width="2.9" height="15.0" fill="rgb(236,77,21)" rx="2" ry="2" />
+<text x="479.38" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4453" width="0.4" height="15.0" fill="rgb(254,3,18)" rx="2" ry="2" />
+<text x="414.02" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4677" width="0.9" height="15.0" fill="rgb(245,109,2)" rx="2" ry="2" />
+<text x="467.23" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4741" width="0.5" height="15.0" fill="rgb(232,102,39)" rx="2" ry="2" />
+<text x="469.75" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="420.2" y="4821" width="1.3" height="15.0" fill="rgb(221,178,19)" rx="2" ry="2" />
+<text x="423.23" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4357" width="0.4" height="15.0" fill="rgb(232,42,23)" rx="2" ry="2" />
+<text x="437.90" y="4367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3525" width="0.4" height="15.0" fill="rgb(238,80,19)" rx="2" ry="2" />
+<text x="546.43" y="3535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4389" width="0.5" height="15.0" fill="rgb(245,46,30)" rx="2" ry="2" />
+<text x="480.64" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4421" width="5.8" height="15.0" fill="rgb(232,210,51)" rx="2" ry="2" />
+<text x="490.28" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4837" width="6.7" height="15.0" fill="rgb(244,122,28)" rx="2" ry="2" />
+<text x="489.86" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="286.6" y="5125" width="0.4" height="15.0" fill="rgb(235,141,3)" rx="2" ry="2" />
+<text x="289.56" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="251.8" y="5781" width="1.7" height="15.0" fill="rgb(222,159,42)" rx="2" ry="2" />
+<text x="254.78" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="836.3" y="5621" width="0.9" height="15.0" fill="rgb(232,168,17)" rx="2" ry="2" />
+<text x="839.34" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5061" width="0.4" height="15.0" fill="rgb(244,194,22)" rx="2" ry="2" />
+<text x="896.32" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2677" width="0.4" height="15.0" fill="rgb(214,25,11)" rx="2" ry="2" />
+<text x="546.43" y="2687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4517" width="0.4" height="15.0" fill="rgb(206,187,41)" rx="2" ry="2" />
+<text x="414.02" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="822.1" y="5733" width="0.4" height="15.0" fill="rgb(243,203,25)" rx="2" ry="2" />
+<text x="825.09" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4581" width="5.8" height="15.0" fill="rgb(241,144,43)" rx="2" ry="2" />
+<text x="490.28" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.2" y="5685" width="0.4" height="15.0" fill="rgb(250,31,50)" rx="2" ry="2" />
+<text x="576.18" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.7" y="5813" width="0.4" height="15.0" fill="rgb(253,8,0)" rx="2" ry="2" />
+<text x="767.68" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.4" y="4725" width="0.4" height="15.0" fill="rgb(226,87,32)" rx="2" ry="2" />
+<text x="321.41" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5045" width="0.4" height="15.0" fill="rgb(219,112,51)" rx="2" ry="2" />
+<text x="520.87" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="521.2" y="5845" width="3.8" height="15.0" fill="rgb(212,8,3)" rx="2" ry="2" />
+<text x="524.22" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6101" width="0.4" height="15.0" fill="rgb(211,1,53)" rx="2" ry="2" />
+<text x="896.32" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="246.8" y="6357" width="3.3" height="15.0" fill="rgb(205,76,18)" rx="2" ry="2" />
+<text x="249.75" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="401.4" y="4917" width="1.7" height="15.0" fill="rgb(234,17,45)" rx="2" ry="2" />
+<text x="404.38" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (79 samples, 2.81%)</title><rect x="413.5" y="5109" width="33.1" height="15.0" fill="rgb(232,158,21)" rx="2" ry="2" />
+<text x="416.53" y="5119.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="757.1" y="5909" width="1.3" height="15.0" fill="rgb(221,127,19)" rx="2" ry="2" />
+<text x="760.14" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="759.7" y="5829" width="0.8" height="15.0" fill="rgb(245,103,1)" rx="2" ry="2" />
+<text x="762.65" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (302 samples, 10.72%)</title><rect x="767.2" y="6309" width="126.5" height="15.0" fill="rgb(242,141,39)" rx="2" ry="2" />
+<text x="770.19" y="6319.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.6" y="4789" width="0.5" height="15.0" fill="rgb(247,224,47)" rx="2" ry="2" />
+<text x="348.65" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="752.5" y="5157" width="3.4" height="15.0" fill="rgb(213,44,9)" rx="2" ry="2" />
+<text x="755.53" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="519.1" y="5349" width="0.4" height="15.0" fill="rgb(217,1,31)" rx="2" ry="2" />
+<text x="522.13" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="559.4" y="5573" width="0.4" height="15.0" fill="rgb(213,67,22)" rx="2" ry="2" />
+<text x="562.35" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1118.3" y="6341" width="0.5" height="15.0" fill="rgb(214,215,15)" rx="2" ry="2" />
+<text x="1121.35" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.6" y="4965" width="0.4" height="15.0" fill="rgb(234,128,19)" rx="2" ry="2" />
+<text x="475.61" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5781" width="0.4" height="15.0" fill="rgb(220,138,47)" rx="2" ry="2" />
+<text x="1073.99" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5701" width="0.5" height="15.0" fill="rgb(228,85,32)" rx="2" ry="2" />
+<text x="894.65" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="278.6" y="4613" width="0.4" height="15.0" fill="rgb(216,219,54)" rx="2" ry="2" />
+<text x="281.60" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="663.7" y="5205" width="0.4" height="15.0" fill="rgb(234,177,35)" rx="2" ry="2" />
+<text x="666.69" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="767.2" y="5957" width="2.9" height="15.0" fill="rgb(225,194,51)" rx="2" ry="2" />
+<text x="770.19" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4789" width="0.9" height="15.0" fill="rgb(232,99,53)" rx="2" ry="2" />
+<text x="388.04" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="797.8" y="5413" width="2.1" height="15.0" fill="rgb(236,53,23)" rx="2" ry="2" />
+<text x="800.78" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="342.3" y="5157" width="0.4" height="15.0" fill="rgb(209,111,24)" rx="2" ry="2" />
+<text x="345.29" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="508.2" y="5045" width="0.5" height="15.0" fill="rgb(217,160,34)" rx="2" ry="2" />
+<text x="511.23" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4773" width="0.4" height="15.0" fill="rgb(239,5,35)" rx="2" ry="2" />
+<text x="546.43" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.92%)</title><rect x="1107.9" y="6421" width="10.9" height="15.0" fill="rgb(235,185,48)" rx="2" ry="2" />
+<text x="1110.87" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="426.9" y="4661" width="0.9" height="15.0" fill="rgb(207,157,14)" rx="2" ry="2" />
+<text x="429.94" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1037.9" y="6549" width="0.4" height="15.0" fill="rgb(248,163,23)" rx="2" ry="2" />
+<text x="1040.89" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="342.3" y="5109" width="0.4" height="15.0" fill="rgb(207,12,26)" rx="2" ry="2" />
+<text x="345.29" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5221" width="0.4" height="15.0" fill="rgb(227,223,48)" rx="2" ry="2" />
+<text x="497.40" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="368.7" y="4821" width="0.4" height="15.0" fill="rgb(228,97,9)" rx="2" ry="2" />
+<text x="371.69" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.0" y="6405" width="0.4" height="15.0" fill="rgb(250,152,5)" rx="2" ry="2" />
+<text x="1143.97" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5221" width="0.4" height="15.0" fill="rgb(225,74,53)" rx="2" ry="2" />
+<text x="520.87" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (194 samples, 6.89%)</title><rect x="675.8" y="5717" width="81.3" height="15.0" fill="rgb(223,114,9)" rx="2" ry="2" />
+<text x="678.85" y="5727.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (58 samples, 2.06%)</title><rect x="776.4" y="5621" width="24.3" height="15.0" fill="rgb(225,192,30)" rx="2" ry="2" />
+<text x="779.41" y="5631.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4453" width="0.4" height="15.0" fill="rgb(210,183,32)" rx="2" ry="2" />
+<text x="412.76" y="4463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4117" width="0.4" height="15.0" fill="rgb(239,201,48)" rx="2" ry="2" />
+<text x="437.90" y="4127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="750.0" y="5301" width="6.3" height="15.0" fill="rgb(233,224,13)" rx="2" ry="2" />
+<text x="753.01" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="1112.9" y="6309" width="5.4" height="15.0" fill="rgb(232,201,24)" rx="2" ry="2" />
+<text x="1115.90" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6117" width="1.3" height="15.0" fill="rgb(226,119,15)" rx="2" ry="2" />
+<text x="768.94" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (58 samples, 2.06%)</title><rect x="776.4" y="5653" width="24.3" height="15.0" fill="rgb(239,89,12)" rx="2" ry="2" />
+<text x="779.41" y="5663.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="5045" width="0.4" height="15.0" fill="rgb(224,61,38)" rx="2" ry="2" />
+<text x="487.77" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="342.3" y="5125" width="0.4" height="15.0" fill="rgb(229,127,12)" rx="2" ry="2" />
+<text x="345.29" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5845" width="0.4" height="15.0" fill="rgb(221,198,44)" rx="2" ry="2" />
+<text x="523.38" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="422.3" y="4853" width="2.1" height="15.0" fill="rgb(253,109,25)" rx="2" ry="2" />
+<text x="425.33" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="835.9" y="5477" width="0.4" height="15.0" fill="rgb(210,200,47)" rx="2" ry="2" />
+<text x="838.92" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (32 samples, 1.14%)</title><rect x="497.8" y="5333" width="13.4" height="15.0" fill="rgb(218,70,48)" rx="2" ry="2" />
+<text x="500.76" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (74 samples, 2.63%)</title><rect x="1090.3" y="6533" width="31.0" height="15.0" fill="rgb(232,100,6)" rx="2" ry="2" />
+<text x="1093.27" y="6543.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5669" width="0.8" height="15.0" fill="rgb(218,108,34)" rx="2" ry="2" />
+<text x="528.41" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5829" width="0.4" height="15.0" fill="rgb(210,170,43)" rx="2" ry="2" />
+<text x="768.52" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="393.4" y="4965" width="0.4" height="15.0" fill="rgb(226,187,22)" rx="2" ry="2" />
+<text x="396.42" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2597" width="0.4" height="15.0" fill="rgb(240,33,34)" rx="2" ry="2" />
+<text x="437.90" y="2607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="828.4" y="5669" width="2.9" height="15.0" fill="rgb(222,137,23)" rx="2" ry="2" />
+<text x="831.37" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="338.9" y="4581" width="0.9" height="15.0" fill="rgb(236,160,11)" rx="2" ry="2" />
+<text x="341.94" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.92%)</title><rect x="538.4" y="5525" width="10.9" height="15.0" fill="rgb(215,19,27)" rx="2" ry="2" />
+<text x="541.40" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5189" width="0.4" height="15.0" fill="rgb(230,117,54)" rx="2" ry="2" />
+<text x="1073.99" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="518.7" y="5445" width="0.4" height="15.0" fill="rgb(209,107,23)" rx="2" ry="2" />
+<text x="521.71" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5349" width="0.4" height="15.0" fill="rgb(228,54,5)" rx="2" ry="2" />
+<text x="563.19" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5541" width="0.4" height="15.0" fill="rgb(223,209,53)" rx="2" ry="2" />
+<text x="524.22" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="685.9" y="5253" width="0.4" height="15.0" fill="rgb(235,107,4)" rx="2" ry="2" />
+<text x="688.90" y="5263.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4149" width="0.4" height="15.0" fill="rgb(224,167,17)" rx="2" ry="2" />
+<text x="437.90" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (3 samples, 0.11%)</title><rect x="178.0" y="6485" width="1.3" height="15.0" fill="rgb(223,47,2)" rx="2" ry="2" />
+<text x="181.03" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.3" y="5493" width="0.4" height="15.0" fill="rgb(243,185,35)" rx="2" ry="2" />
+<text x="565.29" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="269.8" y="4981" width="0.4" height="15.0" fill="rgb(229,62,17)" rx="2" ry="2" />
+<text x="272.80" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4869" width="0.4" height="15.0" fill="rgb(211,99,48)" rx="2" ry="2" />
+<text x="1073.99" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="797.8" y="5477" width="2.1" height="15.0" fill="rgb(216,146,33)" rx="2" ry="2" />
+<text x="800.78" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="458.8" y="5141" width="7.1" height="15.0" fill="rgb(226,192,10)" rx="2" ry="2" />
+<text x="461.79" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="467.2" y="5253" width="1.6" height="15.0" fill="rgb(248,177,11)" rx="2" ry="2" />
+<text x="470.17" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="820.8" y="5733" width="0.4" height="15.0" fill="rgb(254,37,39)" rx="2" ry="2" />
+<text x="823.83" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="757.1" y="5797" width="1.3" height="15.0" fill="rgb(239,210,12)" rx="2" ry="2" />
+<text x="760.14" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5861" width="0.8" height="15.0" fill="rgb(226,11,51)" rx="2" ry="2" />
+<text x="1120.09" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1077.3" y="6405" width="0.4" height="15.0" fill="rgb(236,133,14)" rx="2" ry="2" />
+<text x="1080.28" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="417.7" y="4757" width="1.7" height="15.0" fill="rgb(253,127,17)" rx="2" ry="2" />
+<text x="420.72" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="314.6" y="4917" width="0.9" height="15.0" fill="rgb(248,216,41)" rx="2" ry="2" />
+<text x="317.64" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5093" width="0.4" height="15.0" fill="rgb(250,224,34)" rx="2" ry="2" />
+<text x="896.32" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="771.4" y="5973" width="0.4" height="15.0" fill="rgb(250,163,6)" rx="2" ry="2" />
+<text x="774.38" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,231 samples, 43.71%)</title><rect x="250.1" y="6357" width="515.8" height="15.0" fill="rgb(230,68,23)" rx="2" ry="2" />
+<text x="253.11" y="6367.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.36%)</title><rect x="504.5" y="5125" width="4.2" height="15.0" fill="rgb(252,157,42)" rx="2" ry="2" />
+<text x="507.46" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="893.3" y="4981" width="0.4" height="15.0" fill="rgb(214,33,54)" rx="2" ry="2" />
+<text x="896.32" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="4965" width="1.3" height="15.0" fill="rgb(250,220,37)" rx="2" ry="2" />
+<text x="348.65" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="245.5" y="6485" width="0.4" height="15.0" fill="rgb(237,38,12)" rx="2" ry="2" />
+<text x="248.50" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1070.6" y="6197" width="0.4" height="15.0" fill="rgb(212,50,12)" rx="2" ry="2" />
+<text x="1073.58" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="472.2" y="5189" width="0.4" height="15.0" fill="rgb(240,88,22)" rx="2" ry="2" />
+<text x="475.19" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="422.7" y="4709" width="0.5" height="15.0" fill="rgb(209,193,4)" rx="2" ry="2" />
+<text x="425.75" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="306.3" y="5045" width="3.7" height="15.0" fill="rgb(253,83,45)" rx="2" ry="2" />
+<text x="309.26" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="165" width="0.4" height="15.0" fill="rgb(206,130,22)" rx="2" ry="2" />
+<text x="546.43" y="175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4293" width="0.9" height="15.0" fill="rgb(217,225,28)" rx="2" ry="2" />
+<text x="467.23" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (643 samples, 22.83%)</title><rect x="250.5" y="5909" width="269.5" height="15.0" fill="rgb(235,185,20)" rx="2" ry="2" />
+<text x="253.53" y="5919.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="559.8" y="5573" width="2.9" height="15.0" fill="rgb(234,29,5)" rx="2" ry="2" />
+<text x="562.77" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5349" width="0.4" height="15.0" fill="rgb(243,139,44)" rx="2" ry="2" />
+<text x="897.16" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="5109" width="0.5" height="15.0" fill="rgb(213,88,1)" rx="2" ry="2" />
+<text x="489.44" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="709.8" y="5285" width="5.0" height="15.0" fill="rgb(224,19,40)" rx="2" ry="2" />
+<text x="712.79" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5989" width="0.4" height="15.0" fill="rgb(251,195,40)" rx="2" ry="2" />
+<text x="896.32" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (301 samples, 10.69%)</title><rect x="767.2" y="6165" width="126.1" height="15.0" fill="rgb(224,203,4)" rx="2" ry="2" />
+<text x="770.19" y="6175.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5029" width="0.4" height="15.0" fill="rgb(232,92,34)" rx="2" ry="2" />
+<text x="520.87" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="526.7" y="5333" width="0.4" height="15.0" fill="rgb(244,117,12)" rx="2" ry="2" />
+<text x="529.67" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="566.1" y="5301" width="0.4" height="15.0" fill="rgb(216,215,15)" rx="2" ry="2" />
+<text x="569.06" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4933" width="0.5" height="15.0" fill="rgb(252,68,23)" rx="2" ry="2" />
+<text x="469.75" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="252.2" y="5669" width="0.4" height="15.0" fill="rgb(247,55,39)" rx="2" ry="2" />
+<text x="255.20" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="774.3" y="5621" width="2.1" height="15.0" fill="rgb(246,23,45)" rx="2" ry="2" />
+<text x="777.32" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="275.2" y="4757" width="0.5" height="15.0" fill="rgb(214,13,18)" rx="2" ry="2" />
+<text x="278.25" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="525.0" y="5797" width="2.1" height="15.0" fill="rgb(245,216,52)" rx="2" ry="2" />
+<text x="527.99" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5605" width="0.8" height="15.0" fill="rgb(226,122,51)" rx="2" ry="2" />
+<text x="1120.09" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4197" width="5.4" height="15.0" fill="rgb(233,140,4)" rx="2" ry="2" />
+<text x="490.70" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="300.0" y="4965" width="1.6" height="15.0" fill="rgb(217,38,31)" rx="2" ry="2" />
+<text x="302.97" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="573.6" y="5781" width="0.4" height="15.0" fill="rgb(209,181,45)" rx="2" ry="2" />
+<text x="576.60" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.4" y="4853" width="0.4" height="15.0" fill="rgb(209,41,48)" rx="2" ry="2" />
+<text x="505.37" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4357" width="0.4" height="15.0" fill="rgb(211,46,17)" rx="2" ry="2" />
+<text x="546.43" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="263.1" y="5125" width="0.4" height="15.0" fill="rgb(247,10,12)" rx="2" ry="2" />
+<text x="266.10" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5701" width="0.4" height="15.0" fill="rgb(243,62,7)" rx="2" ry="2" />
+<text x="895.49" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5829" width="0.8" height="15.0" fill="rgb(254,206,27)" rx="2" ry="2" />
+<text x="1120.09" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (635 samples, 22.55%)</title><rect x="253.5" y="5541" width="266.0" height="15.0" fill="rgb(235,155,53)" rx="2" ry="2" />
+<text x="256.46" y="5551.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="891.6" y="5669" width="0.5" height="15.0" fill="rgb(238,145,3)" rx="2" ry="2" />
+<text x="894.65" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (16 samples, 0.57%)</title><rect x="449.1" y="5221" width="6.8" height="15.0" fill="rgb(245,52,24)" rx="2" ry="2" />
+<text x="452.15" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4613" width="0.9" height="15.0" fill="rgb(234,57,3)" rx="2" ry="2" />
+<text x="467.23" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.3" y="5365" width="0.4" height="15.0" fill="rgb(242,94,46)" rx="2" ry="2" />
+<text x="772.29" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (13 samples, 0.46%)</title><rect x="223.7" y="6501" width="5.5" height="15.0" fill="rgb(241,216,26)" rx="2" ry="2" />
+<text x="226.71" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5333" width="0.4" height="15.0" fill="rgb(205,86,26)" rx="2" ry="2" />
+<text x="760.98" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="437.0" y="4837" width="9.2" height="15.0" fill="rgb(223,89,37)" rx="2" ry="2" />
+<text x="440.00" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1123.0" y="6405" width="0.4" height="15.0" fill="rgb(212,199,52)" rx="2" ry="2" />
+<text x="1125.95" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="774.3" y="5653" width="2.1" height="15.0" fill="rgb(218,148,3)" rx="2" ry="2" />
+<text x="777.32" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5365" width="0.4" height="15.0" fill="rgb(238,147,37)" rx="2" ry="2" />
+<text x="685.13" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1074.3" y="6501" width="1.3" height="15.0" fill="rgb(215,75,7)" rx="2" ry="2" />
+<text x="1077.35" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="368.7" y="4869" width="0.4" height="15.0" fill="rgb(215,32,34)" rx="2" ry="2" />
+<text x="371.69" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="803.2" y="5589" width="0.5" height="15.0" fill="rgb(219,63,48)" rx="2" ry="2" />
+<text x="806.23" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="747.9" y="5061" width="0.9" height="15.0" fill="rgb(214,169,8)" rx="2" ry="2" />
+<text x="750.92" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="422.3" y="4773" width="0.9" height="15.0" fill="rgb(229,159,3)" rx="2" ry="2" />
+<text x="425.33" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="893.3" y="5413" width="0.4" height="15.0" fill="rgb(224,63,19)" rx="2" ry="2" />
+<text x="896.32" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="751.3" y="5237" width="4.6" height="15.0" fill="rgb(237,22,33)" rx="2" ry="2" />
+<text x="754.27" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5637" width="0.4" height="15.0" fill="rgb(253,180,18)" rx="2" ry="2" />
+<text x="761.39" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2709" width="0.4" height="15.0" fill="rgb(249,195,42)" rx="2" ry="2" />
+<text x="546.43" y="2719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="456.3" y="5045" width="1.2" height="15.0" fill="rgb(227,210,9)" rx="2" ry="2" />
+<text x="459.27" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4629" width="0.4" height="15.0" fill="rgb(251,67,35)" rx="2" ry="2" />
+<text x="489.86" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 0.71%)</title><rect x="471.4" y="5397" width="8.3" height="15.0" fill="rgb(230,98,50)" rx="2" ry="2" />
+<text x="474.36" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5541" width="0.4" height="15.0" fill="rgb(209,49,12)" rx="2" ry="2" />
+<text x="761.39" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (226 samples, 8.03%)</title><rect x="352.4" y="5333" width="94.7" height="15.0" fill="rgb(246,143,19)" rx="2" ry="2" />
+<text x="355.35" y="5343.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2645" width="0.4" height="15.0" fill="rgb(212,205,53)" rx="2" ry="2" />
+<text x="437.90" y="2655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="760.1" y="5749" width="0.4" height="15.0" fill="rgb(230,154,29)" rx="2" ry="2" />
+<text x="763.07" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="247.6" y="6181" width="0.4" height="15.0" fill="rgb(254,200,47)" rx="2" ry="2" />
+<text x="250.59" y="6191.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3141" width="0.4" height="15.0" fill="rgb(217,85,53)" rx="2" ry="2" />
+<text x="546.43" y="3151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="683.8" y="5333" width="5.5" height="15.0" fill="rgb(233,128,41)" rx="2" ry="2" />
+<text x="686.81" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="450.0" y="5157" width="5.9" height="15.0" fill="rgb(216,210,12)" rx="2" ry="2" />
+<text x="452.99" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4277" width="0.9" height="15.0" fill="rgb(236,77,3)" rx="2" ry="2" />
+<text x="467.23" y="4287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3381" width="0.4" height="15.0" fill="rgb(205,195,44)" rx="2" ry="2" />
+<text x="437.90" y="3391.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1093" width="0.4" height="15.0" fill="rgb(230,54,13)" rx="2" ry="2" />
+<text x="546.43" y="1103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4213" width="0.4" height="15.0" fill="rgb(229,66,5)" rx="2" ry="2" />
+<text x="437.90" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="5013" width="0.5" height="15.0" fill="rgb(205,153,15)" rx="2" ry="2" />
+<text x="469.75" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4565" width="0.9" height="15.0" fill="rgb(210,137,29)" rx="2" ry="2" />
+<text x="443.35" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4501" width="0.8" height="15.0" fill="rgb(221,47,24)" rx="2" ry="2" />
+<text x="1120.09" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="297.9" y="5045" width="3.7" height="15.0" fill="rgb(242,126,38)" rx="2" ry="2" />
+<text x="300.88" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (36 samples, 1.28%)</title><rect x="781.0" y="5381" width="15.1" height="15.0" fill="rgb(216,72,16)" rx="2" ry="2" />
+<text x="784.02" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="527.9" y="5637" width="3.4" height="15.0" fill="rgb(220,126,27)" rx="2" ry="2" />
+<text x="530.93" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (58 samples, 2.06%)</title><rect x="776.4" y="5669" width="24.3" height="15.0" fill="rgb(238,168,23)" rx="2" ry="2" />
+<text x="779.41" y="5679.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5925" width="0.8" height="15.0" fill="rgb(222,186,39)" rx="2" ry="2" />
+<text x="1120.09" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.7" y="6437" width="0.4" height="15.0" fill="rgb(205,13,29)" rx="2" ry="2" />
+<text x="1101.65" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (60 samples, 2.13%)</title><rect x="421.5" y="5045" width="25.1" height="15.0" fill="rgb(226,159,38)" rx="2" ry="2" />
+<text x="424.49" y="5055.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="282.8" y="5029" width="0.4" height="15.0" fill="rgb(250,47,50)" rx="2" ry="2" />
+<text x="285.79" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (46 samples, 1.63%)</title><rect x="130.3" y="6485" width="19.2" height="15.0" fill="rgb(228,6,47)" rx="2" ry="2" />
+<text x="133.26" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4981" width="0.5" height="15.0" fill="rgb(221,69,19)" rx="2" ry="2" />
+<text x="489.44" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="271.9" y="4949" width="0.4" height="15.0" fill="rgb(239,46,31)" rx="2" ry="2" />
+<text x="274.90" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="1115.8" y="6245" width="2.1" height="15.0" fill="rgb(215,1,24)" rx="2" ry="2" />
+<text x="1118.83" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="759.2" y="5893" width="2.5" height="15.0" fill="rgb(217,87,19)" rx="2" ry="2" />
+<text x="762.23" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4677" width="0.4" height="15.0" fill="rgb(230,142,3)" rx="2" ry="2" />
+<text x="496.98" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.82%)</title><rect x="403.1" y="4949" width="9.6" height="15.0" fill="rgb(216,41,9)" rx="2" ry="2" />
+<text x="406.05" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5989" width="0.4" height="15.0" fill="rgb(223,187,44)" rx="2" ry="2" />
+<text x="1073.99" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (2 samples, 0.07%)</title><rect x="1121.3" y="6549" width="0.8" height="15.0" fill="rgb(240,113,54)" rx="2" ry="2" />
+<text x="1124.28" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4741" width="1.7" height="15.0" fill="rgb(205,111,30)" rx="2" ry="2" />
+<text x="429.10" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4469" width="0.4" height="15.0" fill="rgb(252,73,35)" rx="2" ry="2" />
+<text x="1073.99" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="423.2" y="4725" width="0.8" height="15.0" fill="rgb(251,145,44)" rx="2" ry="2" />
+<text x="426.17" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="345.6" y="5093" width="1.3" height="15.0" fill="rgb(226,197,3)" rx="2" ry="2" />
+<text x="348.65" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="363.2" y="4805" width="5.5" height="15.0" fill="rgb(236,17,24)" rx="2" ry="2" />
+<text x="366.25" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="799.0" y="5157" width="0.9" height="15.0" fill="rgb(237,146,7)" rx="2" ry="2" />
+<text x="802.04" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5653" width="0.4" height="15.0" fill="rgb(212,207,19)" rx="2" ry="2" />
+<text x="768.52" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.9" y="4741" width="0.4" height="15.0" fill="rgb(238,227,50)" rx="2" ry="2" />
+<text x="489.86" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5893" width="0.9" height="15.0" fill="rgb(231,172,37)" rx="2" ry="2" />
+<text x="896.74" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="282.8" y="5125" width="1.7" height="15.0" fill="rgb(240,177,6)" rx="2" ry="2" />
+<text x="285.79" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (37 samples, 1.31%)</title><rect x="479.7" y="5397" width="15.5" height="15.0" fill="rgb(227,138,21)" rx="2" ry="2" />
+<text x="482.74" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1365" width="0.4" height="15.0" fill="rgb(206,43,9)" rx="2" ry="2" />
+<text x="546.43" y="1375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5781" width="0.4" height="15.0" fill="rgb(223,52,16)" rx="2" ry="2" />
+<text x="772.71" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (194 samples, 6.89%)</title><rect x="675.8" y="5573" width="81.3" height="15.0" fill="rgb(209,130,41)" rx="2" ry="2" />
+<text x="678.85" y="5583.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5509" width="0.4" height="15.0" fill="rgb(214,121,36)" rx="2" ry="2" />
+<text x="881.66" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.9" y="5077" width="0.4" height="15.0" fill="rgb(235,220,5)" rx="2" ry="2" />
+<text x="486.93" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2453" width="0.4" height="15.0" fill="rgb(223,218,46)" rx="2" ry="2" />
+<text x="546.43" y="2463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5797" width="0.4" height="15.0" fill="rgb(236,114,52)" rx="2" ry="2" />
+<text x="772.71" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.2" y="5637" width="0.4" height="15.0" fill="rgb(221,76,0)" rx="2" ry="2" />
+<text x="576.18" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="739.5" y="5205" width="0.5" height="15.0" fill="rgb(244,140,19)" rx="2" ry="2" />
+<text x="742.54" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.3" y="5413" width="0.4" height="15.0" fill="rgb(213,52,50)" rx="2" ry="2" />
+<text x="565.29" y="5423.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4085" width="0.4" height="15.0" fill="rgb(206,74,45)" rx="2" ry="2" />
+<text x="546.43" y="4095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6101" width="0.4" height="15.0" fill="rgb(244,67,47)" rx="2" ry="2" />
+<text x="13.42" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="409.3" y="4837" width="2.1" height="15.0" fill="rgb(205,227,26)" rx="2" ry="2" />
+<text x="412.34" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="355.3" y="5189" width="0.4" height="15.0" fill="rgb(226,134,18)" rx="2" ry="2" />
+<text x="358.28" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6037" width="2.1" height="15.0" fill="rgb(214,225,46)" rx="2" ry="2" />
+<text x="251.01" y="6047.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3013" width="0.4" height="15.0" fill="rgb(214,95,18)" rx="2" ry="2" />
+<text x="437.90" y="3023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="766.8" y="5925" width="0.4" height="15.0" fill="rgb(239,189,8)" rx="2" ry="2" />
+<text x="769.78" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4645" width="0.5" height="15.0" fill="rgb(242,42,19)" rx="2" ry="2" />
+<text x="346.13" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="423.2" y="4757" width="0.8" height="15.0" fill="rgb(226,76,50)" rx="2" ry="2" />
+<text x="426.17" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (259 samples, 9.20%)</title><rect x="567.3" y="5877" width="108.5" height="15.0" fill="rgb(230,62,4)" rx="2" ry="2" />
+<text x="570.32" y="5887.5" >Nsfisis\Waddi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="6069" width="0.4" height="15.0" fill="rgb(213,48,14)" rx="2" ry="2" />
+<text x="768.52" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="381.7" y="5125" width="4.6" height="15.0" fill="rgb(250,72,11)" rx="2" ry="2" />
+<text x="384.68" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (45 samples, 1.60%)</title><rect x="680.9" y="5413" width="18.8" height="15.0" fill="rgb(254,163,41)" rx="2" ry="2" />
+<text x="683.87" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="437.0" y="4805" width="9.2" height="15.0" fill="rgb(214,138,45)" rx="2" ry="2" />
+<text x="440.00" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5621" width="0.4" height="15.0" fill="rgb(214,45,40)" rx="2" ry="2" />
+<text x="1073.99" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.2" y="5605" width="0.9" height="15.0" fill="rgb(216,158,26)" rx="2" ry="2" />
+<text x="529.25" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4597" width="0.4" height="15.0" fill="rgb(224,171,28)" rx="2" ry="2" />
+<text x="496.98" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5045" width="0.4" height="15.0" fill="rgb(242,69,44)" rx="2" ry="2" />
+<text x="357.03" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="548.5" y="5429" width="0.4" height="15.0" fill="rgb(246,215,47)" rx="2" ry="2" />
+<text x="551.46" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5605" width="0.4" height="15.0" fill="rgb(246,211,8)" rx="2" ry="2" />
+<text x="767.68" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="540.9" y="5477" width="2.9" height="15.0" fill="rgb(229,222,49)" rx="2" ry="2" />
+<text x="543.92" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="5957" width="0.4" height="15.0" fill="rgb(220,136,0)" rx="2" ry="2" />
+<text x="768.52" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="456.3" y="5061" width="1.2" height="15.0" fill="rgb(239,65,10)" rx="2" ry="2" />
+<text x="459.27" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.39%)</title><rect x="751.3" y="5269" width="4.6" height="15.0" fill="rgb(207,81,46)" rx="2" ry="2" />
+<text x="754.27" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5829" width="0.4" height="15.0" fill="rgb(206,209,33)" rx="2" ry="2" />
+<text x="767.68" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="251.4" y="5733" width="0.4" height="15.0" fill="rgb(227,60,12)" rx="2" ry="2" />
+<text x="254.36" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5381" width="0.8" height="15.0" fill="rgb(239,155,33)" rx="2" ry="2" />
+<text x="1120.09" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="472.2" y="5221" width="7.5" height="15.0" fill="rgb(215,207,51)" rx="2" ry="2" />
+<text x="475.19" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.03%)</title><rect x="1106.6" y="6453" width="12.2" height="15.0" fill="rgb(220,20,5)" rx="2" ry="2" />
+<text x="1109.61" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="774.7" y="5589" width="1.7" height="15.0" fill="rgb(219,21,33)" rx="2" ry="2" />
+<text x="777.74" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="510.7" y="5093" width="0.5" height="15.0" fill="rgb(250,114,12)" rx="2" ry="2" />
+<text x="513.75" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1,239 samples, 44.00%)</title><rect x="246.8" y="6437" width="519.1" height="15.0" fill="rgb(252,25,43)" rx="2" ry="2" />
+<text x="249.75" y="6447.5" >Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="420.2" y="4869" width="1.3" height="15.0" fill="rgb(210,203,10)" rx="2" ry="2" />
+<text x="423.23" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="274.4" y="4661" width="0.4" height="15.0" fill="rgb(240,165,18)" rx="2" ry="2" />
+<text x="277.41" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.92%)</title><rect x="520.8" y="5941" width="10.9" height="15.0" fill="rgb(242,58,30)" rx="2" ry="2" />
+<text x="523.80" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="417.3" y="4821" width="2.1" height="15.0" fill="rgb(223,93,13)" rx="2" ry="2" />
+<text x="420.30" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="6053" width="0.4" height="15.0" fill="rgb(212,75,4)" rx="2" ry="2" />
+<text x="768.52" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="260.2" y="5349" width="0.4" height="15.0" fill="rgb(205,60,33)" rx="2" ry="2" />
+<text x="263.16" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="707.7" y="5349" width="7.1" height="15.0" fill="rgb(236,79,37)" rx="2" ry="2" />
+<text x="710.69" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="409.8" y="4741" width="0.8" height="15.0" fill="rgb(208,162,51)" rx="2" ry="2" />
+<text x="412.76" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4069" width="0.4" height="15.0" fill="rgb(244,118,7)" rx="2" ry="2" />
+<text x="437.90" y="4079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5125" width="0.4" height="15.0" fill="rgb(213,191,15)" rx="2" ry="2" />
+<text x="1073.99" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (60 samples, 2.13%)</title><rect x="721.5" y="5365" width="25.2" height="15.0" fill="rgb(207,175,43)" rx="2" ry="2" />
+<text x="724.52" y="5375.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4517" width="0.8" height="15.0" fill="rgb(249,223,21)" rx="2" ry="2" />
+<text x="1120.09" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="771.8" y="5797" width="0.4" height="15.0" fill="rgb(242,68,53)" rx="2" ry="2" />
+<text x="774.80" y="5807.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1102.4" y="6485" width="0.4" height="15.0" fill="rgb(232,119,19)" rx="2" ry="2" />
+<text x="1105.42" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5637" width="0.4" height="15.0" fill="rgb(217,146,32)" rx="2" ry="2" />
+<text x="881.66" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6197" width="0.4" height="15.0" fill="rgb(232,189,21)" rx="2" ry="2" />
+<text x="13.42" y="6207.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="501" width="0.4" height="15.0" fill="rgb(235,49,20)" rx="2" ry="2" />
+<text x="546.43" y="511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4949" width="0.4" height="15.0" fill="rgb(250,180,51)" rx="2" ry="2" />
+<text x="364.57" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5749" width="0.9" height="15.0" fill="rgb(234,22,54)" rx="2" ry="2" />
+<text x="896.74" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5685" width="0.4" height="15.0" fill="rgb(249,16,20)" rx="2" ry="2" />
+<text x="772.71" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5269" width="0.4" height="15.0" fill="rgb(247,184,22)" rx="2" ry="2" />
+<text x="1073.99" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="835.5" y="5605" width="0.8" height="15.0" fill="rgb(254,170,30)" rx="2" ry="2" />
+<text x="838.50" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="893.3" y="4965" width="0.4" height="15.0" fill="rgb(215,9,26)" rx="2" ry="2" />
+<text x="896.32" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4581" width="0.8" height="15.0" fill="rgb(242,214,26)" rx="2" ry="2" />
+<text x="429.10" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="460.0" y="4997" width="1.3" height="15.0" fill="rgb(221,219,25)" rx="2" ry="2" />
+<text x="463.04" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (114 samples, 4.05%)</title><rect x="773.5" y="5909" width="47.7" height="15.0" fill="rgb(213,66,11)" rx="2" ry="2" />
+<text x="776.48" y="5919.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.0" y="5189" width="0.4" height="15.0" fill="rgb(225,89,43)" rx="2" ry="2" />
+<text x="471.00" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6261" width="0.4" height="15.0" fill="rgb(214,157,43)" rx="2" ry="2" />
+<text x="1143.55" y="6271.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1637" width="0.4" height="15.0" fill="rgb(254,155,27)" rx="2" ry="2" />
+<text x="546.43" y="1647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="754.6" y="5109" width="1.3" height="15.0" fill="rgb(253,132,40)" rx="2" ry="2" />
+<text x="757.62" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5973" width="0.4" height="15.0" fill="rgb(234,209,28)" rx="2" ry="2" />
+<text x="774.80" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (169 samples, 6.00%)</title><rect x="822.5" y="5829" width="70.8" height="15.0" fill="rgb(247,79,35)" rx="2" ry="2" />
+<text x="825.51" y="5839.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5365" width="0.5" height="15.0" fill="rgb(219,104,5)" rx="2" ry="2" />
+<text x="879.14" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="362.0" y="4917" width="6.7" height="15.0" fill="rgb(242,183,54)" rx="2" ry="2" />
+<text x="364.99" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4901" width="0.9" height="15.0" fill="rgb(210,205,30)" rx="2" ry="2" />
+<text x="345.71" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4853" width="0.8" height="15.0" fill="rgb(220,140,1)" rx="2" ry="2" />
+<text x="512.91" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="300.8" y="4885" width="0.8" height="15.0" fill="rgb(237,13,44)" rx="2" ry="2" />
+<text x="303.81" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="569.0" y="5813" width="4.6" height="15.0" fill="rgb(252,78,27)" rx="2" ry="2" />
+<text x="571.99" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="281.1" y="4917" width="0.4" height="15.0" fill="rgb(215,144,19)" rx="2" ry="2" />
+<text x="284.12" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="559.8" y="5637" width="7.5" height="15.0" fill="rgb(240,151,36)" rx="2" ry="2" />
+<text x="562.77" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4917" width="6.7" height="15.0" fill="rgb(251,195,30)" rx="2" ry="2" />
+<text x="489.86" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4709" width="1.7" height="15.0" fill="rgb(250,197,53)" rx="2" ry="2" />
+<text x="429.10" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="530.9" y="5461" width="0.4" height="15.0" fill="rgb(223,229,42)" rx="2" ry="2" />
+<text x="533.86" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (243 samples, 8.63%)</title><rect x="574.0" y="5349" width="101.8" height="15.0" fill="rgb(253,171,34)" rx="2" ry="2" />
+<text x="577.02" y="5359.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="818.7" y="5653" width="1.7" height="15.0" fill="rgb(249,54,7)" rx="2" ry="2" />
+<text x="821.74" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="460.9" y="4725" width="0.4" height="15.0" fill="rgb(213,68,34)" rx="2" ry="2" />
+<text x="463.88" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5685" width="0.8" height="15.0" fill="rgb(206,150,36)" rx="2" ry="2" />
+<text x="1120.09" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4917" width="0.9" height="15.0" fill="rgb(211,89,0)" rx="2" ry="2" />
+<text x="388.04" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="876.1" y="5413" width="0.5" height="15.0" fill="rgb(237,152,39)" rx="2" ry="2" />
+<text x="879.14" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4885" width="0.4" height="15.0" fill="rgb(232,8,25)" rx="2" ry="2" />
+<text x="463.88" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (136 samples, 4.83%)</title><rect x="699.7" y="5461" width="57.0" height="15.0" fill="rgb(216,181,42)" rx="2" ry="2" />
+<text x="702.73" y="5471.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="519.5" y="5685" width="0.5" height="15.0" fill="rgb(238,57,25)" rx="2" ry="2" />
+<text x="522.55" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5477" width="0.4" height="15.0" fill="rgb(223,215,41)" rx="2" ry="2" />
+<text x="768.52" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (635 samples, 22.55%)</title><rect x="253.5" y="5589" width="266.0" height="15.0" fill="rgb(233,124,36)" rx="2" ry="2" />
+<text x="256.46" y="5599.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4693" width="0.9" height="15.0" fill="rgb(215,80,52)" rx="2" ry="2" />
+<text x="388.04" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5477" width="0.4" height="15.0" fill="rgb(229,131,30)" rx="2" ry="2" />
+<text x="767.26" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="476.4" y="4853" width="2.9" height="15.0" fill="rgb(227,212,17)" rx="2" ry="2" />
+<text x="479.38" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5765" width="0.4" height="15.0" fill="rgb(219,41,40)" rx="2" ry="2" />
+<text x="774.80" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4869" width="0.9" height="15.0" fill="rgb(233,0,47)" rx="2" ry="2" />
+<text x="345.71" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5301" width="0.4" height="15.0" fill="rgb(243,26,40)" rx="2" ry="2" />
+<text x="563.19" y="5311.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2629" width="0.4" height="15.0" fill="rgb(218,137,18)" rx="2" ry="2" />
+<text x="546.43" y="2639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (344 samples, 12.22%)</title><rect x="531.7" y="6021" width="144.1" height="15.0" fill="rgb(209,187,23)" rx="2" ry="2" />
+<text x="534.70" y="6031.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="390.1" y="5013" width="0.4" height="15.0" fill="rgb(216,214,51)" rx="2" ry="2" />
+<text x="393.06" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5221" width="1.6" height="15.0" fill="rgb(229,166,41)" rx="2" ry="2" />
+<text x="545.17" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5685" width="0.5" height="15.0" fill="rgb(212,226,0)" rx="2" ry="2" />
+<text x="573.25" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="420.2" y="4805" width="1.3" height="15.0" fill="rgb(215,109,43)" rx="2" ry="2" />
+<text x="423.23" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="361.2" y="4997" width="0.8" height="15.0" fill="rgb(215,105,7)" rx="2" ry="2" />
+<text x="364.15" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="714.0" y="5253" width="0.4" height="15.0" fill="rgb(214,154,21)" rx="2" ry="2" />
+<text x="716.98" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="530.9" y="5509" width="0.4" height="15.0" fill="rgb(215,197,6)" rx="2" ry="2" />
+<text x="533.86" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.7" y="5717" width="0.4" height="15.0" fill="rgb(210,144,18)" rx="2" ry="2" />
+<text x="573.67" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (4 samples, 0.14%)</title><rect x="1046.3" y="6517" width="1.6" height="15.0" fill="rgb(252,64,35)" rx="2" ry="2" />
+<text x="1049.27" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4693" width="0.4" height="15.0" fill="rgb(210,209,32)" rx="2" ry="2" />
+<text x="1073.99" y="4703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2405" width="0.4" height="15.0" fill="rgb(254,82,42)" rx="2" ry="2" />
+<text x="437.90" y="2415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1118.3" y="6373" width="0.5" height="15.0" fill="rgb(229,211,11)" rx="2" ry="2" />
+<text x="1121.35" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.9" y="5157" width="0.4" height="15.0" fill="rgb(227,219,34)" rx="2" ry="2" />
+<text x="486.93" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5861" width="0.4" height="15.0" fill="rgb(246,65,9)" rx="2" ry="2" />
+<text x="523.38" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="535.0" y="5621" width="0.5" height="15.0" fill="rgb(238,14,31)" rx="2" ry="2" />
+<text x="538.05" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5557" width="0.4" height="15.0" fill="rgb(216,173,53)" rx="2" ry="2" />
+<text x="524.22" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1107.5" y="6405" width="0.4" height="15.0" fill="rgb(248,2,8)" rx="2" ry="2" />
+<text x="1110.45" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="340.2" y="4565" width="0.8" height="15.0" fill="rgb(219,97,49)" rx="2" ry="2" />
+<text x="343.20" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="4901" width="0.4" height="15.0" fill="rgb(246,153,25)" rx="2" ry="2" />
+<text x="475.19" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="222.9" y="6485" width="0.4" height="15.0" fill="rgb(251,4,44)" rx="2" ry="2" />
+<text x="225.87" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4549" width="0.8" height="15.0" fill="rgb(251,50,40)" rx="2" ry="2" />
+<text x="429.10" y="4559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4021" width="0.4" height="15.0" fill="rgb(224,140,42)" rx="2" ry="2" />
+<text x="437.90" y="4031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6453" width="1.3" height="15.0" fill="rgb(229,55,24)" rx="2" ry="2" />
+<text x="768.94" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5525" width="0.8" height="15.0" fill="rgb(229,37,7)" rx="2" ry="2" />
+<text x="1120.09" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="511.6" y="5029" width="0.8" height="15.0" fill="rgb(248,9,36)" rx="2" ry="2" />
+<text x="514.58" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4485" width="0.5" height="15.0" fill="rgb(232,224,3)" rx="2" ry="2" />
+<text x="346.13" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4965" width="0.8" height="15.0" fill="rgb(242,100,26)" rx="2" ry="2" />
+<text x="1120.09" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5493" width="1.3" height="15.0" fill="rgb(254,102,36)" rx="2" ry="2" />
+<text x="760.14" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4549" width="0.4" height="15.0" fill="rgb(216,209,11)" rx="2" ry="2" />
+<text x="329.79" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5493" width="0.4" height="15.0" fill="rgb(233,212,11)" rx="2" ry="2" />
+<text x="561.10" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.3" y="5845" width="0.4" height="15.0" fill="rgb(234,105,32)" rx="2" ry="2" />
+<text x="767.26" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="671.7" y="5205" width="0.4" height="15.0" fill="rgb(249,138,45)" rx="2" ry="2" />
+<text x="674.65" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (4 samples, 0.14%)</title><rect x="226.6" y="6469" width="1.7" height="15.0" fill="rgb(253,7,8)" rx="2" ry="2" />
+<text x="229.64" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="775.6" y="5557" width="0.8" height="15.0" fill="rgb(231,106,41)" rx="2" ry="2" />
+<text x="778.58" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="464.7" y="4101" width="0.4" height="15.0" fill="rgb(235,42,54)" rx="2" ry="2" />
+<text x="467.65" y="4111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.0" y="5893" width="0.4" height="15.0" fill="rgb(251,86,0)" rx="2" ry="2" />
+<text x="522.96" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4773" width="0.4" height="15.0" fill="rgb(220,140,22)" rx="2" ry="2" />
+<text x="760.98" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="743.3" y="5173" width="0.4" height="15.0" fill="rgb(248,11,22)" rx="2" ry="2" />
+<text x="746.31" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="756.7" y="5365" width="0.4" height="15.0" fill="rgb(236,36,15)" rx="2" ry="2" />
+<text x="759.72" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="763.4" y="5989" width="2.1" height="15.0" fill="rgb(211,175,14)" rx="2" ry="2" />
+<text x="766.42" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,224 samples, 43.47%)</title><rect x="250.1" y="6229" width="512.9" height="15.0" fill="rgb(209,67,16)" rx="2" ry="2" />
+<text x="253.11" y="6239.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.6" y="4965" width="0.4" height="15.0" fill="rgb(223,180,3)" rx="2" ry="2" />
+<text x="294.59" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.4" y="5157" width="0.4" height="15.0" fill="rgb(234,207,3)" rx="2" ry="2" />
+<text x="471.42" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="435.3" y="4805" width="0.9" height="15.0" fill="rgb(219,152,54)" rx="2" ry="2" />
+<text x="438.32" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4613" width="0.4" height="15.0" fill="rgb(222,173,30)" rx="2" ry="2" />
+<text x="329.79" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="265.6" y="5029" width="0.4" height="15.0" fill="rgb(242,218,25)" rx="2" ry="2" />
+<text x="268.61" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1118.8" y="6437" width="0.4" height="15.0" fill="rgb(246,93,2)" rx="2" ry="2" />
+<text x="1121.76" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="409.8" y="4757" width="0.8" height="15.0" fill="rgb(232,206,24)" rx="2" ry="2" />
+<text x="412.76" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="471.4" y="5333" width="8.3" height="15.0" fill="rgb(237,83,29)" rx="2" ry="2" />
+<text x="474.36" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6165" width="0.8" height="15.0" fill="rgb(213,154,16)" rx="2" ry="2" />
+<text x="1120.09" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="476.4" y="4789" width="2.9" height="15.0" fill="rgb(209,122,39)" rx="2" ry="2" />
+<text x="479.38" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="434.5" y="4789" width="0.8" height="15.0" fill="rgb(252,169,50)" rx="2" ry="2" />
+<text x="437.48" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (344 samples, 12.22%)</title><rect x="531.7" y="5925" width="144.1" height="15.0" fill="rgb(239,156,43)" rx="2" ry="2" />
+<text x="534.70" y="5935.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3365" width="0.4" height="15.0" fill="rgb(216,48,45)" rx="2" ry="2" />
+<text x="437.90" y="3375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="822.1" y="5765" width="0.4" height="15.0" fill="rgb(219,124,30)" rx="2" ry="2" />
+<text x="825.09" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="493.1" y="4549" width="0.5" height="15.0" fill="rgb(217,24,6)" rx="2" ry="2" />
+<text x="496.15" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="334.8" y="4837" width="0.4" height="15.0" fill="rgb(249,34,7)" rx="2" ry="2" />
+<text x="337.75" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="750.9" y="5189" width="0.4" height="15.0" fill="rgb(210,221,10)" rx="2" ry="2" />
+<text x="753.85" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="891.2" y="5669" width="0.4" height="15.0" fill="rgb(247,185,47)" rx="2" ry="2" />
+<text x="894.23" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="4981" width="0.4" height="15.0" fill="rgb(236,90,19)" rx="2" ry="2" />
+<text x="520.87" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="799.0" y="5141" width="0.9" height="15.0" fill="rgb(218,101,12)" rx="2" ry="2" />
+<text x="802.04" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4245" width="0.4" height="15.0" fill="rgb(219,61,34)" rx="2" ry="2" />
+<text x="437.90" y="4255.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4741" width="0.4" height="15.0" fill="rgb(245,37,11)" rx="2" ry="2" />
+<text x="546.43" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6277" width="0.4" height="15.0" fill="rgb(226,18,29)" rx="2" ry="2" />
+<text x="13.42" y="6287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2613" width="0.4" height="15.0" fill="rgb(230,105,4)" rx="2" ry="2" />
+<text x="437.90" y="2623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="747.1" y="5365" width="9.2" height="15.0" fill="rgb(250,109,35)" rx="2" ry="2" />
+<text x="750.08" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="527.9" y="5749" width="3.4" height="15.0" fill="rgb(221,19,20)" rx="2" ry="2" />
+<text x="530.93" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (65 samples, 2.31%)</title><rect x="773.9" y="5797" width="27.2" height="15.0" fill="rgb(252,178,53)" rx="2" ry="2" />
+<text x="776.90" y="5807.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.21%)</title><rect x="268.5" y="5141" width="14.3" height="15.0" fill="rgb(220,179,35)" rx="2" ry="2" />
+<text x="271.54" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="760.5" y="5829" width="1.2" height="15.0" fill="rgb(206,167,47)" rx="2" ry="2" />
+<text x="763.49" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="746.7" y="5349" width="0.4" height="15.0" fill="rgb(232,155,42)" rx="2" ry="2" />
+<text x="749.66" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="535.0" y="5541" width="0.5" height="15.0" fill="rgb(218,47,40)" rx="2" ry="2" />
+<text x="538.05" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5637" width="0.4" height="15.0" fill="rgb(219,1,42)" rx="2" ry="2" />
+<text x="774.80" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.2" y="5637" width="0.9" height="15.0" fill="rgb(238,97,23)" rx="2" ry="2" />
+<text x="529.25" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.9" y="4901" width="0.5" height="15.0" fill="rgb(215,168,29)" rx="2" ry="2" />
+<text x="310.93" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1057.2" y="6373" width="0.4" height="15.0" fill="rgb(215,1,21)" rx="2" ry="2" />
+<text x="1060.17" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5253" width="0.4" height="15.0" fill="rgb(213,108,45)" rx="2" ry="2" />
+<text x="561.10" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="564.8" y="5429" width="1.7" height="15.0" fill="rgb(245,183,23)" rx="2" ry="2" />
+<text x="567.80" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,224 samples, 43.47%)</title><rect x="250.1" y="6213" width="512.9" height="15.0" fill="rgb(248,49,17)" rx="2" ry="2" />
+<text x="253.11" y="6223.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="297.0" y="4965" width="0.5" height="15.0" fill="rgb(241,50,7)" rx="2" ry="2" />
+<text x="300.04" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5797" width="0.4" height="15.0" fill="rgb(228,68,16)" rx="2" ry="2" />
+<text x="761.39" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5589" width="0.4" height="15.0" fill="rgb(239,219,54)" rx="2" ry="2" />
+<text x="897.16" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="564.8" y="5445" width="1.7" height="15.0" fill="rgb(221,123,0)" rx="2" ry="2" />
+<text x="567.80" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4645" width="0.9" height="15.0" fill="rgb(220,186,7)" rx="2" ry="2" />
+<text x="467.23" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4469" width="0.9" height="15.0" fill="rgb(229,126,49)" rx="2" ry="2" />
+<text x="467.23" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="402.6" y="4853" width="0.5" height="15.0" fill="rgb(206,157,52)" rx="2" ry="2" />
+<text x="405.63" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="876.6" y="5509" width="0.8" height="15.0" fill="rgb(235,185,47)" rx="2" ry="2" />
+<text x="879.56" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="519.1" y="5445" width="0.4" height="15.0" fill="rgb(221,53,52)" rx="2" ry="2" />
+<text x="522.13" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6293" width="0.9" height="15.0" fill="rgb(236,97,17)" rx="2" ry="2" />
+<text x="896.74" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1122.5" y="6533" width="0.5" height="15.0" fill="rgb(235,136,41)" rx="2" ry="2" />
+<text x="1125.54" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="562.3" y="5509" width="0.4" height="15.0" fill="rgb(238,162,26)" rx="2" ry="2" />
+<text x="565.29" y="5519.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="241.3" y="6469" width="0.4" height="15.0" fill="rgb(206,15,10)" rx="2" ry="2" />
+<text x="244.31" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4613" width="0.4" height="15.0" fill="rgb(240,229,37)" rx="2" ry="2" />
+<text x="489.86" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4709" width="0.4" height="15.0" fill="rgb(243,117,49)" rx="2" ry="2" />
+<text x="272.80" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4709" width="0.4" height="15.0" fill="rgb(213,52,30)" rx="2" ry="2" />
+<text x="489.86" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (5 samples, 0.18%)</title><rect x="1143.9" y="6565" width="2.1" height="15.0" fill="rgb(214,30,45)" rx="2" ry="2" />
+<text x="1146.91" y="6575.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="1145.2" y="6517" width="0.8" height="15.0" fill="rgb(240,162,26)" rx="2" ry="2" />
+<text x="1148.16" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="884.5" y="5525" width="1.3" height="15.0" fill="rgb(207,37,44)" rx="2" ry="2" />
+<text x="887.52" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,223 samples, 43.43%)</title><rect x="250.5" y="6085" width="512.5" height="15.0" fill="rgb(206,191,51)" rx="2" ry="2" />
+<text x="253.53" y="6095.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="762.6" y="5973" width="0.4" height="15.0" fill="rgb(233,10,34)" rx="2" ry="2" />
+<text x="765.59" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1057.2" y="6485" width="0.4" height="15.0" fill="rgb(215,88,8)" rx="2" ry="2" />
+<text x="1060.17" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1140.6" y="6453" width="0.8" height="15.0" fill="rgb(249,101,51)" rx="2" ry="2" />
+<text x="1143.55" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4373" width="0.4" height="15.0" fill="rgb(207,20,45)" rx="2" ry="2" />
+<text x="412.76" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4821" width="0.9" height="15.0" fill="rgb(224,127,31)" rx="2" ry="2" />
+<text x="388.04" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="283.2" y="5109" width="1.3" height="15.0" fill="rgb(252,6,25)" rx="2" ry="2" />
+<text x="286.21" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4485" width="0.5" height="15.0" fill="rgb(250,12,17)" rx="2" ry="2" />
+<text x="480.64" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1043.3" y="6533" width="0.5" height="15.0" fill="rgb(253,31,16)" rx="2" ry="2" />
+<text x="1046.34" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5493" width="81.3" height="15.0" fill="rgb(244,54,10)" rx="2" ry="2" />
+<text x="678.85" y="5503.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5141" width="0.4" height="15.0" fill="rgb(222,94,38)" rx="2" ry="2" />
+<text x="357.03" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="263.5" y="5141" width="3.8" height="15.0" fill="rgb(219,130,50)" rx="2" ry="2" />
+<text x="266.52" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4709" width="0.8" height="15.0" fill="rgb(229,11,50)" rx="2" ry="2" />
+<text x="413.60" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="300.8" y="4917" width="0.8" height="15.0" fill="rgb(241,117,47)" rx="2" ry="2" />
+<text x="303.81" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="894.2" y="5461" width="0.4" height="15.0" fill="rgb(212,30,42)" rx="2" ry="2" />
+<text x="897.16" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (2 samples, 0.07%)</title><rect x="1148.1" y="6549" width="0.8" height="15.0" fill="rgb(216,170,16)" rx="2" ry="2" />
+<text x="1151.10" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6197" width="1.3" height="15.0" fill="rgb(223,29,40)" rx="2" ry="2" />
+<text x="768.94" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6261" width="2.1" height="15.0" fill="rgb(210,48,3)" rx="2" ry="2" />
+<text x="251.01" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.5" y="5157" width="0.4" height="15.0" fill="rgb(248,139,24)" rx="2" ry="2" />
+<text x="520.45" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="880.8" y="5637" width="10.0" height="15.0" fill="rgb(219,90,0)" rx="2" ry="2" />
+<text x="883.75" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (32 samples, 1.14%)</title><rect x="432.8" y="4949" width="13.4" height="15.0" fill="rgb(209,46,21)" rx="2" ry="2" />
+<text x="435.81" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="279.4" y="4789" width="0.5" height="15.0" fill="rgb(224,164,17)" rx="2" ry="2" />
+<text x="282.44" y="4799.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4053" width="0.4" height="15.0" fill="rgb(239,131,18)" rx="2" ry="2" />
+<text x="546.43" y="4063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="767.2" y="5765" width="2.5" height="15.0" fill="rgb(209,222,20)" rx="2" ry="2" />
+<text x="770.19" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5205" width="0.8" height="15.0" fill="rgb(250,149,34)" rx="2" ry="2" />
+<text x="1120.09" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="553.5" y="5525" width="0.4" height="15.0" fill="rgb(228,183,6)" rx="2" ry="2" />
+<text x="556.49" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="458.8" y="5125" width="7.1" height="15.0" fill="rgb(232,76,18)" rx="2" ry="2" />
+<text x="461.79" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="885.8" y="5621" width="5.0" height="15.0" fill="rgb(247,191,43)" rx="2" ry="2" />
+<text x="888.78" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2485" width="0.4" height="15.0" fill="rgb(208,203,37)" rx="2" ry="2" />
+<text x="546.43" y="2495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="5029" width="0.4" height="15.0" fill="rgb(244,11,45)" rx="2" ry="2" />
+<text x="416.11" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="339.8" y="4629" width="1.2" height="15.0" fill="rgb(236,145,22)" rx="2" ry="2" />
+<text x="342.78" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6021" width="1.3" height="15.0" fill="rgb(225,46,20)" rx="2" ry="2" />
+<text x="768.94" y="6031.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1557" width="0.4" height="15.0" fill="rgb(254,36,1)" rx="2" ry="2" />
+<text x="546.43" y="1567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5077" width="0.5" height="15.0" fill="rgb(244,23,50)" rx="2" ry="2" />
+<text x="716.14" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1156.1" y="6533" width="0.4" height="15.0" fill="rgb(245,20,37)" rx="2" ry="2" />
+<text x="1159.06" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1333" width="0.4" height="15.0" fill="rgb(251,25,49)" rx="2" ry="2" />
+<text x="546.43" y="1343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="746.7" y="5365" width="0.4" height="15.0" fill="rgb(206,82,25)" rx="2" ry="2" />
+<text x="749.66" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.7" y="6469" width="0.4" height="15.0" fill="rgb(208,115,0)" rx="2" ry="2" />
+<text x="1101.65" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4917" width="0.4" height="15.0" fill="rgb(253,151,4)" rx="2" ry="2" />
+<text x="1073.99" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="376.7" y="4933" width="1.2" height="15.0" fill="rgb(210,148,19)" rx="2" ry="2" />
+<text x="379.65" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4469" width="0.5" height="15.0" fill="rgb(235,146,6)" rx="2" ry="2" />
+<text x="346.13" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5557" width="0.4" height="15.0" fill="rgb(225,88,17)" rx="2" ry="2" />
+<text x="767.26" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="758.8" y="5989" width="2.9" height="15.0" fill="rgb(254,66,5)" rx="2" ry="2" />
+<text x="761.81" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="820.0" y="5621" width="0.4" height="15.0" fill="rgb(221,63,1)" rx="2" ry="2" />
+<text x="822.99" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (2 samples, 0.07%)</title><rect x="10.4" y="6389" width="0.9" height="15.0" fill="rgb(229,193,27)" rx="2" ry="2" />
+<text x="13.42" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4053" width="0.4" height="15.0" fill="rgb(205,176,41)" rx="2" ry="2" />
+<text x="1120.51" y="4063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.9" y="5061" width="0.4" height="15.0" fill="rgb(238,43,37)" rx="2" ry="2" />
+<text x="486.93" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="523.3" y="5669" width="0.9" height="15.0" fill="rgb(233,118,41)" rx="2" ry="2" />
+<text x="526.32" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="256.8" y="5317" width="0.4" height="15.0" fill="rgb(246,132,32)" rx="2" ry="2" />
+<text x="259.81" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4709" width="0.8" height="15.0" fill="rgb(216,173,20)" rx="2" ry="2" />
+<text x="276.99" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="484.8" y="5173" width="1.6" height="15.0" fill="rgb(238,25,51)" rx="2" ry="2" />
+<text x="487.77" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="382.1" y="5077" width="0.4" height="15.0" fill="rgb(207,117,40)" rx="2" ry="2" />
+<text x="385.10" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2469" width="0.4" height="15.0" fill="rgb(246,125,4)" rx="2" ry="2" />
+<text x="437.90" y="2479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (169 samples, 6.00%)</title><rect x="822.5" y="5861" width="70.8" height="15.0" fill="rgb(247,91,50)" rx="2" ry="2" />
+<text x="825.51" y="5871.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="274.8" y="4917" width="5.1" height="15.0" fill="rgb(231,169,0)" rx="2" ry="2" />
+<text x="277.83" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="795.3" y="5173" width="0.4" height="15.0" fill="rgb(208,22,31)" rx="2" ry="2" />
+<text x="798.27" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="5157" width="0.9" height="15.0" fill="rgb(225,188,17)" rx="2" ry="2" />
+<text x="345.71" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="765.5" y="5413" width="0.4" height="15.0" fill="rgb(253,197,0)" rx="2" ry="2" />
+<text x="768.52" y="5423.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1589" width="0.4" height="15.0" fill="rgb(235,126,9)" rx="2" ry="2" />
+<text x="546.43" y="1599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5941" width="0.4" height="15.0" fill="rgb(224,35,50)" rx="2" ry="2" />
+<text x="896.32" y="5951.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="485" width="0.4" height="15.0" fill="rgb(254,95,10)" rx="2" ry="2" />
+<text x="546.43" y="495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6389" width="0.9" height="15.0" fill="rgb(254,222,11)" rx="2" ry="2" />
+<text x="896.74" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="402.2" y="4885" width="0.9" height="15.0" fill="rgb(227,150,2)" rx="2" ry="2" />
+<text x="405.22" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="835.5" y="5637" width="0.8" height="15.0" fill="rgb(206,187,30)" rx="2" ry="2" />
+<text x="838.50" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="308.4" y="4997" width="1.6" height="15.0" fill="rgb(215,21,22)" rx="2" ry="2" />
+<text x="311.35" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="890.4" y="5541" width="0.4" height="15.0" fill="rgb(212,69,39)" rx="2" ry="2" />
+<text x="893.39" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4533" width="0.5" height="15.0" fill="rgb(227,143,37)" rx="2" ry="2" />
+<text x="346.13" y="4543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4005" width="0.4" height="15.0" fill="rgb(218,220,51)" rx="2" ry="2" />
+<text x="437.90" y="4015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4741" width="0.8" height="15.0" fill="rgb(245,46,7)" rx="2" ry="2" />
+<text x="512.91" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="419.8" y="5045" width="1.7" height="15.0" fill="rgb(239,223,6)" rx="2" ry="2" />
+<text x="422.82" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="4949" width="0.9" height="15.0" fill="rgb(209,74,42)" rx="2" ry="2" />
+<text x="746.73" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5221" width="0.5" height="15.0" fill="rgb(211,99,33)" rx="2" ry="2" />
+<text x="716.14" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (304 samples, 10.80%)</title><rect x="767.2" y="6469" width="127.4" height="15.0" fill="rgb(211,66,49)" rx="2" ry="2" />
+<text x="770.19" y="6479.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1076.4" y="6389" width="0.9" height="15.0" fill="rgb(205,111,43)" rx="2" ry="2" />
+<text x="1079.44" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 0.71%)</title><rect x="558.9" y="5749" width="8.4" height="15.0" fill="rgb(206,202,43)" rx="2" ry="2" />
+<text x="561.93" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5589" width="0.4" height="15.0" fill="rgb(241,197,24)" rx="2" ry="2" />
+<text x="768.52" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="525.0" y="5861" width="6.7" height="15.0" fill="rgb(245,159,15)" rx="2" ry="2" />
+<text x="527.99" y="5871.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2421" width="0.4" height="15.0" fill="rgb(246,127,5)" rx="2" ry="2" />
+<text x="437.90" y="2431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="437.0" y="4773" width="9.2" height="15.0" fill="rgb(227,192,29)" rx="2" ry="2" />
+<text x="440.00" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="416.9" y="4933" width="2.5" height="15.0" fill="rgb(221,84,49)" rx="2" ry="2" />
+<text x="419.88" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="250.9" y="5797" width="2.6" height="15.0" fill="rgb(236,133,6)" rx="2" ry="2" />
+<text x="253.94" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5813" width="101.8" height="15.0" fill="rgb(215,179,48)" rx="2" ry="2" />
+<text x="577.02" y="5823.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4725" width="0.8" height="15.0" fill="rgb(225,56,24)" rx="2" ry="2" />
+<text x="1120.09" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5045" width="0.4" height="15.0" fill="rgb(208,123,9)" rx="2" ry="2" />
+<text x="760.98" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4677" width="0.5" height="15.0" fill="rgb(237,155,50)" rx="2" ry="2" />
+<text x="480.64" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="455.4" y="5141" width="0.5" height="15.0" fill="rgb(244,18,33)" rx="2" ry="2" />
+<text x="458.43" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="397.2" y="4789" width="0.4" height="15.0" fill="rgb(235,164,48)" rx="2" ry="2" />
+<text x="400.19" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5477" width="0.8" height="15.0" fill="rgb(228,102,23)" rx="2" ry="2" />
+<text x="1120.09" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5573" width="0.4" height="15.0" fill="rgb(247,157,14)" rx="2" ry="2" />
+<text x="1073.99" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4821" width="0.4" height="15.0" fill="rgb(219,159,51)" rx="2" ry="2" />
+<text x="463.88" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="417.3" y="4805" width="2.1" height="15.0" fill="rgb(245,52,44)" rx="2" ry="2" />
+<text x="420.30" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="734.1" y="5237" width="10.5" height="15.0" fill="rgb(210,205,31)" rx="2" ry="2" />
+<text x="737.09" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4485" width="0.4" height="15.0" fill="rgb(227,63,43)" rx="2" ry="2" />
+<text x="412.76" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="406.4" y="4901" width="5.9" height="15.0" fill="rgb(241,139,6)" rx="2" ry="2" />
+<text x="409.41" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1077.3" y="6437" width="0.4" height="15.0" fill="rgb(245,136,16)" rx="2" ry="2" />
+<text x="1080.28" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5077" width="0.8" height="15.0" fill="rgb(223,23,19)" rx="2" ry="2" />
+<text x="1120.09" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5701" width="0.4" height="15.0" fill="rgb(253,82,10)" rx="2" ry="2" />
+<text x="768.52" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="550.6" y="5541" width="3.7" height="15.0" fill="rgb(250,74,48)" rx="2" ry="2" />
+<text x="553.55" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4885" width="0.4" height="15.0" fill="rgb(242,153,22)" rx="2" ry="2" />
+<text x="760.98" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="251.8" y="5765" width="1.7" height="15.0" fill="rgb(208,183,6)" rx="2" ry="2" />
+<text x="254.78" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5573" width="0.8" height="15.0" fill="rgb(217,45,35)" rx="2" ry="2" />
+<text x="1120.09" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6245" width="0.5" height="15.0" fill="rgb(242,209,14)" rx="2" ry="2" />
+<text x="1050.95" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4485" width="0.4" height="15.0" fill="rgb(241,104,27)" rx="2" ry="2" />
+<text x="1073.99" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4853" width="0.8" height="15.0" fill="rgb(213,186,23)" rx="2" ry="2" />
+<text x="1120.09" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5285" width="0.4" height="15.0" fill="rgb(226,127,37)" rx="2" ry="2" />
+<text x="896.32" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5797" width="2.5" height="15.0" fill="rgb(248,45,26)" rx="2" ry="2" />
+<text x="770.19" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="5029" width="0.9" height="15.0" fill="rgb(228,127,19)" rx="2" ry="2" />
+<text x="746.73" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.6" y="5045" width="0.4" height="15.0" fill="rgb(209,89,45)" rx="2" ry="2" />
+<text x="475.61" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="5141" width="0.4" height="15.0" fill="rgb(208,50,11)" rx="2" ry="2" />
+<text x="475.19" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6149" width="0.8" height="15.0" fill="rgb(218,110,2)" rx="2" ry="2" />
+<text x="1120.09" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4789" width="0.4" height="15.0" fill="rgb(232,219,49)" rx="2" ry="2" />
+<text x="1073.99" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3893" width="5.0" height="15.0" fill="rgb(237,87,51)" rx="2" ry="2" />
+<text x="491.12" y="3903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="760.1" y="5781" width="0.4" height="15.0" fill="rgb(219,83,8)" rx="2" ry="2" />
+<text x="763.07" y="5791.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4229" width="0.4" height="15.0" fill="rgb(250,141,15)" rx="2" ry="2" />
+<text x="546.43" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="421.5" y="5013" width="2.9" height="15.0" fill="rgb(238,66,21)" rx="2" ry="2" />
+<text x="424.49" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="345.2" y="4997" width="0.4" height="15.0" fill="rgb(249,177,44)" rx="2" ry="2" />
+<text x="348.23" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="390.1" y="5077" width="0.4" height="15.0" fill="rgb(208,41,3)" rx="2" ry="2" />
+<text x="393.06" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="830.0" y="5605" width="1.3" height="15.0" fill="rgb(212,45,0)" rx="2" ry="2" />
+<text x="833.05" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.0" y="4805" width="0.4" height="15.0" fill="rgb(233,98,16)" rx="2" ry="2" />
+<text x="333.98" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.82%)</title><rect x="403.1" y="4933" width="9.6" height="15.0" fill="rgb(208,135,20)" rx="2" ry="2" />
+<text x="406.05" y="4943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="997" width="0.4" height="15.0" fill="rgb(221,2,14)" rx="2" ry="2" />
+<text x="546.43" y="1007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="252.2" y="5701" width="0.4" height="15.0" fill="rgb(219,57,16)" rx="2" ry="2" />
+<text x="255.20" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="780.6" y="5381" width="0.4" height="15.0" fill="rgb(220,66,29)" rx="2" ry="2" />
+<text x="783.60" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="434.1" y="4885" width="2.5" height="15.0" fill="rgb(232,4,9)" rx="2" ry="2" />
+<text x="437.06" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4213" width="0.4" height="15.0" fill="rgb(210,116,13)" rx="2" ry="2" />
+<text x="467.65" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1063.9" y="6389" width="0.4" height="15.0" fill="rgb(231,184,29)" rx="2" ry="2" />
+<text x="1066.87" y="6399.5" ></text>
+</g>
+<g >
+<title>ord (1 samples, 0.04%)</title><rect x="15.0" y="6453" width="0.4" height="15.0" fill="rgb(252,137,48)" rx="2" ry="2" />
+<text x="18.03" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="518.3" y="5365" width="0.4" height="15.0" fill="rgb(215,184,15)" rx="2" ry="2" />
+<text x="521.29" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="511.2" y="5189" width="0.4" height="15.0" fill="rgb(252,225,6)" rx="2" ry="2" />
+<text x="514.16" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="401.8" y="4853" width="0.4" height="15.0" fill="rgb(235,116,38)" rx="2" ry="2" />
+<text x="404.80" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.35%)</title><rect x="1103.3" y="6485" width="15.9" height="15.0" fill="rgb(231,54,39)" rx="2" ry="2" />
+<text x="1106.26" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4741" width="0.4" height="15.0" fill="rgb(232,11,27)" rx="2" ry="2" />
+<text x="760.98" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="835.5" y="5557" width="0.8" height="15.0" fill="rgb(213,12,52)" rx="2" ry="2" />
+<text x="838.50" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.9" y="4933" width="0.5" height="15.0" fill="rgb(210,53,48)" rx="2" ry="2" />
+<text x="310.93" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="816.6" y="5557" width="0.5" height="15.0" fill="rgb(223,88,3)" rx="2" ry="2" />
+<text x="819.64" y="5567.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4677" width="0.4" height="15.0" fill="rgb(231,31,48)" rx="2" ry="2" />
+<text x="546.43" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="247.6" y="6101" width="0.4" height="15.0" fill="rgb(236,61,35)" rx="2" ry="2" />
+<text x="250.59" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3845" width="5.0" height="15.0" fill="rgb(235,54,16)" rx="2" ry="2" />
+<text x="491.12" y="3855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (48 samples, 1.70%)</title><rect x="801.1" y="5813" width="20.1" height="15.0" fill="rgb(226,60,38)" rx="2" ry="2" />
+<text x="804.14" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="512.4" y="5077" width="0.9" height="15.0" fill="rgb(254,80,6)" rx="2" ry="2" />
+<text x="515.42" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4789" width="0.5" height="15.0" fill="rgb(213,197,8)" rx="2" ry="2" />
+<text x="469.75" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="334.8" y="4885" width="0.4" height="15.0" fill="rgb(232,33,37)" rx="2" ry="2" />
+<text x="337.75" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (41 samples, 1.46%)</title><rect x="682.5" y="5397" width="17.2" height="15.0" fill="rgb(243,53,30)" rx="2" ry="2" />
+<text x="685.55" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.35%)</title><rect x="313.0" y="5013" width="15.9" height="15.0" fill="rgb(234,46,9)" rx="2" ry="2" />
+<text x="315.96" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="527.9" y="5557" width="3.0" height="15.0" fill="rgb(251,150,37)" rx="2" ry="2" />
+<text x="530.93" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5749" width="0.5" height="15.0" fill="rgb(236,39,14)" rx="2" ry="2" />
+<text x="573.25" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.0" y="4821" width="0.4" height="15.0" fill="rgb(208,30,5)" rx="2" ry="2" />
+<text x="333.98" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5637" width="0.4" height="15.0" fill="rgb(216,49,35)" rx="2" ry="2" />
+<text x="896.32" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.03%)</title><rect x="499.0" y="5269" width="12.2" height="15.0" fill="rgb(205,9,24)" rx="2" ry="2" />
+<text x="502.01" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="4997" width="0.4" height="15.0" fill="rgb(213,92,27)" rx="2" ry="2" />
+<text x="896.32" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6341" width="0.9" height="15.0" fill="rgb(248,25,47)" rx="2" ry="2" />
+<text x="896.74" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (31 samples, 1.10%)</title><rect x="498.2" y="5301" width="13.0" height="15.0" fill="rgb(253,113,24)" rx="2" ry="2" />
+<text x="501.17" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5173" width="1.6" height="15.0" fill="rgb(216,151,3)" rx="2" ry="2" />
+<text x="545.17" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5445" width="0.4" height="15.0" fill="rgb(246,217,52)" rx="2" ry="2" />
+<text x="768.52" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="757.1" y="5813" width="1.3" height="15.0" fill="rgb(221,221,32)" rx="2" ry="2" />
+<text x="760.14" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1140.6" y="6437" width="0.8" height="15.0" fill="rgb(243,209,35)" rx="2" ry="2" />
+<text x="1143.55" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5237" width="0.4" height="15.0" fill="rgb(238,198,17)" rx="2" ry="2" />
+<text x="685.13" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6053" width="2.1" height="15.0" fill="rgb(249,64,48)" rx="2" ry="2" />
+<text x="251.01" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="767.2" y="5381" width="1.3" height="15.0" fill="rgb(225,162,5)" rx="2" ry="2" />
+<text x="770.19" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="481.8" y="5333" width="1.3" height="15.0" fill="rgb(247,27,22)" rx="2" ry="2" />
+<text x="484.83" y="5343.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3029" width="0.4" height="15.0" fill="rgb(240,139,9)" rx="2" ry="2" />
+<text x="546.43" y="3039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5973" width="0.4" height="15.0" fill="rgb(206,40,22)" rx="2" ry="2" />
+<text x="896.32" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="759.2" y="5941" width="2.5" height="15.0" fill="rgb(245,43,37)" rx="2" ry="2" />
+<text x="762.23" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4181" width="0.5" height="15.0" fill="rgb(216,213,9)" rx="2" ry="2" />
+<text x="480.64" y="4191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="445.8" y="4565" width="0.4" height="15.0" fill="rgb(228,113,52)" rx="2" ry="2" />
+<text x="448.80" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="501.9" y="5029" width="0.9" height="15.0" fill="rgb(222,100,25)" rx="2" ry="2" />
+<text x="504.95" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="6005" width="0.4" height="15.0" fill="rgb(222,167,24)" rx="2" ry="2" />
+<text x="768.52" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4821" width="0.8" height="15.0" fill="rgb(215,202,41)" rx="2" ry="2" />
+<text x="512.91" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="385.5" y="4661" width="0.4" height="15.0" fill="rgb(230,39,17)" rx="2" ry="2" />
+<text x="388.45" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 2.27%)</title><rect x="774.3" y="5749" width="26.8" height="15.0" fill="rgb(242,44,14)" rx="2" ry="2" />
+<text x="777.32" y="5759.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5109" width="1.6" height="15.0" fill="rgb(222,104,24)" rx="2" ry="2" />
+<text x="545.17" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5349" width="0.4" height="15.0" fill="rgb(240,114,41)" rx="2" ry="2" />
+<text x="569.06" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="6069" width="0.9" height="15.0" fill="rgb(228,172,45)" rx="2" ry="2" />
+<text x="896.74" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4085" width="5.4" height="15.0" fill="rgb(249,40,43)" rx="2" ry="2" />
+<text x="490.70" y="4095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="526.2" y="5749" width="0.9" height="15.0" fill="rgb(240,197,19)" rx="2" ry="2" />
+<text x="529.25" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4629" width="0.8" height="15.0" fill="rgb(233,102,40)" rx="2" ry="2" />
+<text x="1120.09" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:264-267) (1 samples, 0.04%)</title><rect x="893.3" y="4949" width="0.4" height="15.0" fill="rgb(253,50,19)" rx="2" ry="2" />
+<text x="896.32" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4949" width="1.7" height="15.0" fill="rgb(254,82,19)" rx="2" ry="2" />
+<text x="429.10" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3925" width="5.0" height="15.0" fill="rgb(220,137,33)" rx="2" ry="2" />
+<text x="491.12" y="3935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6053" width="0.4" height="15.0" fill="rgb(217,98,7)" rx="2" ry="2" />
+<text x="1073.99" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4949" width="0.4" height="15.0" fill="rgb(210,158,24)" rx="2" ry="2" />
+<text x="1073.99" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="325.5" y="4821" width="0.9" height="15.0" fill="rgb(220,134,40)" rx="2" ry="2" />
+<text x="328.53" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5701" width="0.4" height="15.0" fill="rgb(232,169,50)" rx="2" ry="2" />
+<text x="768.10" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (3 samples, 0.11%)</title><rect x="1166.5" y="6549" width="1.3" height="15.0" fill="rgb(237,213,32)" rx="2" ry="2" />
+<text x="1169.53" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="422.3" y="4901" width="2.1" height="15.0" fill="rgb(210,165,29)" rx="2" ry="2" />
+<text x="425.33" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.4" y="4997" width="0.4" height="15.0" fill="rgb(214,155,6)" rx="2" ry="2" />
+<text x="347.39" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="380.8" y="5173" width="0.5" height="15.0" fill="rgb(235,110,54)" rx="2" ry="2" />
+<text x="383.85" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4597" width="0.9" height="15.0" fill="rgb(220,132,12)" rx="2" ry="2" />
+<text x="443.35" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="761.7" y="5893" width="0.5" height="15.0" fill="rgb(212,66,52)" rx="2" ry="2" />
+<text x="764.75" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.2" y="5541" width="0.5" height="15.0" fill="rgb(214,66,0)" rx="2" ry="2" />
+<text x="529.25" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1047.9" y="6405" width="0.5" height="15.0" fill="rgb(227,117,3)" rx="2" ry="2" />
+<text x="1050.95" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4421" width="0.5" height="15.0" fill="rgb(215,3,24)" rx="2" ry="2" />
+<text x="480.64" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5717" width="0.8" height="15.0" fill="rgb(248,6,30)" rx="2" ry="2" />
+<text x="528.41" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="564.4" y="5477" width="2.1" height="15.0" fill="rgb(231,100,15)" rx="2" ry="2" />
+<text x="567.38" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (643 samples, 22.83%)</title><rect x="250.5" y="5941" width="269.5" height="15.0" fill="rgb(240,49,2)" rx="2" ry="2" />
+<text x="253.53" y="5951.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4853" width="0.4" height="15.0" fill="rgb(231,71,39)" rx="2" ry="2" />
+<text x="1073.99" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (344 samples, 12.22%)</title><rect x="531.7" y="5973" width="144.1" height="15.0" fill="rgb(219,71,17)" rx="2" ry="2" />
+<text x="534.70" y="5983.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (2 samples, 0.07%)</title><rect x="893.7" y="5861" width="0.9" height="15.0" fill="rgb(214,86,37)" rx="2" ry="2" />
+<text x="896.74" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="748.8" y="5317" width="7.5" height="15.0" fill="rgb(222,174,46)" rx="2" ry="2" />
+<text x="751.76" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.9" y="6245" width="0.4" height="15.0" fill="rgb(244,153,11)" rx="2" ry="2" />
+<text x="1120.93" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="275.2" y="4885" width="4.7" height="15.0" fill="rgb(232,124,2)" rx="2" ry="2" />
+<text x="278.25" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4597" width="0.8" height="15.0" fill="rgb(209,36,49)" rx="2" ry="2" />
+<text x="429.10" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="282.8" y="5189" width="5.9" height="15.0" fill="rgb(252,86,35)" rx="2" ry="2" />
+<text x="285.79" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="565.6" y="5397" width="0.9" height="15.0" fill="rgb(242,172,10)" rx="2" ry="2" />
+<text x="568.64" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="688.8" y="5285" width="0.5" height="15.0" fill="rgb(252,143,41)" rx="2" ry="2" />
+<text x="691.84" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (344 samples, 12.22%)</title><rect x="531.7" y="5989" width="144.1" height="15.0" fill="rgb(235,172,9)" rx="2" ry="2" />
+<text x="534.70" y="5999.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="368.3" y="4789" width="0.4" height="15.0" fill="rgb(229,8,9)" rx="2" ry="2" />
+<text x="371.27" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="461.3" y="5029" width="4.6" height="15.0" fill="rgb(231,68,41)" rx="2" ry="2" />
+<text x="464.30" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1054.7" y="6485" width="0.4" height="15.0" fill="rgb(239,60,21)" rx="2" ry="2" />
+<text x="1057.65" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.21%)</title><rect x="1058.0" y="6469" width="14.3" height="15.0" fill="rgb(221,150,0)" rx="2" ry="2" />
+<text x="1061.00" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4517" width="0.4" height="15.0" fill="rgb(247,6,14)" rx="2" ry="2" />
+<text x="1073.99" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4085" width="0.4" height="15.0" fill="rgb(211,182,51)" rx="2" ry="2" />
+<text x="1120.51" y="4095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5749" width="0.4" height="15.0" fill="rgb(243,208,2)" rx="2" ry="2" />
+<text x="772.71" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="281.1" y="4901" width="0.4" height="15.0" fill="rgb(221,175,31)" rx="2" ry="2" />
+<text x="284.12" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5733" width="0.4" height="15.0" fill="rgb(224,46,27)" rx="2" ry="2" />
+<text x="524.22" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4261" width="0.4" height="15.0" fill="rgb(254,118,34)" rx="2" ry="2" />
+<text x="1120.51" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="253.0" y="5701" width="0.5" height="15.0" fill="rgb(244,119,31)" rx="2" ry="2" />
+<text x="256.04" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5141" width="0.4" height="15.0" fill="rgb(253,104,14)" rx="2" ry="2" />
+<text x="1073.99" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="748.8" y="5253" width="1.2" height="15.0" fill="rgb(237,215,32)" rx="2" ry="2" />
+<text x="751.76" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="515.8" y="5077" width="1.7" height="15.0" fill="rgb(249,147,24)" rx="2" ry="2" />
+<text x="518.77" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4485" width="0.8" height="15.0" fill="rgb(252,17,25)" rx="2" ry="2" />
+<text x="429.10" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5509" width="0.4" height="15.0" fill="rgb(221,102,25)" rx="2" ry="2" />
+<text x="895.49" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="410.6" y="4741" width="0.8" height="15.0" fill="rgb(205,100,40)" rx="2" ry="2" />
+<text x="413.60" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.43%)</title><rect x="568.6" y="5829" width="5.0" height="15.0" fill="rgb(228,122,5)" rx="2" ry="2" />
+<text x="571.57" y="5839.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2901" width="0.4" height="15.0" fill="rgb(230,95,47)" rx="2" ry="2" />
+<text x="546.43" y="2911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2501" width="0.4" height="15.0" fill="rgb(242,218,34)" rx="2" ry="2" />
+<text x="546.43" y="2511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="355.3" y="5237" width="0.4" height="15.0" fill="rgb(245,213,19)" rx="2" ry="2" />
+<text x="358.28" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="385.5" y="4629" width="0.4" height="15.0" fill="rgb(240,190,26)" rx="2" ry="2" />
+<text x="388.45" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="462.6" y="4981" width="3.3" height="15.0" fill="rgb(252,15,22)" rx="2" ry="2" />
+<text x="465.56" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (41 samples, 1.46%)</title><rect x="682.5" y="5381" width="17.2" height="15.0" fill="rgb(205,158,41)" rx="2" ry="2" />
+<text x="685.55" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="344.4" y="5189" width="2.9" height="15.0" fill="rgb(218,53,45)" rx="2" ry="2" />
+<text x="347.39" y="5199.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4485" width="0.4" height="15.0" fill="rgb(253,160,37)" rx="2" ry="2" />
+<text x="546.43" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="436.2" y="4821" width="0.4" height="15.0" fill="rgb(207,86,35)" rx="2" ry="2" />
+<text x="439.16" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="774.7" y="5573" width="1.7" height="15.0" fill="rgb(239,168,41)" rx="2" ry="2" />
+<text x="777.74" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1172.4" y="6581" width="0.4" height="15.0" fill="rgb(221,81,26)" rx="2" ry="2" />
+<text x="1175.40" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="179.3" y="6485" width="0.4" height="15.0" fill="rgb(252,158,50)" rx="2" ry="2" />
+<text x="182.29" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.9" y="5253" width="0.4" height="15.0" fill="rgb(254,36,52)" rx="2" ry="2" />
+<text x="486.93" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6501" width="0.4" height="15.0" fill="rgb(253,42,34)" rx="2" ry="2" />
+<text x="1125.12" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="803.7" y="5637" width="1.2" height="15.0" fill="rgb(241,205,22)" rx="2" ry="2" />
+<text x="806.65" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4869" width="0.4" height="15.0" fill="rgb(218,205,49)" rx="2" ry="2" />
+<text x="487.77" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="770.1" y="6005" width="0.4" height="15.0" fill="rgb(227,78,18)" rx="2" ry="2" />
+<text x="773.13" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5925" width="0.4" height="15.0" fill="rgb(249,98,26)" rx="2" ry="2" />
+<text x="523.38" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="511.6" y="4965" width="0.8" height="15.0" fill="rgb(239,164,37)" rx="2" ry="2" />
+<text x="514.58" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="797.8" y="5381" width="2.1" height="15.0" fill="rgb(230,180,32)" rx="2" ry="2" />
+<text x="800.78" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="714.0" y="5269" width="0.4" height="15.0" fill="rgb(242,39,51)" rx="2" ry="2" />
+<text x="716.98" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5781" width="0.4" height="15.0" fill="rgb(243,101,31)" rx="2" ry="2" />
+<text x="766.00" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4821" width="6.7" height="15.0" fill="rgb(212,171,13)" rx="2" ry="2" />
+<text x="489.86" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="276.9" y="4805" width="3.0" height="15.0" fill="rgb(247,207,5)" rx="2" ry="2" />
+<text x="279.92" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="246.8" y="6325" width="3.3" height="15.0" fill="rgb(224,206,1)" rx="2" ry="2" />
+<text x="249.75" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.36%)</title><rect x="504.5" y="5141" width="4.2" height="15.0" fill="rgb(230,33,43)" rx="2" ry="2" />
+<text x="507.46" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="4933" width="0.4" height="15.0" fill="rgb(238,187,44)" rx="2" ry="2" />
+<text x="416.11" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="5013" width="0.4" height="15.0" fill="rgb(218,159,18)" rx="2" ry="2" />
+<text x="416.11" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="1072.3" y="6485" width="0.8" height="15.0" fill="rgb(212,82,53)" rx="2" ry="2" />
+<text x="1075.25" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,224 samples, 43.47%)</title><rect x="250.1" y="6277" width="512.9" height="15.0" fill="rgb(207,90,9)" rx="2" ry="2" />
+<text x="253.11" y="6287.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="667.0" y="5173" width="0.5" height="15.0" fill="rgb(229,31,21)" rx="2" ry="2" />
+<text x="670.05" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5589" width="0.5" height="15.0" fill="rgb(224,135,28)" rx="2" ry="2" />
+<text x="573.25" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="696.4" y="5189" width="2.9" height="15.0" fill="rgb(222,173,41)" rx="2" ry="2" />
+<text x="699.38" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="281.1" y="4933" width="1.3" height="15.0" fill="rgb(244,34,22)" rx="2" ry="2" />
+<text x="284.12" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="397.6" y="4869" width="0.8" height="15.0" fill="rgb(210,107,2)" rx="2" ry="2" />
+<text x="400.61" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4693" width="0.4" height="15.0" fill="rgb(216,140,7)" rx="2" ry="2" />
+<text x="364.57" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="249.3" y="5941" width="0.4" height="15.0" fill="rgb(206,208,52)" rx="2" ry="2" />
+<text x="252.27" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5141" width="0.4" height="15.0" fill="rgb(221,87,4)" rx="2" ry="2" />
+<text x="760.98" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (2 samples, 0.07%)</title><rect x="1077.7" y="6549" width="0.8" height="15.0" fill="rgb(238,63,21)" rx="2" ry="2" />
+<text x="1080.70" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1077.3" y="6549" width="0.4" height="15.0" fill="rgb(232,12,41)" rx="2" ry="2" />
+<text x="1080.28" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="248.0" y="5989" width="1.7" height="15.0" fill="rgb(250,164,8)" rx="2" ry="2" />
+<text x="251.01" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.9" y="4517" width="0.9" height="15.0" fill="rgb(251,195,52)" rx="2" ry="2" />
+<text x="429.94" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5637" width="0.8" height="15.0" fill="rgb(243,105,22)" rx="2" ry="2" />
+<text x="1120.09" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6165" width="0.4" height="15.0" fill="rgb(235,23,1)" rx="2" ry="2" />
+<text x="1143.55" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5557" width="0.4" height="15.0" fill="rgb(212,102,31)" rx="2" ry="2" />
+<text x="896.32" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="891.6" y="5717" width="0.5" height="15.0" fill="rgb(210,11,14)" rx="2" ry="2" />
+<text x="894.65" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="570.7" y="5749" width="0.4" height="15.0" fill="rgb(207,53,36)" rx="2" ry="2" />
+<text x="573.67" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4661" width="0.8" height="15.0" fill="rgb(226,215,28)" rx="2" ry="2" />
+<text x="512.91" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="472.2" y="5285" width="7.5" height="15.0" fill="rgb(233,51,4)" rx="2" ry="2" />
+<text x="475.19" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5461" width="0.4" height="15.0" fill="rgb(227,107,1)" rx="2" ry="2" />
+<text x="1073.99" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="835.5" y="5541" width="0.8" height="15.0" fill="rgb(232,135,18)" rx="2" ry="2" />
+<text x="838.50" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4725" width="0.8" height="15.0" fill="rgb(218,138,0)" rx="2" ry="2" />
+<text x="413.60" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1162.3" y="6469" width="0.5" height="15.0" fill="rgb(239,202,9)" rx="2" ry="2" />
+<text x="1165.34" y="6479.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2997" width="0.4" height="15.0" fill="rgb(243,185,40)" rx="2" ry="2" />
+<text x="546.43" y="3007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3093" width="0.4" height="15.0" fill="rgb(225,15,40)" rx="2" ry="2" />
+<text x="546.43" y="3103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5877" width="0.4" height="15.0" fill="rgb(244,129,47)" rx="2" ry="2" />
+<text x="896.32" y="5887.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4725" width="0.4" height="15.0" fill="rgb(239,81,27)" rx="2" ry="2" />
+<text x="546.43" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="368.7" y="4789" width="0.4" height="15.0" fill="rgb(248,183,40)" rx="2" ry="2" />
+<text x="371.69" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="816.6" y="5589" width="0.5" height="15.0" fill="rgb(212,159,26)" rx="2" ry="2" />
+<text x="819.64" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="696.4" y="5253" width="2.9" height="15.0" fill="rgb(247,92,46)" rx="2" ry="2" />
+<text x="699.38" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.9" y="4629" width="0.9" height="15.0" fill="rgb(237,81,47)" rx="2" ry="2" />
+<text x="429.94" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="297.5" y="4981" width="0.4" height="15.0" fill="rgb(207,178,20)" rx="2" ry="2" />
+<text x="300.46" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (167 samples, 5.93%)</title><rect x="822.9" y="5797" width="70.0" height="15.0" fill="rgb(247,113,37)" rx="2" ry="2" />
+<text x="825.93" y="5807.5" >Nsfisis..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4261" width="0.4" height="15.0" fill="rgb(222,188,6)" rx="2" ry="2" />
+<text x="437.90" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4901" width="0.8" height="15.0" fill="rgb(214,226,40)" rx="2" ry="2" />
+<text x="1120.09" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (5 samples, 0.18%)</title><rect x="1170.3" y="6565" width="2.1" height="15.0" fill="rgb(227,109,43)" rx="2" ry="2" />
+<text x="1173.31" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4901" width="6.7" height="15.0" fill="rgb(231,45,1)" rx="2" ry="2" />
+<text x="489.86" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (12 samples, 0.43%)</title><rect x="1158.6" y="6581" width="5.0" height="15.0" fill="rgb(220,58,18)" rx="2" ry="2" />
+<text x="1161.57" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5621" width="0.4" height="15.0" fill="rgb(213,14,2)" rx="2" ry="2" />
+<text x="576.60" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5493" width="0.8" height="15.0" fill="rgb(233,20,50)" rx="2" ry="2" />
+<text x="528.41" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4197" width="0.4" height="15.0" fill="rgb(239,153,6)" rx="2" ry="2" />
+<text x="467.65" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="281.5" y="4917" width="0.9" height="15.0" fill="rgb(213,86,6)" rx="2" ry="2" />
+<text x="284.53" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4117" width="5.4" height="15.0" fill="rgb(232,109,49)" rx="2" ry="2" />
+<text x="490.70" y="4127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="6021" width="0.4" height="15.0" fill="rgb(251,228,2)" rx="2" ry="2" />
+<text x="768.52" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4597" width="0.9" height="15.0" fill="rgb(250,30,7)" rx="2" ry="2" />
+<text x="467.23" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="800.7" y="5637" width="0.4" height="15.0" fill="rgb(252,18,9)" rx="2" ry="2" />
+<text x="803.72" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (143 samples, 5.08%)</title><rect x="831.7" y="5701" width="59.9" height="15.0" fill="rgb(233,206,23)" rx="2" ry="2" />
+<text x="834.73" y="5711.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5109" width="0.5" height="15.0" fill="rgb(246,75,45)" rx="2" ry="2" />
+<text x="716.14" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="487.3" y="4725" width="6.3" height="15.0" fill="rgb(245,156,48)" rx="2" ry="2" />
+<text x="490.28" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (155 samples, 5.50%)</title><rect x="827.1" y="5765" width="65.0" height="15.0" fill="rgb(236,24,52)" rx="2" ry="2" />
+<text x="830.12" y="5775.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="345.6" y="5141" width="1.7" height="15.0" fill="rgb(213,42,38)" rx="2" ry="2" />
+<text x="348.65" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="835.5" y="5669" width="1.7" height="15.0" fill="rgb(242,59,41)" rx="2" ry="2" />
+<text x="838.50" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.32%)</title><rect x="801.6" y="5765" width="3.7" height="15.0" fill="rgb(225,170,35)" rx="2" ry="2" />
+<text x="804.56" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="476.4" y="4885" width="2.9" height="15.0" fill="rgb(217,186,44)" rx="2" ry="2" />
+<text x="479.38" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="882.8" y="5605" width="3.0" height="15.0" fill="rgb(252,214,48)" rx="2" ry="2" />
+<text x="885.85" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="263.5" y="5093" width="1.3" height="15.0" fill="rgb(206,90,51)" rx="2" ry="2" />
+<text x="266.52" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6357" width="0.5" height="15.0" fill="rgb(214,174,53)" rx="2" ry="2" />
+<text x="1050.95" y="6367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3109" width="0.4" height="15.0" fill="rgb(210,165,28)" rx="2" ry="2" />
+<text x="437.90" y="3119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="269.4" y="5045" width="2.9" height="15.0" fill="rgb(228,124,15)" rx="2" ry="2" />
+<text x="272.38" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="426.1" y="4517" width="0.8" height="15.0" fill="rgb(211,12,16)" rx="2" ry="2" />
+<text x="429.10" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="747.9" y="5029" width="0.9" height="15.0" fill="rgb(221,144,20)" rx="2" ry="2" />
+<text x="750.92" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="949" width="0.4" height="15.0" fill="rgb(232,228,35)" rx="2" ry="2" />
+<text x="546.43" y="959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="498.6" y="5269" width="0.4" height="15.0" fill="rgb(239,197,29)" rx="2" ry="2" />
+<text x="501.59" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6165" width="0.4" height="15.0" fill="rgb(232,214,51)" rx="2" ry="2" />
+<text x="13.42" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="327.2" y="4805" width="0.4" height="15.0" fill="rgb(245,170,24)" rx="2" ry="2" />
+<text x="330.21" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="755.0" y="5093" width="0.9" height="15.0" fill="rgb(205,203,9)" rx="2" ry="2" />
+<text x="758.04" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="511.6" y="5141" width="1.7" height="15.0" fill="rgb(250,82,22)" rx="2" ry="2" />
+<text x="514.58" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="712.7" y="5253" width="1.3" height="15.0" fill="rgb(224,11,19)" rx="2" ry="2" />
+<text x="715.72" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5221" width="0.4" height="15.0" fill="rgb(213,208,24)" rx="2" ry="2" />
+<text x="760.98" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="528.8" y="5413" width="2.1" height="15.0" fill="rgb(209,107,24)" rx="2" ry="2" />
+<text x="531.76" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="3909" width="0.4" height="15.0" fill="rgb(253,103,48)" rx="2" ry="2" />
+<text x="467.65" y="3919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="763.0" y="6213" width="2.9" height="15.0" fill="rgb(232,113,28)" rx="2" ry="2" />
+<text x="766.00" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4373" width="0.8" height="15.0" fill="rgb(235,46,0)" rx="2" ry="2" />
+<text x="1120.09" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (383 samples, 13.60%)</title><rect x="25.5" y="6517" width="160.5" height="15.0" fill="rgb(217,92,33)" rx="2" ry="2" />
+<text x="28.50" y="6527.5" >Nsfisis\Waddiwasi\Ex..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="478.5" y="4741" width="0.8" height="15.0" fill="rgb(221,96,34)" rx="2" ry="2" />
+<text x="481.48" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="746.7" y="5317" width="0.4" height="15.0" fill="rgb(208,49,49)" rx="2" ry="2" />
+<text x="749.66" y="5327.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4629" width="0.4" height="15.0" fill="rgb(221,44,0)" rx="2" ry="2" />
+<text x="546.43" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="535.0" y="5637" width="0.5" height="15.0" fill="rgb(237,47,6)" rx="2" ry="2" />
+<text x="538.05" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="747.9" y="5109" width="0.9" height="15.0" fill="rgb(222,49,22)" rx="2" ry="2" />
+<text x="750.92" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="275.2" y="4709" width="0.5" height="15.0" fill="rgb(222,20,3)" rx="2" ry="2" />
+<text x="278.25" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5941" width="0.8" height="15.0" fill="rgb(223,149,41)" rx="2" ry="2" />
+<text x="1120.09" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="345.6" y="4821" width="0.5" height="15.0" fill="rgb(215,152,30)" rx="2" ry="2" />
+<text x="348.65" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="318.0" y="4901" width="1.2" height="15.0" fill="rgb(225,65,36)" rx="2" ry="2" />
+<text x="320.99" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="761.3" y="5749" width="0.4" height="15.0" fill="rgb(220,103,47)" rx="2" ry="2" />
+<text x="764.33" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4885" width="0.4" height="15.0" fill="rgb(226,54,33)" rx="2" ry="2" />
+<text x="364.57" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="344.8" y="5061" width="0.8" height="15.0" fill="rgb(211,87,38)" rx="2" ry="2" />
+<text x="347.81" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="792.3" y="5189" width="3.4" height="15.0" fill="rgb(231,64,18)" rx="2" ry="2" />
+<text x="795.34" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="276.5" y="4709" width="0.4" height="15.0" fill="rgb(225,146,33)" rx="2" ry="2" />
+<text x="279.51" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="531.3" y="5749" width="0.4" height="15.0" fill="rgb(227,90,3)" rx="2" ry="2" />
+<text x="534.28" y="5759.5" ></text>
+</g>
+<g >
+<title>all (2,816 samples, 100%)</title><rect x="10.0" y="6597" width="1180.0" height="15.0" fill="rgb(211,212,32)" rx="2" ry="2" />
+<text x="13.00" y="6607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (289 samples, 10.26%)</title><rect x="772.2" y="5941" width="121.1" height="15.0" fill="rgb(254,124,46)" rx="2" ry="2" />
+<text x="775.22" y="5951.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3077" width="0.4" height="15.0" fill="rgb(228,43,13)" rx="2" ry="2" />
+<text x="546.43" y="3087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (65 samples, 2.31%)</title><rect x="152.1" y="6501" width="27.2" height="15.0" fill="rgb(207,163,48)" rx="2" ry="2" />
+<text x="155.05" y="6511.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.6" y="4773" width="0.5" height="15.0" fill="rgb(219,119,53)" rx="2" ry="2" />
+<text x="348.65" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="828.4" y="5637" width="2.9" height="15.0" fill="rgb(254,124,52)" rx="2" ry="2" />
+<text x="831.37" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="396.3" y="4949" width="2.1" height="15.0" fill="rgb(247,216,52)" rx="2" ry="2" />
+<text x="399.35" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5669" width="101.8" height="15.0" fill="rgb(218,44,53)" rx="2" ry="2" />
+<text x="577.02" y="5679.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="252.2" y="5637" width="0.4" height="15.0" fill="rgb(231,182,7)" rx="2" ry="2" />
+<text x="255.20" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.0" y="5877" width="0.4" height="15.0" fill="rgb(252,114,54)" rx="2" ry="2" />
+<text x="522.96" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="515.8" y="5029" width="1.7" height="15.0" fill="rgb(208,75,5)" rx="2" ry="2" />
+<text x="518.77" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1076.4" y="6485" width="0.9" height="15.0" fill="rgb(244,20,45)" rx="2" ry="2" />
+<text x="1079.44" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (66 samples, 2.34%)</title><rect x="261.0" y="5285" width="27.7" height="15.0" fill="rgb(240,206,16)" rx="2" ry="2" />
+<text x="264.00" y="5295.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.43%)</title><rect x="568.6" y="5845" width="5.0" height="15.0" fill="rgb(237,220,36)" rx="2" ry="2" />
+<text x="571.57" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4101" width="5.4" height="15.0" fill="rgb(228,86,10)" rx="2" ry="2" />
+<text x="490.70" y="4111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="382.1" y="5045" width="0.4" height="15.0" fill="rgb(241,106,41)" rx="2" ry="2" />
+<text x="385.10" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Vals\Ref::__construct (1 samples, 0.04%)</title><rect x="16.3" y="6453" width="0.4" height="15.0" fill="rgb(244,214,13)" rx="2" ry="2" />
+<text x="19.29" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="401.8" y="4821" width="0.4" height="15.0" fill="rgb(213,157,53)" rx="2" ry="2" />
+<text x="404.80" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5429" width="0.4" height="15.0" fill="rgb(250,118,39)" rx="2" ry="2" />
+<text x="561.10" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="736.6" y="5221" width="0.4" height="15.0" fill="rgb(239,188,21)" rx="2" ry="2" />
+<text x="739.61" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="248.0" y="6005" width="1.7" height="15.0" fill="rgb(247,71,42)" rx="2" ry="2" />
+<text x="251.01" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="518.7" y="5493" width="0.4" height="15.0" fill="rgb(231,198,37)" rx="2" ry="2" />
+<text x="521.71" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (123 samples, 4.37%)</title><rect x="289.5" y="5189" width="51.5" height="15.0" fill="rgb(253,50,11)" rx="2" ry="2" />
+<text x="292.50" y="5199.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.4" y="5173" width="0.4" height="15.0" fill="rgb(237,161,35)" rx="2" ry="2" />
+<text x="471.42" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="393.4" y="4981" width="0.4" height="15.0" fill="rgb(218,198,44)" rx="2" ry="2" />
+<text x="396.42" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="247.6" y="6133" width="0.4" height="15.0" fill="rgb(252,22,39)" rx="2" ry="2" />
+<text x="250.59" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (636 samples, 22.59%)</title><rect x="253.5" y="5781" width="266.5" height="15.0" fill="rgb(219,16,32)" rx="2" ry="2" />
+<text x="256.46" y="5791.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.6" y="5557" width="0.5" height="15.0" fill="rgb(252,167,52)" rx="2" ry="2" />
+<text x="894.65" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6245" width="0.9" height="15.0" fill="rgb(219,159,20)" rx="2" ry="2" />
+<text x="896.74" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6101" width="0.9" height="15.0" fill="rgb(219,186,9)" rx="2" ry="2" />
+<text x="896.74" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="527.9" y="5493" width="3.0" height="15.0" fill="rgb(228,191,5)" rx="2" ry="2" />
+<text x="530.93" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="282.8" y="5173" width="1.7" height="15.0" fill="rgb(215,208,8)" rx="2" ry="2" />
+<text x="285.79" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.21%)</title><rect x="268.5" y="5157" width="14.3" height="15.0" fill="rgb(249,162,34)" rx="2" ry="2" />
+<text x="271.54" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="346.9" y="5013" width="0.4" height="15.0" fill="rgb(231,117,44)" rx="2" ry="2" />
+<text x="349.90" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="260.2" y="5253" width="0.4" height="15.0" fill="rgb(228,52,12)" rx="2" ry="2" />
+<text x="263.16" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="390.1" y="4949" width="0.4" height="15.0" fill="rgb(237,70,18)" rx="2" ry="2" />
+<text x="393.06" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4549" width="0.5" height="15.0" fill="rgb(247,101,48)" rx="2" ry="2" />
+<text x="480.64" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.0" y="5205" width="0.4" height="15.0" fill="rgb(222,111,45)" rx="2" ry="2" />
+<text x="471.00" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="417.7" y="4773" width="1.7" height="15.0" fill="rgb(222,93,41)" rx="2" ry="2" />
+<text x="420.72" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="434.5" y="4741" width="0.8" height="15.0" fill="rgb(236,23,46)" rx="2" ry="2" />
+<text x="437.48" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6389" width="0.4" height="15.0" fill="rgb(238,170,31)" rx="2" ry="2" />
+<text x="1125.12" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="445.8" y="4549" width="0.4" height="15.0" fill="rgb(228,152,5)" rx="2" ry="2" />
+<text x="448.80" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.4" y="5973" width="0.4" height="15.0" fill="rgb(232,56,14)" rx="2" ry="2" />
+<text x="766.42" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5157" width="0.4" height="15.0" fill="rgb(222,179,18)" rx="2" ry="2" />
+<text x="896.32" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="4997" width="0.4" height="15.0" fill="rgb(222,156,19)" rx="2" ry="2" />
+<text x="351.58" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="361.2" y="5029" width="0.8" height="15.0" fill="rgb(244,198,24)" rx="2" ry="2" />
+<text x="364.15" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (5 samples, 0.18%)</title><rect x="1154.8" y="6549" width="2.1" height="15.0" fill="rgb(228,198,42)" rx="2" ry="2" />
+<text x="1157.80" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1077.3" y="6421" width="0.4" height="15.0" fill="rgb(207,149,26)" rx="2" ry="2" />
+<text x="1080.28" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4293" width="5.4" height="15.0" fill="rgb(225,144,13)" rx="2" ry="2" />
+<text x="490.70" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4533" width="0.4" height="15.0" fill="rgb(246,90,54)" rx="2" ry="2" />
+<text x="412.76" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.32%)</title><rect x="521.2" y="5877" width="3.8" height="15.0" fill="rgb(220,20,18)" rx="2" ry="2" />
+<text x="524.22" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.6" y="5061" width="0.4" height="15.0" fill="rgb(216,211,20)" rx="2" ry="2" />
+<text x="294.59" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="762.6" y="5989" width="0.4" height="15.0" fill="rgb(208,60,29)" rx="2" ry="2" />
+<text x="765.59" y="5999.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4501" width="0.4" height="15.0" fill="rgb(206,130,51)" rx="2" ry="2" />
+<text x="546.43" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.9" y="4565" width="0.9" height="15.0" fill="rgb(244,152,32)" rx="2" ry="2" />
+<text x="429.94" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4773" width="6.7" height="15.0" fill="rgb(217,178,29)" rx="2" ry="2" />
+<text x="489.86" y="4783.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2885" width="0.4" height="15.0" fill="rgb(218,134,15)" rx="2" ry="2" />
+<text x="546.43" y="2895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="525.0" y="5717" width="0.4" height="15.0" fill="rgb(234,87,20)" rx="2" ry="2" />
+<text x="527.99" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5365" width="0.4" height="15.0" fill="rgb(227,218,24)" rx="2" ry="2" />
+<text x="569.06" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="484.8" y="5237" width="1.6" height="15.0" fill="rgb(217,79,46)" rx="2" ry="2" />
+<text x="487.77" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="747.9" y="5125" width="0.9" height="15.0" fill="rgb(206,223,34)" rx="2" ry="2" />
+<text x="750.92" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="244.7" y="6485" width="0.8" height="15.0" fill="rgb(214,29,3)" rx="2" ry="2" />
+<text x="247.66" y="6495.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4101" width="0.4" height="15.0" fill="rgb(238,2,14)" rx="2" ry="2" />
+<text x="546.43" y="4111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5589" width="101.8" height="15.0" fill="rgb(231,161,34)" rx="2" ry="2" />
+<text x="577.02" y="5599.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4965" width="0.4" height="15.0" fill="rgb(251,215,48)" rx="2" ry="2" />
+<text x="760.98" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5333" width="0.5" height="15.0" fill="rgb(217,38,14)" rx="2" ry="2" />
+<text x="879.14" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1102.8" y="6485" width="0.5" height="15.0" fill="rgb(212,150,2)" rx="2" ry="2" />
+<text x="1105.84" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="248.0" y="6117" width="2.1" height="15.0" fill="rgb(224,104,33)" rx="2" ry="2" />
+<text x="251.01" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6325" width="0.9" height="15.0" fill="rgb(221,12,28)" rx="2" ry="2" />
+<text x="896.74" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5461" width="0.5" height="15.0" fill="rgb(206,115,20)" rx="2" ry="2" />
+<text x="573.25" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="822.1" y="5861" width="0.4" height="15.0" fill="rgb(224,127,8)" rx="2" ry="2" />
+<text x="825.09" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5765" width="0.4" height="15.0" fill="rgb(238,24,32)" rx="2" ry="2" />
+<text x="772.71" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5061" width="0.5" height="15.0" fill="rgb(222,216,39)" rx="2" ry="2" />
+<text x="716.14" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeVec (12 samples, 0.43%)</title><rect x="10.4" y="6517" width="5.0" height="15.0" fill="rgb(229,165,51)" rx="2" ry="2" />
+<text x="13.42" y="6527.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1381" width="0.4" height="15.0" fill="rgb(223,69,44)" rx="2" ry="2" />
+<text x="546.43" y="1391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4309" width="0.4" height="15.0" fill="rgb(237,95,31)" rx="2" ry="2" />
+<text x="443.77" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="511.6" y="5301" width="2.1" height="15.0" fill="rgb(252,32,33)" rx="2" ry="2" />
+<text x="514.58" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="321.8" y="4853" width="0.8" height="15.0" fill="rgb(247,199,51)" rx="2" ry="2" />
+<text x="324.76" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="510.3" y="4549" width="0.4" height="15.0" fill="rgb(244,70,12)" rx="2" ry="2" />
+<text x="513.33" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4517" width="0.4" height="15.0" fill="rgb(207,192,48)" rx="2" ry="2" />
+<text x="496.98" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.67%)</title><rect x="486.4" y="5221" width="8.0" height="15.0" fill="rgb(216,46,19)" rx="2" ry="2" />
+<text x="489.44" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="487.3" y="4757" width="6.3" height="15.0" fill="rgb(212,197,53)" rx="2" ry="2" />
+<text x="490.28" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="775.6" y="5509" width="0.8" height="15.0" fill="rgb(248,207,27)" rx="2" ry="2" />
+<text x="778.58" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (302 samples, 10.72%)</title><rect x="767.2" y="6341" width="126.5" height="15.0" fill="rgb(244,104,22)" rx="2" ry="2" />
+<text x="770.19" y="6351.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="275.2" y="4645" width="0.5" height="15.0" fill="rgb(236,85,23)" rx="2" ry="2" />
+<text x="278.25" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4645" width="0.5" height="15.0" fill="rgb(220,75,17)" rx="2" ry="2" />
+<text x="480.64" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="282.8" y="5205" width="5.9" height="15.0" fill="rgb(214,170,12)" rx="2" ry="2" />
+<text x="285.79" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="762.6" y="5941" width="0.4" height="15.0" fill="rgb(239,168,37)" rx="2" ry="2" />
+<text x="765.59" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="5093" width="0.4" height="15.0" fill="rgb(242,170,30)" rx="2" ry="2" />
+<text x="475.19" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="5893" width="0.4" height="15.0" fill="rgb(209,52,44)" rx="2" ry="2" />
+<text x="768.52" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="314.6" y="4933" width="0.9" height="15.0" fill="rgb(215,202,10)" rx="2" ry="2" />
+<text x="317.64" y="4943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="800.7" y="5621" width="0.4" height="15.0" fill="rgb(213,102,5)" rx="2" ry="2" />
+<text x="803.72" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4613" width="0.5" height="15.0" fill="rgb(235,152,5)" rx="2" ry="2" />
+<text x="480.64" y="4623.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="37" width="0.4" height="15.0" fill="rgb(247,180,17)" rx="2" ry="2" />
+<text x="546.43" y="47.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="768.0" y="5237" width="0.5" height="15.0" fill="rgb(234,51,36)" rx="2" ry="2" />
+<text x="771.03" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="485.6" y="4997" width="0.8" height="15.0" fill="rgb(219,225,20)" rx="2" ry="2" />
+<text x="488.60" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5733" width="0.4" height="15.0" fill="rgb(234,55,4)" rx="2" ry="2" />
+<text x="896.32" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1077.3" y="6517" width="0.4" height="15.0" fill="rgb(246,127,30)" rx="2" ry="2" />
+<text x="1080.28" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4693" width="0.4" height="15.0" fill="rgb(219,56,36)" rx="2" ry="2" />
+<text x="272.80" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="362.0" y="4965" width="7.1" height="15.0" fill="rgb(236,222,8)" rx="2" ry="2" />
+<text x="364.99" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (509 samples, 18.08%)</title><rect x="257.2" y="5397" width="213.3" height="15.0" fill="rgb(250,43,54)" rx="2" ry="2" />
+<text x="260.23" y="5407.5" >Nsfisis\Waddiwasi\Execution\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5205" width="0.4" height="15.0" fill="rgb(220,168,36)" rx="2" ry="2" />
+<text x="563.19" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="554.7" y="5557" width="0.5" height="15.0" fill="rgb(238,21,7)" rx="2" ry="2" />
+<text x="557.74" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (21 samples, 0.75%)</title><rect x="558.5" y="5781" width="8.8" height="15.0" fill="rgb(208,183,35)" rx="2" ry="2" />
+<text x="561.52" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="511.2" y="5205" width="0.4" height="15.0" fill="rgb(254,218,53)" rx="2" ry="2" />
+<text x="514.16" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4693" width="0.4" height="15.0" fill="rgb(217,75,43)" rx="2" ry="2" />
+<text x="546.43" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="270.6" y="4965" width="1.7" height="15.0" fill="rgb(254,32,43)" rx="2" ry="2" />
+<text x="273.64" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="307.9" y="4997" width="0.5" height="15.0" fill="rgb(254,60,22)" rx="2" ry="2" />
+<text x="310.93" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4677" width="0.4" height="15.0" fill="rgb(245,50,49)" rx="2" ry="2" />
+<text x="272.80" y="4687.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4597" width="0.4" height="15.0" fill="rgb(242,71,23)" rx="2" ry="2" />
+<text x="546.43" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="5509" width="0.4" height="15.0" fill="rgb(228,83,27)" rx="2" ry="2" />
+<text x="768.52" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="515.8" y="5157" width="1.7" height="15.0" fill="rgb(231,59,52)" rx="2" ry="2" />
+<text x="518.77" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (636 samples, 22.59%)</title><rect x="253.5" y="5701" width="266.5" height="15.0" fill="rgb(205,115,48)" rx="2" ry="2" />
+<text x="256.46" y="5711.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,224 samples, 43.47%)</title><rect x="250.1" y="6197" width="512.9" height="15.0" fill="rgb(208,197,17)" rx="2" ry="2" />
+<text x="253.11" y="6207.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4421" width="0.4" height="15.0" fill="rgb(224,26,21)" rx="2" ry="2" />
+<text x="1073.99" y="4431.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3125" width="0.4" height="15.0" fill="rgb(218,35,24)" rx="2" ry="2" />
+<text x="546.43" y="3135.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2661" width="0.4" height="15.0" fill="rgb(211,183,21)" rx="2" ry="2" />
+<text x="437.90" y="2671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.39%)</title><rect x="381.7" y="5157" width="4.6" height="15.0" fill="rgb(249,102,22)" rx="2" ry="2" />
+<text x="384.68" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="751.7" y="5205" width="4.2" height="15.0" fill="rgb(224,217,34)" rx="2" ry="2" />
+<text x="754.69" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="917" width="0.4" height="15.0" fill="rgb(219,190,20)" rx="2" ry="2" />
+<text x="546.43" y="927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5333" width="0.4" height="15.0" fill="rgb(245,214,53)" rx="2" ry="2" />
+<text x="1073.99" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6005" width="1.3" height="15.0" fill="rgb(229,35,25)" rx="2" ry="2" />
+<text x="768.94" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5397" width="0.4" height="15.0" fill="rgb(207,225,6)" rx="2" ry="2" />
+<text x="1073.99" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="517.9" y="5253" width="0.4" height="15.0" fill="rgb(229,137,3)" rx="2" ry="2" />
+<text x="520.87" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="369.1" y="5013" width="0.9" height="15.0" fill="rgb(231,59,2)" rx="2" ry="2" />
+<text x="372.11" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.3" y="5781" width="0.4" height="15.0" fill="rgb(211,76,9)" rx="2" ry="2" />
+<text x="764.33" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="458.8" y="5189" width="8.4" height="15.0" fill="rgb(242,169,10)" rx="2" ry="2" />
+<text x="461.79" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="461.3" y="5045" width="4.6" height="15.0" fill="rgb(234,191,29)" rx="2" ry="2" />
+<text x="464.30" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="836.8" y="5509" width="0.4" height="15.0" fill="rgb(221,20,38)" rx="2" ry="2" />
+<text x="839.75" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="776.0" y="5477" width="0.4" height="15.0" fill="rgb(234,164,36)" rx="2" ry="2" />
+<text x="778.99" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5717" width="0.4" height="15.0" fill="rgb(232,106,20)" rx="2" ry="2" />
+<text x="768.52" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="749.2" y="5205" width="0.8" height="15.0" fill="rgb(235,157,22)" rx="2" ry="2" />
+<text x="752.18" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4853" width="0.9" height="15.0" fill="rgb(217,179,2)" rx="2" ry="2" />
+<text x="388.04" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5733" width="1.3" height="15.0" fill="rgb(205,227,42)" rx="2" ry="2" />
+<text x="760.14" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="476.8" y="4773" width="2.5" height="15.0" fill="rgb(229,87,39)" rx="2" ry="2" />
+<text x="479.80" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="5061" width="1.3" height="15.0" fill="rgb(233,214,8)" rx="2" ry="2" />
+<text x="348.65" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.9" y="4533" width="0.9" height="15.0" fill="rgb(224,7,33)" rx="2" ry="2" />
+<text x="429.94" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4949" width="0.4" height="15.0" fill="rgb(219,188,38)" rx="2" ry="2" />
+<text x="496.98" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3941" width="5.0" height="15.0" fill="rgb(226,23,25)" rx="2" ry="2" />
+<text x="491.12" y="3951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="260.2" y="5157" width="0.4" height="15.0" fill="rgb(206,210,13)" rx="2" ry="2" />
+<text x="263.16" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="750.9" y="5237" width="0.4" height="15.0" fill="rgb(216,13,8)" rx="2" ry="2" />
+<text x="753.85" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4501" width="0.4" height="15.0" fill="rgb(218,8,33)" rx="2" ry="2" />
+<text x="496.98" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="301.6" y="5045" width="0.5" height="15.0" fill="rgb(235,153,23)" rx="2" ry="2" />
+<text x="304.65" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="5013" width="0.4" height="15.0" fill="rgb(228,14,7)" rx="2" ry="2" />
+<text x="496.98" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="437.0" y="4853" width="9.2" height="15.0" fill="rgb(254,220,4)" rx="2" ry="2" />
+<text x="440.00" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.6" y="4741" width="0.5" height="15.0" fill="rgb(236,113,45)" rx="2" ry="2" />
+<text x="348.65" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.6" y="4997" width="1.2" height="15.0" fill="rgb(252,196,13)" rx="2" ry="2" />
+<text x="545.59" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5589" width="0.4" height="15.0" fill="rgb(230,47,41)" rx="2" ry="2" />
+<text x="896.32" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4581" width="0.4" height="15.0" fill="rgb(215,139,23)" rx="2" ry="2" />
+<text x="1073.99" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.4" y="4661" width="0.4" height="15.0" fill="rgb(233,24,52)" rx="2" ry="2" />
+<text x="329.37" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (84 samples, 2.98%)</title><rect x="532.1" y="5845" width="35.2" height="15.0" fill="rgb(250,189,26)" rx="2" ry="2" />
+<text x="535.12" y="5855.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="761.3" y="5669" width="0.4" height="15.0" fill="rgb(223,117,7)" rx="2" ry="2" />
+<text x="764.33" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5269" width="0.8" height="15.0" fill="rgb(242,189,28)" rx="2" ry="2" />
+<text x="1120.09" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="4997" width="0.4" height="15.0" fill="rgb(221,150,12)" rx="2" ry="2" />
+<text x="357.03" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="323.0" y="4885" width="5.0" height="15.0" fill="rgb(237,182,3)" rx="2" ry="2" />
+<text x="326.02" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="326.4" y="4773" width="0.8" height="15.0" fill="rgb(217,95,38)" rx="2" ry="2" />
+<text x="329.37" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6453" width="0.4" height="15.0" fill="rgb(248,12,42)" rx="2" ry="2" />
+<text x="1125.12" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6261" width="0.4" height="15.0" fill="rgb(208,188,46)" rx="2" ry="2" />
+<text x="13.42" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5141" width="0.4" height="15.0" fill="rgb(227,146,4)" rx="2" ry="2" />
+<text x="896.32" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="756.7" y="5461" width="0.4" height="15.0" fill="rgb(210,124,10)" rx="2" ry="2" />
+<text x="759.72" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="573.6" y="5845" width="0.4" height="15.0" fill="rgb(237,227,19)" rx="2" ry="2" />
+<text x="576.60" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.4" y="4677" width="0.4" height="15.0" fill="rgb(222,141,36)" rx="2" ry="2" />
+<text x="329.37" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.0" y="5797" width="0.4" height="15.0" fill="rgb(242,227,28)" rx="2" ry="2" />
+<text x="766.00" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5573" width="0.4" height="15.0" fill="rgb(214,92,40)" rx="2" ry="2" />
+<text x="767.68" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="5077" width="1.3" height="15.0" fill="rgb(213,157,17)" rx="2" ry="2" />
+<text x="348.65" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="869" width="0.4" height="15.0" fill="rgb(217,91,17)" rx="2" ry="2" />
+<text x="546.43" y="879.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2261" width="0.4" height="15.0" fill="rgb(234,80,20)" rx="2" ry="2" />
+<text x="546.43" y="2271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (636 samples, 22.59%)</title><rect x="253.5" y="5877" width="266.5" height="15.0" fill="rgb(248,159,10)" rx="2" ry="2" />
+<text x="256.46" y="5887.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3189" width="0.4" height="15.0" fill="rgb(228,226,37)" rx="2" ry="2" />
+<text x="437.90" y="3199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="334.8" y="4901" width="0.4" height="15.0" fill="rgb(238,68,38)" rx="2" ry="2" />
+<text x="337.75" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="247.6" y="6005" width="0.4" height="15.0" fill="rgb(232,56,2)" rx="2" ry="2" />
+<text x="250.59" y="6015.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3845" width="0.4" height="15.0" fill="rgb(232,67,28)" rx="2" ry="2" />
+<text x="546.43" y="3855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="767.2" y="5909" width="2.9" height="15.0" fill="rgb(239,73,45)" rx="2" ry="2" />
+<text x="770.19" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5477" width="0.4" height="15.0" fill="rgb(230,79,26)" rx="2" ry="2" />
+<text x="576.60" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,221 samples, 43.36%)</title><rect x="250.5" y="6069" width="511.7" height="15.0" fill="rgb(216,167,8)" rx="2" ry="2" />
+<text x="253.53" y="6079.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="393.4" y="4997" width="0.4" height="15.0" fill="rgb(239,16,49)" rx="2" ry="2" />
+<text x="396.42" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="434.1" y="4901" width="2.5" height="15.0" fill="rgb(216,209,19)" rx="2" ry="2" />
+<text x="437.06" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4533" width="0.4" height="15.0" fill="rgb(238,29,50)" rx="2" ry="2" />
+<text x="437.90" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5749" width="0.4" height="15.0" fill="rgb(251,194,12)" rx="2" ry="2" />
+<text x="576.60" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="361.2" y="5013" width="0.8" height="15.0" fill="rgb(244,72,24)" rx="2" ry="2" />
+<text x="364.15" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4549" width="0.4" height="15.0" fill="rgb(228,185,45)" rx="2" ry="2" />
+<text x="546.43" y="4559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3701" width="0.4" height="15.0" fill="rgb(235,210,31)" rx="2" ry="2" />
+<text x="437.90" y="3711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5445" width="0.8" height="15.0" fill="rgb(205,85,40)" rx="2" ry="2" />
+<text x="528.41" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (6 samples, 0.21%)</title><rect x="149.5" y="6485" width="2.6" height="15.0" fill="rgb(245,18,16)" rx="2" ry="2" />
+<text x="152.54" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="376.7" y="4949" width="1.2" height="15.0" fill="rgb(218,194,18)" rx="2" ry="2" />
+<text x="379.65" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="821" width="0.4" height="15.0" fill="rgb(224,163,0)" rx="2" ry="2" />
+<text x="546.43" y="831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4917" width="0.8" height="15.0" fill="rgb(235,140,43)" rx="2" ry="2" />
+<text x="512.91" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="368.3" y="4757" width="0.4" height="15.0" fill="rgb(245,152,36)" rx="2" ry="2" />
+<text x="371.27" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (294 samples, 10.44%)</title><rect x="770.1" y="6021" width="123.2" height="15.0" fill="rgb(244,83,11)" rx="2" ry="2" />
+<text x="773.13" y="6031.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="515.8" y="5061" width="1.7" height="15.0" fill="rgb(247,40,15)" rx="2" ry="2" />
+<text x="518.77" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="435.3" y="4789" width="0.9" height="15.0" fill="rgb(213,80,26)" rx="2" ry="2" />
+<text x="438.32" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5685" width="1.3" height="15.0" fill="rgb(210,150,27)" rx="2" ry="2" />
+<text x="760.14" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="333.5" y="4725" width="0.4" height="15.0" fill="rgb(251,76,33)" rx="2" ry="2" />
+<text x="336.49" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="484.8" y="4837" width="0.4" height="15.0" fill="rgb(244,224,7)" rx="2" ry="2" />
+<text x="487.77" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4261" width="0.5" height="15.0" fill="rgb(251,185,25)" rx="2" ry="2" />
+<text x="480.64" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6325" width="1.3" height="15.0" fill="rgb(254,0,36)" rx="2" ry="2" />
+<text x="768.94" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="263.1" y="5141" width="0.4" height="15.0" fill="rgb(209,91,35)" rx="2" ry="2" />
+<text x="266.10" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="527.9" y="5477" width="3.0" height="15.0" fill="rgb(248,178,47)" rx="2" ry="2" />
+<text x="530.93" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4949" width="0.5" height="15.0" fill="rgb(241,174,28)" rx="2" ry="2" />
+<text x="469.75" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (99 samples, 3.52%)</title><rect x="837.2" y="5685" width="41.5" height="15.0" fill="rgb(252,146,39)" rx="2" ry="2" />
+<text x="840.17" y="5695.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5765" width="0.4" height="15.0" fill="rgb(225,0,8)" rx="2" ry="2" />
+<text x="524.22" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5781" width="0.4" height="15.0" fill="rgb(216,102,3)" rx="2" ry="2" />
+<text x="895.49" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.9" y="4581" width="0.9" height="15.0" fill="rgb(221,76,27)" rx="2" ry="2" />
+<text x="429.94" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="382.5" y="5077" width="3.8" height="15.0" fill="rgb(231,169,27)" rx="2" ry="2" />
+<text x="385.52" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="252.2" y="5653" width="0.4" height="15.0" fill="rgb(210,152,24)" rx="2" ry="2" />
+<text x="255.20" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="266.0" y="5061" width="1.3" height="15.0" fill="rgb(206,152,9)" rx="2" ry="2" />
+<text x="269.03" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1143.1" y="6517" width="0.4" height="15.0" fill="rgb(236,107,20)" rx="2" ry="2" />
+<text x="1146.07" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (84 samples, 2.98%)</title><rect x="532.1" y="5829" width="35.2" height="15.0" fill="rgb(205,2,47)" rx="2" ry="2" />
+<text x="535.12" y="5839.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (34 samples, 1.21%)</title><rect x="268.5" y="5189" width="14.3" height="15.0" fill="rgb(226,74,39)" rx="2" ry="2" />
+<text x="271.54" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="786.5" y="5301" width="9.2" height="15.0" fill="rgb(235,212,15)" rx="2" ry="2" />
+<text x="789.47" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="459.2" y="5061" width="6.7" height="15.0" fill="rgb(226,87,11)" rx="2" ry="2" />
+<text x="462.20" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1069.3" y="6293" width="0.4" height="15.0" fill="rgb(224,168,37)" rx="2" ry="2" />
+<text x="1072.32" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="5077" width="0.5" height="15.0" fill="rgb(242,4,13)" rx="2" ry="2" />
+<text x="489.44" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="493.1" y="4661" width="0.5" height="15.0" fill="rgb(232,4,13)" rx="2" ry="2" />
+<text x="496.15" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1119.6" y="6501" width="0.4" height="15.0" fill="rgb(249,105,19)" rx="2" ry="2" />
+<text x="1122.60" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4853" width="0.4" height="15.0" fill="rgb(252,167,46)" rx="2" ry="2" />
+<text x="272.80" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invoke (1,546 samples, 54.90%)</title><rect x="246.8" y="6565" width="647.8" height="15.0" fill="rgb(249,133,28)" rx="2" ry="2" />
+<text x="249.75" y="6575.5" >Nsfisis\Waddiwasi\Execution\Runtime::invoke</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,224 samples, 43.47%)</title><rect x="250.1" y="6117" width="512.9" height="15.0" fill="rgb(226,176,6)" rx="2" ry="2" />
+<text x="253.11" y="6127.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5605" width="101.8" height="15.0" fill="rgb(250,117,53)" rx="2" ry="2" />
+<text x="577.02" y="5615.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="457.1" y="4949" width="0.4" height="15.0" fill="rgb(245,39,28)" rx="2" ry="2" />
+<text x="460.11" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (302 samples, 10.72%)</title><rect x="767.2" y="6197" width="126.5" height="15.0" fill="rgb(254,145,54)" rx="2" ry="2" />
+<text x="770.19" y="6207.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="419.8" y="5029" width="1.7" height="15.0" fill="rgb(207,219,47)" rx="2" ry="2" />
+<text x="422.82" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="256.8" y="5333" width="0.4" height="15.0" fill="rgb(214,127,23)" rx="2" ry="2" />
+<text x="259.81" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4709" width="0.4" height="15.0" fill="rgb(218,61,48)" rx="2" ry="2" />
+<text x="412.76" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5237" width="0.4" height="15.0" fill="rgb(253,78,0)" rx="2" ry="2" />
+<text x="561.10" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="747.5" y="5333" width="1.3" height="15.0" fill="rgb(233,85,25)" rx="2" ry="2" />
+<text x="750.50" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="463.8" y="4757" width="1.3" height="15.0" fill="rgb(241,102,5)" rx="2" ry="2" />
+<text x="466.81" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5525" width="0.4" height="15.0" fill="rgb(231,52,30)" rx="2" ry="2" />
+<text x="767.26" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5845" width="0.8" height="15.0" fill="rgb(236,0,40)" rx="2" ry="2" />
+<text x="1120.09" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="421.9" y="4949" width="2.5" height="15.0" fill="rgb(229,73,40)" rx="2" ry="2" />
+<text x="424.91" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5253" width="0.4" height="15.0" fill="rgb(247,42,31)" rx="2" ry="2" />
+<text x="760.98" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="797.8" y="5445" width="2.1" height="15.0" fill="rgb(222,159,1)" rx="2" ry="2" />
+<text x="800.78" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6373" width="1.3" height="15.0" fill="rgb(241,3,5)" rx="2" ry="2" />
+<text x="768.94" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5445" width="0.4" height="15.0" fill="rgb(234,117,13)" rx="2" ry="2" />
+<text x="896.32" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1162.8" y="6469" width="0.4" height="15.0" fill="rgb(206,69,42)" rx="2" ry="2" />
+<text x="1165.76" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="562.7" y="5509" width="0.4" height="15.0" fill="rgb(254,147,20)" rx="2" ry="2" />
+<text x="565.71" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="802.8" y="5685" width="2.1" height="15.0" fill="rgb(247,207,14)" rx="2" ry="2" />
+<text x="805.81" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4613" width="0.4" height="15.0" fill="rgb(217,69,45)" rx="2" ry="2" />
+<text x="364.57" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="736.6" y="5205" width="0.4" height="15.0" fill="rgb(225,204,8)" rx="2" ry="2" />
+<text x="739.61" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="281.5" y="4853" width="0.9" height="15.0" fill="rgb(246,170,20)" rx="2" ry="2" />
+<text x="284.53" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="4965" width="0.9" height="15.0" fill="rgb(224,86,4)" rx="2" ry="2" />
+<text x="746.73" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="524.2" y="5733" width="0.4" height="15.0" fill="rgb(246,103,27)" rx="2" ry="2" />
+<text x="527.15" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1118.8" y="6453" width="0.4" height="15.0" fill="rgb(249,30,54)" rx="2" ry="2" />
+<text x="1121.76" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1765" width="0.4" height="15.0" fill="rgb(216,161,24)" rx="2" ry="2" />
+<text x="546.43" y="1775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (12 samples, 0.43%)</title><rect x="10.4" y="6501" width="5.0" height="15.0" fill="rgb(228,39,0)" rx="2" ry="2" />
+<text x="13.42" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4581" width="0.8" height="15.0" fill="rgb(250,49,47)" rx="2" ry="2" />
+<text x="413.60" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="260.2" y="5285" width="0.4" height="15.0" fill="rgb(214,181,32)" rx="2" ry="2" />
+<text x="263.16" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3861" width="5.0" height="15.0" fill="rgb(211,97,34)" rx="2" ry="2" />
+<text x="491.12" y="3871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="281.1" y="4821" width="0.4" height="15.0" fill="rgb(209,101,25)" rx="2" ry="2" />
+<text x="284.12" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="473.0" y="5045" width="0.5" height="15.0" fill="rgb(225,148,53)" rx="2" ry="2" />
+<text x="476.03" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.4" y="4917" width="0.4" height="15.0" fill="rgb(244,143,31)" rx="2" ry="2" />
+<text x="515.42" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="483.9" y="5013" width="0.4" height="15.0" fill="rgb(246,16,41)" rx="2" ry="2" />
+<text x="486.93" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="675.4" y="5221" width="0.4" height="15.0" fill="rgb(226,16,44)" rx="2" ry="2" />
+<text x="678.43" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.9" y="4869" width="0.5" height="15.0" fill="rgb(249,6,27)" rx="2" ry="2" />
+<text x="310.93" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="750.9" y="5221" width="0.4" height="15.0" fill="rgb(230,5,14)" rx="2" ry="2" />
+<text x="753.85" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="263.5" y="5029" width="1.3" height="15.0" fill="rgb(214,12,32)" rx="2" ry="2" />
+<text x="266.52" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="282.8" y="5045" width="0.4" height="15.0" fill="rgb(221,154,28)" rx="2" ry="2" />
+<text x="285.79" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1013" width="0.4" height="15.0" fill="rgb(245,49,4)" rx="2" ry="2" />
+<text x="546.43" y="1023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="413.9" y="4981" width="5.9" height="15.0" fill="rgb(226,170,33)" rx="2" ry="2" />
+<text x="416.95" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="396.3" y="4981" width="2.1" height="15.0" fill="rgb(241,152,35)" rx="2" ry="2" />
+<text x="399.35" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="760.9" y="5765" width="0.4" height="15.0" fill="rgb(247,2,51)" rx="2" ry="2" />
+<text x="763.91" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (302 samples, 10.72%)</title><rect x="767.2" y="6229" width="126.5" height="15.0" fill="rgb(253,4,36)" rx="2" ry="2" />
+<text x="770.19" y="6239.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="349.0" y="5301" width="0.4" height="15.0" fill="rgb(213,74,7)" rx="2" ry="2" />
+<text x="352.00" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.36%)</title><rect x="527.5" y="5797" width="4.2" height="15.0" fill="rgb(245,190,50)" rx="2" ry="2" />
+<text x="530.51" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="421.5" y="4981" width="2.9" height="15.0" fill="rgb(241,13,9)" rx="2" ry="2" />
+<text x="424.49" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4549" width="0.4" height="15.0" fill="rgb(230,11,38)" rx="2" ry="2" />
+<text x="412.76" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4709" width="0.8" height="15.0" fill="rgb(210,160,5)" rx="2" ry="2" />
+<text x="512.91" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="248.4" y="5957" width="1.3" height="15.0" fill="rgb(223,28,34)" rx="2" ry="2" />
+<text x="251.43" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5765" width="0.4" height="15.0" fill="rgb(236,95,54)" rx="2" ry="2" />
+<text x="766.00" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5349" width="0.4" height="15.0" fill="rgb(225,205,30)" rx="2" ry="2" />
+<text x="1073.99" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="252.2" y="5685" width="0.4" height="15.0" fill="rgb(253,104,36)" rx="2" ry="2" />
+<text x="255.20" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (44 samples, 1.56%)</title><rect x="535.9" y="5573" width="18.4" height="15.0" fill="rgb(215,220,27)" rx="2" ry="2" />
+<text x="538.89" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="768.5" y="5461" width="1.2" height="15.0" fill="rgb(249,94,48)" rx="2" ry="2" />
+<text x="771.45" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (635 samples, 22.55%)</title><rect x="253.5" y="5605" width="266.0" height="15.0" fill="rgb(215,194,3)" rx="2" ry="2" />
+<text x="256.46" y="5615.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="176.4" y="6469" width="0.4" height="15.0" fill="rgb(210,73,23)" rx="2" ry="2" />
+<text x="179.36" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="745.4" y="5221" width="1.3" height="15.0" fill="rgb(219,184,0)" rx="2" ry="2" />
+<text x="748.40" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4885" width="0.4" height="15.0" fill="rgb(221,181,6)" rx="2" ry="2" />
+<text x="272.80" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.2" y="5621" width="0.4" height="15.0" fill="rgb(236,130,17)" rx="2" ry="2" />
+<text x="576.18" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2533" width="0.4" height="15.0" fill="rgb(205,215,50)" rx="2" ry="2" />
+<text x="546.43" y="2543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="767.2" y="5781" width="2.5" height="15.0" fill="rgb(219,42,53)" rx="2" ry="2" />
+<text x="770.19" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="434.5" y="4757" width="0.8" height="15.0" fill="rgb(226,19,27)" rx="2" ry="2" />
+<text x="437.48" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1116.7" y="6229" width="1.2" height="15.0" fill="rgb(241,213,35)" rx="2" ry="2" />
+<text x="1119.67" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5077" width="0.4" height="15.0" fill="rgb(233,28,0)" rx="2" ry="2" />
+<text x="520.87" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.3" y="5477" width="0.4" height="15.0" fill="rgb(213,182,4)" rx="2" ry="2" />
+<text x="565.29" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.3" y="5669" width="0.4" height="15.0" fill="rgb(254,32,13)" rx="2" ry="2" />
+<text x="767.26" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.4" y="4933" width="0.4" height="15.0" fill="rgb(254,146,52)" rx="2" ry="2" />
+<text x="347.39" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (60 samples, 2.13%)</title><rect x="721.5" y="5349" width="25.2" height="15.0" fill="rgb(209,202,31)" rx="2" ry="2" />
+<text x="724.52" y="5359.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="866.9" y="5525" width="0.4" height="15.0" fill="rgb(246,127,21)" rx="2" ry="2" />
+<text x="869.92" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="422.3" y="4885" width="2.1" height="15.0" fill="rgb(230,29,5)" rx="2" ry="2" />
+<text x="425.33" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="283.6" y="5045" width="0.4" height="15.0" fill="rgb(231,8,40)" rx="2" ry="2" />
+<text x="286.63" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="494.0" y="5109" width="0.4" height="15.0" fill="rgb(222,178,44)" rx="2" ry="2" />
+<text x="496.98" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.82%)</title><rect x="331.4" y="4965" width="9.6" height="15.0" fill="rgb(232,81,39)" rx="2" ry="2" />
+<text x="334.40" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3157" width="0.4" height="15.0" fill="rgb(205,104,19)" rx="2" ry="2" />
+<text x="437.90" y="3167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2933" width="0.4" height="15.0" fill="rgb(228,89,48)" rx="2" ry="2" />
+<text x="437.90" y="2943.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="667.9" y="5221" width="0.4" height="15.0" fill="rgb(238,21,42)" rx="2" ry="2" />
+<text x="670.88" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="763.8" y="5925" width="1.7" height="15.0" fill="rgb(241,176,12)" rx="2" ry="2" />
+<text x="766.84" y="5935.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="1188.7" y="6565" width="0.5" height="15.0" fill="rgb(249,28,6)" rx="2" ry="2" />
+<text x="1191.74" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4645" width="0.4" height="15.0" fill="rgb(244,191,24)" rx="2" ry="2" />
+<text x="463.88" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4645" width="0.8" height="15.0" fill="rgb(215,136,44)" rx="2" ry="2" />
+<text x="429.10" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5093" width="0.5" height="15.0" fill="rgb(226,61,34)" rx="2" ry="2" />
+<text x="716.14" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="298.3" y="5029" width="0.4" height="15.0" fill="rgb(214,38,40)" rx="2" ry="2" />
+<text x="301.30" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5717" width="0.5" height="15.0" fill="rgb(247,222,8)" rx="2" ry="2" />
+<text x="573.25" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="376.7" y="4885" width="1.2" height="15.0" fill="rgb(237,133,15)" rx="2" ry="2" />
+<text x="379.65" y="4895.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3861" width="0.4" height="15.0" fill="rgb(243,209,33)" rx="2" ry="2" />
+<text x="546.43" y="3871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="563.5" y="5493" width="0.5" height="15.0" fill="rgb(212,187,22)" rx="2" ry="2" />
+<text x="566.54" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="4965" width="0.4" height="15.0" fill="rgb(217,29,22)" rx="2" ry="2" />
+<text x="357.03" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2245" width="0.4" height="15.0" fill="rgb(214,166,47)" rx="2" ry="2" />
+<text x="546.43" y="2255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4213" width="0.4" height="15.0" fill="rgb(205,175,6)" rx="2" ry="2" />
+<text x="443.77" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5637" width="81.3" height="15.0" fill="rgb(207,73,29)" rx="2" ry="2" />
+<text x="678.85" y="5647.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="767.2" y="5941" width="2.9" height="15.0" fill="rgb(232,18,51)" rx="2" ry="2" />
+<text x="770.19" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5141" width="0.4" height="15.0" fill="rgb(215,191,25)" rx="2" ry="2" />
+<text x="569.06" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="768.9" y="5381" width="0.8" height="15.0" fill="rgb(216,43,32)" rx="2" ry="2" />
+<text x="771.87" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="276.5" y="4789" width="0.4" height="15.0" fill="rgb(235,21,4)" rx="2" ry="2" />
+<text x="279.51" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.07%)</title><rect x="1122.1" y="6549" width="0.9" height="15.0" fill="rgb(248,68,33)" rx="2" ry="2" />
+<text x="1125.12" y="6559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2949" width="0.4" height="15.0" fill="rgb(237,97,23)" rx="2" ry="2" />
+<text x="546.43" y="2959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3685" width="0.4" height="15.0" fill="rgb(207,89,35)" rx="2" ry="2" />
+<text x="437.90" y="3695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4597" width="0.4" height="15.0" fill="rgb(225,124,43)" rx="2" ry="2" />
+<text x="1073.99" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="750.9" y="5253" width="0.4" height="15.0" fill="rgb(249,75,23)" rx="2" ry="2" />
+<text x="753.85" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (289 samples, 10.26%)</title><rect x="772.2" y="5925" width="121.1" height="15.0" fill="rgb(228,169,24)" rx="2" ry="2" />
+<text x="775.22" y="5935.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="4981" width="0.4" height="15.0" fill="rgb(233,36,25)" rx="2" ry="2" />
+<text x="351.58" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (28 samples, 0.99%)</title><rect x="879.1" y="5685" width="11.7" height="15.0" fill="rgb(247,0,43)" rx="2" ry="2" />
+<text x="882.08" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4613" width="0.8" height="15.0" fill="rgb(224,139,30)" rx="2" ry="2" />
+<text x="512.91" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="478.5" y="4709" width="0.8" height="15.0" fill="rgb(246,82,34)" rx="2" ry="2" />
+<text x="481.48" y="4719.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="732.8" y="5237" width="0.5" height="15.0" fill="rgb(251,145,42)" rx="2" ry="2" />
+<text x="735.83" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5893" width="0.4" height="15.0" fill="rgb(236,194,7)" rx="2" ry="2" />
+<text x="768.10" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4661" width="0.4" height="15.0" fill="rgb(211,208,1)" rx="2" ry="2" />
+<text x="463.88" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3237" width="0.4" height="15.0" fill="rgb(232,220,41)" rx="2" ry="2" />
+<text x="437.90" y="3247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5685" width="101.8" height="15.0" fill="rgb(210,89,17)" rx="2" ry="2" />
+<text x="577.02" y="5695.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5221" width="0.4" height="15.0" fill="rgb(238,7,42)" rx="2" ry="2" />
+<text x="563.19" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="278.6" y="4677" width="0.4" height="15.0" fill="rgb(238,109,29)" rx="2" ry="2" />
+<text x="281.60" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="745.0" y="5237" width="0.4" height="15.0" fill="rgb(251,106,8)" rx="2" ry="2" />
+<text x="747.99" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.4" y="4965" width="0.4" height="15.0" fill="rgb(244,88,36)" rx="2" ry="2" />
+<text x="347.39" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="396.8" y="4821" width="0.4" height="15.0" fill="rgb(254,225,46)" rx="2" ry="2" />
+<text x="399.77" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="828.4" y="5717" width="2.9" height="15.0" fill="rgb(245,30,12)" rx="2" ry="2" />
+<text x="831.37" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.7" y="5557" width="0.4" height="15.0" fill="rgb(221,188,48)" rx="2" ry="2" />
+<text x="565.71" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="252.6" y="5733" width="0.9" height="15.0" fill="rgb(232,135,14)" rx="2" ry="2" />
+<text x="255.62" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="426.1" y="4965" width="1.7" height="15.0" fill="rgb(252,48,26)" rx="2" ry="2" />
+<text x="429.10" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="504.0" y="5173" width="5.5" height="15.0" fill="rgb(217,3,16)" rx="2" ry="2" />
+<text x="507.04" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="465.5" y="4885" width="0.4" height="15.0" fill="rgb(212,14,30)" rx="2" ry="2" />
+<text x="468.49" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4005" width="0.4" height="15.0" fill="rgb(248,37,45)" rx="2" ry="2" />
+<text x="467.65" y="4015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="437.0" y="4901" width="9.2" height="15.0" fill="rgb(237,14,8)" rx="2" ry="2" />
+<text x="440.00" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.7" y="5141" width="0.4" height="15.0" fill="rgb(215,197,14)" rx="2" ry="2" />
+<text x="485.67" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="885.4" y="5477" width="0.4" height="15.0" fill="rgb(227,88,6)" rx="2" ry="2" />
+<text x="888.36" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4325" width="5.4" height="15.0" fill="rgb(207,58,50)" rx="2" ry="2" />
+<text x="490.70" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5461" width="0.8" height="15.0" fill="rgb(224,93,14)" rx="2" ry="2" />
+<text x="528.41" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="758.4" y="5669" width="0.4" height="15.0" fill="rgb(210,77,27)" rx="2" ry="2" />
+<text x="761.39" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (221 samples, 7.85%)</title><rect x="354.4" y="5253" width="92.7" height="15.0" fill="rgb(238,29,54)" rx="2" ry="2" />
+<text x="357.45" y="5263.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5205" width="0.4" height="15.0" fill="rgb(209,153,15)" rx="2" ry="2" />
+<text x="569.06" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4789" width="0.8" height="15.0" fill="rgb(210,28,21)" rx="2" ry="2" />
+<text x="512.91" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="455.0" y="5141" width="0.4" height="15.0" fill="rgb(207,75,16)" rx="2" ry="2" />
+<text x="458.01" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6021" width="0.4" height="15.0" fill="rgb(236,63,23)" rx="2" ry="2" />
+<text x="13.42" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1107.5" y="6421" width="0.4" height="15.0" fill="rgb(212,86,30)" rx="2" ry="2" />
+<text x="1110.45" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5301" width="0.4" height="15.0" fill="rgb(214,131,48)" rx="2" ry="2" />
+<text x="497.40" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5957" width="0.8" height="15.0" fill="rgb(216,92,11)" rx="2" ry="2" />
+<text x="1120.09" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="555.2" y="5541" width="3.3" height="15.0" fill="rgb(242,143,14)" rx="2" ry="2" />
+<text x="558.16" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="5125" width="0.9" height="15.0" fill="rgb(240,142,31)" rx="2" ry="2" />
+<text x="345.71" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="247.6" y="6069" width="0.4" height="15.0" fill="rgb(214,97,8)" rx="2" ry="2" />
+<text x="250.59" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="355.3" y="5157" width="0.4" height="15.0" fill="rgb(217,181,22)" rx="2" ry="2" />
+<text x="358.28" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5685" width="2.5" height="15.0" fill="rgb(209,28,29)" rx="2" ry="2" />
+<text x="770.19" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="421.9" y="4933" width="2.5" height="15.0" fill="rgb(225,42,44)" rx="2" ry="2" />
+<text x="424.91" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5301" width="1.6" height="15.0" fill="rgb(216,182,40)" rx="2" ry="2" />
+<text x="545.17" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="396.8" y="4773" width="0.4" height="15.0" fill="rgb(238,65,15)" rx="2" ry="2" />
+<text x="399.77" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="506.1" y="5045" width="2.1" height="15.0" fill="rgb(220,126,38)" rx="2" ry="2" />
+<text x="509.14" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="362.0" y="4821" width="1.2" height="15.0" fill="rgb(209,202,2)" rx="2" ry="2" />
+<text x="364.99" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.32%)</title><rect x="801.6" y="5781" width="3.7" height="15.0" fill="rgb(225,111,13)" rx="2" ry="2" />
+<text x="804.56" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="688.8" y="5301" width="0.5" height="15.0" fill="rgb(232,110,44)" rx="2" ry="2" />
+<text x="691.84" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4997" width="0.8" height="15.0" fill="rgb(243,44,15)" rx="2" ry="2" />
+<text x="512.91" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (62 samples, 2.20%)</title><rect x="532.5" y="5749" width="26.0" height="15.0" fill="rgb(207,206,41)" rx="2" ry="2" />
+<text x="535.54" y="5759.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="805" width="0.4" height="15.0" fill="rgb(254,132,1)" rx="2" ry="2" />
+<text x="546.43" y="815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5589" width="0.4" height="15.0" fill="rgb(217,202,14)" rx="2" ry="2" />
+<text x="1073.99" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="301.2" y="4789" width="0.4" height="15.0" fill="rgb(227,38,21)" rx="2" ry="2" />
+<text x="304.23" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="5013" width="0.9" height="15.0" fill="rgb(232,132,45)" rx="2" ry="2" />
+<text x="388.04" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="885.4" y="5445" width="0.4" height="15.0" fill="rgb(231,30,3)" rx="2" ry="2" />
+<text x="888.36" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="338.9" y="4629" width="0.9" height="15.0" fill="rgb(205,68,15)" rx="2" ry="2" />
+<text x="341.94" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="563.5" y="5541" width="0.5" height="15.0" fill="rgb(219,128,5)" rx="2" ry="2" />
+<text x="566.54" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.82%)</title><rect x="484.8" y="5253" width="9.6" height="15.0" fill="rgb(221,46,32)" rx="2" ry="2" />
+<text x="487.77" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="836.3" y="5653" width="0.9" height="15.0" fill="rgb(225,228,47)" rx="2" ry="2" />
+<text x="839.34" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="333.1" y="4885" width="1.2" height="15.0" fill="rgb(242,63,0)" rx="2" ry="2" />
+<text x="336.08" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="483.1" y="5365" width="0.4" height="15.0" fill="rgb(249,39,9)" rx="2" ry="2" />
+<text x="486.09" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.9" y="4853" width="0.4" height="15.0" fill="rgb(212,135,42)" rx="2" ry="2" />
+<text x="414.85" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="518.7" y="5429" width="0.4" height="15.0" fill="rgb(223,53,16)" rx="2" ry="2" />
+<text x="521.71" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (32 samples, 1.14%)</title><rect x="315.5" y="4949" width="13.4" height="15.0" fill="rgb(250,177,21)" rx="2" ry="2" />
+<text x="318.48" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="513.7" y="5397" width="5.0" height="15.0" fill="rgb(214,161,34)" rx="2" ry="2" />
+<text x="516.68" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (91 samples, 3.23%)</title><rect x="1038.3" y="6549" width="38.1" height="15.0" fill="rgb(215,185,27)" rx="2" ry="2" />
+<text x="1041.31" y="6559.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="298.7" y="5029" width="2.9" height="15.0" fill="rgb(231,41,31)" rx="2" ry="2" />
+<text x="301.71" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1781" width="0.4" height="15.0" fill="rgb(210,204,48)" rx="2" ry="2" />
+<text x="546.43" y="1791.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1045" width="0.4" height="15.0" fill="rgb(227,52,26)" rx="2" ry="2" />
+<text x="546.43" y="1055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="385.0" y="4645" width="0.5" height="15.0" fill="rgb(209,202,12)" rx="2" ry="2" />
+<text x="388.04" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5285" width="0.4" height="15.0" fill="rgb(215,52,32)" rx="2" ry="2" />
+<text x="760.98" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (644 samples, 22.87%)</title><rect x="250.5" y="6021" width="269.9" height="15.0" fill="rgb(252,113,19)" rx="2" ry="2" />
+<text x="253.53" y="6031.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5621" width="0.4" height="15.0" fill="rgb(230,221,13)" rx="2" ry="2" />
+<text x="896.32" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="744.1" y="4917" width="0.5" height="15.0" fill="rgb(241,83,6)" rx="2" ry="2" />
+<text x="747.15" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.32%)</title><rect x="268.5" y="5077" width="3.8" height="15.0" fill="rgb(227,227,42)" rx="2" ry="2" />
+<text x="271.54" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="816.6" y="5541" width="0.5" height="15.0" fill="rgb(253,179,21)" rx="2" ry="2" />
+<text x="819.64" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5573" width="0.4" height="15.0" fill="rgb(233,42,35)" rx="2" ry="2" />
+<text x="576.60" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6309" width="0.4" height="15.0" fill="rgb(233,24,42)" rx="2" ry="2" />
+<text x="1125.12" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="263.5" y="5077" width="1.3" height="15.0" fill="rgb(220,52,22)" rx="2" ry="2" />
+<text x="266.52" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2693" width="0.4" height="15.0" fill="rgb(205,126,27)" rx="2" ry="2" />
+<text x="437.90" y="2703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="749.6" y="5077" width="0.4" height="15.0" fill="rgb(219,42,49)" rx="2" ry="2" />
+<text x="752.60" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="548.9" y="5413" width="0.4" height="15.0" fill="rgb(215,73,53)" rx="2" ry="2" />
+<text x="551.88" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="484.8" y="5221" width="1.6" height="15.0" fill="rgb(209,167,41)" rx="2" ry="2" />
+<text x="487.77" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="791.1" y="5253" width="4.6" height="15.0" fill="rgb(249,59,16)" rx="2" ry="2" />
+<text x="794.08" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::expandBlockType (12 samples, 0.43%)</title><rect x="488.1" y="3765" width="5.0" height="15.0" fill="rgb(206,130,36)" rx="2" ry="2" />
+<text x="491.12" y="3775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (53 samples, 1.88%)</title><rect x="424.4" y="4997" width="22.2" height="15.0" fill="rgb(225,149,42)" rx="2" ry="2" />
+<text x="427.42" y="5007.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5333" width="0.8" height="15.0" fill="rgb(216,229,26)" rx="2" ry="2" />
+<text x="1120.09" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5509" width="0.5" height="15.0" fill="rgb(239,185,54)" rx="2" ry="2" />
+<text x="894.65" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="520.4" y="5893" width="0.4" height="15.0" fill="rgb(210,119,12)" rx="2" ry="2" />
+<text x="523.38" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="892.5" y="5589" width="0.4" height="15.0" fill="rgb(211,129,31)" rx="2" ry="2" />
+<text x="895.49" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1141.4" y="6517" width="1.2" height="15.0" fill="rgb(254,70,32)" rx="2" ry="2" />
+<text x="1144.39" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4501" width="0.9" height="15.0" fill="rgb(212,44,37)" rx="2" ry="2" />
+<text x="443.35" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="512.0" y="4933" width="0.4" height="15.0" fill="rgb(221,162,4)" rx="2" ry="2" />
+<text x="515.00" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4933" width="0.4" height="15.0" fill="rgb(230,117,17)" rx="2" ry="2" />
+<text x="272.80" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5093" width="0.4" height="15.0" fill="rgb(217,229,12)" rx="2" ry="2" />
+<text x="1073.99" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="300.0" y="5013" width="1.6" height="15.0" fill="rgb(214,78,2)" rx="2" ry="2" />
+<text x="302.97" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.2" y="5637" width="0.4" height="15.0" fill="rgb(251,152,33)" rx="2" ry="2" />
+<text x="894.23" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1057.2" y="6453" width="0.4" height="15.0" fill="rgb(249,85,32)" rx="2" ry="2" />
+<text x="1060.17" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (56 samples, 1.99%)</title><rect x="128.6" y="6501" width="23.5" height="15.0" fill="rgb(208,112,43)" rx="2" ry="2" />
+<text x="131.59" y="6511.5" >&lt;..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5461" width="0.4" height="15.0" fill="rgb(209,32,17)" rx="2" ry="2" />
+<text x="768.52" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5189" width="0.8" height="15.0" fill="rgb(215,149,27)" rx="2" ry="2" />
+<text x="1120.09" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (3 samples, 0.11%)</title><rect x="1163.6" y="6581" width="1.3" height="15.0" fill="rgb(253,174,22)" rx="2" ry="2" />
+<text x="1166.60" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="700.1" y="5429" width="0.5" height="15.0" fill="rgb(244,110,8)" rx="2" ry="2" />
+<text x="703.15" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="522.5" y="5765" width="1.7" height="15.0" fill="rgb(231,115,30)" rx="2" ry="2" />
+<text x="525.48" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="5093" width="0.5" height="15.0" fill="rgb(218,49,37)" rx="2" ry="2" />
+<text x="469.75" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (36 samples, 1.28%)</title><rect x="781.0" y="5349" width="15.1" height="15.0" fill="rgb(248,10,28)" rx="2" ry="2" />
+<text x="784.02" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.3" y="5717" width="0.4" height="15.0" fill="rgb(209,149,48)" rx="2" ry="2" />
+<text x="764.33" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4965" width="0.5" height="15.0" fill="rgb(217,109,37)" rx="2" ry="2" />
+<text x="489.44" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4133" width="0.4" height="15.0" fill="rgb(223,135,41)" rx="2" ry="2" />
+<text x="546.43" y="4143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4901" width="0.5" height="15.0" fill="rgb(228,185,6)" rx="2" ry="2" />
+<text x="489.44" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (3 samples, 0.11%)</title><rect x="14.2" y="6469" width="1.2" height="15.0" fill="rgb(247,122,48)" rx="2" ry="2" />
+<text x="17.19" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="256.8" y="5349" width="0.4" height="15.0" fill="rgb(242,113,10)" rx="2" ry="2" />
+<text x="259.81" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5109" width="0.4" height="15.0" fill="rgb(217,205,40)" rx="2" ry="2" />
+<text x="760.98" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="553.5" y="5509" width="0.4" height="15.0" fill="rgb(219,135,48)" rx="2" ry="2" />
+<text x="556.49" y="5519.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2965" width="0.4" height="15.0" fill="rgb(244,158,46)" rx="2" ry="2" />
+<text x="437.90" y="2975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.82%)</title><rect x="331.4" y="4981" width="9.6" height="15.0" fill="rgb(210,102,39)" rx="2" ry="2" />
+<text x="334.40" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="5093" width="0.5" height="15.0" fill="rgb(220,204,2)" rx="2" ry="2" />
+<text x="489.44" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5013" width="0.4" height="15.0" fill="rgb(235,133,48)" rx="2" ry="2" />
+<text x="357.03" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1413" width="0.4" height="15.0" fill="rgb(252,24,3)" rx="2" ry="2" />
+<text x="546.43" y="1423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.9" y="4517" width="0.4" height="15.0" fill="rgb(206,120,14)" rx="2" ry="2" />
+<text x="489.86" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="149.1" y="6469" width="0.4" height="15.0" fill="rgb(209,76,36)" rx="2" ry="2" />
+<text x="152.12" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="877.8" y="5557" width="0.4" height="15.0" fill="rgb(209,32,19)" rx="2" ry="2" />
+<text x="880.82" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="532.1" y="5717" width="0.4" height="15.0" fill="rgb(241,218,11)" rx="2" ry="2" />
+<text x="535.12" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="269.8" y="4965" width="0.4" height="15.0" fill="rgb(231,46,54)" rx="2" ry="2" />
+<text x="272.80" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (3 samples, 0.11%)</title><rect x="184.7" y="6501" width="1.3" height="15.0" fill="rgb(236,45,43)" rx="2" ry="2" />
+<text x="187.74" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (243 samples, 8.63%)</title><rect x="574.0" y="5557" width="101.8" height="15.0" fill="rgb(225,162,38)" rx="2" ry="2" />
+<text x="577.02" y="5567.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.6" y="6117" width="0.4" height="15.0" fill="rgb(209,20,53)" rx="2" ry="2" />
+<text x="1073.58" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="256.8" y="5397" width="0.4" height="15.0" fill="rgb(213,185,53)" rx="2" ry="2" />
+<text x="259.81" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="275.2" y="4741" width="0.5" height="15.0" fill="rgb(240,3,19)" rx="2" ry="2" />
+<text x="278.25" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="493.1" y="4517" width="0.5" height="15.0" fill="rgb(248,63,33)" rx="2" ry="2" />
+<text x="496.15" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5557" width="0.5" height="15.0" fill="rgb(228,80,22)" rx="2" ry="2" />
+<text x="573.25" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="295.8" y="5013" width="2.1" height="15.0" fill="rgb(228,68,33)" rx="2" ry="2" />
+<text x="298.78" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="305.0" y="5093" width="0.4" height="15.0" fill="rgb(220,16,8)" rx="2" ry="2" />
+<text x="308.00" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="332.2" y="4901" width="2.1" height="15.0" fill="rgb(240,213,45)" rx="2" ry="2" />
+<text x="335.24" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="434.5" y="4709" width="0.8" height="15.0" fill="rgb(245,182,14)" rx="2" ry="2" />
+<text x="437.48" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5877" width="81.3" height="15.0" fill="rgb(218,199,38)" rx="2" ry="2" />
+<text x="678.85" y="5887.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5141" width="1.6" height="15.0" fill="rgb(215,121,30)" rx="2" ry="2" />
+<text x="545.17" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1068.1" y="6277" width="0.4" height="15.0" fill="rgb(249,19,48)" rx="2" ry="2" />
+<text x="1071.06" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (53 samples, 1.88%)</title><rect x="777.7" y="5509" width="22.2" height="15.0" fill="rgb(211,27,1)" rx="2" ry="2" />
+<text x="780.67" y="5519.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="756.7" y="5413" width="0.4" height="15.0" fill="rgb(254,69,53)" rx="2" ry="2" />
+<text x="759.72" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="321.8" y="4869" width="0.8" height="15.0" fill="rgb(213,149,11)" rx="2" ry="2" />
+<text x="324.76" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5493" width="0.4" height="15.0" fill="rgb(244,139,50)" rx="2" ry="2" />
+<text x="576.60" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4709" width="0.5" height="15.0" fill="rgb(240,110,29)" rx="2" ry="2" />
+<text x="469.75" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="251.4" y="5637" width="0.4" height="15.0" fill="rgb(229,199,3)" rx="2" ry="2" />
+<text x="254.36" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="223.3" y="6485" width="0.4" height="15.0" fill="rgb(250,193,19)" rx="2" ry="2" />
+<text x="226.29" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5957" width="0.9" height="15.0" fill="rgb(208,186,16)" rx="2" ry="2" />
+<text x="896.74" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="570.7" y="5765" width="2.9" height="15.0" fill="rgb(227,92,40)" rx="2" ry="2" />
+<text x="573.67" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4549" width="0.4" height="15.0" fill="rgb(240,158,18)" rx="2" ry="2" />
+<text x="1073.99" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6309" width="0.4" height="15.0" fill="rgb(243,137,34)" rx="2" ry="2" />
+<text x="13.42" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="554.3" y="5653" width="4.2" height="15.0" fill="rgb(232,126,26)" rx="2" ry="2" />
+<text x="557.33" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="820.4" y="5749" width="0.4" height="15.0" fill="rgb(240,7,41)" rx="2" ry="2" />
+<text x="823.41" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="878.7" y="5493" width="0.4" height="15.0" fill="rgb(252,132,16)" rx="2" ry="2" />
+<text x="881.66" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5797" width="0.4" height="15.0" fill="rgb(210,148,23)" rx="2" ry="2" />
+<text x="768.52" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4741" width="0.4" height="15.0" fill="rgb(217,219,39)" rx="2" ry="2" />
+<text x="272.80" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="767.2" y="5845" width="2.5" height="15.0" fill="rgb(214,34,27)" rx="2" ry="2" />
+<text x="770.19" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="662.9" y="5221" width="0.4" height="15.0" fill="rgb(230,14,17)" rx="2" ry="2" />
+<text x="665.86" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="511.2" y="5317" width="0.4" height="15.0" fill="rgb(224,58,37)" rx="2" ry="2" />
+<text x="514.16" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="804.1" y="5605" width="0.8" height="15.0" fill="rgb(244,152,51)" rx="2" ry="2" />
+<text x="807.07" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6005" width="0.4" height="15.0" fill="rgb(230,84,20)" rx="2" ry="2" />
+<text x="1073.99" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4949" width="0.9" height="15.0" fill="rgb(230,214,47)" rx="2" ry="2" />
+<text x="388.04" y="4959.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.04%)</title><rect x="11.3" y="6373" width="0.4" height="15.0" fill="rgb(227,10,8)" rx="2" ry="2" />
+<text x="14.26" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="385.0" y="4629" width="0.5" height="15.0" fill="rgb(226,46,40)" rx="2" ry="2" />
+<text x="388.04" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5541" width="0.5" height="15.0" fill="rgb(236,175,37)" rx="2" ry="2" />
+<text x="894.65" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5205" width="1.6" height="15.0" fill="rgb(246,79,11)" rx="2" ry="2" />
+<text x="545.17" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="493.1" y="4629" width="0.5" height="15.0" fill="rgb(224,86,30)" rx="2" ry="2" />
+<text x="496.15" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4741" width="0.4" height="15.0" fill="rgb(206,127,19)" rx="2" ry="2" />
+<text x="496.98" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5973" width="0.4" height="15.0" fill="rgb(214,161,32)" rx="2" ry="2" />
+<text x="523.38" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="774.3" y="5637" width="2.1" height="15.0" fill="rgb(243,11,11)" rx="2" ry="2" />
+<text x="777.32" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="1143.5" y="6501" width="0.4" height="15.0" fill="rgb(218,168,8)" rx="2" ry="2" />
+<text x="1146.49" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5365" width="0.4" height="15.0" fill="rgb(230,3,45)" rx="2" ry="2" />
+<text x="529.67" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.2" y="5717" width="0.9" height="15.0" fill="rgb(211,104,32)" rx="2" ry="2" />
+<text x="529.25" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5941" width="0.4" height="15.0" fill="rgb(224,70,21)" rx="2" ry="2" />
+<text x="774.80" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5701" width="0.4" height="15.0" fill="rgb(219,41,6)" rx="2" ry="2" />
+<text x="772.71" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1141.0" y="6389" width="0.4" height="15.0" fill="rgb(243,9,40)" rx="2" ry="2" />
+<text x="1143.97" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (286 samples, 10.16%)</title><rect x="349.8" y="5365" width="119.9" height="15.0" fill="rgb(240,149,18)" rx="2" ry="2" />
+<text x="352.84" y="5375.5" >Nsfisis\Waddiw..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.3" y="5381" width="0.4" height="15.0" fill="rgb(252,129,25)" rx="2" ry="2" />
+<text x="565.29" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="892.5" y="5749" width="0.4" height="15.0" fill="rgb(253,219,16)" rx="2" ry="2" />
+<text x="895.49" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="5061" width="6.7" height="15.0" fill="rgb(241,142,17)" rx="2" ry="2" />
+<text x="489.86" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3717" width="0.4" height="15.0" fill="rgb(252,89,52)" rx="2" ry="2" />
+<text x="546.43" y="3727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1054.7" y="6501" width="0.4" height="15.0" fill="rgb(243,100,31)" rx="2" ry="2" />
+<text x="1057.65" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="763.0" y="6293" width="2.9" height="15.0" fill="rgb(233,138,9)" rx="2" ry="2" />
+<text x="766.00" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="466.7" y="4853" width="0.5" height="15.0" fill="rgb(248,131,4)" rx="2" ry="2" />
+<text x="469.75" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4565" width="0.4" height="15.0" fill="rgb(227,173,1)" rx="2" ry="2" />
+<text x="496.98" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.6" y="4549" width="0.4" height="15.0" fill="rgb(240,77,13)" rx="2" ry="2" />
+<text x="343.62" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (90 samples, 3.20%)</title><rect x="719.0" y="5381" width="37.7" height="15.0" fill="rgb(230,222,8)" rx="2" ry="2" />
+<text x="722.01" y="5391.5" >Nsf..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2277" width="0.4" height="15.0" fill="rgb(246,13,33)" rx="2" ry="2" />
+<text x="437.90" y="2287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5637" width="0.4" height="15.0" fill="rgb(215,100,8)" rx="2" ry="2" />
+<text x="1073.99" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="247.6" y="6085" width="0.4" height="15.0" fill="rgb(218,174,8)" rx="2" ry="2" />
+<text x="250.59" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.2" y="5589" width="0.4" height="15.0" fill="rgb(216,150,47)" rx="2" ry="2" />
+<text x="894.23" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="761.7" y="5989" width="0.5" height="15.0" fill="rgb(231,170,26)" rx="2" ry="2" />
+<text x="764.75" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="463.8" y="4725" width="1.3" height="15.0" fill="rgb(214,1,26)" rx="2" ry="2" />
+<text x="466.81" y="4735.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2069" width="0.4" height="15.0" fill="rgb(245,76,37)" rx="2" ry="2" />
+<text x="546.43" y="2079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="438.7" y="4645" width="2.5" height="15.0" fill="rgb(246,134,26)" rx="2" ry="2" />
+<text x="441.67" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4789" width="6.7" height="15.0" fill="rgb(210,58,50)" rx="2" ry="2" />
+<text x="489.86" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5749" width="0.4" height="15.0" fill="rgb(219,124,2)" rx="2" ry="2" />
+<text x="896.32" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4821" width="0.4" height="15.0" fill="rgb(226,167,30)" rx="2" ry="2" />
+<text x="760.98" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (644 samples, 22.87%)</title><rect x="250.5" y="5973" width="269.9" height="15.0" fill="rgb(234,163,50)" rx="2" ry="2" />
+<text x="253.53" y="5983.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5541" width="0.4" height="15.0" fill="rgb(211,156,8)" rx="2" ry="2" />
+<text x="1073.99" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="469.7" y="5317" width="0.4" height="15.0" fill="rgb(213,224,43)" rx="2" ry="2" />
+<text x="472.68" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="5877" width="0.9" height="15.0" fill="rgb(253,113,54)" rx="2" ry="2" />
+<text x="896.74" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5061" width="0.4" height="15.0" fill="rgb(209,99,14)" rx="2" ry="2" />
+<text x="1073.99" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="222.0" y="6453" width="0.5" height="15.0" fill="rgb(244,129,42)" rx="2" ry="2" />
+<text x="225.03" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5829" width="0.4" height="15.0" fill="rgb(254,185,18)" rx="2" ry="2" />
+<text x="761.39" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="5029" width="6.7" height="15.0" fill="rgb(230,229,50)" rx="2" ry="2" />
+<text x="489.86" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5237" width="0.4" height="15.0" fill="rgb(209,26,50)" rx="2" ry="2" />
+<text x="563.19" y="5247.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3205" width="0.4" height="15.0" fill="rgb(248,148,37)" rx="2" ry="2" />
+<text x="546.43" y="3215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="339.4" y="4549" width="0.4" height="15.0" fill="rgb(235,2,44)" rx="2" ry="2" />
+<text x="342.36" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="260.2" y="5237" width="0.4" height="15.0" fill="rgb(214,90,44)" rx="2" ry="2" />
+<text x="263.16" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="749.2" y="5237" width="0.8" height="15.0" fill="rgb(234,46,25)" rx="2" ry="2" />
+<text x="752.18" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="800.7" y="5653" width="0.4" height="15.0" fill="rgb(205,177,2)" rx="2" ry="2" />
+<text x="803.72" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5653" width="0.4" height="15.0" fill="rgb(251,165,50)" rx="2" ry="2" />
+<text x="895.49" y="5663.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4821" width="0.4" height="15.0" fill="rgb(254,45,2)" rx="2" ry="2" />
+<text x="546.43" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (62 samples, 2.20%)</title><rect x="532.5" y="5685" width="26.0" height="15.0" fill="rgb(227,47,26)" rx="2" ry="2" />
+<text x="535.54" y="5695.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3829" width="0.4" height="15.0" fill="rgb(240,56,8)" rx="2" ry="2" />
+<text x="437.90" y="3839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="468.0" y="5157" width="0.4" height="15.0" fill="rgb(228,97,45)" rx="2" ry="2" />
+<text x="471.00" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="483.9" y="5269" width="0.4" height="15.0" fill="rgb(244,54,15)" rx="2" ry="2" />
+<text x="486.93" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="525.0" y="5733" width="1.2" height="15.0" fill="rgb(245,214,45)" rx="2" ry="2" />
+<text x="527.99" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="763.0" y="6053" width="2.5" height="15.0" fill="rgb(251,153,35)" rx="2" ry="2" />
+<text x="766.00" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="476.4" y="4869" width="2.9" height="15.0" fill="rgb(230,22,41)" rx="2" ry="2" />
+<text x="479.38" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="362.0" y="4885" width="6.7" height="15.0" fill="rgb(237,124,5)" rx="2" ry="2" />
+<text x="364.99" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5045" width="0.5" height="15.0" fill="rgb(230,34,28)" rx="2" ry="2" />
+<text x="716.14" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="511.6" y="5077" width="0.8" height="15.0" fill="rgb(249,133,49)" rx="2" ry="2" />
+<text x="514.58" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (636 samples, 22.59%)</title><rect x="253.5" y="5797" width="266.5" height="15.0" fill="rgb(209,131,22)" rx="2" ry="2" />
+<text x="256.46" y="5807.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6005" width="0.9" height="15.0" fill="rgb(241,149,46)" rx="2" ry="2" />
+<text x="896.74" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="314.6" y="4901" width="0.9" height="15.0" fill="rgb(246,122,38)" rx="2" ry="2" />
+<text x="317.64" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1893" width="0.4" height="15.0" fill="rgb(220,33,15)" rx="2" ry="2" />
+<text x="546.43" y="1903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="437.0" y="4789" width="9.2" height="15.0" fill="rgb(230,6,11)" rx="2" ry="2" />
+<text x="440.00" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="776.4" y="5557" width="0.4" height="15.0" fill="rgb(232,72,53)" rx="2" ry="2" />
+<text x="779.41" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="275.2" y="4821" width="0.5" height="15.0" fill="rgb(250,47,11)" rx="2" ry="2" />
+<text x="278.25" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="324.7" y="4853" width="2.9" height="15.0" fill="rgb(252,62,39)" rx="2" ry="2" />
+<text x="327.69" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="798.2" y="5365" width="1.7" height="15.0" fill="rgb(231,67,29)" rx="2" ry="2" />
+<text x="801.20" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="800.3" y="5589" width="0.4" height="15.0" fill="rgb(232,114,25)" rx="2" ry="2" />
+<text x="803.30" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="464.2" y="4437" width="0.9" height="15.0" fill="rgb(253,78,23)" rx="2" ry="2" />
+<text x="467.23" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="768.0" y="5301" width="0.5" height="15.0" fill="rgb(252,78,10)" rx="2" ry="2" />
+<text x="771.03" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4309" width="0.5" height="15.0" fill="rgb(235,75,18)" rx="2" ry="2" />
+<text x="480.64" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="541.8" y="5317" width="2.0" height="15.0" fill="rgb(218,215,18)" rx="2" ry="2" />
+<text x="544.75" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5829" width="0.4" height="15.0" fill="rgb(243,50,16)" rx="2" ry="2" />
+<text x="896.32" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="675.4" y="5205" width="0.4" height="15.0" fill="rgb(229,137,12)" rx="2" ry="2" />
+<text x="678.43" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="510.3" y="4565" width="0.4" height="15.0" fill="rgb(229,115,53)" rx="2" ry="2" />
+<text x="513.33" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6037" width="0.4" height="15.0" fill="rgb(216,187,26)" rx="2" ry="2" />
+<text x="13.42" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4725" width="0.4" height="15.0" fill="rgb(210,86,52)" rx="2" ry="2" />
+<text x="489.86" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4773" width="0.9" height="15.0" fill="rgb(214,178,3)" rx="2" ry="2" />
+<text x="388.04" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="511.6" y="5237" width="1.7" height="15.0" fill="rgb(227,207,50)" rx="2" ry="2" />
+<text x="514.58" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4485" width="0.8" height="15.0" fill="rgb(239,105,2)" rx="2" ry="2" />
+<text x="1120.09" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="494.0" y="4981" width="0.4" height="15.0" fill="rgb(251,207,53)" rx="2" ry="2" />
+<text x="496.98" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6421" width="1.3" height="15.0" fill="rgb(243,220,28)" rx="2" ry="2" />
+<text x="768.94" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4661" width="0.4" height="15.0" fill="rgb(207,63,39)" rx="2" ry="2" />
+<text x="364.57" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6037" width="1.3" height="15.0" fill="rgb(235,127,6)" rx="2" ry="2" />
+<text x="768.94" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5573" width="101.8" height="15.0" fill="rgb(234,27,44)" rx="2" ry="2" />
+<text x="577.02" y="5583.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="483.9" y="5189" width="0.4" height="15.0" fill="rgb(207,53,41)" rx="2" ry="2" />
+<text x="486.93" y="5199.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2805" width="0.4" height="15.0" fill="rgb(246,205,25)" rx="2" ry="2" />
+<text x="546.43" y="2815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5813" width="2.5" height="15.0" fill="rgb(244,212,14)" rx="2" ry="2" />
+<text x="770.19" y="5823.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4373" width="0.4" height="15.0" fill="rgb(230,95,20)" rx="2" ry="2" />
+<text x="546.43" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.2" y="5573" width="0.4" height="15.0" fill="rgb(228,186,11)" rx="2" ry="2" />
+<text x="894.23" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="355.3" y="5205" width="0.4" height="15.0" fill="rgb(217,113,9)" rx="2" ry="2" />
+<text x="358.28" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5557" width="1.3" height="15.0" fill="rgb(205,158,53)" rx="2" ry="2" />
+<text x="760.14" y="5567.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="469.3" y="5285" width="0.4" height="15.0" fill="rgb(209,68,52)" rx="2" ry="2" />
+<text x="472.26" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4981" width="0.8" height="15.0" fill="rgb(228,19,50)" rx="2" ry="2" />
+<text x="512.91" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="345.6" y="4901" width="1.3" height="15.0" fill="rgb(247,113,28)" rx="2" ry="2" />
+<text x="348.65" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (1 samples, 0.04%)</title><rect x="669.1" y="5237" width="0.5" height="15.0" fill="rgb(207,37,11)" rx="2" ry="2" />
+<text x="672.14" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="458.8" y="5221" width="8.4" height="15.0" fill="rgb(220,52,33)" rx="2" ry="2" />
+<text x="461.79" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (6 samples, 0.21%)</title><rect x="763.0" y="6101" width="2.5" height="15.0" fill="rgb(244,102,46)" rx="2" ry="2" />
+<text x="766.00" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5157" width="0.4" height="15.0" fill="rgb(241,162,35)" rx="2" ry="2" />
+<text x="563.19" y="5167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="229" width="0.4" height="15.0" fill="rgb(205,195,30)" rx="2" ry="2" />
+<text x="546.43" y="239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="456.3" y="4997" width="1.2" height="15.0" fill="rgb(253,224,28)" rx="2" ry="2" />
+<text x="459.27" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="256.8" y="5301" width="0.4" height="15.0" fill="rgb(221,22,48)" rx="2" ry="2" />
+<text x="259.81" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="248.0" y="6133" width="2.1" height="15.0" fill="rgb(254,8,14)" rx="2" ry="2" />
+<text x="251.01" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (4 samples, 0.14%)</title><rect x="220.8" y="6469" width="1.7" height="15.0" fill="rgb(232,4,18)" rx="2" ry="2" />
+<text x="223.77" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="804.9" y="5653" width="0.4" height="15.0" fill="rgb(216,172,17)" rx="2" ry="2" />
+<text x="807.91" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="763.0" y="6277" width="2.9" height="15.0" fill="rgb(253,90,27)" rx="2" ry="2" />
+<text x="766.00" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (644 samples, 22.87%)</title><rect x="250.5" y="5957" width="269.9" height="15.0" fill="rgb(217,188,8)" rx="2" ry="2" />
+<text x="253.53" y="5967.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="514.5" y="5253" width="3.4" height="15.0" fill="rgb(223,70,45)" rx="2" ry="2" />
+<text x="517.52" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.8" y="4997" width="0.5" height="15.0" fill="rgb(212,129,51)" rx="2" ry="2" />
+<text x="515.84" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="484.8" y="5061" width="0.4" height="15.0" fill="rgb(221,226,52)" rx="2" ry="2" />
+<text x="487.77" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="835.5" y="5573" width="0.8" height="15.0" fill="rgb(227,30,3)" rx="2" ry="2" />
+<text x="838.50" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="876.6" y="5493" width="0.8" height="15.0" fill="rgb(210,44,34)" rx="2" ry="2" />
+<text x="879.56" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.0" y="6421" width="0.4" height="15.0" fill="rgb(247,115,11)" rx="2" ry="2" />
+<text x="1143.97" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="766.4" y="5957" width="0.8" height="15.0" fill="rgb(225,7,29)" rx="2" ry="2" />
+<text x="769.36" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="427.4" y="4501" width="0.4" height="15.0" fill="rgb(224,8,44)" rx="2" ry="2" />
+<text x="430.36" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="251.4" y="5653" width="0.4" height="15.0" fill="rgb(250,171,45)" rx="2" ry="2" />
+<text x="254.36" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="822.1" y="5813" width="0.4" height="15.0" fill="rgb(248,209,32)" rx="2" ry="2" />
+<text x="825.09" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4821" width="0.4" height="15.0" fill="rgb(234,180,12)" rx="2" ry="2" />
+<text x="496.98" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="485.6" y="5029" width="0.8" height="15.0" fill="rgb(217,116,44)" rx="2" ry="2" />
+<text x="488.60" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4549" width="0.4" height="15.0" fill="rgb(238,29,28)" rx="2" ry="2" />
+<text x="414.02" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="5029" width="0.5" height="15.0" fill="rgb(227,182,3)" rx="2" ry="2" />
+<text x="489.44" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="279.9" y="4917" width="1.2" height="15.0" fill="rgb(213,142,32)" rx="2" ry="2" />
+<text x="282.86" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="548.5" y="5413" width="0.4" height="15.0" fill="rgb(225,120,15)" rx="2" ry="2" />
+<text x="551.46" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5301" width="0.4" height="15.0" fill="rgb(248,210,34)" rx="2" ry="2" />
+<text x="561.10" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="894.2" y="5445" width="0.4" height="15.0" fill="rgb(209,145,41)" rx="2" ry="2" />
+<text x="897.16" y="5455.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2789" width="0.4" height="15.0" fill="rgb(212,221,40)" rx="2" ry="2" />
+<text x="437.90" y="2799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (635 samples, 22.55%)</title><rect x="253.5" y="5685" width="266.0" height="15.0" fill="rgb(222,146,34)" rx="2" ry="2" />
+<text x="256.46" y="5695.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5157" width="0.4" height="15.0" fill="rgb(205,144,9)" rx="2" ry="2" />
+<text x="569.06" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1121.7" y="6501" width="0.4" height="15.0" fill="rgb(210,177,1)" rx="2" ry="2" />
+<text x="1124.70" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.4" y="4933" width="0.4" height="15.0" fill="rgb(248,81,23)" rx="2" ry="2" />
+<text x="515.42" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="573.6" y="5829" width="0.4" height="15.0" fill="rgb(215,96,35)" rx="2" ry="2" />
+<text x="576.60" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5045" width="0.4" height="15.0" fill="rgb(216,163,4)" rx="2" ry="2" />
+<text x="563.19" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5925" width="0.4" height="15.0" fill="rgb(215,9,43)" rx="2" ry="2" />
+<text x="774.80" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="347.3" y="5205" width="1.7" height="15.0" fill="rgb(227,26,26)" rx="2" ry="2" />
+<text x="350.32" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5573" width="0.4" height="15.0" fill="rgb(212,57,35)" rx="2" ry="2" />
+<text x="524.22" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6229" width="0.4" height="15.0" fill="rgb(211,223,8)" rx="2" ry="2" />
+<text x="13.42" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="251.4" y="5717" width="0.4" height="15.0" fill="rgb(239,136,43)" rx="2" ry="2" />
+<text x="254.36" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4869" width="0.8" height="15.0" fill="rgb(230,22,36)" rx="2" ry="2" />
+<text x="512.91" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="796.1" y="5397" width="1.3" height="15.0" fill="rgb(238,209,0)" rx="2" ry="2" />
+<text x="799.11" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (55 samples, 1.95%)</title><rect x="495.7" y="5461" width="23.0" height="15.0" fill="rgb(235,197,51)" rx="2" ry="2" />
+<text x="498.66" y="5471.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 1.07%)</title><rect x="864.8" y="5541" width="12.6" height="15.0" fill="rgb(229,170,43)" rx="2" ry="2" />
+<text x="867.83" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4693" width="0.4" height="15.0" fill="rgb(214,153,40)" rx="2" ry="2" />
+<text x="412.76" y="4703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2341" width="0.4" height="15.0" fill="rgb(222,100,15)" rx="2" ry="2" />
+<text x="437.90" y="2351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4997" width="6.7" height="15.0" fill="rgb(252,104,20)" rx="2" ry="2" />
+<text x="489.86" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1122.1" y="6421" width="0.4" height="15.0" fill="rgb(248,33,50)" rx="2" ry="2" />
+<text x="1125.12" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 2.27%)</title><rect x="419.8" y="5077" width="26.8" height="15.0" fill="rgb(234,54,36)" rx="2" ry="2" />
+<text x="422.82" y="5087.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="376.2" y="5013" width="1.7" height="15.0" fill="rgb(234,105,47)" rx="2" ry="2" />
+<text x="379.24" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="523.7" y="5653" width="0.5" height="15.0" fill="rgb(216,182,53)" rx="2" ry="2" />
+<text x="526.74" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.4" y="5893" width="0.4" height="15.0" fill="rgb(251,205,2)" rx="2" ry="2" />
+<text x="766.42" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="434.5" y="4853" width="0.8" height="15.0" fill="rgb(213,52,4)" rx="2" ry="2" />
+<text x="437.48" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="4997" width="0.5" height="15.0" fill="rgb(215,62,11)" rx="2" ry="2" />
+<text x="716.14" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4069" width="0.4" height="15.0" fill="rgb(218,114,46)" rx="2" ry="2" />
+<text x="1120.51" y="4079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="355.3" y="5093" width="0.4" height="15.0" fill="rgb(254,49,36)" rx="2" ry="2" />
+<text x="358.28" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="869.0" y="5477" width="0.4" height="15.0" fill="rgb(247,122,46)" rx="2" ry="2" />
+<text x="872.02" y="5487.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3797" width="0.4" height="15.0" fill="rgb(250,143,12)" rx="2" ry="2" />
+<text x="437.90" y="3807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4565" width="0.4" height="15.0" fill="rgb(225,195,28)" rx="2" ry="2" />
+<text x="329.79" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="466.7" y="4901" width="0.5" height="15.0" fill="rgb(209,97,41)" rx="2" ry="2" />
+<text x="469.75" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (23 samples, 0.82%)</title><rect x="449.1" y="5301" width="9.7" height="15.0" fill="rgb(247,49,42)" rx="2" ry="2" />
+<text x="452.15" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4181" width="0.4" height="15.0" fill="rgb(221,167,28)" rx="2" ry="2" />
+<text x="1120.51" y="4191.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2037" width="0.4" height="15.0" fill="rgb(227,76,20)" rx="2" ry="2" />
+<text x="546.43" y="2047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="5125" width="0.4" height="15.0" fill="rgb(213,96,20)" rx="2" ry="2" />
+<text x="351.58" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5797" width="101.8" height="15.0" fill="rgb(228,61,14)" rx="2" ry="2" />
+<text x="577.02" y="5807.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5781" width="0.4" height="15.0" fill="rgb(219,93,22)" rx="2" ry="2" />
+<text x="767.26" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="322.6" y="4885" width="0.4" height="15.0" fill="rgb(237,69,48)" rx="2" ry="2" />
+<text x="325.60" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.6" y="5125" width="0.4" height="15.0" fill="rgb(223,43,2)" rx="2" ry="2" />
+<text x="294.59" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="360.7" y="5173" width="17.6" height="15.0" fill="rgb(220,44,46)" rx="2" ry="2" />
+<text x="363.73" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4613" width="0.4" height="15.0" fill="rgb(236,223,28)" rx="2" ry="2" />
+<text x="412.76" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="467.6" y="5221" width="0.4" height="15.0" fill="rgb(243,124,18)" rx="2" ry="2" />
+<text x="470.59" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="500.7" y="5173" width="2.1" height="15.0" fill="rgb(223,84,46)" rx="2" ry="2" />
+<text x="503.69" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="520.8" y="5893" width="10.9" height="15.0" fill="rgb(224,145,49)" rx="2" ry="2" />
+<text x="523.80" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5701" width="0.5" height="15.0" fill="rgb(234,141,35)" rx="2" ry="2" />
+<text x="573.25" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="885.4" y="5461" width="0.4" height="15.0" fill="rgb(246,39,40)" rx="2" ry="2" />
+<text x="888.36" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="360.7" y="5157" width="17.6" height="15.0" fill="rgb(216,15,20)" rx="2" ry="2" />
+<text x="363.73" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (635 samples, 22.55%)</title><rect x="253.5" y="5669" width="266.0" height="15.0" fill="rgb(233,138,25)" rx="2" ry="2" />
+<text x="256.46" y="5679.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3669" width="0.4" height="15.0" fill="rgb(237,41,24)" rx="2" ry="2" />
+<text x="546.43" y="3679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5013" width="0.4" height="15.0" fill="rgb(226,128,42)" rx="2" ry="2" />
+<text x="896.32" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="795.7" y="5301" width="0.4" height="15.0" fill="rgb(235,143,36)" rx="2" ry="2" />
+<text x="798.69" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="893.7" y="5637" width="0.5" height="15.0" fill="rgb(253,65,3)" rx="2" ry="2" />
+<text x="896.74" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="763.0" y="6325" width="2.9" height="15.0" fill="rgb(206,86,12)" rx="2" ry="2" />
+<text x="766.00" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5061" width="1.6" height="15.0" fill="rgb(247,19,22)" rx="2" ry="2" />
+<text x="545.17" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4725" width="0.5" height="15.0" fill="rgb(236,57,20)" rx="2" ry="2" />
+<text x="469.75" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4901" width="0.9" height="15.0" fill="rgb(253,213,51)" rx="2" ry="2" />
+<text x="388.04" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4885" width="0.9" height="15.0" fill="rgb(240,143,38)" rx="2" ry="2" />
+<text x="388.04" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4853" width="1.7" height="15.0" fill="rgb(231,84,43)" rx="2" ry="2" />
+<text x="429.10" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4805" width="0.4" height="15.0" fill="rgb(230,200,4)" rx="2" ry="2" />
+<text x="546.43" y="4815.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3301" width="0.4" height="15.0" fill="rgb(208,17,4)" rx="2" ry="2" />
+<text x="437.90" y="3311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="446.2" y="4949" width="0.4" height="15.0" fill="rgb(229,176,49)" rx="2" ry="2" />
+<text x="449.21" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2229" width="0.4" height="15.0" fill="rgb(222,200,42)" rx="2" ry="2" />
+<text x="437.90" y="2239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5701" width="0.4" height="15.0" fill="rgb(206,185,15)" rx="2" ry="2" />
+<text x="761.39" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.0" y="4853" width="0.4" height="15.0" fill="rgb(235,224,20)" rx="2" ry="2" />
+<text x="333.98" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3221" width="0.4" height="15.0" fill="rgb(250,199,37)" rx="2" ry="2" />
+<text x="546.43" y="3231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="281.1" y="4709" width="0.4" height="15.0" fill="rgb(215,95,32)" rx="2" ry="2" />
+<text x="284.12" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5621" width="1.3" height="15.0" fill="rgb(213,101,38)" rx="2" ry="2" />
+<text x="760.14" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="543.4" y="4933" width="0.4" height="15.0" fill="rgb(252,74,39)" rx="2" ry="2" />
+<text x="546.43" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="828.4" y="5685" width="2.9" height="15.0" fill="rgb(231,72,10)" rx="2" ry="2" />
+<text x="831.37" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="349.0" y="5269" width="0.4" height="15.0" fill="rgb(249,192,28)" rx="2" ry="2" />
+<text x="352.00" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4965" width="0.9" height="15.0" fill="rgb(221,115,15)" rx="2" ry="2" />
+<text x="345.71" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2117" width="0.4" height="15.0" fill="rgb(238,177,44)" rx="2" ry="2" />
+<text x="546.43" y="2127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (302 samples, 10.72%)</title><rect x="767.2" y="6373" width="126.5" height="15.0" fill="rgb(238,182,0)" rx="2" ry="2" />
+<text x="770.19" y="6383.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5653" width="0.8" height="15.0" fill="rgb(214,210,52)" rx="2" ry="2" />
+<text x="1120.09" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="696.4" y="5269" width="2.9" height="15.0" fill="rgb(241,4,0)" rx="2" ry="2" />
+<text x="699.38" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.0" y="6277" width="0.4" height="15.0" fill="rgb(208,139,16)" rx="2" ry="2" />
+<text x="1143.97" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5493" width="0.4" height="15.0" fill="rgb(238,6,48)" rx="2" ry="2" />
+<text x="767.26" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.0" y="4869" width="0.4" height="15.0" fill="rgb(206,212,43)" rx="2" ry="2" />
+<text x="515.00" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1123.0" y="6469" width="0.4" height="15.0" fill="rgb(251,70,41)" rx="2" ry="2" />
+<text x="1125.95" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="804.1" y="5621" width="0.8" height="15.0" fill="rgb(219,144,25)" rx="2" ry="2" />
+<text x="807.07" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="527.9" y="5669" width="3.4" height="15.0" fill="rgb(231,106,21)" rx="2" ry="2" />
+<text x="530.93" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5189" width="0.4" height="15.0" fill="rgb(237,75,30)" rx="2" ry="2" />
+<text x="520.87" y="5199.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3877" width="0.4" height="15.0" fill="rgb(239,131,15)" rx="2" ry="2" />
+<text x="437.90" y="3887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4965" width="0.5" height="15.0" fill="rgb(242,167,29)" rx="2" ry="2" />
+<text x="469.75" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5173" width="0.8" height="15.0" fill="rgb(249,194,52)" rx="2" ry="2" />
+<text x="1120.09" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="339.4" y="4533" width="0.4" height="15.0" fill="rgb(244,64,2)" rx="2" ry="2" />
+<text x="342.36" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="417.7" y="4741" width="1.7" height="15.0" fill="rgb(206,174,22)" rx="2" ry="2" />
+<text x="420.72" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="421.5" y="4965" width="2.9" height="15.0" fill="rgb(240,49,52)" rx="2" ry="2" />
+<text x="424.49" y="4975.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="245.9" y="6469" width="0.4" height="15.0" fill="rgb(207,192,15)" rx="2" ry="2" />
+<text x="248.92" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6325" width="0.5" height="15.0" fill="rgb(207,200,54)" rx="2" ry="2" />
+<text x="1050.95" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4837" width="0.4" height="15.0" fill="rgb(242,16,37)" rx="2" ry="2" />
+<text x="272.80" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="382.1" y="4949" width="0.4" height="15.0" fill="rgb(221,156,16)" rx="2" ry="2" />
+<text x="385.10" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4613" width="0.8" height="15.0" fill="rgb(226,53,44)" rx="2" ry="2" />
+<text x="429.10" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5173" width="0.4" height="15.0" fill="rgb(241,207,35)" rx="2" ry="2" />
+<text x="357.03" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.4" y="4821" width="0.4" height="15.0" fill="rgb(205,69,3)" rx="2" ry="2" />
+<text x="321.41" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4405" width="0.4" height="15.0" fill="rgb(219,215,53)" rx="2" ry="2" />
+<text x="546.43" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:1012-1016) (644 samples, 22.87%)</title><rect x="250.5" y="6037" width="269.9" height="15.0" fill="rgb(227,204,49)" rx="2" ry="2" />
+<text x="253.53" y="6047.5" >Nsfisis\Waddiwasi\BinaryFormat\Decod..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="505.3" y="5061" width="3.4" height="15.0" fill="rgb(253,149,4)" rx="2" ry="2" />
+<text x="508.30" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5877" width="0.4" height="15.0" fill="rgb(247,104,26)" rx="2" ry="2" />
+<text x="523.38" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="276.5" y="4821" width="0.4" height="15.0" fill="rgb(209,104,17)" rx="2" ry="2" />
+<text x="279.51" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5173" width="0.9" height="15.0" fill="rgb(236,46,35)" rx="2" ry="2" />
+<text x="746.73" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5909" width="0.4" height="15.0" fill="rgb(207,51,36)" rx="2" ry="2" />
+<text x="1073.99" y="5919.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2773" width="0.4" height="15.0" fill="rgb(208,65,33)" rx="2" ry="2" />
+<text x="546.43" y="2783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="438.7" y="4677" width="2.5" height="15.0" fill="rgb(240,151,40)" rx="2" ry="2" />
+<text x="441.67" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="414.8" y="4965" width="5.0" height="15.0" fill="rgb(254,190,20)" rx="2" ry="2" />
+<text x="417.79" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5573" width="0.4" height="15.0" fill="rgb(207,191,1)" rx="2" ry="2" />
+<text x="761.39" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4885" width="6.7" height="15.0" fill="rgb(254,85,13)" rx="2" ry="2" />
+<text x="489.86" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5573" width="0.4" height="15.0" fill="rgb(229,50,17)" rx="2" ry="2" />
+<text x="529.67" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="521.6" y="5813" width="3.4" height="15.0" fill="rgb(218,15,29)" rx="2" ry="2" />
+<text x="524.64" y="5823.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="699.3" y="5317" width="0.4" height="15.0" fill="rgb(222,169,15)" rx="2" ry="2" />
+<text x="702.31" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4165" width="0.4" height="15.0" fill="rgb(245,214,38)" rx="2" ry="2" />
+<text x="467.65" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="559.8" y="5605" width="2.9" height="15.0" fill="rgb(228,159,50)" rx="2" ry="2" />
+<text x="562.77" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="3957" width="0.4" height="15.0" fill="rgb(234,206,11)" rx="2" ry="2" />
+<text x="467.65" y="3967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (26 samples, 0.92%)</title><rect x="703.9" y="5429" width="10.9" height="15.0" fill="rgb(217,212,22)" rx="2" ry="2" />
+<text x="706.92" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5829" width="0.4" height="15.0" fill="rgb(221,0,44)" rx="2" ry="2" />
+<text x="523.38" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4021" width="0.4" height="15.0" fill="rgb(233,180,16)" rx="2" ry="2" />
+<text x="467.65" y="4031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="511.2" y="5301" width="0.4" height="15.0" fill="rgb(250,198,31)" rx="2" ry="2" />
+<text x="514.16" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5797" width="0.4" height="15.0" fill="rgb(226,170,18)" rx="2" ry="2" />
+<text x="523.38" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4949" width="0.4" height="15.0" fill="rgb(239,173,50)" rx="2" ry="2" />
+<text x="760.98" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6165" width="0.4" height="15.0" fill="rgb(246,47,23)" rx="2" ry="2" />
+<text x="1073.99" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="775.6" y="5541" width="0.8" height="15.0" fill="rgb(250,114,26)" rx="2" ry="2" />
+<text x="778.58" y="5551.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3493" width="0.4" height="15.0" fill="rgb(228,55,38)" rx="2" ry="2" />
+<text x="546.43" y="3503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="760.9" y="5813" width="0.4" height="15.0" fill="rgb(225,203,34)" rx="2" ry="2" />
+<text x="763.91" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4533" width="0.4" height="15.0" fill="rgb(225,98,11)" rx="2" ry="2" />
+<text x="414.02" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="5141" width="0.5" height="15.0" fill="rgb(232,181,4)" rx="2" ry="2" />
+<text x="489.44" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="286.6" y="5141" width="2.1" height="15.0" fill="rgb(209,111,16)" rx="2" ry="2" />
+<text x="289.56" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1118.3" y="6309" width="0.5" height="15.0" fill="rgb(248,57,31)" rx="2" ry="2" />
+<text x="1121.35" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::RefFunc (1 samples, 0.04%)</title><rect x="16.3" y="6485" width="0.4" height="15.0" fill="rgb(244,102,44)" rx="2" ry="2" />
+<text x="19.29" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4677" width="0.9" height="15.0" fill="rgb(231,86,48)" rx="2" ry="2" />
+<text x="388.04" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5093" width="0.4" height="15.0" fill="rgb(217,208,12)" rx="2" ry="2" />
+<text x="563.19" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="421" width="0.4" height="15.0" fill="rgb(222,42,24)" rx="2" ry="2" />
+<text x="546.43" y="431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4869" width="0.4" height="15.0" fill="rgb(241,225,9)" rx="2" ry="2" />
+<text x="463.88" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.0" y="4709" width="0.4" height="15.0" fill="rgb(234,139,21)" rx="2" ry="2" />
+<text x="328.95" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5749" width="0.4" height="15.0" fill="rgb(227,14,0)" rx="2" ry="2" />
+<text x="524.22" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5525" width="0.4" height="15.0" fill="rgb(242,147,29)" rx="2" ry="2" />
+<text x="529.67" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="509.1" y="5077" width="0.4" height="15.0" fill="rgb(233,195,25)" rx="2" ry="2" />
+<text x="512.07" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4389" width="0.9" height="15.0" fill="rgb(227,23,50)" rx="2" ry="2" />
+<text x="443.35" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5509" width="0.4" height="15.0" fill="rgb(250,203,20)" rx="2" ry="2" />
+<text x="767.26" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5605" width="0.4" height="15.0" fill="rgb(210,34,30)" rx="2" ry="2" />
+<text x="772.71" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (10 samples, 0.36%)</title><rect x="812.9" y="5669" width="4.2" height="15.0" fill="rgb(221,160,20)" rx="2" ry="2" />
+<text x="815.87" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1169.0" y="6549" width="0.5" height="15.0" fill="rgb(251,157,54)" rx="2" ry="2" />
+<text x="1172.05" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="333.5" y="4773" width="0.4" height="15.0" fill="rgb(218,62,52)" rx="2" ry="2" />
+<text x="336.49" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="396.3" y="4885" width="1.3" height="15.0" fill="rgb(206,86,50)" rx="2" ry="2" />
+<text x="399.35" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6245" width="0.4" height="15.0" fill="rgb(239,204,8)" rx="2" ry="2" />
+<text x="1143.55" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="526.2" y="5733" width="0.9" height="15.0" fill="rgb(232,56,19)" rx="2" ry="2" />
+<text x="529.25" y="5743.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="504.9" y="5045" width="0.4" height="15.0" fill="rgb(233,181,31)" rx="2" ry="2" />
+<text x="507.88" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.46%)</title><rect x="261.8" y="5237" width="5.5" height="15.0" fill="rgb(249,154,4)" rx="2" ry="2" />
+<text x="264.84" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="355.3" y="5077" width="0.4" height="15.0" fill="rgb(224,135,20)" rx="2" ry="2" />
+<text x="358.28" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5125" width="0.4" height="15.0" fill="rgb(220,29,18)" rx="2" ry="2" />
+<text x="569.06" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4725" width="0.4" height="15.0" fill="rgb(209,212,51)" rx="2" ry="2" />
+<text x="1073.99" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="335.2" y="4917" width="5.8" height="15.0" fill="rgb(211,155,50)" rx="2" ry="2" />
+<text x="338.17" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5813" width="81.3" height="15.0" fill="rgb(222,122,23)" rx="2" ry="2" />
+<text x="678.85" y="5823.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.8" y="4853" width="0.4" height="15.0" fill="rgb(248,52,26)" rx="2" ry="2" />
+<text x="487.77" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="794.4" y="5173" width="0.5" height="15.0" fill="rgb(238,7,27)" rx="2" ry="2" />
+<text x="797.43" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4101" width="0.4" height="15.0" fill="rgb(210,212,30)" rx="2" ry="2" />
+<text x="1120.51" y="4111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6181" width="0.4" height="15.0" fill="rgb(223,16,42)" rx="2" ry="2" />
+<text x="1073.99" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="422.7" y="4677" width="0.5" height="15.0" fill="rgb(228,81,31)" rx="2" ry="2" />
+<text x="425.75" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="504.0" y="5157" width="5.5" height="15.0" fill="rgb(231,177,2)" rx="2" ry="2" />
+<text x="507.04" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.4" y="5189" width="0.5" height="15.0" fill="rgb(222,56,41)" rx="2" ry="2" />
+<text x="489.44" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="1076.4" y="6501" width="0.9" height="15.0" fill="rgb(246,83,4)" rx="2" ry="2" />
+<text x="1079.44" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="6149" width="0.4" height="15.0" fill="rgb(206,73,35)" rx="2" ry="2" />
+<text x="896.32" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4581" width="0.4" height="15.0" fill="rgb(240,87,35)" rx="2" ry="2" />
+<text x="496.98" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="696.4" y="5141" width="2.9" height="15.0" fill="rgb(222,193,32)" rx="2" ry="2" />
+<text x="699.38" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6085" width="2.1" height="15.0" fill="rgb(227,92,29)" rx="2" ry="2" />
+<text x="251.01" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="530.9" y="5445" width="0.4" height="15.0" fill="rgb(237,90,32)" rx="2" ry="2" />
+<text x="533.86" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (243 samples, 8.63%)</title><rect x="574.0" y="5781" width="101.8" height="15.0" fill="rgb(253,85,0)" rx="2" ry="2" />
+<text x="577.02" y="5791.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="498.6" y="5237" width="0.4" height="15.0" fill="rgb(250,78,29)" rx="2" ry="2" />
+<text x="501.59" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="266.4" y="5045" width="0.5" height="15.0" fill="rgb(220,0,6)" rx="2" ry="2" />
+<text x="269.45" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="423.2" y="4741" width="0.8" height="15.0" fill="rgb(253,228,22)" rx="2" ry="2" />
+<text x="426.17" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="385.0" y="4613" width="0.5" height="15.0" fill="rgb(220,133,34)" rx="2" ry="2" />
+<text x="388.04" y="4623.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="331.8" y="4949" width="0.4" height="15.0" fill="rgb(210,227,28)" rx="2" ry="2" />
+<text x="334.82" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="479.3" y="5029" width="0.4" height="15.0" fill="rgb(235,182,45)" rx="2" ry="2" />
+<text x="482.32" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="422.3" y="4805" width="0.9" height="15.0" fill="rgb(251,74,35)" rx="2" ry="2" />
+<text x="425.33" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4229" width="0.4" height="15.0" fill="rgb(223,218,3)" rx="2" ry="2" />
+<text x="443.77" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="338.9" y="4805" width="2.1" height="15.0" fill="rgb(210,216,52)" rx="2" ry="2" />
+<text x="341.94" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5717" width="0.4" height="15.0" fill="rgb(215,0,0)" rx="2" ry="2" />
+<text x="1073.99" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.21%)</title><rect x="268.5" y="5093" width="14.3" height="15.0" fill="rgb(250,106,54)" rx="2" ry="2" />
+<text x="271.54" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="133" width="0.4" height="15.0" fill="rgb(205,27,1)" rx="2" ry="2" />
+<text x="546.43" y="143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (31 samples, 1.10%)</title><rect x="807.4" y="5749" width="13.0" height="15.0" fill="rgb(208,192,7)" rx="2" ry="2" />
+<text x="810.42" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5381" width="0.4" height="15.0" fill="rgb(219,83,33)" rx="2" ry="2" />
+<text x="685.13" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="885.4" y="5493" width="0.4" height="15.0" fill="rgb(210,88,50)" rx="2" ry="2" />
+<text x="888.36" y="5503.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2197" width="0.4" height="15.0" fill="rgb(219,82,50)" rx="2" ry="2" />
+<text x="437.90" y="2207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4325" width="0.9" height="15.0" fill="rgb(251,144,5)" rx="2" ry="2" />
+<text x="467.23" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="422.7" y="4645" width="0.5" height="15.0" fill="rgb(244,91,5)" rx="2" ry="2" />
+<text x="425.75" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4629" width="0.4" height="15.0" fill="rgb(221,40,37)" rx="2" ry="2" />
+<text x="463.88" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="5061" width="0.5" height="15.0" fill="rgb(236,187,49)" rx="2" ry="2" />
+<text x="489.44" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3637" width="0.4" height="15.0" fill="rgb(215,214,1)" rx="2" ry="2" />
+<text x="546.43" y="3647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4389" width="0.4" height="15.0" fill="rgb(232,201,7)" rx="2" ry="2" />
+<text x="412.76" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="501.9" y="5109" width="0.9" height="15.0" fill="rgb(250,133,31)" rx="2" ry="2" />
+<text x="504.95" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6085" width="0.4" height="15.0" fill="rgb(212,202,33)" rx="2" ry="2" />
+<text x="1073.99" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4645" width="0.4" height="15.0" fill="rgb(215,214,13)" rx="2" ry="2" />
+<text x="364.57" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4229" width="0.4" height="15.0" fill="rgb(242,32,5)" rx="2" ry="2" />
+<text x="1073.99" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5013" width="0.4" height="15.0" fill="rgb(238,207,47)" rx="2" ry="2" />
+<text x="563.19" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1098.7" y="6373" width="0.4" height="15.0" fill="rgb(222,55,31)" rx="2" ry="2" />
+<text x="1101.65" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5669" width="0.4" height="15.0" fill="rgb(230,133,50)" rx="2" ry="2" />
+<text x="1073.99" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.4" y="4869" width="0.4" height="15.0" fill="rgb(235,191,50)" rx="2" ry="2" />
+<text x="505.37" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="409.3" y="4853" width="2.1" height="15.0" fill="rgb(225,217,49)" rx="2" ry="2" />
+<text x="412.34" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.85%)</title><rect x="1061.8" y="6453" width="10.0" height="15.0" fill="rgb(205,142,53)" rx="2" ry="2" />
+<text x="1064.78" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (22 samples, 0.78%)</title><rect x="437.0" y="4869" width="9.2" height="15.0" fill="rgb(254,103,2)" rx="2" ry="2" />
+<text x="440.00" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5845" width="0.4" height="15.0" fill="rgb(240,227,10)" rx="2" ry="2" />
+<text x="767.68" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="798.2" y="5285" width="1.7" height="15.0" fill="rgb(235,33,16)" rx="2" ry="2" />
+<text x="801.20" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4885" width="0.8" height="15.0" fill="rgb(231,126,45)" rx="2" ry="2" />
+<text x="276.99" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="5013" width="0.4" height="15.0" fill="rgb(242,206,30)" rx="2" ry="2" />
+<text x="487.77" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1068.1" y="6309" width="0.4" height="15.0" fill="rgb(205,187,6)" rx="2" ry="2" />
+<text x="1071.06" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="382.1" y="4933" width="0.4" height="15.0" fill="rgb(228,5,38)" rx="2" ry="2" />
+<text x="385.10" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4917" width="0.4" height="15.0" fill="rgb(223,197,13)" rx="2" ry="2" />
+<text x="364.57" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="525.4" y="5589" width="0.8" height="15.0" fill="rgb(213,203,42)" rx="2" ry="2" />
+<text x="528.41" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.4" y="5909" width="0.4" height="15.0" fill="rgb(213,227,7)" rx="2" ry="2" />
+<text x="766.42" y="5919.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3941" width="0.4" height="15.0" fill="rgb(249,136,17)" rx="2" ry="2" />
+<text x="437.90" y="3951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="413.5" y="4981" width="0.4" height="15.0" fill="rgb(254,108,28)" rx="2" ry="2" />
+<text x="416.53" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="426.1" y="4693" width="0.8" height="15.0" fill="rgb(246,185,1)" rx="2" ry="2" />
+<text x="429.10" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (23 samples, 0.82%)</title><rect x="360.7" y="5109" width="9.7" height="15.0" fill="rgb(216,8,20)" rx="2" ry="2" />
+<text x="363.73" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="300.8" y="4869" width="0.8" height="15.0" fill="rgb(224,189,32)" rx="2" ry="2" />
+<text x="303.81" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5445" width="0.4" height="15.0" fill="rgb(247,138,4)" rx="2" ry="2" />
+<text x="561.10" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4933" width="0.8" height="15.0" fill="rgb(214,109,29)" rx="2" ry="2" />
+<text x="1120.09" y="4943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1861" width="0.4" height="15.0" fill="rgb(239,119,1)" rx="2" ry="2" />
+<text x="546.43" y="1871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.4" y="4933" width="0.4" height="15.0" fill="rgb(252,170,31)" rx="2" ry="2" />
+<text x="505.37" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="308.8" y="4981" width="1.2" height="15.0" fill="rgb(209,191,11)" rx="2" ry="2" />
+<text x="311.77" y="4991.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="228.3" y="6453" width="0.4" height="15.0" fill="rgb(252,122,12)" rx="2" ry="2" />
+<text x="231.32" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.4" y="4901" width="0.4" height="15.0" fill="rgb(214,170,14)" rx="2" ry="2" />
+<text x="515.42" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="468.4" y="5141" width="0.4" height="15.0" fill="rgb(206,206,27)" rx="2" ry="2" />
+<text x="471.42" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.4" y="4421" width="0.4" height="15.0" fill="rgb(229,40,47)" rx="2" ry="2" />
+<text x="430.36" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="449.1" y="5173" width="6.8" height="15.0" fill="rgb(208,165,1)" rx="2" ry="2" />
+<text x="452.15" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4437" width="0.4" height="15.0" fill="rgb(241,149,50)" rx="2" ry="2" />
+<text x="437.90" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="5125" width="6.7" height="15.0" fill="rgb(238,207,44)" rx="2" ry="2" />
+<text x="489.86" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="464.2" y="4421" width="0.9" height="15.0" fill="rgb(210,9,1)" rx="2" ry="2" />
+<text x="467.23" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="281.1" y="4789" width="0.4" height="15.0" fill="rgb(237,132,6)" rx="2" ry="2" />
+<text x="284.12" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4517" width="0.4" height="15.0" fill="rgb(228,147,26)" rx="2" ry="2" />
+<text x="437.90" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5845" width="0.4" height="15.0" fill="rgb(236,39,28)" rx="2" ry="2" />
+<text x="768.52" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="494.8" y="5349" width="0.4" height="15.0" fill="rgb(246,116,2)" rx="2" ry="2" />
+<text x="497.82" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="472.2" y="5269" width="7.5" height="15.0" fill="rgb(249,61,34)" rx="2" ry="2" />
+<text x="475.19" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5669" width="1.3" height="15.0" fill="rgb(231,16,29)" rx="2" ry="2" />
+<text x="760.14" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="493.1" y="4485" width="0.5" height="15.0" fill="rgb(247,89,28)" rx="2" ry="2" />
+<text x="496.15" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="284.5" y="5157" width="4.2" height="15.0" fill="rgb(241,112,50)" rx="2" ry="2" />
+<text x="287.47" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="498.6" y="5253" width="0.4" height="15.0" fill="rgb(235,164,48)" rx="2" ry="2" />
+<text x="501.59" y="5263.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (7 samples, 0.25%)</title><rect x="1085.7" y="6517" width="2.9" height="15.0" fill="rgb(232,169,20)" rx="2" ry="2" />
+<text x="1088.66" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4933" width="0.4" height="15.0" fill="rgb(249,172,48)" rx="2" ry="2" />
+<text x="487.77" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5397" width="0.8" height="15.0" fill="rgb(247,57,32)" rx="2" ry="2" />
+<text x="1120.09" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="509.5" y="5173" width="1.7" height="15.0" fill="rgb(236,34,13)" rx="2" ry="2" />
+<text x="512.49" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (293 samples, 10.40%)</title><rect x="770.5" y="6005" width="122.8" height="15.0" fill="rgb(250,4,19)" rx="2" ry="2" />
+<text x="773.55" y="6015.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1057.2" y="6437" width="0.4" height="15.0" fill="rgb(209,16,48)" rx="2" ry="2" />
+<text x="1060.17" y="6447.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3045" width="0.4" height="15.0" fill="rgb(249,210,2)" rx="2" ry="2" />
+<text x="437.90" y="3055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="250.5" y="5829" width="3.0" height="15.0" fill="rgb(211,199,26)" rx="2" ry="2" />
+<text x="253.53" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="751.3" y="5221" width="4.6" height="15.0" fill="rgb(242,173,0)" rx="2" ry="2" />
+<text x="754.27" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3589" width="0.4" height="15.0" fill="rgb(211,14,54)" rx="2" ry="2" />
+<text x="546.43" y="3599.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2149" width="0.4" height="15.0" fill="rgb(242,162,4)" rx="2" ry="2" />
+<text x="437.90" y="2159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (55 samples, 1.95%)</title><rect x="495.7" y="5445" width="23.0" height="15.0" fill="rgb(228,226,2)" rx="2" ry="2" />
+<text x="498.66" y="5455.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="526.7" y="5317" width="0.4" height="15.0" fill="rgb(229,94,7)" rx="2" ry="2" />
+<text x="529.67" y="5327.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="177.2" y="6453" width="0.4" height="15.0" fill="rgb(213,21,8)" rx="2" ry="2" />
+<text x="180.19" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6293" width="0.4" height="15.0" fill="rgb(252,25,15)" rx="2" ry="2" />
+<text x="1125.12" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4885" width="0.4" height="15.0" fill="rgb(235,168,20)" rx="2" ry="2" />
+<text x="1073.99" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.4" y="5925" width="0.4" height="15.0" fill="rgb(211,28,52)" rx="2" ry="2" />
+<text x="766.42" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5541" width="0.8" height="15.0" fill="rgb(207,108,28)" rx="2" ry="2" />
+<text x="528.41" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="426.1" y="4789" width="1.7" height="15.0" fill="rgb(223,213,33)" rx="2" ry="2" />
+<text x="429.10" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="318.4" y="4853" width="0.4" height="15.0" fill="rgb(212,207,33)" rx="2" ry="2" />
+<text x="321.41" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (6 samples, 0.21%)</title><rect x="1073.1" y="6517" width="2.5" height="15.0" fill="rgb(219,50,49)" rx="2" ry="2" />
+<text x="1076.09" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5685" width="0.9" height="15.0" fill="rgb(246,53,12)" rx="2" ry="2" />
+<text x="896.74" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="5973" width="0.4" height="15.0" fill="rgb(214,115,1)" rx="2" ry="2" />
+<text x="768.52" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.7" y="5237" width="0.4" height="15.0" fill="rgb(207,35,8)" rx="2" ry="2" />
+<text x="736.67" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4661" width="0.8" height="15.0" fill="rgb(235,174,5)" rx="2" ry="2" />
+<text x="1120.09" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="250.9" y="5781" width="0.9" height="15.0" fill="rgb(222,188,34)" rx="2" ry="2" />
+<text x="253.94" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4533" width="5.8" height="15.0" fill="rgb(235,5,34)" rx="2" ry="2" />
+<text x="490.28" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5237" width="0.4" height="15.0" fill="rgb(247,10,37)" rx="2" ry="2" />
+<text x="520.87" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="362.0" y="5045" width="8.0" height="15.0" fill="rgb(236,46,38)" rx="2" ry="2" />
+<text x="364.99" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="390.1" y="4933" width="0.4" height="15.0" fill="rgb(246,43,5)" rx="2" ry="2" />
+<text x="393.06" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (47 samples, 1.67%)</title><rect x="680.0" y="5461" width="19.7" height="15.0" fill="rgb(238,76,4)" rx="2" ry="2" />
+<text x="683.04" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.6" y="5013" width="0.4" height="15.0" fill="rgb(233,5,21)" rx="2" ry="2" />
+<text x="294.59" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5125" width="0.8" height="15.0" fill="rgb(216,193,1)" rx="2" ry="2" />
+<text x="1120.09" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="284.0" y="5045" width="0.5" height="15.0" fill="rgb(231,89,23)" rx="2" ry="2" />
+<text x="287.05" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="892.9" y="5813" width="0.4" height="15.0" fill="rgb(208,53,26)" rx="2" ry="2" />
+<text x="895.90" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="274.4" y="4629" width="0.4" height="15.0" fill="rgb(235,60,51)" rx="2" ry="2" />
+<text x="277.41" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="419.4" y="4949" width="0.4" height="15.0" fill="rgb(213,100,46)" rx="2" ry="2" />
+<text x="422.40" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="776.4" y="5573" width="0.4" height="15.0" fill="rgb(227,202,2)" rx="2" ry="2" />
+<text x="779.41" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4709" width="0.4" height="15.0" fill="rgb(248,65,15)" rx="2" ry="2" />
+<text x="760.98" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (35 samples, 1.24%)</title><rect x="862.7" y="5557" width="14.7" height="15.0" fill="rgb(229,16,0)" rx="2" ry="2" />
+<text x="865.73" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.0" y="4949" width="0.4" height="15.0" fill="rgb(236,194,39)" rx="2" ry="2" />
+<text x="333.98" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="260.2" y="5365" width="0.4" height="15.0" fill="rgb(248,40,8)" rx="2" ry="2" />
+<text x="263.16" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="4981" width="0.4" height="15.0" fill="rgb(254,171,24)" rx="2" ry="2" />
+<text x="416.11" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="767.2" y="5349" width="1.3" height="15.0" fill="rgb(211,114,5)" rx="2" ry="2" />
+<text x="770.19" y="5359.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1125" width="0.4" height="15.0" fill="rgb(246,130,44)" rx="2" ry="2" />
+<text x="546.43" y="1135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3829" width="5.0" height="15.0" fill="rgb(236,204,42)" rx="2" ry="2" />
+<text x="491.12" y="3839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="483.9" y="4981" width="0.4" height="15.0" fill="rgb(221,117,30)" rx="2" ry="2" />
+<text x="486.93" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="282.8" y="5157" width="1.7" height="15.0" fill="rgb(251,146,29)" rx="2" ry="2" />
+<text x="285.79" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,239 samples, 44.00%)</title><rect x="246.8" y="6469" width="519.1" height="15.0" fill="rgb(208,69,26)" rx="2" ry="2" />
+<text x="249.75" y="6479.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5301" width="0.5" height="15.0" fill="rgb(241,141,46)" rx="2" ry="2" />
+<text x="879.14" y="5311.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1653" width="0.4" height="15.0" fill="rgb(237,196,47)" rx="2" ry="2" />
+<text x="546.43" y="1663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="437.0" y="4821" width="9.2" height="15.0" fill="rgb(242,167,26)" rx="2" ry="2" />
+<text x="440.00" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4821" width="0.8" height="15.0" fill="rgb(250,106,44)" rx="2" ry="2" />
+<text x="413.60" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (11 samples, 0.39%)</title><rect x="167.6" y="6469" width="4.6" height="15.0" fill="rgb(245,27,51)" rx="2" ry="2" />
+<text x="170.56" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5685" width="0.4" height="15.0" fill="rgb(252,23,31)" rx="2" ry="2" />
+<text x="1073.99" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5685" width="0.4" height="15.0" fill="rgb(241,136,44)" rx="2" ry="2" />
+<text x="523.38" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushRefFunc (1 samples, 0.04%)</title><rect x="16.3" y="6501" width="0.4" height="15.0" fill="rgb(232,32,20)" rx="2" ry="2" />
+<text x="19.29" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="470.1" y="5365" width="0.4" height="15.0" fill="rgb(239,138,53)" rx="2" ry="2" />
+<text x="473.10" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="893.3" y="5349" width="0.4" height="15.0" fill="rgb(253,64,33)" rx="2" ry="2" />
+<text x="896.32" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="297.0" y="4933" width="0.5" height="15.0" fill="rgb(226,227,13)" rx="2" ry="2" />
+<text x="300.04" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="1156.5" y="6533" width="0.4" height="15.0" fill="rgb(230,211,1)" rx="2" ry="2" />
+<text x="1159.48" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4933" width="0.4" height="15.0" fill="rgb(210,15,10)" rx="2" ry="2" />
+<text x="496.98" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="459.2" y="5109" width="6.7" height="15.0" fill="rgb(250,19,47)" rx="2" ry="2" />
+<text x="462.20" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="375.8" y="5061" width="2.1" height="15.0" fill="rgb(235,9,7)" rx="2" ry="2" />
+<text x="378.82" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="725" width="0.4" height="15.0" fill="rgb(248,90,4)" rx="2" ry="2" />
+<text x="546.43" y="735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4053" width="5.4" height="15.0" fill="rgb(242,218,2)" rx="2" ry="2" />
+<text x="490.70" y="4063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="275.2" y="4661" width="0.5" height="15.0" fill="rgb(231,18,35)" rx="2" ry="2" />
+<text x="278.25" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (62 samples, 2.20%)</title><rect x="532.5" y="5669" width="26.0" height="15.0" fill="rgb(235,205,6)" rx="2" ry="2" />
+<text x="535.54" y="5679.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5589" width="0.8" height="15.0" fill="rgb(227,58,24)" rx="2" ry="2" />
+<text x="1120.09" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="763.0" y="6181" width="2.9" height="15.0" fill="rgb(207,22,26)" rx="2" ry="2" />
+<text x="766.00" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4853" width="0.4" height="15.0" fill="rgb(231,2,28)" rx="2" ry="2" />
+<text x="496.98" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invoke (1 samples, 0.04%)</title><rect x="893.3" y="4917" width="0.4" height="15.0" fill="rgb(207,78,49)" rx="2" ry="2" />
+<text x="896.32" y="4927.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2373" width="0.4" height="15.0" fill="rgb(236,162,22)" rx="2" ry="2" />
+<text x="437.90" y="2383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="5781" width="0.4" height="15.0" fill="rgb(254,68,19)" rx="2" ry="2" />
+<text x="768.52" y="5791.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2917" width="0.4" height="15.0" fill="rgb(248,191,17)" rx="2" ry="2" />
+<text x="437.90" y="2927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="4997" width="0.4" height="15.0" fill="rgb(213,142,25)" rx="2" ry="2" />
+<text x="416.11" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="275.2" y="4677" width="0.5" height="15.0" fill="rgb(208,222,31)" rx="2" ry="2" />
+<text x="278.25" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="456.3" y="5189" width="2.5" height="15.0" fill="rgb(230,181,9)" rx="2" ry="2" />
+<text x="459.27" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1183.7" y="6533" width="0.4" height="15.0" fill="rgb(227,61,45)" rx="2" ry="2" />
+<text x="1186.71" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="517.9" y="5109" width="0.4" height="15.0" fill="rgb(229,206,3)" rx="2" ry="2" />
+<text x="520.87" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4885" width="0.4" height="15.0" fill="rgb(250,87,39)" rx="2" ry="2" />
+<text x="496.98" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="767.2" y="5397" width="1.3" height="15.0" fill="rgb(208,37,4)" rx="2" ry="2" />
+<text x="770.19" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="357" width="0.4" height="15.0" fill="rgb(224,20,2)" rx="2" ry="2" />
+<text x="546.43" y="367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="759.2" y="5925" width="2.5" height="15.0" fill="rgb(239,188,15)" rx="2" ry="2" />
+<text x="762.23" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4421" width="0.4" height="15.0" fill="rgb(209,68,48)" rx="2" ry="2" />
+<text x="489.86" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4629" width="0.5" height="15.0" fill="rgb(241,90,20)" rx="2" ry="2" />
+<text x="480.64" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5717" width="1.3" height="15.0" fill="rgb(227,3,44)" rx="2" ry="2" />
+<text x="760.14" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="251.4" y="5669" width="0.4" height="15.0" fill="rgb(244,213,50)" rx="2" ry="2" />
+<text x="254.36" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="295.8" y="5045" width="2.1" height="15.0" fill="rgb(225,217,34)" rx="2" ry="2" />
+<text x="298.78" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="4933" width="0.4" height="15.0" fill="rgb(244,153,41)" rx="2" ry="2" />
+<text x="351.58" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (1 samples, 0.04%)</title><rect x="671.7" y="5221" width="0.4" height="15.0" fill="rgb(207,134,52)" rx="2" ry="2" />
+<text x="674.65" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4885" width="0.5" height="15.0" fill="rgb(244,5,21)" rx="2" ry="2" />
+<text x="489.44" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="5013" width="0.9" height="15.0" fill="rgb(238,85,17)" rx="2" ry="2" />
+<text x="345.71" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="477.2" y="4757" width="0.9" height="15.0" fill="rgb(213,124,8)" rx="2" ry="2" />
+<text x="480.22" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="749.2" y="5141" width="0.8" height="15.0" fill="rgb(224,203,2)" rx="2" ry="2" />
+<text x="752.18" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="541.8" y="5397" width="2.0" height="15.0" fill="rgb(208,226,36)" rx="2" ry="2" />
+<text x="544.75" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1123.0" y="6533" width="0.4" height="15.0" fill="rgb(245,214,17)" rx="2" ry="2" />
+<text x="1125.95" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4453" width="0.5" height="15.0" fill="rgb(227,102,8)" rx="2" ry="2" />
+<text x="480.64" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1076.4" y="6533" width="0.9" height="15.0" fill="rgb(239,159,0)" rx="2" ry="2" />
+<text x="1079.44" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="465.9" y="5157" width="1.3" height="15.0" fill="rgb(211,126,0)" rx="2" ry="2" />
+<text x="468.91" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (3 samples, 0.11%)</title><rect x="670.8" y="5237" width="1.3" height="15.0" fill="rgb(215,143,46)" rx="2" ry="2" />
+<text x="673.82" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="342.3" y="5221" width="1.3" height="15.0" fill="rgb(212,74,35)" rx="2" ry="2" />
+<text x="345.29" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (3 samples, 0.11%)</title><rect x="10.4" y="6421" width="1.3" height="15.0" fill="rgb(218,6,19)" rx="2" ry="2" />
+<text x="13.42" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4709" width="0.4" height="15.0" fill="rgb(241,99,32)" rx="2" ry="2" />
+<text x="1073.99" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="494.0" y="4901" width="0.4" height="15.0" fill="rgb(250,21,48)" rx="2" ry="2" />
+<text x="496.98" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::wasmI32ToPhpInt (1 samples, 0.04%)</title><rect x="799.9" y="5557" width="0.4" height="15.0" fill="rgb(246,71,5)" rx="2" ry="2" />
+<text x="802.88" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (114 samples, 4.05%)</title><rect x="773.5" y="5861" width="47.7" height="15.0" fill="rgb(230,33,23)" rx="2" ry="2" />
+<text x="776.48" y="5871.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4661" width="0.4" height="15.0" fill="rgb(225,110,11)" rx="2" ry="2" />
+<text x="437.90" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="799.0" y="5221" width="0.9" height="15.0" fill="rgb(232,107,39)" rx="2" ry="2" />
+<text x="802.04" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4629" width="0.9" height="15.0" fill="rgb(241,45,21)" rx="2" ry="2" />
+<text x="467.23" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4997" width="0.9" height="15.0" fill="rgb(213,102,27)" rx="2" ry="2" />
+<text x="388.04" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (3 samples, 0.11%)</title><rect x="147.9" y="6469" width="1.2" height="15.0" fill="rgb(222,82,23)" rx="2" ry="2" />
+<text x="150.86" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (2 samples, 0.07%)</title><rect x="1167.8" y="6549" width="0.8" height="15.0" fill="rgb(241,144,46)" rx="2" ry="2" />
+<text x="1170.79" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5301" width="0.8" height="15.0" fill="rgb(216,59,20)" rx="2" ry="2" />
+<text x="1120.09" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4405" width="0.4" height="15.0" fill="rgb(206,4,49)" rx="2" ry="2" />
+<text x="437.90" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="1114.2" y="6277" width="4.1" height="15.0" fill="rgb(217,121,10)" rx="2" ry="2" />
+<text x="1117.15" y="6287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (412 samples, 14.63%)</title><rect x="959.1" y="6565" width="172.7" height="15.0" fill="rgb(234,166,14)" rx="2" ry="2" />
+<text x="962.11" y="6575.5" >&lt;unknown&gt;</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="280.3" y="4837" width="0.8" height="15.0" fill="rgb(206,95,35)" rx="2" ry="2" />
+<text x="283.28" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="820.8" y="5749" width="0.4" height="15.0" fill="rgb(232,202,45)" rx="2" ry="2" />
+<text x="823.83" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (56 samples, 1.99%)</title><rect x="389.6" y="5109" width="23.5" height="15.0" fill="rgb(237,102,41)" rx="2" ry="2" />
+<text x="392.64" y="5119.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5509" width="0.8" height="15.0" fill="rgb(212,195,45)" rx="2" ry="2" />
+<text x="528.41" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5637" width="0.5" height="15.0" fill="rgb(236,193,33)" rx="2" ry="2" />
+<text x="573.25" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (2 samples, 0.07%)</title><rect x="1169.5" y="6565" width="0.8" height="15.0" fill="rgb(213,77,17)" rx="2" ry="2" />
+<text x="1172.47" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="747.9" y="5045" width="0.9" height="15.0" fill="rgb(254,207,37)" rx="2" ry="2" />
+<text x="750.92" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.7" y="5237" width="0.4" height="15.0" fill="rgb(228,217,1)" rx="2" ry="2" />
+<text x="485.67" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="749.2" y="5109" width="0.8" height="15.0" fill="rgb(228,18,50)" rx="2" ry="2" />
+<text x="752.18" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="328.5" y="4869" width="0.4" height="15.0" fill="rgb(237,182,29)" rx="2" ry="2" />
+<text x="331.47" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="512.4" y="5061" width="0.9" height="15.0" fill="rgb(213,94,9)" rx="2" ry="2" />
+<text x="515.42" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2165" width="0.4" height="15.0" fill="rgb(252,118,54)" rx="2" ry="2" />
+<text x="546.43" y="2175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.9" y="6533" width="0.4" height="15.0" fill="rgb(237,228,53)" rx="2" ry="2" />
+<text x="1141.88" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3605" width="0.4" height="15.0" fill="rgb(221,160,41)" rx="2" ry="2" />
+<text x="437.90" y="3615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="493.1" y="4581" width="0.5" height="15.0" fill="rgb(229,228,1)" rx="2" ry="2" />
+<text x="496.15" y="4591.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3733" width="0.4" height="15.0" fill="rgb(223,178,42)" rx="2" ry="2" />
+<text x="546.43" y="3743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="759.7" y="5877" width="2.0" height="15.0" fill="rgb(254,111,23)" rx="2" ry="2" />
+<text x="762.65" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="4997" width="0.9" height="15.0" fill="rgb(253,62,4)" rx="2" ry="2" />
+<text x="746.73" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="362.0" y="4901" width="6.7" height="15.0" fill="rgb(245,62,51)" rx="2" ry="2" />
+<text x="364.99" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="310.9" y="5077" width="0.8" height="15.0" fill="rgb(242,84,0)" rx="2" ry="2" />
+<text x="313.87" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5557" width="0.4" height="15.0" fill="rgb(229,12,48)" rx="2" ry="2" />
+<text x="768.52" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="519.1" y="5397" width="0.4" height="15.0" fill="rgb(244,120,30)" rx="2" ry="2" />
+<text x="522.13" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3061" width="0.4" height="15.0" fill="rgb(215,229,26)" rx="2" ry="2" />
+<text x="437.90" y="3071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6309" width="0.4" height="15.0" fill="rgb(243,126,45)" rx="2" ry="2" />
+<text x="1143.55" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="556.8" y="5525" width="1.7" height="15.0" fill="rgb(210,181,33)" rx="2" ry="2" />
+<text x="559.84" y="5535.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:536-551) (1 samples, 0.04%)</title><rect x="761.7" y="6037" width="0.5" height="15.0" fill="rgb(227,208,27)" rx="2" ry="2" />
+<text x="764.75" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6181" width="0.8" height="15.0" fill="rgb(239,106,39)" rx="2" ry="2" />
+<text x="1120.09" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1164.9" y="6581" width="0.4" height="15.0" fill="rgb(245,145,30)" rx="2" ry="2" />
+<text x="1167.86" y="6591.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1989" width="0.4" height="15.0" fill="rgb(216,20,16)" rx="2" ry="2" />
+<text x="546.43" y="1999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="693.9" y="5333" width="0.4" height="15.0" fill="rgb(249,120,6)" rx="2" ry="2" />
+<text x="696.86" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="559.8" y="5589" width="2.9" height="15.0" fill="rgb(225,170,52)" rx="2" ry="2" />
+<text x="562.77" y="5599.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3749" width="0.4" height="15.0" fill="rgb(252,191,30)" rx="2" ry="2" />
+<text x="437.90" y="3759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="260.2" y="5317" width="0.4" height="15.0" fill="rgb(237,28,43)" rx="2" ry="2" />
+<text x="263.16" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="484.8" y="5205" width="1.6" height="15.0" fill="rgb(239,206,43)" rx="2" ry="2" />
+<text x="487.77" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4357" width="5.8" height="15.0" fill="rgb(225,50,8)" rx="2" ry="2" />
+<text x="490.28" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (2 samples, 0.07%)</title><rect x="893.7" y="6149" width="0.9" height="15.0" fill="rgb(233,16,10)" rx="2" ry="2" />
+<text x="896.74" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="1112.9" y="6325" width="5.4" height="15.0" fill="rgb(253,52,3)" rx="2" ry="2" />
+<text x="1115.90" y="6335.5" ></text>
+</g>
+<g >
+<title>assert (13 samples, 0.46%)</title><rect x="1184.6" y="6581" width="5.4" height="15.0" fill="rgb(206,31,43)" rx="2" ry="2" />
+<text x="1187.55" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4373" width="0.4" height="15.0" fill="rgb(239,3,10)" rx="2" ry="2" />
+<text x="414.02" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5557" width="0.8" height="15.0" fill="rgb(246,3,5)" rx="2" ry="2" />
+<text x="1120.09" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4533" width="0.4" height="15.0" fill="rgb(218,124,18)" rx="2" ry="2" />
+<text x="496.98" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5637" width="0.4" height="15.0" fill="rgb(225,172,41)" rx="2" ry="2" />
+<text x="523.38" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="511.6" y="5125" width="1.7" height="15.0" fill="rgb(211,4,17)" rx="2" ry="2" />
+<text x="514.58" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="275.2" y="4837" width="0.5" height="15.0" fill="rgb(235,141,41)" rx="2" ry="2" />
+<text x="278.25" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="456.3" y="5125" width="2.1" height="15.0" fill="rgb(249,127,5)" rx="2" ry="2" />
+<text x="459.27" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="472.2" y="5301" width="7.5" height="15.0" fill="rgb(212,160,13)" rx="2" ry="2" />
+<text x="475.19" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.4" y="4725" width="0.4" height="15.0" fill="rgb(234,169,36)" rx="2" ry="2" />
+<text x="329.37" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="501.9" y="5077" width="0.9" height="15.0" fill="rgb(227,226,8)" rx="2" ry="2" />
+<text x="504.95" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4293" width="0.5" height="15.0" fill="rgb(252,115,34)" rx="2" ry="2" />
+<text x="480.64" y="4303.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3461" width="0.4" height="15.0" fill="rgb(248,56,45)" rx="2" ry="2" />
+<text x="546.43" y="3471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="763.8" y="5877" width="1.3" height="15.0" fill="rgb(231,19,49)" rx="2" ry="2" />
+<text x="766.84" y="5887.5" ></text>
+</g>
+<g >
+<title>print_r (3 samples, 0.11%)</title><rect x="227.1" y="6453" width="1.2" height="15.0" fill="rgb(250,32,11)" rx="2" ry="2" />
+<text x="230.06" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="694.7" y="5317" width="4.6" height="15.0" fill="rgb(217,150,14)" rx="2" ry="2" />
+<text x="697.70" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.7" y="5701" width="0.4" height="15.0" fill="rgb(223,2,10)" rx="2" ry="2" />
+<text x="573.67" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="275.2" y="4725" width="0.5" height="15.0" fill="rgb(236,160,37)" rx="2" ry="2" />
+<text x="278.25" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5557" width="0.4" height="15.0" fill="rgb(229,216,4)" rx="2" ry="2" />
+<text x="767.68" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="511.6" y="5333" width="2.1" height="15.0" fill="rgb(221,58,45)" rx="2" ry="2" />
+<text x="514.58" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5477" width="2.5" height="15.0" fill="rgb(217,40,32)" rx="2" ry="2" />
+<text x="770.19" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6261" width="0.5" height="15.0" fill="rgb(244,194,27)" rx="2" ry="2" />
+<text x="1050.95" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5189" width="0.4" height="15.0" fill="rgb(214,166,46)" rx="2" ry="2" />
+<text x="569.06" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="382.1" y="4981" width="0.4" height="15.0" fill="rgb(211,13,50)" rx="2" ry="2" />
+<text x="385.10" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="515.8" y="5109" width="1.7" height="15.0" fill="rgb(234,22,39)" rx="2" ry="2" />
+<text x="518.77" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="397.6" y="4917" width="0.8" height="15.0" fill="rgb(224,117,11)" rx="2" ry="2" />
+<text x="400.61" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="484.8" y="5109" width="1.6" height="15.0" fill="rgb(219,131,39)" rx="2" ry="2" />
+<text x="487.77" y="5119.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5397" width="0.5" height="15.0" fill="rgb(227,170,23)" rx="2" ry="2" />
+<text x="879.14" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="890.4" y="5509" width="0.4" height="15.0" fill="rgb(215,170,32)" rx="2" ry="2" />
+<text x="893.39" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.4" y="4885" width="0.4" height="15.0" fill="rgb(206,56,28)" rx="2" ry="2" />
+<text x="505.37" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5253" width="0.4" height="15.0" fill="rgb(246,121,3)" rx="2" ry="2" />
+<text x="896.32" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5285" width="0.4" height="15.0" fill="rgb(253,139,52)" rx="2" ry="2" />
+<text x="497.40" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (635 samples, 22.55%)</title><rect x="253.5" y="5509" width="266.0" height="15.0" fill="rgb(227,162,44)" rx="2" ry="2" />
+<text x="256.46" y="5519.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (17 samples, 0.60%)</title><rect x="458.8" y="5173" width="7.1" height="15.0" fill="rgb(247,130,40)" rx="2" ry="2" />
+<text x="461.79" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="360.7" y="5125" width="17.6" height="15.0" fill="rgb(219,65,26)" rx="2" ry="2" />
+<text x="363.73" y="5135.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1685" width="0.4" height="15.0" fill="rgb(210,140,54)" rx="2" ry="2" />
+<text x="546.43" y="1695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="264.8" y="5093" width="2.5" height="15.0" fill="rgb(239,64,14)" rx="2" ry="2" />
+<text x="267.77" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="3973" width="0.4" height="15.0" fill="rgb(221,101,48)" rx="2" ry="2" />
+<text x="1120.51" y="3983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1109.5" y="6309" width="0.5" height="15.0" fill="rgb(245,225,47)" rx="2" ry="2" />
+<text x="1112.55" y="6319.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2837" width="0.4" height="15.0" fill="rgb(226,215,43)" rx="2" ry="2" />
+<text x="437.90" y="2847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (302 samples, 10.72%)</title><rect x="767.2" y="6325" width="126.5" height="15.0" fill="rgb(205,39,2)" rx="2" ry="2" />
+<text x="770.19" y="6335.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="668.3" y="5237" width="0.8" height="15.0" fill="rgb(246,60,2)" rx="2" ry="2" />
+<text x="671.30" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (66 samples, 2.34%)</title><rect x="261.0" y="5253" width="27.7" height="15.0" fill="rgb(213,227,14)" rx="2" ry="2" />
+<text x="264.00" y="5263.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1141" width="0.4" height="15.0" fill="rgb(226,85,47)" rx="2" ry="2" />
+<text x="546.43" y="1151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="882.8" y="5557" width="3.0" height="15.0" fill="rgb(206,45,9)" rx="2" ry="2" />
+<text x="885.85" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="4997" width="0.4" height="15.0" fill="rgb(218,215,4)" rx="2" ry="2" />
+<text x="475.19" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="891.2" y="5653" width="0.4" height="15.0" fill="rgb(216,201,52)" rx="2" ry="2" />
+<text x="894.23" y="5663.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3333" width="0.4" height="15.0" fill="rgb(248,87,28)" rx="2" ry="2" />
+<text x="437.90" y="3343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1054.7" y="6469" width="0.4" height="15.0" fill="rgb(220,227,39)" rx="2" ry="2" />
+<text x="1057.65" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4661" width="0.5" height="15.0" fill="rgb(252,125,24)" rx="2" ry="2" />
+<text x="480.64" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="344.4" y="5157" width="2.9" height="15.0" fill="rgb(243,136,19)" rx="2" ry="2" />
+<text x="347.39" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="686.3" y="5253" width="2.5" height="15.0" fill="rgb(209,187,34)" rx="2" ry="2" />
+<text x="689.32" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (243 samples, 8.63%)</title><rect x="574.0" y="5493" width="101.8" height="15.0" fill="rgb(227,184,25)" rx="2" ry="2" />
+<text x="577.02" y="5503.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="563.5" y="5477" width="0.5" height="15.0" fill="rgb(251,152,17)" rx="2" ry="2" />
+<text x="566.54" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5749" width="0.4" height="15.0" fill="rgb(224,45,12)" rx="2" ry="2" />
+<text x="768.52" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (50 samples, 1.78%)</title><rect x="267.7" y="5221" width="21.0" height="15.0" fill="rgb(249,213,14)" rx="2" ry="2" />
+<text x="270.71" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.3" y="5653" width="0.4" height="15.0" fill="rgb(208,93,17)" rx="2" ry="2" />
+<text x="764.33" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4981" width="0.4" height="15.0" fill="rgb(224,41,26)" rx="2" ry="2" />
+<text x="760.98" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="885.4" y="5413" width="0.4" height="15.0" fill="rgb(224,162,5)" rx="2" ry="2" />
+<text x="888.36" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="5013" width="0.8" height="15.0" fill="rgb(207,129,29)" rx="2" ry="2" />
+<text x="512.91" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="5157" width="0.9" height="15.0" fill="rgb(223,194,47)" rx="2" ry="2" />
+<text x="746.73" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4389" width="0.4" height="15.0" fill="rgb(248,162,45)" rx="2" ry="2" />
+<text x="414.02" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (198 samples, 7.03%)</title><rect x="675.8" y="5957" width="83.0" height="15.0" fill="rgb(208,167,20)" rx="2" ry="2" />
+<text x="678.85" y="5967.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="277" width="0.4" height="15.0" fill="rgb(215,30,22)" rx="2" ry="2" />
+<text x="546.43" y="287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="462.6" y="4933" width="3.3" height="15.0" fill="rgb(235,13,11)" rx="2" ry="2" />
+<text x="465.56" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (12 samples, 0.43%)</title><rect x="179.7" y="6501" width="5.0" height="15.0" fill="rgb(244,114,23)" rx="2" ry="2" />
+<text x="182.71" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="519.1" y="5381" width="0.4" height="15.0" fill="rgb(208,64,2)" rx="2" ry="2" />
+<text x="522.13" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4437" width="0.4" height="15.0" fill="rgb(246,181,47)" rx="2" ry="2" />
+<text x="414.02" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (66 samples, 2.34%)</title><rect x="261.0" y="5269" width="27.7" height="15.0" fill="rgb(231,82,38)" rx="2" ry="2" />
+<text x="264.00" y="5279.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="566.5" y="5525" width="0.4" height="15.0" fill="rgb(215,111,8)" rx="2" ry="2" />
+<text x="569.48" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4581" width="0.4" height="15.0" fill="rgb(214,24,34)" rx="2" ry="2" />
+<text x="329.79" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="420.2" y="4853" width="1.3" height="15.0" fill="rgb(220,93,38)" rx="2" ry="2" />
+<text x="423.23" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5445" width="0.4" height="15.0" fill="rgb(219,116,43)" rx="2" ry="2" />
+<text x="1073.99" y="5455.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:516-533) (1 samples, 0.04%)</title><rect x="762.6" y="6005" width="0.4" height="15.0" fill="rgb(205,85,8)" rx="2" ry="2" />
+<text x="765.59" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="463.4" y="4821" width="1.7" height="15.0" fill="rgb(235,96,42)" rx="2" ry="2" />
+<text x="466.39" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (17 samples, 0.60%)</title><rect x="362.0" y="5013" width="7.1" height="15.0" fill="rgb(207,23,5)" rx="2" ry="2" />
+<text x="364.99" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="685.5" y="5285" width="3.3" height="15.0" fill="rgb(252,77,43)" rx="2" ry="2" />
+<text x="688.48" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="799.5" y="5125" width="0.4" height="15.0" fill="rgb(236,16,38)" rx="2" ry="2" />
+<text x="802.46" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="333.1" y="4837" width="1.2" height="15.0" fill="rgb(248,202,34)" rx="2" ry="2" />
+<text x="336.08" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4645" width="0.8" height="15.0" fill="rgb(235,135,36)" rx="2" ry="2" />
+<text x="512.91" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5717" width="0.4" height="15.0" fill="rgb(239,64,53)" rx="2" ry="2" />
+<text x="767.26" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4405" width="0.5" height="15.0" fill="rgb(239,78,52)" rx="2" ry="2" />
+<text x="480.64" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4501" width="0.4" height="15.0" fill="rgb(241,115,22)" rx="2" ry="2" />
+<text x="489.86" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.6" y="4709" width="0.5" height="15.0" fill="rgb(240,2,37)" rx="2" ry="2" />
+<text x="348.65" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="679.6" y="5413" width="0.4" height="15.0" fill="rgb(220,152,12)" rx="2" ry="2" />
+<text x="682.62" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5541" width="0.4" height="15.0" fill="rgb(230,38,36)" rx="2" ry="2" />
+<text x="767.68" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="338.9" y="4741" width="2.1" height="15.0" fill="rgb(237,203,33)" rx="2" ry="2" />
+<text x="341.94" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="803.2" y="5653" width="0.5" height="15.0" fill="rgb(244,85,7)" rx="2" ry="2" />
+<text x="806.23" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4741" width="0.4" height="15.0" fill="rgb(218,156,48)" rx="2" ry="2" />
+<text x="329.79" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4245" width="5.4" height="15.0" fill="rgb(254,84,17)" rx="2" ry="2" />
+<text x="490.70" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="318.0" y="4917" width="1.2" height="15.0" fill="rgb(205,134,39)" rx="2" ry="2" />
+<text x="320.99" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5221" width="0.4" height="15.0" fill="rgb(236,95,41)" rx="2" ry="2" />
+<text x="357.03" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5637" width="0.4" height="15.0" fill="rgb(249,110,24)" rx="2" ry="2" />
+<text x="895.49" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="101" width="0.4" height="15.0" fill="rgb(239,188,26)" rx="2" ry="2" />
+<text x="546.43" y="111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="535.0" y="5605" width="0.5" height="15.0" fill="rgb(216,178,13)" rx="2" ry="2" />
+<text x="538.05" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="478.9" y="4645" width="0.4" height="15.0" fill="rgb(214,206,36)" rx="2" ry="2" />
+<text x="481.90" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 2.27%)</title><rect x="774.3" y="5717" width="26.8" height="15.0" fill="rgb(206,99,15)" rx="2" ry="2" />
+<text x="777.32" y="5727.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="560.2" y="5509" width="0.4" height="15.0" fill="rgb(215,154,33)" rx="2" ry="2" />
+<text x="563.19" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5781" width="0.4" height="15.0" fill="rgb(224,96,15)" rx="2" ry="2" />
+<text x="768.10" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5829" width="101.8" height="15.0" fill="rgb(221,71,26)" rx="2" ry="2" />
+<text x="577.02" y="5839.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="283.2" y="5061" width="1.3" height="15.0" fill="rgb(249,5,2)" rx="2" ry="2" />
+<text x="286.21" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2869" width="0.4" height="15.0" fill="rgb(216,86,7)" rx="2" ry="2" />
+<text x="437.90" y="2879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="527.9" y="5365" width="0.9" height="15.0" fill="rgb(231,171,17)" rx="2" ry="2" />
+<text x="530.93" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5173" width="0.4" height="15.0" fill="rgb(219,131,25)" rx="2" ry="2" />
+<text x="569.06" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.7" y="5749" width="0.4" height="15.0" fill="rgb(210,157,15)" rx="2" ry="2" />
+<text x="767.68" y="5759.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="667.5" y="5221" width="0.4" height="15.0" fill="rgb(226,46,52)" rx="2" ry="2" />
+<text x="670.46" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="309" width="0.4" height="15.0" fill="rgb(245,160,48)" rx="2" ry="2" />
+<text x="546.43" y="319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5477" width="0.4" height="15.0" fill="rgb(233,4,29)" rx="2" ry="2" />
+<text x="881.66" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="830.0" y="5621" width="1.3" height="15.0" fill="rgb(241,154,22)" rx="2" ry="2" />
+<text x="833.05" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4773" width="0.5" height="15.0" fill="rgb(207,142,25)" rx="2" ry="2" />
+<text x="469.75" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (38 samples, 1.35%)</title><rect x="805.3" y="5781" width="15.9" height="15.0" fill="rgb(250,58,13)" rx="2" ry="2" />
+<text x="808.33" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="346.9" y="5077" width="0.4" height="15.0" fill="rgb(239,48,10)" rx="2" ry="2" />
+<text x="349.90" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="761.7" y="6021" width="0.5" height="15.0" fill="rgb(242,181,6)" rx="2" ry="2" />
+<text x="764.75" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="541.8" y="5365" width="2.0" height="15.0" fill="rgb(209,28,6)" rx="2" ry="2" />
+<text x="544.75" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4501" width="0.5" height="15.0" fill="rgb(229,214,29)" rx="2" ry="2" />
+<text x="480.64" y="4511.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="693" width="0.4" height="15.0" fill="rgb(212,45,21)" rx="2" ry="2" />
+<text x="546.43" y="703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3973" width="0.4" height="15.0" fill="rgb(247,168,32)" rx="2" ry="2" />
+<text x="437.90" y="3983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (198 samples, 7.03%)</title><rect x="675.8" y="5973" width="83.0" height="15.0" fill="rgb(217,220,28)" rx="2" ry="2" />
+<text x="678.85" y="5983.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="803.2" y="5621" width="0.5" height="15.0" fill="rgb(220,105,36)" rx="2" ry="2" />
+<text x="806.23" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1121.7" y="6533" width="0.4" height="15.0" fill="rgb(230,107,23)" rx="2" ry="2" />
+<text x="1124.70" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="830.9" y="5573" width="0.4" height="15.0" fill="rgb(227,126,32)" rx="2" ry="2" />
+<text x="833.89" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5941" width="0.4" height="15.0" fill="rgb(222,88,13)" rx="2" ry="2" />
+<text x="1073.99" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="426.1" y="4981" width="1.7" height="15.0" fill="rgb(228,16,39)" rx="2" ry="2" />
+<text x="429.10" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.71%)</title><rect x="471.4" y="5381" width="8.3" height="15.0" fill="rgb(229,50,45)" rx="2" ry="2" />
+<text x="474.36" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (2 samples, 0.07%)</title><rect x="835.5" y="5653" width="0.8" height="15.0" fill="rgb(214,43,21)" rx="2" ry="2" />
+<text x="838.50" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6245" width="2.1" height="15.0" fill="rgb(220,172,52)" rx="2" ry="2" />
+<text x="251.01" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1143.5" y="6533" width="0.4" height="15.0" fill="rgb(208,24,14)" rx="2" ry="2" />
+<text x="1146.49" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3573" width="0.4" height="15.0" fill="rgb(217,171,30)" rx="2" ry="2" />
+<text x="437.90" y="3583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="446.6" y="5205" width="0.5" height="15.0" fill="rgb(245,117,9)" rx="2" ry="2" />
+<text x="449.63" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="453" width="0.4" height="15.0" fill="rgb(244,206,10)" rx="2" ry="2" />
+<text x="546.43" y="463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="409.3" y="4789" width="1.3" height="15.0" fill="rgb(242,48,28)" rx="2" ry="2" />
+<text x="412.34" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5717" width="0.4" height="15.0" fill="rgb(211,146,51)" rx="2" ry="2" />
+<text x="576.60" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6181" width="0.4" height="15.0" fill="rgb(226,43,16)" rx="2" ry="2" />
+<text x="13.42" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="535.0" y="5589" width="0.5" height="15.0" fill="rgb(231,102,23)" rx="2" ry="2" />
+<text x="538.05" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="422.3" y="4789" width="0.9" height="15.0" fill="rgb(245,211,1)" rx="2" ry="2" />
+<text x="425.33" y="4799.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3765" width="0.4" height="15.0" fill="rgb(232,206,38)" rx="2" ry="2" />
+<text x="546.43" y="3775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.4" y="4645" width="0.4" height="15.0" fill="rgb(226,24,21)" rx="2" ry="2" />
+<text x="329.37" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="417.3" y="4853" width="2.1" height="15.0" fill="rgb(244,94,48)" rx="2" ry="2" />
+<text x="420.30" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="324.3" y="4837" width="0.4" height="15.0" fill="rgb(207,218,20)" rx="2" ry="2" />
+<text x="327.28" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="558.9" y="5685" width="0.9" height="15.0" fill="rgb(217,224,20)" rx="2" ry="2" />
+<text x="561.93" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5413" width="0.4" height="15.0" fill="rgb(228,208,45)" rx="2" ry="2" />
+<text x="1073.99" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="338.9" y="4693" width="2.1" height="15.0" fill="rgb(227,35,42)" rx="2" ry="2" />
+<text x="341.94" y="4703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2133" width="0.4" height="15.0" fill="rgb(227,53,41)" rx="2" ry="2" />
+<text x="546.43" y="2143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (344 samples, 12.22%)</title><rect x="531.7" y="5941" width="144.1" height="15.0" fill="rgb(252,80,0)" rx="2" ry="2" />
+<text x="534.70" y="5951.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="332.2" y="4917" width="2.1" height="15.0" fill="rgb(216,40,50)" rx="2" ry="2" />
+<text x="335.24" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="763.8" y="5861" width="1.3" height="15.0" fill="rgb(252,33,53)" rx="2" ry="2" />
+<text x="766.84" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (46 samples, 1.63%)</title><rect x="393.8" y="5013" width="19.3" height="15.0" fill="rgb(235,111,28)" rx="2" ry="2" />
+<text x="396.84" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (289 samples, 10.26%)</title><rect x="772.2" y="5973" width="121.1" height="15.0" fill="rgb(232,78,11)" rx="2" ry="2" />
+<text x="775.22" y="5983.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.4" y="5205" width="0.5" height="15.0" fill="rgb(242,185,23)" rx="2" ry="2" />
+<text x="489.44" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5653" width="0.5" height="15.0" fill="rgb(236,113,14)" rx="2" ry="2" />
+<text x="573.25" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.4" y="4613" width="0.4" height="15.0" fill="rgb(241,22,39)" rx="2" ry="2" />
+<text x="329.37" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="762.2" y="6069" width="0.8" height="15.0" fill="rgb(239,152,26)" rx="2" ry="2" />
+<text x="765.17" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="5013" width="6.7" height="15.0" fill="rgb(223,171,3)" rx="2" ry="2" />
+<text x="489.86" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="412.3" y="4917" width="0.4" height="15.0" fill="rgb(218,124,48)" rx="2" ry="2" />
+<text x="415.27" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="4933" width="1.3" height="15.0" fill="rgb(235,62,10)" rx="2" ry="2" />
+<text x="348.65" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5573" width="0.4" height="15.0" fill="rgb(227,44,23)" rx="2" ry="2" />
+<text x="881.66" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="276.5" y="4805" width="0.4" height="15.0" fill="rgb(212,7,15)" rx="2" ry="2" />
+<text x="279.51" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="688.4" y="5237" width="0.4" height="15.0" fill="rgb(235,40,30)" rx="2" ry="2" />
+<text x="691.42" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4933" width="0.5" height="15.0" fill="rgb(230,80,1)" rx="2" ry="2" />
+<text x="489.44" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (25 samples, 0.89%)</title><rect x="704.3" y="5413" width="10.5" height="15.0" fill="rgb(215,222,47)" rx="2" ry="2" />
+<text x="707.34" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.75%)</title><rect x="867.8" y="5509" width="8.8" height="15.0" fill="rgb(240,95,11)" rx="2" ry="2" />
+<text x="870.76" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="362.0" y="4757" width="1.2" height="15.0" fill="rgb(228,46,2)" rx="2" ry="2" />
+<text x="364.99" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5445" width="0.4" height="15.0" fill="rgb(241,16,42)" rx="2" ry="2" />
+<text x="881.66" y="5455.5" ></text>
+</g>
+<g >
+<title>wasm_stackSave (1 samples, 0.04%)</title><rect x="893.3" y="4933" width="0.4" height="15.0" fill="rgb(218,210,25)" rx="2" ry="2" />
+<text x="896.32" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4869" width="0.4" height="15.0" fill="rgb(228,31,13)" rx="2" ry="2" />
+<text x="496.98" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (301 samples, 10.69%)</title><rect x="767.2" y="6133" width="126.1" height="15.0" fill="rgb(234,186,3)" rx="2" ry="2" />
+<text x="770.19" y="6143.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>count (1 samples, 0.04%)</title><rect x="241.7" y="6485" width="0.4" height="15.0" fill="rgb(245,15,13)" rx="2" ry="2" />
+<text x="244.73" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="301.2" y="4853" width="0.4" height="15.0" fill="rgb(229,99,39)" rx="2" ry="2" />
+<text x="304.23" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4245" width="0.4" height="15.0" fill="rgb(212,13,6)" rx="2" ry="2" />
+<text x="1120.51" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="767.2" y="5365" width="1.3" height="15.0" fill="rgb(234,1,25)" rx="2" ry="2" />
+<text x="770.19" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (15 samples, 0.53%)</title><rect x="413.5" y="5061" width="6.3" height="15.0" fill="rgb(226,86,32)" rx="2" ry="2" />
+<text x="416.53" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="742.9" y="5173" width="0.4" height="15.0" fill="rgb(245,211,42)" rx="2" ry="2" />
+<text x="745.89" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5717" width="0.4" height="15.0" fill="rgb(208,214,16)" rx="2" ry="2" />
+<text x="761.39" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.7" y="5589" width="0.4" height="15.0" fill="rgb(223,137,47)" rx="2" ry="2" />
+<text x="565.71" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.8" y="4853" width="0.4" height="15.0" fill="rgb(210,114,52)" rx="2" ry="2" />
+<text x="321.83" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4469" width="0.4" height="15.0" fill="rgb(244,90,6)" rx="2" ry="2" />
+<text x="412.76" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="434.5" y="4837" width="0.8" height="15.0" fill="rgb(206,4,23)" rx="2" ry="2" />
+<text x="437.48" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="294.1" y="5061" width="7.5" height="15.0" fill="rgb(207,189,5)" rx="2" ry="2" />
+<text x="297.11" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6085" width="0.9" height="15.0" fill="rgb(248,116,51)" rx="2" ry="2" />
+<text x="896.74" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5573" width="0.4" height="15.0" fill="rgb(251,124,9)" rx="2" ry="2" />
+<text x="768.52" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.2" y="5525" width="0.4" height="15.0" fill="rgb(216,152,8)" rx="2" ry="2" />
+<text x="894.23" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (46 samples, 1.63%)</title><rect x="680.5" y="5445" width="19.2" height="15.0" fill="rgb(221,71,19)" rx="2" ry="2" />
+<text x="683.45" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.32%)</title><rect x="521.2" y="5861" width="3.8" height="15.0" fill="rgb(219,209,6)" rx="2" ry="2" />
+<text x="524.22" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="318.4" y="4837" width="0.4" height="15.0" fill="rgb(215,146,15)" rx="2" ry="2" />
+<text x="321.41" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5301" width="0.4" height="15.0" fill="rgb(244,50,38)" rx="2" ry="2" />
+<text x="520.87" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5813" width="0.4" height="15.0" fill="rgb(208,204,39)" rx="2" ry="2" />
+<text x="523.38" y="5823.5" ></text>
+</g>
+<g >
+<title>assert (2 samples, 0.07%)</title><rect x="1125.5" y="6549" width="0.8" height="15.0" fill="rgb(245,105,54)" rx="2" ry="2" />
+<text x="1128.47" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="251.4" y="5685" width="0.4" height="15.0" fill="rgb(245,40,8)" rx="2" ry="2" />
+<text x="254.36" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="685.1" y="5301" width="3.7" height="15.0" fill="rgb(236,43,0)" rx="2" ry="2" />
+<text x="688.06" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.7" y="5973" width="0.5" height="15.0" fill="rgb(209,210,46)" rx="2" ry="2" />
+<text x="764.75" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4405" width="0.8" height="15.0" fill="rgb(253,209,6)" rx="2" ry="2" />
+<text x="429.10" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="836.8" y="5525" width="0.4" height="15.0" fill="rgb(253,60,11)" rx="2" ry="2" />
+<text x="839.75" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="305.4" y="5077" width="4.6" height="15.0" fill="rgb(231,215,27)" rx="2" ry="2" />
+<text x="308.42" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4389" width="0.4" height="15.0" fill="rgb(226,206,6)" rx="2" ry="2" />
+<text x="1073.99" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (76 samples, 2.70%)</title><rect x="1089.4" y="6549" width="31.9" height="15.0" fill="rgb(222,56,4)" rx="2" ry="2" />
+<text x="1092.43" y="6559.5" >Ns..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5381" width="0.5" height="15.0" fill="rgb(212,215,37)" rx="2" ry="2" />
+<text x="879.14" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.9" y="5109" width="0.4" height="15.0" fill="rgb(235,58,44)" rx="2" ry="2" />
+<text x="486.93" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5717" width="0.4" height="15.0" fill="rgb(240,118,46)" rx="2" ry="2" />
+<text x="524.22" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (18 samples, 0.64%)</title><rect x="140.3" y="6469" width="7.6" height="15.0" fill="rgb(228,153,17)" rx="2" ry="2" />
+<text x="143.32" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4437" width="0.5" height="15.0" fill="rgb(249,57,41)" rx="2" ry="2" />
+<text x="480.64" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="749.2" y="5189" width="0.8" height="15.0" fill="rgb(212,78,28)" rx="2" ry="2" />
+<text x="752.18" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="462.6" y="4949" width="3.3" height="15.0" fill="rgb(210,78,13)" rx="2" ry="2" />
+<text x="465.56" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4645" width="0.4" height="15.0" fill="rgb(215,144,24)" rx="2" ry="2" />
+<text x="412.76" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="812.9" y="5653" width="4.2" height="15.0" fill="rgb(243,84,39)" rx="2" ry="2" />
+<text x="815.87" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4565" width="0.8" height="15.0" fill="rgb(228,89,49)" rx="2" ry="2" />
+<text x="429.10" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5605" width="0.5" height="15.0" fill="rgb(210,217,22)" rx="2" ry="2" />
+<text x="573.25" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="472.6" y="5109" width="7.1" height="15.0" fill="rgb(210,201,8)" rx="2" ry="2" />
+<text x="475.61" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="476.4" y="4949" width="2.9" height="15.0" fill="rgb(208,49,31)" rx="2" ry="2" />
+<text x="479.38" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1029" width="0.4" height="15.0" fill="rgb(212,7,52)" rx="2" ry="2" />
+<text x="546.43" y="1039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5733" width="0.4" height="15.0" fill="rgb(244,68,10)" rx="2" ry="2" />
+<text x="772.71" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.7" y="5221" width="0.4" height="15.0" fill="rgb(235,91,43)" rx="2" ry="2" />
+<text x="485.67" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (113 samples, 4.01%)</title><rect x="773.9" y="5829" width="47.3" height="15.0" fill="rgb(231,188,0)" rx="2" ry="2" />
+<text x="776.90" y="5839.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="515.8" y="5125" width="1.7" height="15.0" fill="rgb(226,50,26)" rx="2" ry="2" />
+<text x="518.77" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="302.9" y="5125" width="0.4" height="15.0" fill="rgb(249,107,11)" rx="2" ry="2" />
+<text x="305.90" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5525" width="0.4" height="15.0" fill="rgb(206,156,15)" rx="2" ry="2" />
+<text x="761.39" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5157" width="0.4" height="15.0" fill="rgb(250,152,26)" rx="2" ry="2" />
+<text x="760.98" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6005" width="0.8" height="15.0" fill="rgb(212,29,27)" rx="2" ry="2" />
+<text x="1120.09" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="535.0" y="5557" width="0.5" height="15.0" fill="rgb(216,197,8)" rx="2" ry="2" />
+<text x="538.05" y="5567.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3237" width="0.4" height="15.0" fill="rgb(231,178,2)" rx="2" ry="2" />
+<text x="546.43" y="3247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="318.0" y="4869" width="1.2" height="15.0" fill="rgb(227,136,4)" rx="2" ry="2" />
+<text x="320.99" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (62 samples, 2.20%)</title><rect x="532.5" y="5765" width="26.0" height="15.0" fill="rgb(224,84,8)" rx="2" ry="2" />
+<text x="535.54" y="5775.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5765" width="0.4" height="15.0" fill="rgb(206,37,5)" rx="2" ry="2" />
+<text x="761.39" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.0" y="4773" width="0.4" height="15.0" fill="rgb(208,161,27)" rx="2" ry="2" />
+<text x="328.95" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="368.7" y="4741" width="0.4" height="15.0" fill="rgb(218,126,49)" rx="2" ry="2" />
+<text x="371.69" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6309" width="0.9" height="15.0" fill="rgb(218,132,26)" rx="2" ry="2" />
+<text x="896.74" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4901" width="0.8" height="15.0" fill="rgb(245,211,31)" rx="2" ry="2" />
+<text x="276.99" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="502.8" y="5221" width="8.4" height="15.0" fill="rgb(217,79,38)" rx="2" ry="2" />
+<text x="505.78" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5301" width="0.4" height="15.0" fill="rgb(250,28,30)" rx="2" ry="2" />
+<text x="685.13" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="265.6" y="5045" width="0.4" height="15.0" fill="rgb(242,102,25)" rx="2" ry="2" />
+<text x="268.61" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="763.0" y="6309" width="2.9" height="15.0" fill="rgb(226,149,40)" rx="2" ry="2" />
+<text x="766.00" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="328.5" y="4853" width="0.4" height="15.0" fill="rgb(237,220,26)" rx="2" ry="2" />
+<text x="331.47" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="509.1" y="5061" width="0.4" height="15.0" fill="rgb(231,9,0)" rx="2" ry="2" />
+<text x="512.07" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (168 samples, 5.97%)</title><rect x="822.5" y="5813" width="70.4" height="15.0" fill="rgb(207,120,40)" rx="2" ry="2" />
+<text x="825.51" y="5823.5" >Nsfisis..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4789" width="0.4" height="15.0" fill="rgb(245,179,41)" rx="2" ry="2" />
+<text x="546.43" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="1069.7" y="6293" width="1.7" height="15.0" fill="rgb(225,159,23)" rx="2" ry="2" />
+<text x="1072.74" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4453" width="5.8" height="15.0" fill="rgb(235,49,0)" rx="2" ry="2" />
+<text x="490.28" y="4463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3861" width="0.4" height="15.0" fill="rgb(207,188,13)" rx="2" ry="2" />
+<text x="437.90" y="3871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="5909" width="0.4" height="15.0" fill="rgb(223,91,48)" rx="2" ry="2" />
+<text x="768.52" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="342.3" y="5141" width="0.4" height="15.0" fill="rgb(232,222,29)" rx="2" ry="2" />
+<text x="345.29" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.3" y="5733" width="0.4" height="15.0" fill="rgb(240,220,10)" rx="2" ry="2" />
+<text x="767.26" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (25 samples, 0.89%)</title><rect x="483.9" y="5317" width="10.5" height="15.0" fill="rgb(254,175,33)" rx="2" ry="2" />
+<text x="486.93" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="803.2" y="5637" width="0.5" height="15.0" fill="rgb(233,220,30)" rx="2" ry="2" />
+<text x="806.23" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2245" width="0.4" height="15.0" fill="rgb(211,63,35)" rx="2" ry="2" />
+<text x="437.90" y="2255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4469" width="5.8" height="15.0" fill="rgb(229,151,32)" rx="2" ry="2" />
+<text x="490.28" y="4479.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2949" width="0.4" height="15.0" fill="rgb(242,23,45)" rx="2" ry="2" />
+<text x="437.90" y="2959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="297.0" y="4949" width="0.5" height="15.0" fill="rgb(225,162,0)" rx="2" ry="2" />
+<text x="300.04" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3685" width="0.4" height="15.0" fill="rgb(217,96,8)" rx="2" ry="2" />
+<text x="546.43" y="3695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (142 samples, 5.04%)</title><rect x="387.1" y="5141" width="59.5" height="15.0" fill="rgb(213,193,14)" rx="2" ry="2" />
+<text x="390.13" y="5151.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="283.2" y="5077" width="1.3" height="15.0" fill="rgb(222,55,43)" rx="2" ry="2" />
+<text x="286.21" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (38 samples, 1.35%)</title><rect x="313.0" y="5045" width="15.9" height="15.0" fill="rgb(254,68,13)" rx="2" ry="2" />
+<text x="315.96" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="762.6" y="5925" width="0.4" height="15.0" fill="rgb(250,31,34)" rx="2" ry="2" />
+<text x="765.59" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="736.6" y="5189" width="0.4" height="15.0" fill="rgb(224,123,19)" rx="2" ry="2" />
+<text x="739.61" y="5199.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2101" width="0.4" height="15.0" fill="rgb(246,131,29)" rx="2" ry="2" />
+<text x="546.43" y="2111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4965" width="0.4" height="15.0" fill="rgb(205,187,35)" rx="2" ry="2" />
+<text x="1073.99" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="713.6" y="5237" width="0.4" height="15.0" fill="rgb(233,127,18)" rx="2" ry="2" />
+<text x="716.56" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4997" width="0.8" height="15.0" fill="rgb(215,16,16)" rx="2" ry="2" />
+<text x="1120.09" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="338.9" y="4789" width="2.1" height="15.0" fill="rgb(236,186,48)" rx="2" ry="2" />
+<text x="341.94" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5317" width="0.4" height="15.0" fill="rgb(208,229,20)" rx="2" ry="2" />
+<text x="497.40" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (194 samples, 6.89%)</title><rect x="675.8" y="5781" width="81.3" height="15.0" fill="rgb(225,227,25)" rx="2" ry="2" />
+<text x="678.85" y="5791.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5493" width="0.4" height="15.0" fill="rgb(232,1,5)" rx="2" ry="2" />
+<text x="563.19" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="300.0" y="4981" width="1.6" height="15.0" fill="rgb(236,179,11)" rx="2" ry="2" />
+<text x="302.97" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="5717" width="0.9" height="15.0" fill="rgb(238,216,41)" rx="2" ry="2" />
+<text x="896.74" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="1109.1" y="6389" width="9.2" height="15.0" fill="rgb(230,40,52)" rx="2" ry="2" />
+<text x="1112.13" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5877" width="1.3" height="15.0" fill="rgb(210,95,54)" rx="2" ry="2" />
+<text x="760.14" y="5887.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:516-533) (7 samples, 0.25%)</title><rect x="758.8" y="6037" width="2.9" height="15.0" fill="rgb(221,79,54)" rx="2" ry="2" />
+<text x="761.81" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="1061.8" y="6437" width="10.0" height="15.0" fill="rgb(238,117,48)" rx="2" ry="2" />
+<text x="1064.78" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5477" width="0.4" height="15.0" fill="rgb(214,164,26)" rx="2" ry="2" />
+<text x="561.10" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="333.5" y="4677" width="0.4" height="15.0" fill="rgb(211,107,18)" rx="2" ry="2" />
+<text x="336.49" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="337.3" y="4885" width="3.7" height="15.0" fill="rgb(239,206,18)" rx="2" ry="2" />
+<text x="340.27" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4597" width="0.4" height="15.0" fill="rgb(248,61,21)" rx="2" ry="2" />
+<text x="437.90" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="345.2" y="4981" width="0.4" height="15.0" fill="rgb(235,54,51)" rx="2" ry="2" />
+<text x="348.23" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5573" width="0.5" height="15.0" fill="rgb(252,200,19)" rx="2" ry="2" />
+<text x="894.65" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="1055.5" y="6517" width="17.6" height="15.0" fill="rgb(247,80,0)" rx="2" ry="2" />
+<text x="1058.49" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="390.1" y="4965" width="0.4" height="15.0" fill="rgb(219,128,50)" rx="2" ry="2" />
+<text x="393.06" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="441.2" y="4693" width="5.0" height="15.0" fill="rgb(247,108,42)" rx="2" ry="2" />
+<text x="444.19" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6149" width="2.1" height="15.0" fill="rgb(251,182,50)" rx="2" ry="2" />
+<text x="251.01" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="300.8" y="4901" width="0.8" height="15.0" fill="rgb(240,49,11)" rx="2" ry="2" />
+<text x="303.81" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (16 samples, 0.57%)</title><rect x="486.9" y="5157" width="6.7" height="15.0" fill="rgb(231,198,30)" rx="2" ry="2" />
+<text x="489.86" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5237" width="0.4" height="15.0" fill="rgb(245,42,14)" rx="2" ry="2" />
+<text x="896.32" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="563.1" y="5621" width="4.2" height="15.0" fill="rgb(244,191,11)" rx="2" ry="2" />
+<text x="566.12" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="487.3" y="4693" width="6.3" height="15.0" fill="rgb(242,53,37)" rx="2" ry="2" />
+<text x="490.28" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="1120.4" y="6517" width="0.9" height="15.0" fill="rgb(231,103,34)" rx="2" ry="2" />
+<text x="1123.44" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="561.9" y="5493" width="0.4" height="15.0" fill="rgb(243,202,3)" rx="2" ry="2" />
+<text x="564.87" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (4 samples, 0.14%)</title><rect x="1044.2" y="6517" width="1.7" height="15.0" fill="rgb(221,111,9)" rx="2" ry="2" />
+<text x="1047.18" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.7" y="5653" width="0.4" height="15.0" fill="rgb(215,153,27)" rx="2" ry="2" />
+<text x="767.68" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="769.7" y="5653" width="0.4" height="15.0" fill="rgb(206,94,2)" rx="2" ry="2" />
+<text x="772.71" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5973" width="0.4" height="15.0" fill="rgb(221,186,10)" rx="2" ry="2" />
+<text x="1073.99" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="456.3" y="5029" width="1.2" height="15.0" fill="rgb(249,75,9)" rx="2" ry="2" />
+<text x="459.27" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5365" width="0.4" height="15.0" fill="rgb(219,44,26)" rx="2" ry="2" />
+<text x="1073.99" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1063.9" y="6405" width="0.4" height="15.0" fill="rgb(205,9,12)" rx="2" ry="2" />
+<text x="1066.87" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1063.9" y="6373" width="0.4" height="15.0" fill="rgb(227,20,17)" rx="2" ry="2" />
+<text x="1066.87" y="6383.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="853" width="0.4" height="15.0" fill="rgb(229,159,32)" rx="2" ry="2" />
+<text x="546.43" y="863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4133" width="0.4" height="15.0" fill="rgb(248,189,35)" rx="2" ry="2" />
+<text x="437.90" y="4143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="714.4" y="5269" width="0.4" height="15.0" fill="rgb(205,73,49)" rx="2" ry="2" />
+<text x="717.40" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="409.3" y="4869" width="2.1" height="15.0" fill="rgb(231,203,32)" rx="2" ry="2" />
+<text x="412.34" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="486.4" y="5237" width="8.0" height="15.0" fill="rgb(224,93,47)" rx="2" ry="2" />
+<text x="489.44" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="818.7" y="5637" width="1.7" height="15.0" fill="rgb(244,176,32)" rx="2" ry="2" />
+<text x="821.74" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2965" width="0.4" height="15.0" fill="rgb(233,6,12)" rx="2" ry="2" />
+<text x="546.43" y="2975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3909" width="5.0" height="15.0" fill="rgb(231,78,54)" rx="2" ry="2" />
+<text x="491.12" y="3919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4693" width="0.8" height="15.0" fill="rgb(235,74,18)" rx="2" ry="2" />
+<text x="512.91" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="342.3" y="5093" width="0.4" height="15.0" fill="rgb(249,55,35)" rx="2" ry="2" />
+<text x="345.29" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4533" width="0.4" height="15.0" fill="rgb(233,66,24)" rx="2" ry="2" />
+<text x="546.43" y="4543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4757" width="0.4" height="15.0" fill="rgb(233,226,35)" rx="2" ry="2" />
+<text x="546.43" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4869" width="0.5" height="15.0" fill="rgb(220,158,42)" rx="2" ry="2" />
+<text x="469.75" y="4879.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1145.2" y="6501" width="0.4" height="15.0" fill="rgb(251,175,24)" rx="2" ry="2" />
+<text x="1148.16" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="758.8" y="5973" width="2.9" height="15.0" fill="rgb(234,74,2)" rx="2" ry="2" />
+<text x="761.81" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="892.5" y="5573" width="0.4" height="15.0" fill="rgb(232,101,3)" rx="2" ry="2" />
+<text x="895.49" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5957" width="0.4" height="15.0" fill="rgb(221,172,16)" rx="2" ry="2" />
+<text x="766.00" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4581" width="0.9" height="15.0" fill="rgb(243,171,47)" rx="2" ry="2" />
+<text x="443.35" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5845" width="0.4" height="15.0" fill="rgb(218,216,3)" rx="2" ry="2" />
+<text x="772.71" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="747.9" y="5013" width="0.9" height="15.0" fill="rgb(230,173,14)" rx="2" ry="2" />
+<text x="750.92" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.4" y="4709" width="0.4" height="15.0" fill="rgb(240,116,45)" rx="2" ry="2" />
+<text x="329.37" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1161.9" y="6533" width="1.3" height="15.0" fill="rgb(224,80,15)" rx="2" ry="2" />
+<text x="1164.92" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.9" y="5221" width="0.4" height="15.0" fill="rgb(217,74,9)" rx="2" ry="2" />
+<text x="486.93" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4853" width="6.7" height="15.0" fill="rgb(242,158,26)" rx="2" ry="2" />
+<text x="489.86" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="376.7" y="4981" width="1.2" height="15.0" fill="rgb(249,33,8)" rx="2" ry="2" />
+<text x="379.65" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="332.2" y="4933" width="2.1" height="15.0" fill="rgb(234,75,19)" rx="2" ry="2" />
+<text x="335.24" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (32 samples, 1.14%)</title><rect x="432.8" y="4933" width="13.4" height="15.0" fill="rgb(254,34,8)" rx="2" ry="2" />
+<text x="435.81" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="435.3" y="4853" width="1.3" height="15.0" fill="rgb(239,134,39)" rx="2" ry="2" />
+<text x="438.32" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="526.7" y="5253" width="0.4" height="15.0" fill="rgb(254,75,28)" rx="2" ry="2" />
+<text x="529.67" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="338.5" y="4837" width="2.5" height="15.0" fill="rgb(227,148,19)" rx="2" ry="2" />
+<text x="341.52" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1047.9" y="6421" width="0.5" height="15.0" fill="rgb(236,84,44)" rx="2" ry="2" />
+<text x="1050.95" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4373" width="0.4" height="15.0" fill="rgb(243,46,43)" rx="2" ry="2" />
+<text x="437.90" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5621" width="2.5" height="15.0" fill="rgb(214,202,33)" rx="2" ry="2" />
+<text x="770.19" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4965" width="0.8" height="15.0" fill="rgb(230,40,31)" rx="2" ry="2" />
+<text x="512.91" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1145.6" y="6501" width="0.4" height="15.0" fill="rgb(234,217,30)" rx="2" ry="2" />
+<text x="1148.58" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="1066.8" y="6341" width="4.6" height="15.0" fill="rgb(210,186,25)" rx="2" ry="2" />
+<text x="1069.80" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="880.3" y="5653" width="10.5" height="15.0" fill="rgb(254,151,54)" rx="2" ry="2" />
+<text x="883.33" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="484.8" y="5189" width="1.6" height="15.0" fill="rgb(231,39,48)" rx="2" ry="2" />
+<text x="487.77" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="5013" width="1.3" height="15.0" fill="rgb(241,173,52)" rx="2" ry="2" />
+<text x="348.65" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.7" y="5797" width="0.4" height="15.0" fill="rgb(236,16,30)" rx="2" ry="2" />
+<text x="767.68" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeExpr (3 samples, 0.11%)</title><rect x="10.4" y="6485" width="1.3" height="15.0" fill="rgb(222,36,38)" rx="2" ry="2" />
+<text x="13.42" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1123.0" y="6517" width="0.4" height="15.0" fill="rgb(230,73,12)" rx="2" ry="2" />
+<text x="1125.95" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4805" width="0.5" height="15.0" fill="rgb(240,175,54)" rx="2" ry="2" />
+<text x="489.44" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4389" width="5.8" height="15.0" fill="rgb(251,173,25)" rx="2" ry="2" />
+<text x="490.28" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="761.3" y="5797" width="0.4" height="15.0" fill="rgb(227,27,18)" rx="2" ry="2" />
+<text x="764.33" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.0" y="4725" width="0.4" height="15.0" fill="rgb(220,23,26)" rx="2" ry="2" />
+<text x="427.01" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="321.8" y="4837" width="0.8" height="15.0" fill="rgb(219,146,43)" rx="2" ry="2" />
+<text x="324.76" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="279.9" y="4933" width="1.2" height="15.0" fill="rgb(224,112,49)" rx="2" ry="2" />
+<text x="282.86" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4341" width="0.4" height="15.0" fill="rgb(236,153,13)" rx="2" ry="2" />
+<text x="437.90" y="4351.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1541" width="0.4" height="15.0" fill="rgb(239,24,11)" rx="2" ry="2" />
+<text x="546.43" y="1551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="458.8" y="5205" width="8.4" height="15.0" fill="rgb(224,113,9)" rx="2" ry="2" />
+<text x="461.79" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="558.1" y="5381" width="0.4" height="15.0" fill="rgb(252,124,4)" rx="2" ry="2" />
+<text x="561.10" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="828.4" y="5701" width="2.9" height="15.0" fill="rgb(209,8,6)" rx="2" ry="2" />
+<text x="831.37" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5669" width="0.4" height="15.0" fill="rgb(217,1,26)" rx="2" ry="2" />
+<text x="766.00" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="287.8" y="5109" width="0.9" height="15.0" fill="rgb(231,217,44)" rx="2" ry="2" />
+<text x="290.82" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="4949" width="0.5" height="15.0" fill="rgb(253,45,50)" rx="2" ry="2" />
+<text x="716.14" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5749" width="101.8" height="15.0" fill="rgb(239,212,50)" rx="2" ry="2" />
+<text x="577.02" y="5759.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="878.2" y="5589" width="0.5" height="15.0" fill="rgb(215,173,26)" rx="2" ry="2" />
+<text x="881.24" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="333.5" y="4789" width="0.4" height="15.0" fill="rgb(205,119,14)" rx="2" ry="2" />
+<text x="336.49" y="4799.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2693" width="0.4" height="15.0" fill="rgb(251,47,29)" rx="2" ry="2" />
+<text x="546.43" y="2703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="275.2" y="4773" width="0.5" height="15.0" fill="rgb(214,150,19)" rx="2" ry="2" />
+<text x="278.25" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="501.9" y="5093" width="0.9" height="15.0" fill="rgb(217,130,45)" rx="2" ry="2" />
+<text x="504.95" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="756.7" y="5381" width="0.4" height="15.0" fill="rgb(230,44,19)" rx="2" ry="2" />
+<text x="759.72" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="282.8" y="5077" width="0.4" height="15.0" fill="rgb(212,125,40)" rx="2" ry="2" />
+<text x="285.79" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="423.2" y="4789" width="0.8" height="15.0" fill="rgb(251,186,36)" rx="2" ry="2" />
+<text x="426.17" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="456.3" y="5077" width="1.2" height="15.0" fill="rgb(253,173,34)" rx="2" ry="2" />
+<text x="459.27" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="274.8" y="5013" width="7.6" height="15.0" fill="rgb(208,53,0)" rx="2" ry="2" />
+<text x="277.83" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="361.2" y="5077" width="9.2" height="15.0" fill="rgb(235,173,5)" rx="2" ry="2" />
+<text x="364.15" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6069" width="2.1" height="15.0" fill="rgb(208,183,27)" rx="2" ry="2" />
+<text x="251.01" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4037" width="0.4" height="15.0" fill="rgb(222,45,23)" rx="2" ry="2" />
+<text x="467.65" y="4047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="509.1" y="5141" width="0.4" height="15.0" fill="rgb(225,84,28)" rx="2" ry="2" />
+<text x="512.07" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="570.2" y="5765" width="0.5" height="15.0" fill="rgb(232,8,0)" rx="2" ry="2" />
+<text x="573.25" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.7" y="6421" width="0.4" height="15.0" fill="rgb(247,195,25)" rx="2" ry="2" />
+<text x="1101.65" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="462.6" y="4917" width="3.3" height="15.0" fill="rgb(235,211,19)" rx="2" ry="2" />
+<text x="465.56" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="248.0" y="6229" width="2.1" height="15.0" fill="rgb(235,5,27)" rx="2" ry="2" />
+<text x="251.01" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4149" width="5.4" height="15.0" fill="rgb(230,161,49)" rx="2" ry="2" />
+<text x="490.70" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="346.5" y="4805" width="0.4" height="15.0" fill="rgb(230,199,37)" rx="2" ry="2" />
+<text x="349.48" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5205" width="0.5" height="15.0" fill="rgb(233,83,50)" rx="2" ry="2" />
+<text x="716.14" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="500.7" y="5125" width="0.4" height="15.0" fill="rgb(226,164,41)" rx="2" ry="2" />
+<text x="503.69" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.9" y="4613" width="0.9" height="15.0" fill="rgb(242,203,40)" rx="2" ry="2" />
+<text x="429.94" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.28%)</title><rect x="781.0" y="5365" width="15.1" height="15.0" fill="rgb(222,188,32)" rx="2" ry="2" />
+<text x="784.02" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="520.4" y="5733" width="0.4" height="15.0" fill="rgb(244,87,34)" rx="2" ry="2" />
+<text x="523.38" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="344.4" y="5109" width="1.2" height="15.0" fill="rgb(228,147,41)" rx="2" ry="2" />
+<text x="347.39" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="563.5" y="5589" width="0.5" height="15.0" fill="rgb(234,81,26)" rx="2" ry="2" />
+<text x="566.54" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5877" width="0.4" height="15.0" fill="rgb(217,212,47)" rx="2" ry="2" />
+<text x="768.52" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5413" width="0.4" height="15.0" fill="rgb(250,174,51)" rx="2" ry="2" />
+<text x="561.10" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="291.6" y="5045" width="0.4" height="15.0" fill="rgb(240,21,8)" rx="2" ry="2" />
+<text x="294.59" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6213" width="1.3" height="15.0" fill="rgb(234,204,34)" rx="2" ry="2" />
+<text x="768.94" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="509.1" y="5125" width="0.4" height="15.0" fill="rgb(210,123,49)" rx="2" ry="2" />
+<text x="512.07" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="442.0" y="4677" width="4.2" height="15.0" fill="rgb(241,178,43)" rx="2" ry="2" />
+<text x="445.02" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1074.8" y="6485" width="0.8" height="15.0" fill="rgb(242,3,45)" rx="2" ry="2" />
+<text x="1077.77" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="816.6" y="5573" width="0.5" height="15.0" fill="rgb(249,79,49)" rx="2" ry="2" />
+<text x="819.64" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="1102.8" y="6469" width="0.5" height="15.0" fill="rgb(247,189,4)" rx="2" ry="2" />
+<text x="1105.84" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="748.8" y="5333" width="7.5" height="15.0" fill="rgb(223,50,53)" rx="2" ry="2" />
+<text x="751.76" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.7" y="5157" width="0.4" height="15.0" fill="rgb(250,206,29)" rx="2" ry="2" />
+<text x="485.67" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="458.4" y="5141" width="0.4" height="15.0" fill="rgb(209,17,4)" rx="2" ry="2" />
+<text x="461.37" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4421" width="0.8" height="15.0" fill="rgb(243,183,31)" rx="2" ry="2" />
+<text x="1120.09" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.0" y="4773" width="0.4" height="15.0" fill="rgb(234,51,33)" rx="2" ry="2" />
+<text x="333.98" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="499.4" y="5205" width="3.4" height="15.0" fill="rgb(222,72,21)" rx="2" ry="2" />
+<text x="502.43" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4805" width="0.8" height="15.0" fill="rgb(219,12,37)" rx="2" ry="2" />
+<text x="413.60" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1118.3" y="6325" width="0.5" height="15.0" fill="rgb(252,112,1)" rx="2" ry="2" />
+<text x="1121.35" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="803.7" y="5653" width="1.2" height="15.0" fill="rgb(228,166,41)" rx="2" ry="2" />
+<text x="806.65" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1122.1" y="6485" width="0.4" height="15.0" fill="rgb(219,53,49)" rx="2" ry="2" />
+<text x="1125.12" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="273.2" y="4965" width="1.6" height="15.0" fill="rgb(244,192,4)" rx="2" ry="2" />
+<text x="276.15" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5557" width="2.5" height="15.0" fill="rgb(225,8,2)" rx="2" ry="2" />
+<text x="770.19" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="761.3" y="5701" width="0.4" height="15.0" fill="rgb(253,162,51)" rx="2" ry="2" />
+<text x="764.33" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="460.5" y="4917" width="0.4" height="15.0" fill="rgb(214,181,17)" rx="2" ry="2" />
+<text x="463.46" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="460.0" y="5029" width="1.3" height="15.0" fill="rgb(220,78,25)" rx="2" ry="2" />
+<text x="463.04" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2261" width="0.4" height="15.0" fill="rgb(223,171,8)" rx="2" ry="2" />
+<text x="437.90" y="2271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (2 samples, 0.07%)</title><rect x="893.7" y="5829" width="0.9" height="15.0" fill="rgb(227,68,54)" rx="2" ry="2" />
+<text x="896.74" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4693" width="0.4" height="15.0" fill="rgb(237,196,33)" rx="2" ry="2" />
+<text x="496.98" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4501" width="0.4" height="15.0" fill="rgb(214,193,36)" rx="2" ry="2" />
+<text x="412.76" y="4511.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3189" width="0.4" height="15.0" fill="rgb(227,105,7)" rx="2" ry="2" />
+<text x="546.43" y="3199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (97 samples, 3.44%)</title><rect x="838.0" y="5621" width="40.7" height="15.0" fill="rgb(245,158,27)" rx="2" ry="2" />
+<text x="841.01" y="5631.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="354.0" y="5269" width="0.4" height="15.0" fill="rgb(224,85,48)" rx="2" ry="2" />
+<text x="357.03" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3845" width="0.4" height="15.0" fill="rgb(217,103,19)" rx="2" ry="2" />
+<text x="437.90" y="3855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4005" width="0.4" height="15.0" fill="rgb(205,113,52)" rx="2" ry="2" />
+<text x="1120.51" y="4015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5269" width="1.6" height="15.0" fill="rgb(208,36,13)" rx="2" ry="2" />
+<text x="545.17" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2085" width="0.4" height="15.0" fill="rgb(230,197,8)" rx="2" ry="2" />
+<text x="546.43" y="2095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="420.2" y="4981" width="1.3" height="15.0" fill="rgb(254,155,30)" rx="2" ry="2" />
+<text x="423.23" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="328.5" y="4837" width="0.4" height="15.0" fill="rgb(207,51,37)" rx="2" ry="2" />
+<text x="331.47" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="247.2" y="6309" width="2.9" height="15.0" fill="rgb(246,173,31)" rx="2" ry="2" />
+<text x="250.17" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="511.6" y="5205" width="1.7" height="15.0" fill="rgb(242,108,18)" rx="2" ry="2" />
+<text x="514.58" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6181" width="2.1" height="15.0" fill="rgb(208,66,19)" rx="2" ry="2" />
+<text x="251.01" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="423.6" y="4645" width="0.4" height="15.0" fill="rgb(221,119,42)" rx="2" ry="2" />
+<text x="426.59" y="4655.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3701" width="0.4" height="15.0" fill="rgb(237,195,52)" rx="2" ry="2" />
+<text x="546.43" y="3711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="454.2" y="5141" width="0.8" height="15.0" fill="rgb(240,138,40)" rx="2" ry="2" />
+<text x="457.18" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="265.6" y="5077" width="0.4" height="15.0" fill="rgb(239,50,33)" rx="2" ry="2" />
+<text x="268.61" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="344.8" y="5029" width="0.4" height="15.0" fill="rgb(238,160,19)" rx="2" ry="2" />
+<text x="347.81" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.8" y="4821" width="0.4" height="15.0" fill="rgb(232,40,37)" rx="2" ry="2" />
+<text x="321.83" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="281.1" y="4757" width="0.4" height="15.0" fill="rgb(217,118,34)" rx="2" ry="2" />
+<text x="284.12" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (232 samples, 8.24%)</title><rect x="578.6" y="5253" width="97.2" height="15.0" fill="rgb(222,20,45)" rx="2" ry="2" />
+<text x="581.63" y="5263.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4837" width="0.4" height="15.0" fill="rgb(227,166,31)" rx="2" ry="2" />
+<text x="546.43" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="665.0" y="5205" width="0.4" height="15.0" fill="rgb(248,112,35)" rx="2" ry="2" />
+<text x="667.95" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (48 samples, 1.70%)</title><rect x="726.5" y="5269" width="20.2" height="15.0" fill="rgb(222,121,42)" rx="2" ry="2" />
+<text x="729.55" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4757" width="0.8" height="15.0" fill="rgb(250,187,17)" rx="2" ry="2" />
+<text x="512.91" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,546 samples, 54.90%)</title><rect x="246.8" y="6549" width="647.8" height="15.0" fill="rgb(225,163,44)" rx="2" ry="2" />
+<text x="249.75" y="6559.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="347.3" y="5189" width="1.7" height="15.0" fill="rgb(238,84,24)" rx="2" ry="2" />
+<text x="350.32" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="247.6" y="6053" width="0.4" height="15.0" fill="rgb(217,191,0)" rx="2" ry="2" />
+<text x="250.59" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4389" width="0.8" height="15.0" fill="rgb(232,54,9)" rx="2" ry="2" />
+<text x="429.10" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1123.0" y="6453" width="0.4" height="15.0" fill="rgb(229,75,17)" rx="2" ry="2" />
+<text x="1125.95" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="830.9" y="5589" width="0.4" height="15.0" fill="rgb(205,160,10)" rx="2" ry="2" />
+<text x="833.89" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="249.7" y="5989" width="0.4" height="15.0" fill="rgb(210,158,48)" rx="2" ry="2" />
+<text x="252.69" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="264.8" y="5109" width="2.5" height="15.0" fill="rgb(206,195,34)" rx="2" ry="2" />
+<text x="267.77" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="278.6" y="4661" width="0.4" height="15.0" fill="rgb(221,80,34)" rx="2" ry="2" />
+<text x="281.60" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2533" width="0.4" height="15.0" fill="rgb(236,5,13)" rx="2" ry="2" />
+<text x="437.90" y="2543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5125" width="1.6" height="15.0" fill="rgb(246,123,38)" rx="2" ry="2" />
+<text x="545.17" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="5125" width="0.5" height="15.0" fill="rgb(250,82,18)" rx="2" ry="2" />
+<text x="469.75" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5525" width="0.4" height="15.0" fill="rgb(243,66,19)" rx="2" ry="2" />
+<text x="896.32" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5621" width="0.4" height="15.0" fill="rgb(237,6,18)" rx="2" ry="2" />
+<text x="772.71" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4565" width="0.4" height="15.0" fill="rgb(228,156,40)" rx="2" ry="2" />
+<text x="546.43" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5829" width="0.4" height="15.0" fill="rgb(254,180,0)" rx="2" ry="2" />
+<text x="766.00" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="765.5" y="6085" width="0.4" height="15.0" fill="rgb(211,29,21)" rx="2" ry="2" />
+<text x="768.52" y="6095.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="383.8" y="5045" width="0.4" height="15.0" fill="rgb(238,191,51)" rx="2" ry="2" />
+<text x="386.78" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5381" width="0.4" height="15.0" fill="rgb(249,107,54)" rx="2" ry="2" />
+<text x="1073.99" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="542.6" y="4965" width="1.2" height="15.0" fill="rgb(229,213,8)" rx="2" ry="2" />
+<text x="545.59" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3157" width="0.4" height="15.0" fill="rgb(234,15,47)" rx="2" ry="2" />
+<text x="546.43" y="3167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2933" width="0.4" height="15.0" fill="rgb(240,23,34)" rx="2" ry="2" />
+<text x="546.43" y="2943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="885" width="0.4" height="15.0" fill="rgb(247,119,33)" rx="2" ry="2" />
+<text x="546.43" y="895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="349.0" y="5285" width="0.4" height="15.0" fill="rgb(227,163,0)" rx="2" ry="2" />
+<text x="352.00" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="483.9" y="5301" width="10.5" height="15.0" fill="rgb(242,215,7)" rx="2" ry="2" />
+<text x="486.93" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 1.99%)</title><rect x="495.2" y="5477" width="23.5" height="15.0" fill="rgb(225,120,20)" rx="2" ry="2" />
+<text x="498.24" y="5487.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5397" width="101.8" height="15.0" fill="rgb(205,56,3)" rx="2" ry="2" />
+<text x="577.02" y="5407.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4309" width="0.9" height="15.0" fill="rgb(209,79,17)" rx="2" ry="2" />
+<text x="467.23" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5637" width="0.4" height="15.0" fill="rgb(209,171,25)" rx="2" ry="2" />
+<text x="524.22" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5493" width="0.4" height="15.0" fill="rgb(246,203,54)" rx="2" ry="2" />
+<text x="1073.99" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="890.8" y="5669" width="0.4" height="15.0" fill="rgb(229,123,10)" rx="2" ry="2" />
+<text x="893.81" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="287.8" y="5093" width="0.9" height="15.0" fill="rgb(208,79,44)" rx="2" ry="2" />
+<text x="290.82" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (42 samples, 1.49%)</title><rect x="496.1" y="5381" width="17.6" height="15.0" fill="rgb(252,160,6)" rx="2" ry="2" />
+<text x="499.08" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (23 samples, 0.82%)</title><rect x="292.4" y="5125" width="9.7" height="15.0" fill="rgb(217,195,49)" rx="2" ry="2" />
+<text x="295.43" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="475.5" y="4997" width="0.5" height="15.0" fill="rgb(232,120,53)" rx="2" ry="2" />
+<text x="478.55" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (4 samples, 0.14%)</title><rect x="219.1" y="6469" width="1.7" height="15.0" fill="rgb(231,31,14)" rx="2" ry="2" />
+<text x="222.10" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="413.5" y="5045" width="6.3" height="15.0" fill="rgb(234,160,50)" rx="2" ry="2" />
+<text x="416.53" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5093" width="0.4" height="15.0" fill="rgb(249,183,12)" rx="2" ry="2" />
+<text x="760.98" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5157" width="0.4" height="15.0" fill="rgb(240,1,22)" rx="2" ry="2" />
+<text x="685.13" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.7" y="5589" width="0.5" height="15.0" fill="rgb(207,199,44)" rx="2" ry="2" />
+<text x="896.74" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5637" width="0.4" height="15.0" fill="rgb(229,138,17)" rx="2" ry="2" />
+<text x="897.16" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="555.2" y="5557" width="3.3" height="15.0" fill="rgb(235,8,20)" rx="2" ry="2" />
+<text x="558.16" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="559.4" y="5557" width="0.4" height="15.0" fill="rgb(206,18,28)" rx="2" ry="2" />
+<text x="562.35" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="307.9" y="5013" width="0.5" height="15.0" fill="rgb(247,11,4)" rx="2" ry="2" />
+<text x="310.93" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5461" width="0.4" height="15.0" fill="rgb(252,220,6)" rx="2" ry="2" />
+<text x="529.67" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (25 samples, 0.89%)</title><rect x="809.9" y="5701" width="10.5" height="15.0" fill="rgb(234,141,18)" rx="2" ry="2" />
+<text x="812.94" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (16 samples, 0.57%)</title><rect x="362.0" y="4933" width="6.7" height="15.0" fill="rgb(215,61,15)" rx="2" ry="2" />
+<text x="364.99" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.4" y="4949" width="0.4" height="15.0" fill="rgb(228,71,40)" rx="2" ry="2" />
+<text x="515.42" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="511.6" y="5269" width="1.7" height="15.0" fill="rgb(210,65,31)" rx="2" ry="2" />
+<text x="514.58" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="340.2" y="4613" width="0.8" height="15.0" fill="rgb(237,3,27)" rx="2" ry="2" />
+<text x="343.20" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.0" y="5941" width="0.4" height="15.0" fill="rgb(232,79,17)" rx="2" ry="2" />
+<text x="766.00" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="333.5" y="4821" width="0.4" height="15.0" fill="rgb(215,204,45)" rx="2" ry="2" />
+<text x="336.49" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5301" width="101.8" height="15.0" fill="rgb(225,180,3)" rx="2" ry="2" />
+<text x="577.02" y="5311.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="484.8" y="5093" width="1.6" height="15.0" fill="rgb(238,46,11)" rx="2" ry="2" />
+<text x="487.77" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="176.8" y="6469" width="0.4" height="15.0" fill="rgb(233,130,52)" rx="2" ry="2" />
+<text x="179.78" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4901" width="0.4" height="15.0" fill="rgb(216,3,47)" rx="2" ry="2" />
+<text x="760.98" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="540.9" y="5445" width="2.9" height="15.0" fill="rgb(241,111,12)" rx="2" ry="2" />
+<text x="543.92" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="498.6" y="5221" width="0.4" height="15.0" fill="rgb(254,126,24)" rx="2" ry="2" />
+<text x="501.59" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4293" width="0.4" height="15.0" fill="rgb(243,216,49)" rx="2" ry="2" />
+<text x="546.43" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4565" width="0.5" height="15.0" fill="rgb(215,119,29)" rx="2" ry="2" />
+<text x="480.64" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.2" y="5781" width="0.9" height="15.0" fill="rgb(220,46,18)" rx="2" ry="2" />
+<text x="529.25" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4613" width="0.8" height="15.0" fill="rgb(210,79,47)" rx="2" ry="2" />
+<text x="1120.09" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5701" width="0.4" height="15.0" fill="rgb(226,130,7)" rx="2" ry="2" />
+<text x="524.22" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5941" width="0.4" height="15.0" fill="rgb(243,135,53)" rx="2" ry="2" />
+<text x="523.38" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1065.5" y="6357" width="0.5" height="15.0" fill="rgb(215,123,53)" rx="2" ry="2" />
+<text x="1068.55" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4773" width="0.4" height="15.0" fill="rgb(209,31,3)" rx="2" ry="2" />
+<text x="272.80" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4453" width="0.4" height="15.0" fill="rgb(234,156,7)" rx="2" ry="2" />
+<text x="496.98" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4805" width="0.8" height="15.0" fill="rgb(232,1,50)" rx="2" ry="2" />
+<text x="512.91" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.2" y="5765" width="0.9" height="15.0" fill="rgb(252,170,15)" rx="2" ry="2" />
+<text x="529.25" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.71%)</title><rect x="558.9" y="5733" width="8.4" height="15.0" fill="rgb(210,27,32)" rx="2" ry="2" />
+<text x="561.93" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="247.6" y="6197" width="0.4" height="15.0" fill="rgb(253,131,19)" rx="2" ry="2" />
+<text x="250.59" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.2" y="5621" width="0.9" height="15.0" fill="rgb(254,207,26)" rx="2" ry="2" />
+<text x="529.25" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="573.2" y="5701" width="0.4" height="15.0" fill="rgb(225,53,37)" rx="2" ry="2" />
+<text x="576.18" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4821" width="0.5" height="15.0" fill="rgb(244,68,35)" rx="2" ry="2" />
+<text x="346.13" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="768.0" y="5253" width="0.5" height="15.0" fill="rgb(222,227,36)" rx="2" ry="2" />
+<text x="771.03" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="4917" width="0.9" height="15.0" fill="rgb(205,199,3)" rx="2" ry="2" />
+<text x="345.71" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5077" width="0.4" height="15.0" fill="rgb(223,7,9)" rx="2" ry="2" />
+<text x="760.98" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (198 samples, 7.03%)</title><rect x="675.8" y="6005" width="83.0" height="15.0" fill="rgb(221,33,20)" rx="2" ry="2" />
+<text x="678.85" y="6015.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5493" width="0.4" height="15.0" fill="rgb(227,208,10)" rx="2" ry="2" />
+<text x="896.32" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4821" width="0.4" height="15.0" fill="rgb(212,14,53)" rx="2" ry="2" />
+<text x="272.80" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.2" y="5541" width="0.4" height="15.0" fill="rgb(238,163,13)" rx="2" ry="2" />
+<text x="894.23" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="281.1" y="4725" width="0.4" height="15.0" fill="rgb(214,132,35)" rx="2" ry="2" />
+<text x="284.12" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.4" y="4901" width="0.4" height="15.0" fill="rgb(216,74,29)" rx="2" ry="2" />
+<text x="505.37" y="4911.5" ></text>
+</g>
+<g >
+<title>Composer\Autoload\ClassLoader::loadClass (1 samples, 0.04%)</title><rect x="11.3" y="6389" width="0.4" height="15.0" fill="rgb(244,79,17)" rx="2" ry="2" />
+<text x="14.26" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="481.8" y="5365" width="1.3" height="15.0" fill="rgb(207,143,28)" rx="2" ry="2" />
+<text x="484.83" y="5375.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="245.9" y="6485" width="0.4" height="15.0" fill="rgb(251,90,10)" rx="2" ry="2" />
+<text x="248.92" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="331.0" y="4917" width="0.4" height="15.0" fill="rgb(221,183,0)" rx="2" ry="2" />
+<text x="333.98" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5333" width="0.4" height="15.0" fill="rgb(225,208,48)" rx="2" ry="2" />
+<text x="497.40" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4485" width="0.9" height="15.0" fill="rgb(230,92,23)" rx="2" ry="2" />
+<text x="467.23" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="747.5" y="5237" width="1.3" height="15.0" fill="rgb(251,51,21)" rx="2" ry="2" />
+<text x="750.50" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="512.4" y="5029" width="0.4" height="15.0" fill="rgb(241,94,15)" rx="2" ry="2" />
+<text x="515.42" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5285" width="1.6" height="15.0" fill="rgb(254,40,37)" rx="2" ry="2" />
+<text x="545.17" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="511.6" y="5157" width="1.7" height="15.0" fill="rgb(216,226,24)" rx="2" ry="2" />
+<text x="514.58" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="333.1" y="4853" width="1.2" height="15.0" fill="rgb(223,216,29)" rx="2" ry="2" />
+<text x="336.08" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5077" width="0.4" height="15.0" fill="rgb(229,14,31)" rx="2" ry="2" />
+<text x="896.32" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="739.5" y="5189" width="0.5" height="15.0" fill="rgb(226,62,9)" rx="2" ry="2" />
+<text x="742.54" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (344 samples, 12.22%)</title><rect x="531.7" y="6005" width="144.1" height="15.0" fill="rgb(214,51,13)" rx="2" ry="2" />
+<text x="534.70" y="6015.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (243 samples, 8.63%)</title><rect x="574.0" y="5541" width="101.8" height="15.0" fill="rgb(218,36,42)" rx="2" ry="2" />
+<text x="577.02" y="5551.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="439.5" y="4629" width="1.7" height="15.0" fill="rgb(211,75,45)" rx="2" ry="2" />
+<text x="442.51" y="4639.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:673-682) (2 samples, 0.07%)</title><rect x="457.5" y="4885" width="0.9" height="15.0" fill="rgb(233,116,21)" rx="2" ry="2" />
+<text x="460.53" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="4901" width="0.4" height="15.0" fill="rgb(231,115,16)" rx="2" ry="2" />
+<text x="416.11" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4325" width="0.4" height="15.0" fill="rgb(250,86,14)" rx="2" ry="2" />
+<text x="1073.99" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5701" width="0.4" height="15.0" fill="rgb(209,116,40)" rx="2" ry="2" />
+<text x="1073.99" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4677" width="0.4" height="15.0" fill="rgb(250,94,0)" rx="2" ry="2" />
+<text x="364.57" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4805" width="0.4" height="15.0" fill="rgb(252,227,52)" rx="2" ry="2" />
+<text x="1073.99" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4837" width="0.8" height="15.0" fill="rgb(241,111,22)" rx="2" ry="2" />
+<text x="276.99" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="5157" width="0.4" height="15.0" fill="rgb(226,104,33)" rx="2" ry="2" />
+<text x="475.19" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="515.8" y="5093" width="1.7" height="15.0" fill="rgb(253,180,47)" rx="2" ry="2" />
+<text x="518.77" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="457.5" y="5061" width="0.9" height="15.0" fill="rgb(254,40,3)" rx="2" ry="2" />
+<text x="460.53" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1157" width="0.4" height="15.0" fill="rgb(253,60,49)" rx="2" ry="2" />
+<text x="546.43" y="1167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="541.8" y="5349" width="2.0" height="15.0" fill="rgb(241,169,19)" rx="2" ry="2" />
+<text x="544.75" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1077.3" y="6453" width="0.4" height="15.0" fill="rgb(245,26,52)" rx="2" ry="2" />
+<text x="1080.28" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="1145.2" y="6533" width="0.8" height="15.0" fill="rgb(219,42,16)" rx="2" ry="2" />
+<text x="1148.16" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="361.2" y="5061" width="9.2" height="15.0" fill="rgb(241,67,15)" rx="2" ry="2" />
+<text x="364.15" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1123.4" y="6549" width="0.4" height="15.0" fill="rgb(237,49,0)" rx="2" ry="2" />
+<text x="1126.37" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6517" width="0.5" height="15.0" fill="rgb(253,9,27)" rx="2" ry="2" />
+<text x="1050.95" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="836.8" y="5557" width="0.4" height="15.0" fill="rgb(223,147,6)" rx="2" ry="2" />
+<text x="839.75" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="562.3" y="5525" width="0.4" height="15.0" fill="rgb(249,36,8)" rx="2" ry="2" />
+<text x="565.29" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5045" width="0.8" height="15.0" fill="rgb(225,27,53)" rx="2" ry="2" />
+<text x="1120.09" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="434.5" y="4677" width="0.8" height="15.0" fill="rgb(218,143,54)" rx="2" ry="2" />
+<text x="437.48" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="321.8" y="4885" width="0.8" height="15.0" fill="rgb(252,71,29)" rx="2" ry="2" />
+<text x="324.76" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="800.7" y="5669" width="0.4" height="15.0" fill="rgb(229,42,5)" rx="2" ry="2" />
+<text x="803.72" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="767.2" y="5973" width="2.9" height="15.0" fill="rgb(228,42,22)" rx="2" ry="2" />
+<text x="770.19" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5845" width="0.4" height="15.0" fill="rgb(245,108,44)" rx="2" ry="2" />
+<text x="774.80" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4037" width="0.4" height="15.0" fill="rgb(236,57,45)" rx="2" ry="2" />
+<text x="1120.51" y="4047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5621" width="0.8" height="15.0" fill="rgb(212,126,32)" rx="2" ry="2" />
+<text x="1120.09" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4293" width="0.4" height="15.0" fill="rgb(234,81,29)" rx="2" ry="2" />
+<text x="1120.51" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="553.9" y="5525" width="0.4" height="15.0" fill="rgb(214,210,33)" rx="2" ry="2" />
+<text x="556.91" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="1089.0" y="6533" width="0.4" height="15.0" fill="rgb(210,75,18)" rx="2" ry="2" />
+<text x="1092.01" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="278.6" y="4773" width="0.8" height="15.0" fill="rgb(238,62,34)" rx="2" ry="2" />
+<text x="281.60" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (221 samples, 7.85%)</title><rect x="354.4" y="5269" width="92.7" height="15.0" fill="rgb(232,171,40)" rx="2" ry="2" />
+<text x="357.45" y="5279.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="817.1" y="5669" width="3.3" height="15.0" fill="rgb(217,86,50)" rx="2" ry="2" />
+<text x="820.06" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (62 samples, 2.20%)</title><rect x="532.5" y="5701" width="26.0" height="15.0" fill="rgb(240,31,51)" rx="2" ry="2" />
+<text x="535.54" y="5711.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="4997" width="1.3" height="15.0" fill="rgb(211,205,0)" rx="2" ry="2" />
+<text x="348.65" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5509" width="0.4" height="15.0" fill="rgb(236,163,37)" rx="2" ry="2" />
+<text x="529.67" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5557" width="0.4" height="15.0" fill="rgb(232,25,28)" rx="2" ry="2" />
+<text x="1073.99" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5429" width="0.4" height="15.0" fill="rgb(207,215,35)" rx="2" ry="2" />
+<text x="1073.99" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5189" width="0.4" height="15.0" fill="rgb(213,16,40)" rx="2" ry="2" />
+<text x="760.98" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="747.5" y="5301" width="1.3" height="15.0" fill="rgb(207,178,44)" rx="2" ry="2" />
+<text x="750.50" y="5311.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="457.9" y="4853" width="0.5" height="15.0" fill="rgb(248,106,2)" rx="2" ry="2" />
+<text x="460.95" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="506.6" y="5029" width="0.4" height="15.0" fill="rgb(216,85,17)" rx="2" ry="2" />
+<text x="509.56" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.92%)</title><rect x="390.5" y="5077" width="22.6" height="15.0" fill="rgb(210,199,7)" rx="2" ry="2" />
+<text x="393.48" y="5087.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="747.9" y="4997" width="0.9" height="15.0" fill="rgb(220,84,30)" rx="2" ry="2" />
+<text x="750.92" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3077" width="0.4" height="15.0" fill="rgb(230,144,22)" rx="2" ry="2" />
+<text x="437.90" y="3087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="453.8" y="5141" width="0.4" height="15.0" fill="rgb(240,25,13)" rx="2" ry="2" />
+<text x="456.76" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (19 samples, 0.67%)</title><rect x="438.3" y="4741" width="7.9" height="15.0" fill="rgb(234,7,43)" rx="2" ry="2" />
+<text x="441.25" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.96%)</title><rect x="483.5" y="5349" width="11.3" height="15.0" fill="rgb(221,50,27)" rx="2" ry="2" />
+<text x="486.51" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (45 samples, 1.60%)</title><rect x="680.9" y="5429" width="18.8" height="15.0" fill="rgb(238,216,1)" rx="2" ry="2" />
+<text x="683.87" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="16.3" y="6517" width="0.4" height="15.0" fill="rgb(223,171,10)" rx="2" ry="2" />
+<text x="19.29" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="4981" width="1.3" height="15.0" fill="rgb(252,163,0)" rx="2" ry="2" />
+<text x="348.65" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5013" width="0.4" height="15.0" fill="rgb(211,172,50)" rx="2" ry="2" />
+<text x="1073.99" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="279.9" y="4981" width="2.5" height="15.0" fill="rgb(216,35,48)" rx="2" ry="2" />
+<text x="282.86" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (64 samples, 2.27%)</title><rect x="851.0" y="5589" width="26.8" height="15.0" fill="rgb(243,105,48)" rx="2" ry="2" />
+<text x="854.00" y="5599.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5333" width="0.4" height="15.0" fill="rgb(209,217,49)" rx="2" ry="2" />
+<text x="897.16" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (243 samples, 8.63%)</title><rect x="574.0" y="5365" width="101.8" height="15.0" fill="rgb(245,75,2)" rx="2" ry="2" />
+<text x="577.02" y="5375.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3109" width="0.4" height="15.0" fill="rgb(231,92,37)" rx="2" ry="2" />
+<text x="546.43" y="3119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5717" width="0.8" height="15.0" fill="rgb(224,30,47)" rx="2" ry="2" />
+<text x="1120.09" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="562.3" y="5365" width="0.4" height="15.0" fill="rgb(214,53,46)" rx="2" ry="2" />
+<text x="565.29" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="747.9" y="5157" width="0.9" height="15.0" fill="rgb(217,135,25)" rx="2" ry="2" />
+<text x="750.92" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5925" width="0.9" height="15.0" fill="rgb(226,15,41)" rx="2" ry="2" />
+<text x="896.74" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5381" width="0.8" height="15.0" fill="rgb(215,227,30)" rx="2" ry="2" />
+<text x="528.41" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="340.2" y="4581" width="0.8" height="15.0" fill="rgb(233,177,35)" rx="2" ry="2" />
+<text x="343.20" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.4" y="4837" width="0.4" height="15.0" fill="rgb(250,89,6)" rx="2" ry="2" />
+<text x="505.37" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="1131.8" y="6565" width="0.4" height="15.0" fill="rgb(223,63,16)" rx="2" ry="2" />
+<text x="1134.75" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="893.3" y="5381" width="0.4" height="15.0" fill="rgb(249,207,52)" rx="2" ry="2" />
+<text x="896.32" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6437" width="1.3" height="15.0" fill="rgb(238,6,50)" rx="2" ry="2" />
+<text x="768.94" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="473.5" y="5045" width="5.8" height="15.0" fill="rgb(235,178,7)" rx="2" ry="2" />
+<text x="476.45" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="5109" width="0.4" height="15.0" fill="rgb(225,145,30)" rx="2" ry="2" />
+<text x="475.19" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="799.0" y="5205" width="0.9" height="15.0" fill="rgb(206,63,49)" rx="2" ry="2" />
+<text x="802.04" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="476.4" y="4965" width="2.9" height="15.0" fill="rgb(219,211,52)" rx="2" ry="2" />
+<text x="479.38" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5445" width="0.8" height="15.0" fill="rgb(226,107,53)" rx="2" ry="2" />
+<text x="1120.09" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="1151.4" y="6581" width="0.5" height="15.0" fill="rgb(254,134,30)" rx="2" ry="2" />
+<text x="1154.45" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4677" width="0.8" height="15.0" fill="rgb(208,127,5)" rx="2" ry="2" />
+<text x="512.91" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5605" width="0.4" height="15.0" fill="rgb(221,201,44)" rx="2" ry="2" />
+<text x="766.00" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (644 samples, 22.87%)</title><rect x="250.5" y="6005" width="269.9" height="15.0" fill="rgb(224,108,48)" rx="2" ry="2" />
+<text x="253.53" y="6015.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4629" width="0.4" height="15.0" fill="rgb(224,83,26)" rx="2" ry="2" />
+<text x="329.79" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4629" width="0.8" height="15.0" fill="rgb(225,3,10)" rx="2" ry="2" />
+<text x="512.91" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="513.3" y="5269" width="0.4" height="15.0" fill="rgb(222,34,39)" rx="2" ry="2" />
+<text x="516.26" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (301 samples, 10.69%)</title><rect x="767.2" y="6149" width="126.1" height="15.0" fill="rgb(248,81,17)" rx="2" ry="2" />
+<text x="770.19" y="6159.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="363.2" y="4821" width="5.5" height="15.0" fill="rgb(212,19,38)" rx="2" ry="2" />
+<text x="366.25" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="558.1" y="5397" width="0.4" height="15.0" fill="rgb(222,77,13)" rx="2" ry="2" />
+<text x="561.10" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5141" width="0.4" height="15.0" fill="rgb(218,55,1)" rx="2" ry="2" />
+<text x="497.40" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.9" y="5173" width="0.4" height="15.0" fill="rgb(253,2,1)" rx="2" ry="2" />
+<text x="486.93" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.1" y="5317" width="0.4" height="15.0" fill="rgb(237,32,15)" rx="2" ry="2" />
+<text x="473.10" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="511.6" y="5221" width="1.7" height="15.0" fill="rgb(235,159,14)" rx="2" ry="2" />
+<text x="514.58" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1116.7" y="6213" width="1.2" height="15.0" fill="rgb(210,187,44)" rx="2" ry="2" />
+<text x="1119.67" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="500.7" y="5157" width="0.4" height="15.0" fill="rgb(252,56,12)" rx="2" ry="2" />
+<text x="503.69" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="250.5" y="5845" width="3.0" height="15.0" fill="rgb(211,31,12)" rx="2" ry="2" />
+<text x="253.53" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5157" width="0.4" height="15.0" fill="rgb(214,149,32)" rx="2" ry="2" />
+<text x="520.87" y="5167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1071.4" y="6405" width="0.4" height="15.0" fill="rgb(217,50,25)" rx="2" ry="2" />
+<text x="1074.41" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.4" y="4709" width="0.4" height="15.0" fill="rgb(240,69,39)" rx="2" ry="2" />
+<text x="321.41" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5685" width="0.8" height="15.0" fill="rgb(240,9,11)" rx="2" ry="2" />
+<text x="528.41" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.5" y="5173" width="0.4" height="15.0" fill="rgb(215,73,50)" rx="2" ry="2" />
+<text x="520.45" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.7" y="5541" width="0.4" height="15.0" fill="rgb(227,17,18)" rx="2" ry="2" />
+<text x="565.71" y="5551.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1573" width="0.4" height="15.0" fill="rgb(239,38,2)" rx="2" ry="2" />
+<text x="546.43" y="1583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4549" width="0.4" height="15.0" fill="rgb(245,117,6)" rx="2" ry="2" />
+<text x="437.90" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4581" width="0.4" height="15.0" fill="rgb(235,164,30)" rx="2" ry="2" />
+<text x="463.88" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5669" width="0.4" height="15.0" fill="rgb(228,30,23)" rx="2" ry="2" />
+<text x="774.80" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4661" width="0.8" height="15.0" fill="rgb(205,0,11)" rx="2" ry="2" />
+<text x="429.10" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="300.8" y="4933" width="0.8" height="15.0" fill="rgb(254,117,21)" rx="2" ry="2" />
+<text x="303.81" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4357" width="0.5" height="15.0" fill="rgb(208,216,49)" rx="2" ry="2" />
+<text x="480.64" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5141" width="0.4" height="15.0" fill="rgb(251,84,49)" rx="2" ry="2" />
+<text x="685.13" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2661" width="0.4" height="15.0" fill="rgb(223,24,51)" rx="2" ry="2" />
+<text x="546.43" y="2671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.07%)</title><rect x="1076.4" y="6549" width="0.9" height="15.0" fill="rgb(228,1,30)" rx="2" ry="2" />
+<text x="1079.44" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4501" width="5.8" height="15.0" fill="rgb(236,34,12)" rx="2" ry="2" />
+<text x="490.28" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4821" width="0.4" height="15.0" fill="rgb(222,73,4)" rx="2" ry="2" />
+<text x="1073.99" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="559.4" y="5621" width="0.4" height="15.0" fill="rgb(237,168,1)" rx="2" ry="2" />
+<text x="562.35" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3125" width="0.4" height="15.0" fill="rgb(228,110,42)" rx="2" ry="2" />
+<text x="437.90" y="3135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5893" width="81.3" height="15.0" fill="rgb(229,42,6)" rx="2" ry="2" />
+<text x="678.85" y="5903.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="521.6" y="5797" width="3.4" height="15.0" fill="rgb(250,53,39)" rx="2" ry="2" />
+<text x="524.64" y="5807.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="751.7" y="5173" width="0.4" height="15.0" fill="rgb(221,213,15)" rx="2" ry="2" />
+<text x="754.69" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="369.1" y="4997" width="0.9" height="15.0" fill="rgb(220,22,10)" rx="2" ry="2" />
+<text x="372.11" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4869" width="0.4" height="15.0" fill="rgb(222,41,10)" rx="2" ry="2" />
+<text x="760.98" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="390.1" y="5029" width="0.4" height="15.0" fill="rgb(248,104,22)" rx="2" ry="2" />
+<text x="393.06" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4709" width="0.8" height="15.0" fill="rgb(207,204,8)" rx="2" ry="2" />
+<text x="1120.09" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="301.6" y="5061" width="0.5" height="15.0" fill="rgb(219,204,33)" rx="2" ry="2" />
+<text x="304.65" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="326.4" y="4821" width="0.8" height="15.0" fill="rgb(218,5,44)" rx="2" ry="2" />
+<text x="329.37" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="3989" width="0.4" height="15.0" fill="rgb(225,229,18)" rx="2" ry="2" />
+<text x="467.65" y="3999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="796.5" y="5381" width="0.9" height="15.0" fill="rgb(206,213,18)" rx="2" ry="2" />
+<text x="799.53" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4453" width="0.9" height="15.0" fill="rgb(218,196,6)" rx="2" ry="2" />
+<text x="467.23" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5765" width="0.4" height="15.0" fill="rgb(232,74,31)" rx="2" ry="2" />
+<text x="768.10" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5733" width="0.4" height="15.0" fill="rgb(217,12,52)" rx="2" ry="2" />
+<text x="576.60" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5221" width="0.4" height="15.0" fill="rgb(252,35,26)" rx="2" ry="2" />
+<text x="561.10" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5221" width="0.4" height="15.0" fill="rgb(218,138,4)" rx="2" ry="2" />
+<text x="896.32" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="247.6" y="6149" width="0.4" height="15.0" fill="rgb(218,149,31)" rx="2" ry="2" />
+<text x="250.59" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5285" width="0.4" height="15.0" fill="rgb(225,205,38)" rx="2" ry="2" />
+<text x="1073.99" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6341" width="0.4" height="15.0" fill="rgb(226,128,47)" rx="2" ry="2" />
+<text x="1143.55" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4453" width="0.4" height="15.0" fill="rgb(252,50,28)" rx="2" ry="2" />
+<text x="1073.99" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="396.8" y="4741" width="0.4" height="15.0" fill="rgb(236,181,1)" rx="2" ry="2" />
+<text x="399.77" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="325" width="0.4" height="15.0" fill="rgb(235,121,31)" rx="2" ry="2" />
+<text x="546.43" y="335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="780.6" y="5397" width="0.4" height="15.0" fill="rgb(238,201,3)" rx="2" ry="2" />
+<text x="783.60" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="458.4" y="5125" width="0.4" height="15.0" fill="rgb(234,21,26)" rx="2" ry="2" />
+<text x="461.37" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4357" width="0.8" height="15.0" fill="rgb(218,99,4)" rx="2" ry="2" />
+<text x="1120.09" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5461" width="0.4" height="15.0" fill="rgb(221,63,33)" rx="2" ry="2" />
+<text x="561.10" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="487.3" y="4709" width="6.3" height="15.0" fill="rgb(250,89,47)" rx="2" ry="2" />
+<text x="490.28" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.0" y="6005" width="0.4" height="15.0" fill="rgb(230,52,1)" rx="2" ry="2" />
+<text x="766.00" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="494.4" y="5189" width="0.4" height="15.0" fill="rgb(215,26,25)" rx="2" ry="2" />
+<text x="497.40" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5109" width="0.4" height="15.0" fill="rgb(206,88,49)" rx="2" ry="2" />
+<text x="357.03" y="5119.5" ></text>
+</g>
+<g >
+<title>chr (2 samples, 0.07%)</title><rect x="1047.1" y="6501" width="0.8" height="15.0" fill="rgb(213,172,33)" rx="2" ry="2" />
+<text x="1050.11" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="417.3" y="4837" width="2.1" height="15.0" fill="rgb(252,10,35)" rx="2" ry="2" />
+<text x="420.30" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5717" width="0.4" height="15.0" fill="rgb(244,215,31)" rx="2" ry="2" />
+<text x="767.68" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6325" width="0.4" height="15.0" fill="rgb(205,149,52)" rx="2" ry="2" />
+<text x="1143.55" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4437" width="0.9" height="15.0" fill="rgb(235,153,47)" rx="2" ry="2" />
+<text x="443.35" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="682.1" y="5269" width="0.4" height="15.0" fill="rgb(219,210,7)" rx="2" ry="2" />
+<text x="685.13" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (58 samples, 2.06%)</title><rect x="722.4" y="5333" width="24.3" height="15.0" fill="rgb(216,35,29)" rx="2" ry="2" />
+<text x="725.36" y="5343.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="768.0" y="5269" width="0.5" height="15.0" fill="rgb(230,195,29)" rx="2" ry="2" />
+<text x="771.03" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="760.1" y="5733" width="0.4" height="15.0" fill="rgb(240,202,38)" rx="2" ry="2" />
+<text x="763.07" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.0" y="4837" width="0.4" height="15.0" fill="rgb(228,222,29)" rx="2" ry="2" />
+<text x="333.98" y="4847.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2885" width="0.4" height="15.0" fill="rgb(211,30,17)" rx="2" ry="2" />
+<text x="437.90" y="2895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="792.3" y="5205" width="3.4" height="15.0" fill="rgb(211,99,15)" rx="2" ry="2" />
+<text x="795.34" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4101" width="0.4" height="15.0" fill="rgb(206,44,15)" rx="2" ry="2" />
+<text x="437.90" y="4111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="465.9" y="5173" width="1.3" height="15.0" fill="rgb(210,156,38)" rx="2" ry="2" />
+<text x="468.91" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4661" width="0.4" height="15.0" fill="rgb(222,217,21)" rx="2" ry="2" />
+<text x="1073.99" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4757" width="0.4" height="15.0" fill="rgb(206,84,19)" rx="2" ry="2" />
+<text x="760.98" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="472.6" y="5077" width="0.4" height="15.0" fill="rgb(206,77,26)" rx="2" ry="2" />
+<text x="475.61" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5493" width="0.8" height="15.0" fill="rgb(206,43,47)" rx="2" ry="2" />
+<text x="1120.09" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::Ref (1 samples, 0.04%)</title><rect x="16.3" y="6469" width="0.4" height="15.0" fill="rgb(226,36,35)" rx="2" ry="2" />
+<text x="19.29" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="700.1" y="5413" width="0.5" height="15.0" fill="rgb(232,16,42)" rx="2" ry="2" />
+<text x="703.15" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6085" width="1.3" height="15.0" fill="rgb(205,14,38)" rx="2" ry="2" />
+<text x="768.94" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (13 samples, 0.46%)</title><rect x="504.0" y="5205" width="5.5" height="15.0" fill="rgb(227,109,47)" rx="2" ry="2" />
+<text x="507.04" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="247.2" y="6261" width="0.8" height="15.0" fill="rgb(229,192,21)" rx="2" ry="2" />
+<text x="250.17" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5157" width="1.6" height="15.0" fill="rgb(245,226,43)" rx="2" ry="2" />
+<text x="545.17" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4629" width="0.8" height="15.0" fill="rgb(245,147,25)" rx="2" ry="2" />
+<text x="413.60" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (35 samples, 1.24%)</title><rect x="781.4" y="5317" width="14.7" height="15.0" fill="rgb(225,177,21)" rx="2" ry="2" />
+<text x="784.44" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="4933" width="0.4" height="15.0" fill="rgb(206,94,18)" rx="2" ry="2" />
+<text x="357.03" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="458.8" y="5237" width="8.4" height="15.0" fill="rgb(242,112,37)" rx="2" ry="2" />
+<text x="461.79" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5013" width="0.8" height="15.0" fill="rgb(235,208,12)" rx="2" ry="2" />
+<text x="1120.09" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1109" width="0.4" height="15.0" fill="rgb(240,144,33)" rx="2" ry="2" />
+<text x="546.43" y="1119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="278.6" y="4693" width="0.4" height="15.0" fill="rgb(222,200,22)" rx="2" ry="2" />
+<text x="281.60" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="409.3" y="4885" width="2.1" height="15.0" fill="rgb(237,190,19)" rx="2" ry="2" />
+<text x="412.34" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6021" width="0.8" height="15.0" fill="rgb(226,68,24)" rx="2" ry="2" />
+<text x="1120.09" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="1064.3" y="6421" width="7.1" height="15.0" fill="rgb(232,181,38)" rx="2" ry="2" />
+<text x="1067.29" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="799.0" y="5237" width="0.9" height="15.0" fill="rgb(228,0,25)" rx="2" ry="2" />
+<text x="802.04" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4565" width="0.8" height="15.0" fill="rgb(233,112,3)" rx="2" ry="2" />
+<text x="1120.09" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="334.3" y="4933" width="6.7" height="15.0" fill="rgb(250,207,42)" rx="2" ry="2" />
+<text x="337.33" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1168.6" y="6565" width="0.9" height="15.0" fill="rgb(214,32,41)" rx="2" ry="2" />
+<text x="1171.63" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="890.8" y="5605" width="0.4" height="15.0" fill="rgb(210,65,4)" rx="2" ry="2" />
+<text x="893.81" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="700.1" y="5381" width="0.5" height="15.0" fill="rgb(247,68,39)" rx="2" ry="2" />
+<text x="703.15" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="346.5" y="4821" width="0.4" height="15.0" fill="rgb(222,138,49)" rx="2" ry="2" />
+<text x="349.48" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="876.6" y="5477" width="0.8" height="15.0" fill="rgb(245,228,42)" rx="2" ry="2" />
+<text x="879.56" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="759.7" y="5813" width="0.8" height="15.0" fill="rgb(238,94,20)" rx="2" ry="2" />
+<text x="762.65" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6245" width="1.3" height="15.0" fill="rgb(211,189,11)" rx="2" ry="2" />
+<text x="768.94" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="510.3" y="4581" width="0.4" height="15.0" fill="rgb(214,91,5)" rx="2" ry="2" />
+<text x="513.33" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4357" width="0.4" height="15.0" fill="rgb(254,33,9)" rx="2" ry="2" />
+<text x="1073.99" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="402.6" y="4837" width="0.5" height="15.0" fill="rgb(229,15,41)" rx="2" ry="2" />
+<text x="405.63" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4773" width="0.8" height="15.0" fill="rgb(217,188,3)" rx="2" ry="2" />
+<text x="413.60" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="409.3" y="4805" width="1.3" height="15.0" fill="rgb(219,32,24)" rx="2" ry="2" />
+<text x="412.34" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.2" y="5509" width="0.4" height="15.0" fill="rgb(214,19,36)" rx="2" ry="2" />
+<text x="894.23" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="5989" width="1.3" height="15.0" fill="rgb(236,96,49)" rx="2" ry="2" />
+<text x="768.94" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="890.4" y="5525" width="0.4" height="15.0" fill="rgb(215,97,53)" rx="2" ry="2" />
+<text x="893.39" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="384.2" y="5045" width="2.1" height="15.0" fill="rgb(246,117,18)" rx="2" ry="2" />
+<text x="387.20" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="511.2" y="5253" width="0.4" height="15.0" fill="rgb(239,184,44)" rx="2" ry="2" />
+<text x="514.16" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1070.6" y="6229" width="0.8" height="15.0" fill="rgb(209,77,2)" rx="2" ry="2" />
+<text x="1073.58" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (194 samples, 6.89%)</title><rect x="675.8" y="5589" width="81.3" height="15.0" fill="rgb(215,58,54)" rx="2" ry="2" />
+<text x="678.85" y="5599.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="401.4" y="4933" width="1.7" height="15.0" fill="rgb(238,87,44)" rx="2" ry="2" />
+<text x="404.38" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5189" width="0.5" height="15.0" fill="rgb(206,17,50)" rx="2" ry="2" />
+<text x="716.14" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (5 samples, 0.18%)</title><rect x="665.4" y="5221" width="2.1" height="15.0" fill="rgb(251,123,8)" rx="2" ry="2" />
+<text x="668.37" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="511.6" y="5189" width="1.7" height="15.0" fill="rgb(239,72,6)" rx="2" ry="2" />
+<text x="514.58" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5077" width="0.9" height="15.0" fill="rgb(230,40,3)" rx="2" ry="2" />
+<text x="746.73" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="280.3" y="4853" width="0.8" height="15.0" fill="rgb(254,5,15)" rx="2" ry="2" />
+<text x="283.28" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="249.7" y="6005" width="0.4" height="15.0" fill="rgb(250,159,24)" rx="2" ry="2" />
+<text x="252.69" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.4" y="5237" width="0.4" height="15.0" fill="rgb(225,68,29)" rx="2" ry="2" />
+<text x="471.42" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="476.4" y="4805" width="2.9" height="15.0" fill="rgb(209,131,41)" rx="2" ry="2" />
+<text x="479.38" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (5 samples, 0.18%)</title><rect x="1043.8" y="6533" width="2.1" height="15.0" fill="rgb(221,139,30)" rx="2" ry="2" />
+<text x="1046.76" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4709" width="0.4" height="15.0" fill="rgb(229,124,19)" rx="2" ry="2" />
+<text x="546.43" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5109" width="0.4" height="15.0" fill="rgb(230,59,20)" rx="2" ry="2" />
+<text x="497.40" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="470.1" y="5333" width="0.4" height="15.0" fill="rgb(253,83,53)" rx="2" ry="2" />
+<text x="473.10" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5877" width="0.4" height="15.0" fill="rgb(211,135,39)" rx="2" ry="2" />
+<text x="761.39" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5493" width="0.4" height="15.0" fill="rgb(221,142,31)" rx="2" ry="2" />
+<text x="768.52" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="882.8" y="5541" width="3.0" height="15.0" fill="rgb(228,85,47)" rx="2" ry="2" />
+<text x="885.85" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="501.9" y="5061" width="0.9" height="15.0" fill="rgb(224,166,17)" rx="2" ry="2" />
+<text x="504.95" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4725" width="0.9" height="15.0" fill="rgb(233,212,47)" rx="2" ry="2" />
+<text x="388.04" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.36%)</title><rect x="527.5" y="5813" width="4.2" height="15.0" fill="rgb(214,227,3)" rx="2" ry="2" />
+<text x="530.51" y="5823.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3029" width="0.4" height="15.0" fill="rgb(240,84,44)" rx="2" ry="2" />
+<text x="437.90" y="3039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="460.9" y="4853" width="0.4" height="15.0" fill="rgb(230,25,43)" rx="2" ry="2" />
+<text x="463.88" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.8" y="5013" width="0.4" height="15.0" fill="rgb(226,162,7)" rx="2" ry="2" />
+<text x="347.81" y="5023.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="177.6" y="6453" width="0.4" height="15.0" fill="rgb(210,157,15)" rx="2" ry="2" />
+<text x="180.61" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="5061" width="0.4" height="15.0" fill="rgb(205,151,4)" rx="2" ry="2" />
+<text x="351.58" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1162.8" y="6485" width="0.4" height="15.0" fill="rgb(240,33,10)" rx="2" ry="2" />
+<text x="1165.76" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (58 samples, 2.06%)</title><rect x="853.5" y="5573" width="24.3" height="15.0" fill="rgb(210,23,1)" rx="2" ry="2" />
+<text x="856.52" y="5583.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="147.0" y="6453" width="0.9" height="15.0" fill="rgb(220,62,33)" rx="2" ry="2" />
+<text x="150.02" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;main&gt; (2,111 samples, 74.96%)</title><rect x="10.0" y="6581" width="884.6" height="15.0" fill="rgb(210,56,51)" rx="2" ry="2" />
+<text x="13.00" y="6591.5" >&lt;main&gt;</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (301 samples, 10.69%)</title><rect x="767.2" y="6053" width="126.1" height="15.0" fill="rgb(226,170,49)" rx="2" ry="2" />
+<text x="770.19" y="6063.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="281.1" y="4949" width="1.3" height="15.0" fill="rgb(224,145,14)" rx="2" ry="2" />
+<text x="284.12" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5381" width="0.4" height="15.0" fill="rgb(237,81,16)" rx="2" ry="2" />
+<text x="563.19" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="493.6" y="5157" width="0.8" height="15.0" fill="rgb(226,16,2)" rx="2" ry="2" />
+<text x="496.57" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="532.1" y="5733" width="0.4" height="15.0" fill="rgb(206,30,47)" rx="2" ry="2" />
+<text x="535.12" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="301.2" y="4837" width="0.4" height="15.0" fill="rgb(224,37,43)" rx="2" ry="2" />
+<text x="304.23" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="301.6" y="4981" width="0.5" height="15.0" fill="rgb(246,22,37)" rx="2" ry="2" />
+<text x="304.65" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4901" width="0.4" height="15.0" fill="rgb(210,93,44)" rx="2" ry="2" />
+<text x="1073.99" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.43%)</title><rect x="274.8" y="4965" width="5.1" height="15.0" fill="rgb(241,77,0)" rx="2" ry="2" />
+<text x="277.83" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Modules\Func::__construct (1 samples, 0.04%)</title><rect x="15.4" y="6549" width="0.5" height="15.0" fill="rgb(232,5,14)" rx="2" ry="2" />
+<text x="18.45" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.7" y="5909" width="0.5" height="15.0" fill="rgb(221,9,19)" rx="2" ry="2" />
+<text x="764.75" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="5685" width="0.4" height="15.0" fill="rgb(205,5,21)" rx="2" ry="2" />
+<text x="768.52" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="541.8" y="5429" width="2.0" height="15.0" fill="rgb(232,175,13)" rx="2" ry="2" />
+<text x="544.75" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5685" width="0.4" height="15.0" fill="rgb(236,62,38)" rx="2" ry="2" />
+<text x="576.60" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="560.6" y="5525" width="1.7" height="15.0" fill="rgb(249,71,51)" rx="2" ry="2" />
+<text x="563.61" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="514.5" y="5333" width="3.8" height="15.0" fill="rgb(214,222,39)" rx="2" ry="2" />
+<text x="517.52" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5317" width="0.4" height="15.0" fill="rgb(237,19,54)" rx="2" ry="2" />
+<text x="563.19" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="281.5" y="4901" width="0.9" height="15.0" fill="rgb(222,121,34)" rx="2" ry="2" />
+<text x="284.53" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.4" y="4629" width="0.4" height="15.0" fill="rgb(250,88,51)" rx="2" ry="2" />
+<text x="329.37" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="269.8" y="4917" width="0.4" height="15.0" fill="rgb(214,216,18)" rx="2" ry="2" />
+<text x="272.80" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="679.6" y="5461" width="0.4" height="15.0" fill="rgb(231,153,42)" rx="2" ry="2" />
+<text x="682.62" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="763.0" y="6197" width="2.9" height="15.0" fill="rgb(247,131,9)" rx="2" ry="2" />
+<text x="766.00" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4773" width="0.5" height="15.0" fill="rgb(240,68,31)" rx="2" ry="2" />
+<text x="346.13" y="4783.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2997" width="0.4" height="15.0" fill="rgb(216,162,4)" rx="2" ry="2" />
+<text x="437.90" y="3007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3093" width="0.4" height="15.0" fill="rgb(206,63,19)" rx="2" ry="2" />
+<text x="437.90" y="3103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="4853" width="0.9" height="15.0" fill="rgb(206,182,11)" rx="2" ry="2" />
+<text x="345.71" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6293" width="1.3" height="15.0" fill="rgb(254,136,40)" rx="2" ry="2" />
+<text x="768.94" y="6303.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4261" width="0.4" height="15.0" fill="rgb(236,103,0)" rx="2" ry="2" />
+<text x="546.43" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4293" width="0.4" height="15.0" fill="rgb(221,148,26)" rx="2" ry="2" />
+<text x="1073.99" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="422.3" y="4837" width="2.1" height="15.0" fill="rgb(209,53,12)" rx="2" ry="2" />
+<text x="425.33" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="362.0" y="4981" width="7.1" height="15.0" fill="rgb(226,138,17)" rx="2" ry="2" />
+<text x="364.99" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.0" y="5925" width="0.4" height="15.0" fill="rgb(213,185,22)" rx="2" ry="2" />
+<text x="522.96" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6341" width="1.3" height="15.0" fill="rgb(220,18,1)" rx="2" ry="2" />
+<text x="768.94" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4853" width="0.4" height="15.0" fill="rgb(253,41,43)" rx="2" ry="2" />
+<text x="364.57" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="527.1" y="5829" width="4.6" height="15.0" fill="rgb(236,101,2)" rx="2" ry="2" />
+<text x="530.09" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="511.2" y="5269" width="0.4" height="15.0" fill="rgb(252,53,35)" rx="2" ry="2" />
+<text x="514.16" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6469" width="0.5" height="15.0" fill="rgb(240,125,48)" rx="2" ry="2" />
+<text x="1050.95" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5957" width="0.4" height="15.0" fill="rgb(206,31,27)" rx="2" ry="2" />
+<text x="896.32" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="274.8" y="4933" width="5.1" height="15.0" fill="rgb(242,191,29)" rx="2" ry="2" />
+<text x="277.83" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4933" width="6.7" height="15.0" fill="rgb(253,144,26)" rx="2" ry="2" />
+<text x="489.86" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="229.6" y="6485" width="0.4" height="15.0" fill="rgb(231,31,29)" rx="2" ry="2" />
+<text x="232.57" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="767.2" y="5893" width="2.9" height="15.0" fill="rgb(226,156,42)" rx="2" ry="2" />
+<text x="770.19" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1071.4" y="6421" width="0.4" height="15.0" fill="rgb(253,80,0)" rx="2" ry="2" />
+<text x="1074.41" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.0" y="6261" width="0.4" height="15.0" fill="rgb(231,101,10)" rx="2" ry="2" />
+<text x="1143.97" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="472.2" y="5237" width="7.5" height="15.0" fill="rgb(214,137,22)" rx="2" ry="2" />
+<text x="475.19" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5381" width="0.4" height="15.0" fill="rgb(223,211,44)" rx="2" ry="2" />
+<text x="897.16" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="522.5" y="5781" width="1.7" height="15.0" fill="rgb(244,94,47)" rx="2" ry="2" />
+<text x="525.48" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4693" width="0.5" height="15.0" fill="rgb(229,5,36)" rx="2" ry="2" />
+<text x="469.75" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="336.8" y="4885" width="0.5" height="15.0" fill="rgb(213,205,42)" rx="2" ry="2" />
+<text x="339.85" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (45 samples, 1.60%)</title><rect x="535.5" y="5621" width="18.8" height="15.0" fill="rgb(238,18,37)" rx="2" ry="2" />
+<text x="538.47" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="541.8" y="5413" width="2.0" height="15.0" fill="rgb(228,227,19)" rx="2" ry="2" />
+<text x="544.75" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4837" width="0.9" height="15.0" fill="rgb(208,129,51)" rx="2" ry="2" />
+<text x="345.71" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="752.1" y="5173" width="3.8" height="15.0" fill="rgb(252,133,29)" rx="2" ry="2" />
+<text x="755.11" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5653" width="0.4" height="15.0" fill="rgb(208,147,46)" rx="2" ry="2" />
+<text x="1073.99" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="758.8" y="5957" width="2.9" height="15.0" fill="rgb(254,133,3)" rx="2" ry="2" />
+<text x="761.81" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5397" width="0.8" height="15.0" fill="rgb(238,136,18)" rx="2" ry="2" />
+<text x="528.41" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="708.5" y="5333" width="6.3" height="15.0" fill="rgb(208,74,10)" rx="2" ry="2" />
+<text x="711.53" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="5141" width="6.7" height="15.0" fill="rgb(233,219,15)" rx="2" ry="2" />
+<text x="489.86" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4469" width="0.9" height="15.0" fill="rgb(225,217,1)" rx="2" ry="2" />
+<text x="443.35" y="4479.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1077" width="0.4" height="15.0" fill="rgb(212,101,6)" rx="2" ry="2" />
+<text x="546.43" y="1087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="6197" width="0.9" height="15.0" fill="rgb(238,147,30)" rx="2" ry="2" />
+<text x="896.74" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4837" width="0.4" height="15.0" fill="rgb(218,188,48)" rx="2" ry="2" />
+<text x="1073.99" y="4847.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2901" width="0.4" height="15.0" fill="rgb(212,118,45)" rx="2" ry="2" />
+<text x="437.90" y="2911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="298.3" y="5013" width="0.4" height="15.0" fill="rgb(232,121,18)" rx="2" ry="2" />
+<text x="301.30" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4485" width="5.8" height="15.0" fill="rgb(208,49,50)" rx="2" ry="2" />
+<text x="490.28" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="1140.6" y="6517" width="0.8" height="15.0" fill="rgb(209,55,48)" rx="2" ry="2" />
+<text x="1143.55" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="504.5" y="5109" width="4.2" height="15.0" fill="rgb(220,25,16)" rx="2" ry="2" />
+<text x="507.46" y="5119.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2501" width="0.4" height="15.0" fill="rgb(245,35,30)" rx="2" ry="2" />
+<text x="437.90" y="2511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="410.2" y="4725" width="0.4" height="15.0" fill="rgb(252,129,34)" rx="2" ry="2" />
+<text x="413.18" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="323.0" y="4869" width="5.0" height="15.0" fill="rgb(248,170,33)" rx="2" ry="2" />
+<text x="326.02" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5909" width="0.8" height="15.0" fill="rgb(234,127,54)" rx="2" ry="2" />
+<text x="1120.09" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="514.9" y="5237" width="3.0" height="15.0" fill="rgb(206,91,21)" rx="2" ry="2" />
+<text x="517.94" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1138.9" y="6517" width="0.4" height="15.0" fill="rgb(222,132,0)" rx="2" ry="2" />
+<text x="1141.88" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4885" width="1.7" height="15.0" fill="rgb(216,220,0)" rx="2" ry="2" />
+<text x="429.10" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (2 samples, 0.07%)</title><rect x="674.6" y="5221" width="0.8" height="15.0" fill="rgb(230,166,37)" rx="2" ry="2" />
+<text x="677.59" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (47 samples, 1.67%)</title><rect x="727.0" y="5253" width="19.7" height="15.0" fill="rgb(223,40,44)" rx="2" ry="2" />
+<text x="729.97" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="471.4" y="5317" width="8.3" height="15.0" fill="rgb(244,63,21)" rx="2" ry="2" />
+<text x="474.36" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="331.0" y="4981" width="0.4" height="15.0" fill="rgb(231,175,1)" rx="2" ry="2" />
+<text x="333.98" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="525.0" y="5845" width="2.1" height="15.0" fill="rgb(217,54,43)" rx="2" ry="2" />
+<text x="527.99" y="5855.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="703.5" y="5429" width="0.4" height="15.0" fill="rgb(233,106,5)" rx="2" ry="2" />
+<text x="706.50" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="560.2" y="5557" width="2.5" height="15.0" fill="rgb(236,226,44)" rx="2" ry="2" />
+<text x="563.19" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1143.5" y="6517" width="0.4" height="15.0" fill="rgb(254,65,53)" rx="2" ry="2" />
+<text x="1146.49" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.6" y="5525" width="0.5" height="15.0" fill="rgb(229,77,51)" rx="2" ry="2" />
+<text x="894.65" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5909" width="0.9" height="15.0" fill="rgb(247,24,4)" rx="2" ry="2" />
+<text x="896.74" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="527.9" y="5573" width="3.4" height="15.0" fill="rgb(212,25,51)" rx="2" ry="2" />
+<text x="530.93" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.0" y="5861" width="0.4" height="15.0" fill="rgb(231,216,1)" rx="2" ry="2" />
+<text x="766.00" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="532.1" y="5749" width="0.4" height="15.0" fill="rgb(238,224,39)" rx="2" ry="2" />
+<text x="535.12" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (194 samples, 6.89%)</title><rect x="675.8" y="5701" width="81.3" height="15.0" fill="rgb(211,166,48)" rx="2" ry="2" />
+<text x="678.85" y="5711.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="838.8" y="5605" width="0.5" height="15.0" fill="rgb(216,180,38)" rx="2" ry="2" />
+<text x="841.85" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="511.6" y="5253" width="1.7" height="15.0" fill="rgb(207,116,37)" rx="2" ry="2" />
+<text x="514.58" y="5263.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="341" width="0.4" height="15.0" fill="rgb(220,115,42)" rx="2" ry="2" />
+<text x="546.43" y="351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4725" width="0.5" height="15.0" fill="rgb(250,12,21)" rx="2" ry="2" />
+<text x="346.13" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1122.1" y="6533" width="0.4" height="15.0" fill="rgb(223,17,21)" rx="2" ry="2" />
+<text x="1125.12" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="423.6" y="4693" width="0.4" height="15.0" fill="rgb(224,156,16)" rx="2" ry="2" />
+<text x="426.59" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="476.4" y="4981" width="2.9" height="15.0" fill="rgb(250,78,1)" rx="2" ry="2" />
+<text x="479.38" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1063.9" y="6421" width="0.4" height="15.0" fill="rgb(209,32,11)" rx="2" ry="2" />
+<text x="1066.87" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,223 samples, 43.43%)</title><rect x="250.5" y="6101" width="512.5" height="15.0" fill="rgb(238,205,37)" rx="2" ry="2" />
+<text x="253.53" y="6111.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1076.4" y="6469" width="0.9" height="15.0" fill="rgb(251,98,39)" rx="2" ry="2" />
+<text x="1079.44" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="460.0" y="5045" width="1.3" height="15.0" fill="rgb(212,81,47)" rx="2" ry="2" />
+<text x="463.04" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="564.0" y="5573" width="3.3" height="15.0" fill="rgb(230,107,7)" rx="2" ry="2" />
+<text x="566.96" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="522.5" y="5733" width="1.7" height="15.0" fill="rgb(242,150,30)" rx="2" ry="2" />
+<text x="525.48" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.43%)</title><rect x="274.8" y="4981" width="5.1" height="15.0" fill="rgb(215,214,18)" rx="2" ry="2" />
+<text x="277.83" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="776.4" y="5589" width="0.4" height="15.0" fill="rgb(252,4,25)" rx="2" ry="2" />
+<text x="779.41" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4821" width="0.8" height="15.0" fill="rgb(247,210,15)" rx="2" ry="2" />
+<text x="276.99" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="527.9" y="5653" width="3.4" height="15.0" fill="rgb(207,189,2)" rx="2" ry="2" />
+<text x="530.93" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="3941" width="0.4" height="15.0" fill="rgb(219,109,52)" rx="2" ry="2" />
+<text x="467.65" y="3951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (27 samples, 0.96%)</title><rect x="879.5" y="5669" width="11.3" height="15.0" fill="rgb(229,22,26)" rx="2" ry="2" />
+<text x="882.50" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (10 samples, 0.36%)</title><rect x="242.1" y="6501" width="4.2" height="15.0" fill="rgb(223,215,34)" rx="2" ry="2" />
+<text x="245.14" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="272.3" y="5077" width="10.5" height="15.0" fill="rgb(222,68,15)" rx="2" ry="2" />
+<text x="275.32" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5269" width="0.4" height="15.0" fill="rgb(209,118,36)" rx="2" ry="2" />
+<text x="896.32" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4757" width="1.7" height="15.0" fill="rgb(251,221,49)" rx="2" ry="2" />
+<text x="429.10" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5861" width="0.4" height="15.0" fill="rgb(209,229,18)" rx="2" ry="2" />
+<text x="1073.99" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="457.5" y="5045" width="0.9" height="15.0" fill="rgb(219,30,35)" rx="2" ry="2" />
+<text x="460.53" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="559.4" y="5637" width="0.4" height="15.0" fill="rgb(214,84,52)" rx="2" ry="2" />
+<text x="562.35" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5269" width="0.4" height="15.0" fill="rgb(219,219,20)" rx="2" ry="2" />
+<text x="760.98" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="763.0" y="6229" width="2.9" height="15.0" fill="rgb(213,40,53)" rx="2" ry="2" />
+<text x="766.00" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (643 samples, 22.83%)</title><rect x="250.5" y="5925" width="269.5" height="15.0" fill="rgb(226,109,10)" rx="2" ry="2" />
+<text x="253.53" y="5935.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="294.1" y="5077" width="7.5" height="15.0" fill="rgb(214,43,51)" rx="2" ry="2" />
+<text x="297.11" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4165" width="5.4" height="15.0" fill="rgb(243,126,1)" rx="2" ry="2" />
+<text x="490.70" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (1 samples, 0.04%)</title><rect x="349.4" y="5349" width="0.4" height="15.0" fill="rgb(234,77,46)" rx="2" ry="2" />
+<text x="352.42" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="748.8" y="5285" width="1.2" height="15.0" fill="rgb(227,195,8)" rx="2" ry="2" />
+<text x="751.76" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="516.6" y="4981" width="0.4" height="15.0" fill="rgb(208,62,51)" rx="2" ry="2" />
+<text x="519.61" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="494.4" y="5205" width="0.4" height="15.0" fill="rgb(241,16,29)" rx="2" ry="2" />
+<text x="497.40" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4373" width="0.5" height="15.0" fill="rgb(248,10,36)" rx="2" ry="2" />
+<text x="480.64" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="532.1" y="5765" width="0.4" height="15.0" fill="rgb(240,157,35)" rx="2" ry="2" />
+<text x="535.12" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::Num (1 samples, 0.04%)</title><rect x="222.5" y="6469" width="0.4" height="15.0" fill="rgb(245,168,54)" rx="2" ry="2" />
+<text x="225.45" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,239 samples, 44.00%)</title><rect x="246.8" y="6405" width="519.1" height="15.0" fill="rgb(216,16,2)" rx="2" ry="2" />
+<text x="249.75" y="6415.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="471.4" y="5349" width="8.3" height="15.0" fill="rgb(211,120,28)" rx="2" ry="2" />
+<text x="474.36" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="527.9" y="5717" width="3.4" height="15.0" fill="rgb(209,218,41)" rx="2" ry="2" />
+<text x="530.93" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="884.5" y="5509" width="1.3" height="15.0" fill="rgb(238,73,38)" rx="2" ry="2" />
+<text x="887.52" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4789" width="0.4" height="15.0" fill="rgb(235,171,39)" rx="2" ry="2" />
+<text x="496.98" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5717" width="0.4" height="15.0" fill="rgb(226,25,29)" rx="2" ry="2" />
+<text x="772.71" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="760.9" y="5781" width="0.4" height="15.0" fill="rgb(215,19,53)" rx="2" ry="2" />
+<text x="763.91" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (302 samples, 10.72%)</title><rect x="767.2" y="6277" width="126.5" height="15.0" fill="rgb(220,182,29)" rx="2" ry="2" />
+<text x="770.19" y="6287.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2837" width="0.4" height="15.0" fill="rgb(240,121,29)" rx="2" ry="2" />
+<text x="546.43" y="2847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="375.8" y="5045" width="2.1" height="15.0" fill="rgb(205,218,18)" rx="2" ry="2" />
+<text x="378.82" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="252.2" y="5733" width="0.4" height="15.0" fill="rgb(209,192,32)" rx="2" ry="2" />
+<text x="255.20" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5733" width="81.3" height="15.0" fill="rgb(206,14,25)" rx="2" ry="2" />
+<text x="678.85" y="5743.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4789" width="0.5" height="15.0" fill="rgb(252,79,24)" rx="2" ry="2" />
+<text x="489.44" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.4" y="4789" width="0.4" height="15.0" fill="rgb(220,183,26)" rx="2" ry="2" />
+<text x="321.41" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6309" width="0.5" height="15.0" fill="rgb(207,167,46)" rx="2" ry="2" />
+<text x="1050.95" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="382.1" y="5029" width="0.4" height="15.0" fill="rgb(249,21,54)" rx="2" ry="2" />
+<text x="385.10" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="442.4" y="4661" width="3.8" height="15.0" fill="rgb(222,56,27)" rx="2" ry="2" />
+<text x="445.44" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3333" width="0.4" height="15.0" fill="rgb(212,101,35)" rx="2" ry="2" />
+<text x="546.43" y="3343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="1161.9" y="6549" width="1.3" height="15.0" fill="rgb(211,219,53)" rx="2" ry="2" />
+<text x="1164.92" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="767.2" y="5877" width="2.9" height="15.0" fill="rgb(209,153,34)" rx="2" ry="2" />
+<text x="770.19" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.82%)</title><rect x="292.4" y="5109" width="9.7" height="15.0" fill="rgb(217,95,3)" rx="2" ry="2" />
+<text x="295.43" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5813" width="0.4" height="15.0" fill="rgb(205,181,0)" rx="2" ry="2" />
+<text x="761.39" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="559.8" y="5685" width="7.5" height="15.0" fill="rgb(210,64,36)" rx="2" ry="2" />
+<text x="562.77" y="5695.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3461" width="0.4" height="15.0" fill="rgb(227,207,20)" rx="2" ry="2" />
+<text x="437.90" y="3471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (5 samples, 0.18%)</title><rect x="1045.9" y="6533" width="2.0" height="15.0" fill="rgb(254,195,1)" rx="2" ry="2" />
+<text x="1048.85" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.1" y="5877" width="0.4" height="15.0" fill="rgb(216,218,21)" rx="2" ry="2" />
+<text x="768.10" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.9" y="4533" width="0.4" height="15.0" fill="rgb(242,96,51)" rx="2" ry="2" />
+<text x="489.86" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4485" width="0.4" height="15.0" fill="rgb(249,188,29)" rx="2" ry="2" />
+<text x="489.86" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="504.5" y="5093" width="4.2" height="15.0" fill="rgb(245,145,23)" rx="2" ry="2" />
+<text x="507.46" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (172 samples, 6.11%)</title><rect x="821.2" y="5909" width="72.1" height="15.0" fill="rgb(213,185,33)" rx="2" ry="2" />
+<text x="824.25" y="5919.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5125" width="0.4" height="15.0" fill="rgb(218,1,16)" rx="2" ry="2" />
+<text x="497.40" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (636 samples, 22.59%)</title><rect x="253.5" y="5749" width="266.5" height="15.0" fill="rgb(215,146,53)" rx="2" ry="2" />
+<text x="256.46" y="5759.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="744.6" y="5221" width="0.4" height="15.0" fill="rgb(246,148,7)" rx="2" ry="2" />
+<text x="747.57" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="460.0" y="4981" width="1.3" height="15.0" fill="rgb(235,124,21)" rx="2" ry="2" />
+<text x="463.04" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5605" width="0.4" height="15.0" fill="rgb(213,55,32)" rx="2" ry="2" />
+<text x="761.39" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="511.6" y="5061" width="0.8" height="15.0" fill="rgb(236,9,28)" rx="2" ry="2" />
+<text x="514.58" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5541" width="0.5" height="15.0" fill="rgb(213,137,43)" rx="2" ry="2" />
+<text x="573.25" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="281.1" y="4853" width="0.4" height="15.0" fill="rgb(216,111,46)" rx="2" ry="2" />
+<text x="284.12" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="763.0" y="6245" width="2.9" height="15.0" fill="rgb(241,158,29)" rx="2" ry="2" />
+<text x="766.00" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (511 samples, 18.15%)</title><rect x="256.4" y="5429" width="214.1" height="15.0" fill="rgb(217,70,53)" rx="2" ry="2" />
+<text x="259.39" y="5439.5" >Nsfisis\Waddiwasi\Execution\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4117" width="0.4" height="15.0" fill="rgb(228,186,25)" rx="2" ry="2" />
+<text x="1120.51" y="4127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4405" width="0.4" height="15.0" fill="rgb(236,111,13)" rx="2" ry="2" />
+<text x="496.98" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="685.5" y="5269" width="3.3" height="15.0" fill="rgb(218,45,13)" rx="2" ry="2" />
+<text x="688.48" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4421" width="0.5" height="15.0" fill="rgb(246,145,6)" rx="2" ry="2" />
+<text x="346.13" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5925" width="0.4" height="15.0" fill="rgb(210,185,33)" rx="2" ry="2" />
+<text x="896.32" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="342.3" y="5061" width="0.4" height="15.0" fill="rgb(214,90,53)" rx="2" ry="2" />
+<text x="345.29" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (2 samples, 0.07%)</title><rect x="328.0" y="4885" width="0.9" height="15.0" fill="rgb(242,84,37)" rx="2" ry="2" />
+<text x="331.05" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="766.8" y="5941" width="0.4" height="15.0" fill="rgb(213,9,18)" rx="2" ry="2" />
+<text x="769.78" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (572 samples, 20.31%)</title><rect x="255.6" y="5445" width="239.6" height="15.0" fill="rgb(216,117,6)" rx="2" ry="2" />
+<text x="258.55" y="5455.5" >Nsfisis\Waddiwasi\Execution\Run..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (636 samples, 22.59%)</title><rect x="253.5" y="5845" width="266.5" height="15.0" fill="rgb(248,208,11)" rx="2" ry="2" />
+<text x="256.46" y="5855.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="260.2" y="5205" width="0.4" height="15.0" fill="rgb(209,186,44)" rx="2" ry="2" />
+<text x="263.16" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.0" y="4725" width="0.4" height="15.0" fill="rgb(240,168,42)" rx="2" ry="2" />
+<text x="328.95" y="4735.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3061" width="0.4" height="15.0" fill="rgb(240,143,8)" rx="2" ry="2" />
+<text x="546.43" y="3071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (21 samples, 0.75%)</title><rect x="659.5" y="5237" width="8.8" height="15.0" fill="rgb(253,189,12)" rx="2" ry="2" />
+<text x="662.50" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (98 samples, 3.48%)</title><rect x="837.6" y="5653" width="41.1" height="15.0" fill="rgb(226,149,22)" rx="2" ry="2" />
+<text x="840.59" y="5663.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5717" width="0.4" height="15.0" fill="rgb(222,221,53)" rx="2" ry="2" />
+<text x="774.80" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5669" width="0.4" height="15.0" fill="rgb(236,110,4)" rx="2" ry="2" />
+<text x="523.38" y="5679.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4645" width="0.4" height="15.0" fill="rgb(214,201,6)" rx="2" ry="2" />
+<text x="546.43" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="797.8" y="5461" width="2.1" height="15.0" fill="rgb(205,28,49)" rx="2" ry="2" />
+<text x="800.78" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI64 (1 samples, 0.04%)</title><rect x="349.4" y="5365" width="0.4" height="15.0" fill="rgb(209,188,15)" rx="2" ry="2" />
+<text x="352.42" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1143.5" y="6469" width="0.4" height="15.0" fill="rgb(246,155,42)" rx="2" ry="2" />
+<text x="1146.49" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="449.1" y="5205" width="6.8" height="15.0" fill="rgb(214,68,51)" rx="2" ry="2" />
+<text x="452.15" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="457.5" y="5077" width="0.9" height="15.0" fill="rgb(245,20,6)" rx="2" ry="2" />
+<text x="460.53" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3749" width="0.4" height="15.0" fill="rgb(240,197,10)" rx="2" ry="2" />
+<text x="546.43" y="3759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5221" width="0.4" height="15.0" fill="rgb(229,139,52)" rx="2" ry="2" />
+<text x="685.13" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="965" width="0.4" height="15.0" fill="rgb(237,116,35)" rx="2" ry="2" />
+<text x="546.43" y="975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.4" y="4469" width="0.4" height="15.0" fill="rgb(240,195,12)" rx="2" ry="2" />
+<text x="430.36" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="512.0" y="4949" width="0.4" height="15.0" fill="rgb(238,176,8)" rx="2" ry="2" />
+<text x="515.00" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="756.7" y="5349" width="0.4" height="15.0" fill="rgb(231,163,15)" rx="2" ry="2" />
+<text x="759.72" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="281.1" y="4741" width="0.4" height="15.0" fill="rgb(250,19,2)" rx="2" ry="2" />
+<text x="284.12" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="472.2" y="5045" width="0.4" height="15.0" fill="rgb(214,163,26)" rx="2" ry="2" />
+<text x="475.19" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,224 samples, 43.47%)</title><rect x="250.1" y="6325" width="512.9" height="15.0" fill="rgb(211,121,2)" rx="2" ry="2" />
+<text x="253.11" y="6335.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="275.2" y="4869" width="4.7" height="15.0" fill="rgb(215,147,46)" rx="2" ry="2" />
+<text x="278.25" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="274.4" y="4693" width="0.4" height="15.0" fill="rgb(209,204,11)" rx="2" ry="2" />
+<text x="277.41" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5653" width="1.3" height="15.0" fill="rgb(253,153,24)" rx="2" ry="2" />
+<text x="760.14" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (194 samples, 6.89%)</title><rect x="675.8" y="5941" width="81.3" height="15.0" fill="rgb(207,189,20)" rx="2" ry="2" />
+<text x="678.85" y="5951.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="460.0" y="5013" width="1.3" height="15.0" fill="rgb(214,179,46)" rx="2" ry="2" />
+<text x="463.04" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="520.4" y="5749" width="0.4" height="15.0" fill="rgb(211,109,51)" rx="2" ry="2" />
+<text x="523.38" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (37 samples, 1.31%)</title><rect x="479.7" y="5381" width="15.5" height="15.0" fill="rgb(236,70,0)" rx="2" ry="2" />
+<text x="482.74" y="5391.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="1158.2" y="6533" width="0.4" height="15.0" fill="rgb(209,41,20)" rx="2" ry="2" />
+<text x="1161.15" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="508.7" y="5125" width="0.4" height="15.0" fill="rgb(219,81,41)" rx="2" ry="2" />
+<text x="511.65" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4773" width="0.8" height="15.0" fill="rgb(228,84,30)" rx="2" ry="2" />
+<text x="512.91" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrsForInit (549 samples, 19.50%)</title><rect x="16.7" y="6549" width="230.1" height="15.0" fill="rgb(240,178,23)" rx="2" ry="2" />
+<text x="19.70" y="6559.5" >Nsfisis\Waddiwasi\Execution\Ru..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4933" width="0.4" height="15.0" fill="rgb(233,24,49)" rx="2" ry="2" />
+<text x="364.57" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5477" width="0.5" height="15.0" fill="rgb(208,86,11)" rx="2" ry="2" />
+<text x="573.25" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="822.1" y="5877" width="0.4" height="15.0" fill="rgb(251,173,4)" rx="2" ry="2" />
+<text x="825.09" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4309" width="0.4" height="15.0" fill="rgb(209,33,3)" rx="2" ry="2" />
+<text x="1073.99" y="4319.5" ></text>
+</g>
+<g >
+<title>count (2 samples, 0.07%)</title><rect x="172.2" y="6469" width="0.8" height="15.0" fill="rgb(228,52,47)" rx="2" ry="2" />
+<text x="175.17" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="526.2" y="5589" width="0.5" height="15.0" fill="rgb(214,33,23)" rx="2" ry="2" />
+<text x="529.25" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6501" width="0.5" height="15.0" fill="rgb(252,205,3)" rx="2" ry="2" />
+<text x="1050.95" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4885" width="0.8" height="15.0" fill="rgb(229,182,5)" rx="2" ry="2" />
+<text x="1120.09" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6165" width="1.3" height="15.0" fill="rgb(242,205,33)" rx="2" ry="2" />
+<text x="768.94" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="706.9" y="5365" width="7.9" height="15.0" fill="rgb(250,44,47)" rx="2" ry="2" />
+<text x="709.85" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="511.6" y="4981" width="0.8" height="15.0" fill="rgb(253,29,19)" rx="2" ry="2" />
+<text x="514.58" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="1047.9" y="6293" width="0.5" height="15.0" fill="rgb(247,67,32)" rx="2" ry="2" />
+<text x="1050.95" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.21%)</title><rect x="398.4" y="4981" width="14.3" height="15.0" fill="rgb(237,184,47)" rx="2" ry="2" />
+<text x="401.44" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="455.9" y="5221" width="2.9" height="15.0" fill="rgb(216,152,28)" rx="2" ry="2" />
+<text x="458.85" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="472.2" y="5029" width="0.4" height="15.0" fill="rgb(227,169,34)" rx="2" ry="2" />
+<text x="475.19" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="5973" width="1.3" height="15.0" fill="rgb(241,47,17)" rx="2" ry="2" />
+<text x="768.94" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="526.2" y="5573" width="0.5" height="15.0" fill="rgb(219,153,5)" rx="2" ry="2" />
+<text x="529.25" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="250.5" y="5861" width="3.0" height="15.0" fill="rgb(205,31,22)" rx="2" ry="2" />
+<text x="253.53" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.9" y="6501" width="0.4" height="15.0" fill="rgb(246,36,53)" rx="2" ry="2" />
+<text x="1141.88" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="768.5" y="5397" width="1.2" height="15.0" fill="rgb(209,42,12)" rx="2" ry="2" />
+<text x="771.45" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6453" width="0.5" height="15.0" fill="rgb(251,132,39)" rx="2" ry="2" />
+<text x="1050.95" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3765" width="0.4" height="15.0" fill="rgb(223,168,4)" rx="2" ry="2" />
+<text x="437.90" y="3775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (23 samples, 0.82%)</title><rect x="360.7" y="5093" width="9.7" height="15.0" fill="rgb(205,4,9)" rx="2" ry="2" />
+<text x="363.73" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3573" width="0.4" height="15.0" fill="rgb(216,0,47)" rx="2" ry="2" />
+<text x="546.43" y="3583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="758.0" y="5365" width="0.4" height="15.0" fill="rgb(231,226,26)" rx="2" ry="2" />
+<text x="760.98" y="5375.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2133" width="0.4" height="15.0" fill="rgb(226,98,41)" rx="2" ry="2" />
+<text x="437.90" y="2143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5653" width="0.4" height="15.0" fill="rgb(208,90,16)" rx="2" ry="2" />
+<text x="896.32" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4181" width="5.4" height="15.0" fill="rgb(219,95,34)" rx="2" ry="2" />
+<text x="490.70" y="4191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.75%)</title><rect x="1109.5" y="6373" width="8.8" height="15.0" fill="rgb(235,2,33)" rx="2" ry="2" />
+<text x="1112.55" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (50 samples, 1.78%)</title><rect x="1099.1" y="6517" width="20.9" height="15.0" fill="rgb(215,143,31)" rx="2" ry="2" />
+<text x="1102.07" y="6527.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2005" width="0.4" height="15.0" fill="rgb(208,14,20)" rx="2" ry="2" />
+<text x="546.43" y="2015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="273.2" y="4981" width="1.6" height="15.0" fill="rgb(219,48,17)" rx="2" ry="2" />
+<text x="276.15" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="510.7" y="5061" width="0.5" height="15.0" fill="rgb(232,66,24)" rx="2" ry="2" />
+<text x="513.75" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5669" width="0.4" height="15.0" fill="rgb(241,173,44)" rx="2" ry="2" />
+<text x="772.71" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (2 samples, 0.07%)</title><rect x="1172.8" y="6581" width="0.9" height="15.0" fill="rgb(226,26,0)" rx="2" ry="2" />
+<text x="1175.82" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="804.9" y="5637" width="0.4" height="15.0" fill="rgb(234,220,0)" rx="2" ry="2" />
+<text x="807.91" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="540.9" y="5493" width="2.9" height="15.0" fill="rgb(232,186,9)" rx="2" ry="2" />
+<text x="543.92" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (44 samples, 1.56%)</title><rect x="535.9" y="5589" width="18.4" height="15.0" fill="rgb(234,172,14)" rx="2" ry="2" />
+<text x="538.89" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="541.8" y="5333" width="2.0" height="15.0" fill="rgb(253,146,32)" rx="2" ry="2" />
+<text x="544.75" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="417.3" y="4869" width="2.1" height="15.0" fill="rgb(222,218,41)" rx="2" ry="2" />
+<text x="420.30" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5909" width="0.4" height="15.0" fill="rgb(217,122,28)" rx="2" ry="2" />
+<text x="896.32" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3989" width="5.0" height="15.0" fill="rgb(246,207,44)" rx="2" ry="2" />
+<text x="491.12" y="3999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="362.0" y="4773" width="1.2" height="15.0" fill="rgb(213,69,41)" rx="2" ry="2" />
+<text x="364.99" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4453" width="0.4" height="15.0" fill="rgb(244,191,45)" rx="2" ry="2" />
+<text x="489.86" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4405" width="0.8" height="15.0" fill="rgb(236,86,42)" rx="2" ry="2" />
+<text x="1120.09" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="468.4" y="5189" width="0.4" height="15.0" fill="rgb(219,143,31)" rx="2" ry="2" />
+<text x="471.42" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="456.3" y="5093" width="1.2" height="15.0" fill="rgb(229,147,33)" rx="2" ry="2" />
+<text x="459.27" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="765.5" y="5525" width="0.4" height="15.0" fill="rgb(220,115,1)" rx="2" ry="2" />
+<text x="768.52" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.07%)</title><rect x="240.9" y="6485" width="0.8" height="15.0" fill="rgb(250,170,39)" rx="2" ry="2" />
+<text x="243.89" y="6495.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4517" width="0.4" height="15.0" fill="rgb(221,132,37)" rx="2" ry="2" />
+<text x="546.43" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.9" y="4645" width="0.4" height="15.0" fill="rgb(220,213,53)" rx="2" ry="2" />
+<text x="489.86" y="4655.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3973" width="0.4" height="15.0" fill="rgb(235,70,46)" rx="2" ry="2" />
+<text x="546.43" y="3983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="476.0" y="5013" width="3.3" height="15.0" fill="rgb(221,6,51)" rx="2" ry="2" />
+<text x="478.97" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 0.99%)</title><rect x="1132.2" y="6565" width="11.7" height="15.0" fill="rgb(225,77,50)" rx="2" ry="2" />
+<text x="1135.17" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1162.3" y="6517" width="0.9" height="15.0" fill="rgb(224,176,2)" rx="2" ry="2" />
+<text x="1165.34" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="456.3" y="5141" width="2.1" height="15.0" fill="rgb(219,101,27)" rx="2" ry="2" />
+<text x="459.27" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="493.1" y="4565" width="0.5" height="15.0" fill="rgb(221,205,39)" rx="2" ry="2" />
+<text x="496.15" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (22 samples, 0.78%)</title><rect x="437.0" y="4885" width="9.2" height="15.0" fill="rgb(250,150,5)" rx="2" ry="2" />
+<text x="440.00" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (22 samples, 0.78%)</title><rect x="292.8" y="5093" width="9.3" height="15.0" fill="rgb(253,220,54)" rx="2" ry="2" />
+<text x="295.85" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (10 samples, 0.36%)</title><rect x="812.9" y="5685" width="4.2" height="15.0" fill="rgb(254,59,35)" rx="2" ry="2" />
+<text x="815.87" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="558.9" y="5669" width="0.9" height="15.0" fill="rgb(239,82,7)" rx="2" ry="2" />
+<text x="561.93" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="747.9" y="5141" width="0.9" height="15.0" fill="rgb(251,131,37)" rx="2" ry="2" />
+<text x="750.92" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5253" width="0.4" height="15.0" fill="rgb(206,48,44)" rx="2" ry="2" />
+<text x="563.19" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="301.2" y="4773" width="0.4" height="15.0" fill="rgb(232,103,46)" rx="2" ry="2" />
+<text x="304.23" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 1.99%)</title><rect x="495.2" y="5493" width="23.5" height="15.0" fill="rgb(228,85,25)" rx="2" ry="2" />
+<text x="498.24" y="5503.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="410.6" y="4677" width="0.8" height="15.0" fill="rgb(210,190,27)" rx="2" ry="2" />
+<text x="413.60" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5509" width="0.4" height="15.0" fill="rgb(218,66,26)" rx="2" ry="2" />
+<text x="897.16" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="526.2" y="5685" width="0.9" height="15.0" fill="rgb(212,205,1)" rx="2" ry="2" />
+<text x="529.25" y="5695.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1669" width="0.4" height="15.0" fill="rgb(236,99,43)" rx="2" ry="2" />
+<text x="546.43" y="1679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1162.3" y="6485" width="0.5" height="15.0" fill="rgb(209,213,39)" rx="2" ry="2" />
+<text x="1165.34" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="527.1" y="5845" width="4.6" height="15.0" fill="rgb(206,50,4)" rx="2" ry="2" />
+<text x="530.09" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (3 samples, 0.11%)</title><rect x="549.3" y="5541" width="1.3" height="15.0" fill="rgb(254,165,29)" rx="2" ry="2" />
+<text x="552.30" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="282.8" y="4997" width="0.4" height="15.0" fill="rgb(237,138,24)" rx="2" ry="2" />
+<text x="285.79" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="458.4" y="5109" width="0.4" height="15.0" fill="rgb(220,31,32)" rx="2" ry="2" />
+<text x="461.37" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="528.8" y="5429" width="2.1" height="15.0" fill="rgb(219,16,13)" rx="2" ry="2" />
+<text x="531.76" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="518.7" y="5413" width="0.4" height="15.0" fill="rgb(235,92,52)" rx="2" ry="2" />
+<text x="521.71" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5381" width="0.4" height="15.0" fill="rgb(228,125,27)" rx="2" ry="2" />
+<text x="569.06" y="5391.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="238.4" y="6501" width="0.4" height="15.0" fill="rgb(220,44,40)" rx="2" ry="2" />
+<text x="241.37" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="463.8" y="4709" width="1.3" height="15.0" fill="rgb(215,217,11)" rx="2" ry="2" />
+<text x="466.81" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5765" width="0.9" height="15.0" fill="rgb(213,2,21)" rx="2" ry="2" />
+<text x="896.74" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="300.8" y="4949" width="0.8" height="15.0" fill="rgb(250,25,47)" rx="2" ry="2" />
+<text x="303.81" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4805" width="1.7" height="15.0" fill="rgb(220,178,36)" rx="2" ry="2" />
+<text x="429.10" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="527.9" y="5461" width="0.9" height="15.0" fill="rgb(221,175,36)" rx="2" ry="2" />
+<text x="530.93" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="502.4" y="4997" width="0.4" height="15.0" fill="rgb(235,90,44)" rx="2" ry="2" />
+<text x="505.37" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2869" width="0.4" height="15.0" fill="rgb(225,31,12)" rx="2" ry="2" />
+<text x="546.43" y="2879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="527.9" y="5397" width="0.9" height="15.0" fill="rgb(238,38,39)" rx="2" ry="2" />
+<text x="530.93" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.7" y="5109" width="0.4" height="15.0" fill="rgb(212,138,53)" rx="2" ry="2" />
+<text x="485.67" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="307.9" y="4853" width="0.5" height="15.0" fill="rgb(241,102,14)" rx="2" ry="2" />
+<text x="310.93" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="797.8" y="5429" width="2.1" height="15.0" fill="rgb(247,198,24)" rx="2" ry="2" />
+<text x="800.78" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="401.8" y="4837" width="0.4" height="15.0" fill="rgb(248,92,26)" rx="2" ry="2" />
+<text x="404.80" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (214 samples, 7.60%)</title><rect x="357.4" y="5221" width="89.7" height="15.0" fill="rgb(248,46,18)" rx="2" ry="2" />
+<text x="360.38" y="5231.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="252.2" y="5717" width="0.4" height="15.0" fill="rgb(226,198,21)" rx="2" ry="2" />
+<text x="255.20" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.0" y="4693" width="0.4" height="15.0" fill="rgb(237,172,35)" rx="2" ry="2" />
+<text x="328.95" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6373" width="0.4" height="15.0" fill="rgb(214,158,31)" rx="2" ry="2" />
+<text x="1143.55" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="485.6" y="5045" width="0.8" height="15.0" fill="rgb(252,127,14)" rx="2" ry="2" />
+<text x="488.60" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5541" width="1.3" height="15.0" fill="rgb(250,15,6)" rx="2" ry="2" />
+<text x="760.14" y="5551.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4437" width="0.4" height="15.0" fill="rgb(221,189,33)" rx="2" ry="2" />
+<text x="546.43" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1070.6" y="6133" width="0.4" height="15.0" fill="rgb(229,44,0)" rx="2" ry="2" />
+<text x="1073.58" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="457.5" y="4981" width="0.9" height="15.0" fill="rgb(210,3,51)" rx="2" ry="2" />
+<text x="460.53" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="4981" width="0.5" height="15.0" fill="rgb(226,142,3)" rx="2" ry="2" />
+<text x="716.14" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1122.1" y="6405" width="0.4" height="15.0" fill="rgb(252,96,9)" rx="2" ry="2" />
+<text x="1125.12" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (62 samples, 2.20%)</title><rect x="532.5" y="5733" width="26.0" height="15.0" fill="rgb(246,150,13)" rx="2" ry="2" />
+<text x="535.54" y="5743.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4837" width="0.8" height="15.0" fill="rgb(252,118,26)" rx="2" ry="2" />
+<text x="1120.09" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (2 samples, 0.07%)</title><rect x="10.4" y="6405" width="0.9" height="15.0" fill="rgb(219,170,54)" rx="2" ry="2" />
+<text x="13.42" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="348.6" y="5109" width="0.4" height="15.0" fill="rgb(235,191,42)" rx="2" ry="2" />
+<text x="351.58" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4901" width="0.4" height="15.0" fill="rgb(234,213,5)" rx="2" ry="2" />
+<text x="364.57" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="1140.6" y="6501" width="0.8" height="15.0" fill="rgb(232,108,16)" rx="2" ry="2" />
+<text x="1143.55" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5461" width="101.8" height="15.0" fill="rgb(210,123,25)" rx="2" ry="2" />
+<text x="577.02" y="5471.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5829" width="0.4" height="15.0" fill="rgb(215,97,44)" rx="2" ry="2" />
+<text x="772.71" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4805" width="0.4" height="15.0" fill="rgb(228,36,48)" rx="2" ry="2" />
+<text x="760.98" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4517" width="0.9" height="15.0" fill="rgb(248,106,2)" rx="2" ry="2" />
+<text x="443.35" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="247.2" y="6245" width="0.8" height="15.0" fill="rgb(207,156,19)" rx="2" ry="2" />
+<text x="250.17" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="328.9" y="4997" width="0.8" height="15.0" fill="rgb(243,55,25)" rx="2" ry="2" />
+<text x="331.88" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.0" y="6245" width="0.4" height="15.0" fill="rgb(211,125,13)" rx="2" ry="2" />
+<text x="1143.97" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="520.4" y="5989" width="0.4" height="15.0" fill="rgb(239,211,19)" rx="2" ry="2" />
+<text x="523.38" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5589" width="0.4" height="15.0" fill="rgb(230,194,37)" rx="2" ry="2" />
+<text x="524.22" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="344.8" y="5077" width="0.8" height="15.0" fill="rgb(223,102,50)" rx="2" ry="2" />
+<text x="347.81" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="416.9" y="4901" width="2.5" height="15.0" fill="rgb(241,4,48)" rx="2" ry="2" />
+<text x="419.88" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.46%)</title><rect x="504.0" y="5189" width="5.5" height="15.0" fill="rgb(239,118,37)" rx="2" ry="2" />
+<text x="507.04" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.4" y="5045" width="0.4" height="15.0" fill="rgb(231,36,54)" rx="2" ry="2" />
+<text x="347.39" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="522.9" y="5685" width="1.3" height="15.0" fill="rgb(215,133,15)" rx="2" ry="2" />
+<text x="525.90" y="5695.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="709" width="0.4" height="15.0" fill="rgb(242,208,29)" rx="2" ry="2" />
+<text x="546.43" y="719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="511.6" y="4997" width="0.8" height="15.0" fill="rgb(225,121,27)" rx="2" ry="2" />
+<text x="514.58" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="759.7" y="5797" width="0.8" height="15.0" fill="rgb(235,220,52)" rx="2" ry="2" />
+<text x="762.65" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5509" width="0.4" height="15.0" fill="rgb(251,4,25)" rx="2" ry="2" />
+<text x="576.60" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5477" width="0.4" height="15.0" fill="rgb(229,141,17)" rx="2" ry="2" />
+<text x="897.16" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="798.2" y="5333" width="1.7" height="15.0" fill="rgb(221,60,24)" rx="2" ry="2" />
+<text x="801.20" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (141 samples, 5.01%)</title><rect x="387.5" y="5125" width="59.1" height="15.0" fill="rgb(254,58,19)" rx="2" ry="2" />
+<text x="390.55" y="5135.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="295.8" y="5029" width="2.1" height="15.0" fill="rgb(226,2,36)" rx="2" ry="2" />
+<text x="298.78" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="396.3" y="4869" width="1.3" height="15.0" fill="rgb(205,184,38)" rx="2" ry="2" />
+<text x="399.35" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="544.7" y="5461" width="4.6" height="15.0" fill="rgb(217,45,52)" rx="2" ry="2" />
+<text x="547.69" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="274.4" y="4613" width="0.4" height="15.0" fill="rgb(243,170,27)" rx="2" ry="2" />
+<text x="277.41" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="269.8" y="4901" width="0.4" height="15.0" fill="rgb(224,179,13)" rx="2" ry="2" />
+<text x="272.80" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4661" width="0.4" height="15.0" fill="rgb(211,70,52)" rx="2" ry="2" />
+<text x="546.43" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="278.6" y="4725" width="0.8" height="15.0" fill="rgb(249,159,31)" rx="2" ry="2" />
+<text x="281.60" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="1123.8" y="6533" width="1.7" height="15.0" fill="rgb(236,127,23)" rx="2" ry="2" />
+<text x="1126.79" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3045" width="0.4" height="15.0" fill="rgb(206,206,14)" rx="2" ry="2" />
+<text x="546.43" y="3055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3589" width="0.4" height="15.0" fill="rgb(223,182,24)" rx="2" ry="2" />
+<text x="437.90" y="3599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="761.3" y="5685" width="0.4" height="15.0" fill="rgb(250,226,42)" rx="2" ry="2" />
+<text x="764.33" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="397.6" y="4885" width="0.8" height="15.0" fill="rgb(242,10,48)" rx="2" ry="2" />
+<text x="400.61" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.6" y="5013" width="0.4" height="15.0" fill="rgb(206,67,41)" rx="2" ry="2" />
+<text x="475.61" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4725" width="0.4" height="15.0" fill="rgb(239,106,22)" rx="2" ry="2" />
+<text x="412.76" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.7" y="6485" width="0.4" height="15.0" fill="rgb(209,221,27)" rx="2" ry="2" />
+<text x="1101.65" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="487.3" y="4741" width="6.3" height="15.0" fill="rgb(249,151,27)" rx="2" ry="2" />
+<text x="490.28" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="981" width="0.4" height="15.0" fill="rgb(208,128,27)" rx="2" ry="2" />
+<text x="546.43" y="991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="522.5" y="5701" width="1.7" height="15.0" fill="rgb(235,187,14)" rx="2" ry="2" />
+<text x="525.48" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2149" width="0.4" height="15.0" fill="rgb(220,65,30)" rx="2" ry="2" />
+<text x="546.43" y="2159.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1221" width="0.4" height="15.0" fill="rgb(219,149,51)" rx="2" ry="2" />
+<text x="546.43" y="1231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="375.8" y="5029" width="2.1" height="15.0" fill="rgb(245,57,15)" rx="2" ry="2" />
+<text x="378.82" y="5039.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="177.6" y="6469" width="0.4" height="15.0" fill="rgb(216,153,50)" rx="2" ry="2" />
+<text x="180.61" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="368.7" y="4805" width="0.4" height="15.0" fill="rgb(251,224,0)" rx="2" ry="2" />
+<text x="371.69" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.4" y="5861" width="0.4" height="15.0" fill="rgb(221,19,7)" rx="2" ry="2" />
+<text x="766.42" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (302 samples, 10.72%)</title><rect x="767.2" y="6293" width="126.5" height="15.0" fill="rgb(212,59,15)" rx="2" ry="2" />
+<text x="770.19" y="6303.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="281.5" y="4885" width="0.9" height="15.0" fill="rgb(235,85,13)" rx="2" ry="2" />
+<text x="284.53" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1065.5" y="6341" width="0.5" height="15.0" fill="rgb(219,172,22)" rx="2" ry="2" />
+<text x="1068.55" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5589" width="0.4" height="15.0" fill="rgb(216,24,7)" rx="2" ry="2" />
+<text x="772.71" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4453" width="0.4" height="15.0" fill="rgb(254,152,7)" rx="2" ry="2" />
+<text x="437.90" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6373" width="0.4" height="15.0" fill="rgb(208,170,41)" rx="2" ry="2" />
+<text x="1125.12" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5621" width="0.8" height="15.0" fill="rgb(236,148,5)" rx="2" ry="2" />
+<text x="528.41" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="747.5" y="5189" width="1.3" height="15.0" fill="rgb(205,179,29)" rx="2" ry="2" />
+<text x="750.50" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="478.5" y="4677" width="0.8" height="15.0" fill="rgb(254,189,23)" rx="2" ry="2" />
+<text x="481.48" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (64 samples, 2.27%)</title><rect x="774.3" y="5701" width="26.8" height="15.0" fill="rgb(229,145,7)" rx="2" ry="2" />
+<text x="777.32" y="5711.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="526.2" y="5653" width="0.9" height="15.0" fill="rgb(214,109,27)" rx="2" ry="2" />
+<text x="529.25" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (58 samples, 2.06%)</title><rect x="776.4" y="5637" width="24.3" height="15.0" fill="rgb(225,27,39)" rx="2" ry="2" />
+<text x="779.41" y="5647.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="563.5" y="5573" width="0.5" height="15.0" fill="rgb(238,215,22)" rx="2" ry="2" />
+<text x="566.54" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="279.9" y="4965" width="2.5" height="15.0" fill="rgb(218,175,20)" rx="2" ry="2" />
+<text x="282.86" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4549" width="0.9" height="15.0" fill="rgb(250,101,12)" rx="2" ry="2" />
+<text x="467.23" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="385.5" y="4613" width="0.4" height="15.0" fill="rgb(207,217,46)" rx="2" ry="2" />
+<text x="388.45" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4645" width="0.4" height="15.0" fill="rgb(206,131,10)" rx="2" ry="2" />
+<text x="437.90" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="314.6" y="4949" width="0.9" height="15.0" fill="rgb(211,161,7)" rx="2" ry="2" />
+<text x="317.64" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4821" width="0.5" height="15.0" fill="rgb(243,189,9)" rx="2" ry="2" />
+<text x="469.75" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4581" width="0.4" height="15.0" fill="rgb(205,46,36)" rx="2" ry="2" />
+<text x="437.90" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (212 samples, 7.53%)</title><rect x="260.6" y="5333" width="88.8" height="15.0" fill="rgb(227,32,51)" rx="2" ry="2" />
+<text x="263.58" y="5343.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4613" width="0.4" height="15.0" fill="rgb(243,145,40)" rx="2" ry="2" />
+<text x="437.90" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="362.0" y="4805" width="1.2" height="15.0" fill="rgb(221,143,47)" rx="2" ry="2" />
+<text x="364.99" y="4815.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:356-361) (198 samples, 7.03%)</title><rect x="675.8" y="6037" width="83.0" height="15.0" fill="rgb(234,19,25)" rx="2" ry="2" />
+<text x="678.85" y="6047.5" >{closure}..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="522.5" y="5749" width="1.7" height="15.0" fill="rgb(235,4,52)" rx="2" ry="2" />
+<text x="525.48" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,224 samples, 43.47%)</title><rect x="250.1" y="6133" width="512.9" height="15.0" fill="rgb(241,58,50)" rx="2" ry="2" />
+<text x="253.11" y="6143.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="410.6" y="4693" width="0.8" height="15.0" fill="rgb(205,149,3)" rx="2" ry="2" />
+<text x="413.60" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4869" width="0.8" height="15.0" fill="rgb(215,213,45)" rx="2" ry="2" />
+<text x="1120.09" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1138.9" y="6549" width="0.4" height="15.0" fill="rgb(224,98,31)" rx="2" ry="2" />
+<text x="1141.88" y="6559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2165" width="0.4" height="15.0" fill="rgb(247,117,41)" rx="2" ry="2" />
+<text x="437.90" y="2175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="499.4" y="5237" width="3.4" height="15.0" fill="rgb(222,70,11)" rx="2" ry="2" />
+<text x="502.43" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5685" width="0.4" height="15.0" fill="rgb(242,109,45)" rx="2" ry="2" />
+<text x="767.68" y="5695.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1973" width="0.4" height="15.0" fill="rgb(252,145,13)" rx="2" ry="2" />
+<text x="546.43" y="1983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="817.1" y="5685" width="3.3" height="15.0" fill="rgb(227,141,52)" rx="2" ry="2" />
+<text x="820.06" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (25 samples, 0.89%)</title><rect x="689.3" y="5365" width="10.4" height="15.0" fill="rgb(211,127,34)" rx="2" ry="2" />
+<text x="692.25" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="767.2" y="5653" width="2.5" height="15.0" fill="rgb(213,45,45)" rx="2" ry="2" />
+<text x="770.19" y="5663.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="613" width="0.4" height="15.0" fill="rgb(233,99,47)" rx="2" ry="2" />
+<text x="546.43" y="623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="527.9" y="5765" width="3.8" height="15.0" fill="rgb(229,199,14)" rx="2" ry="2" />
+<text x="530.93" y="5775.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3733" width="0.4" height="15.0" fill="rgb(217,44,54)" rx="2" ry="2" />
+<text x="437.90" y="3743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="324.3" y="4853" width="0.4" height="15.0" fill="rgb(219,15,33)" rx="2" ry="2" />
+<text x="327.28" y="4863.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3605" width="0.4" height="15.0" fill="rgb(235,7,52)" rx="2" ry="2" />
+<text x="546.43" y="3615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (301 samples, 10.69%)</title><rect x="767.2" y="6117" width="126.1" height="15.0" fill="rgb(220,146,7)" rx="2" ry="2" />
+<text x="770.19" y="6127.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="463.8" y="4741" width="1.3" height="15.0" fill="rgb(231,13,21)" rx="2" ry="2" />
+<text x="466.81" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="749.2" y="5173" width="0.8" height="15.0" fill="rgb(205,2,52)" rx="2" ry="2" />
+<text x="752.18" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="835.9" y="5493" width="0.4" height="15.0" fill="rgb(209,122,37)" rx="2" ry="2" />
+<text x="838.92" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="875.7" y="5429" width="0.9" height="15.0" fill="rgb(212,221,2)" rx="2" ry="2" />
+<text x="878.72" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (194 samples, 6.89%)</title><rect x="675.8" y="5765" width="81.3" height="15.0" fill="rgb(225,87,12)" rx="2" ry="2" />
+<text x="678.85" y="5775.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="420.2" y="4965" width="1.3" height="15.0" fill="rgb(250,178,21)" rx="2" ry="2" />
+<text x="423.23" y="4975.5" ></text>
+</g>
+<g >
+<title>print_r (10 samples, 0.36%)</title><rect x="168.0" y="6453" width="4.2" height="15.0" fill="rgb(243,82,16)" rx="2" ry="2" />
+<text x="170.98" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4869" width="0.4" height="15.0" fill="rgb(244,170,40)" rx="2" ry="2" />
+<text x="272.80" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="273.2" y="5029" width="1.6" height="15.0" fill="rgb(251,96,28)" rx="2" ry="2" />
+<text x="276.15" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="435.7" y="4741" width="0.5" height="15.0" fill="rgb(223,2,12)" rx="2" ry="2" />
+<text x="438.74" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="263.5" y="5109" width="1.3" height="15.0" fill="rgb(217,46,36)" rx="2" ry="2" />
+<text x="266.52" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4741" width="0.5" height="15.0" fill="rgb(243,28,35)" rx="2" ry="2" />
+<text x="346.13" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5605" width="81.3" height="15.0" fill="rgb(212,125,22)" rx="2" ry="2" />
+<text x="678.85" y="5615.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5829" width="0.4" height="15.0" fill="rgb(242,182,44)" rx="2" ry="2" />
+<text x="774.80" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4645" width="0.4" height="15.0" fill="rgb(210,20,2)" rx="2" ry="2" />
+<text x="329.79" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="411.4" y="4885" width="0.9" height="15.0" fill="rgb(227,223,13)" rx="2" ry="2" />
+<text x="414.43" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5013" width="0.4" height="15.0" fill="rgb(223,227,20)" rx="2" ry="2" />
+<text x="520.87" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4581" width="0.4" height="15.0" fill="rgb(239,3,23)" rx="2" ry="2" />
+<text x="412.76" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.3" y="5749" width="0.4" height="15.0" fill="rgb(249,30,46)" rx="2" ry="2" />
+<text x="767.26" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5989" width="0.4" height="15.0" fill="rgb(207,110,38)" rx="2" ry="2" />
+<text x="768.52" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5957" width="0.4" height="15.0" fill="rgb(230,11,39)" rx="2" ry="2" />
+<text x="1073.99" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="457.5" y="5093" width="0.9" height="15.0" fill="rgb(251,225,29)" rx="2" ry="2" />
+<text x="460.53" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.3" y="5349" width="0.4" height="15.0" fill="rgb(206,44,47)" rx="2" ry="2" />
+<text x="772.29" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4501" width="0.9" height="15.0" fill="rgb(246,28,22)" rx="2" ry="2" />
+<text x="467.23" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="482.7" y="5173" width="0.4" height="15.0" fill="rgb(218,188,43)" rx="2" ry="2" />
+<text x="485.67" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4741" width="0.9" height="15.0" fill="rgb(233,218,49)" rx="2" ry="2" />
+<text x="388.04" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.04%)</title><rect x="829.6" y="5621" width="0.4" height="15.0" fill="rgb(214,152,30)" rx="2" ry="2" />
+<text x="832.63" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="478.5" y="4693" width="0.8" height="15.0" fill="rgb(216,128,24)" rx="2" ry="2" />
+<text x="481.48" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4437" width="0.5" height="15.0" fill="rgb(248,107,25)" rx="2" ry="2" />
+<text x="346.13" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="892.5" y="5733" width="0.4" height="15.0" fill="rgb(234,194,48)" rx="2" ry="2" />
+<text x="895.49" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="4789" width="0.4" height="15.0" fill="rgb(220,180,17)" rx="2" ry="2" />
+<text x="760.98" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (46 samples, 1.63%)</title><rect x="1100.3" y="6501" width="19.3" height="15.0" fill="rgb(214,128,38)" rx="2" ry="2" />
+<text x="1103.33" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (123 samples, 4.37%)</title><rect x="289.5" y="5237" width="51.5" height="15.0" fill="rgb(238,74,42)" rx="2" ry="2" />
+<text x="292.50" y="5247.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5205" width="0.4" height="15.0" fill="rgb(219,102,24)" rx="2" ry="2" />
+<text x="685.13" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="493.1" y="4533" width="0.5" height="15.0" fill="rgb(252,200,43)" rx="2" ry="2" />
+<text x="496.15" y="4543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4469" width="0.4" height="15.0" fill="rgb(222,121,44)" rx="2" ry="2" />
+<text x="546.43" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="894.2" y="5557" width="0.4" height="15.0" fill="rgb(235,51,10)" rx="2" ry="2" />
+<text x="897.16" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="485.6" y="4965" width="0.8" height="15.0" fill="rgb(245,180,46)" rx="2" ry="2" />
+<text x="488.60" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4645" width="0.4" height="15.0" fill="rgb(237,61,23)" rx="2" ry="2" />
+<text x="1073.99" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="260.2" y="5189" width="0.4" height="15.0" fill="rgb(234,221,10)" rx="2" ry="2" />
+<text x="263.16" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4197" width="0.4" height="15.0" fill="rgb(208,111,38)" rx="2" ry="2" />
+<text x="443.77" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="226.2" y="6469" width="0.4" height="15.0" fill="rgb(244,43,12)" rx="2" ry="2" />
+<text x="229.22" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1140.6" y="6421" width="0.4" height="15.0" fill="rgb(234,216,6)" rx="2" ry="2" />
+<text x="1143.55" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="1163.2" y="6565" width="0.4" height="15.0" fill="rgb(217,1,52)" rx="2" ry="2" />
+<text x="1166.18" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5237" width="0.4" height="15.0" fill="rgb(229,200,51)" rx="2" ry="2" />
+<text x="760.98" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (636 samples, 22.59%)</title><rect x="253.5" y="5733" width="266.5" height="15.0" fill="rgb(254,76,43)" rx="2" ry="2" />
+<text x="256.46" y="5743.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4357" width="0.4" height="15.0" fill="rgb(228,151,28)" rx="2" ry="2" />
+<text x="414.02" y="4367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2917" width="0.4" height="15.0" fill="rgb(239,180,28)" rx="2" ry="2" />
+<text x="546.43" y="2927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5909" width="0.4" height="15.0" fill="rgb(212,59,27)" rx="2" ry="2" />
+<text x="766.00" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5317" width="0.4" height="15.0" fill="rgb(248,127,36)" rx="2" ry="2" />
+<text x="760.98" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5637" width="0.4" height="15.0" fill="rgb(233,192,32)" rx="2" ry="2" />
+<text x="576.60" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2373" width="0.4" height="15.0" fill="rgb(251,161,27)" rx="2" ry="2" />
+<text x="546.43" y="2383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5509" width="0.4" height="15.0" fill="rgb(230,169,34)" rx="2" ry="2" />
+<text x="1073.99" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="812.9" y="5637" width="4.2" height="15.0" fill="rgb(207,221,14)" rx="2" ry="2" />
+<text x="815.87" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="4965" width="0.4" height="15.0" fill="rgb(233,61,10)" rx="2" ry="2" />
+<text x="475.19" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="526.7" y="5541" width="0.4" height="15.0" fill="rgb(218,14,20)" rx="2" ry="2" />
+<text x="529.67" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="519.1" y="5413" width="0.4" height="15.0" fill="rgb(253,84,4)" rx="2" ry="2" />
+<text x="522.13" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="571.1" y="5749" width="2.5" height="15.0" fill="rgb(251,164,28)" rx="2" ry="2" />
+<text x="574.09" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.8" y="4997" width="0.4" height="15.0" fill="rgb(250,195,38)" rx="2" ry="2" />
+<text x="347.81" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4581" width="0.5" height="15.0" fill="rgb(245,132,37)" rx="2" ry="2" />
+<text x="480.64" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="4885" width="0.5" height="15.0" fill="rgb(234,72,16)" rx="2" ry="2" />
+<text x="469.75" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="482.7" y="5205" width="0.4" height="15.0" fill="rgb(240,209,2)" rx="2" ry="2" />
+<text x="485.67" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4277" width="0.4" height="15.0" fill="rgb(230,187,35)" rx="2" ry="2" />
+<text x="1073.99" y="4287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="279.4" y="4773" width="0.5" height="15.0" fill="rgb(206,7,34)" rx="2" ry="2" />
+<text x="282.44" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5669" width="0.4" height="15.0" fill="rgb(249,164,45)" rx="2" ry="2" />
+<text x="576.60" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (294 samples, 10.44%)</title><rect x="770.1" y="6037" width="123.2" height="15.0" fill="rgb(251,104,5)" rx="2" ry="2" />
+<text x="773.13" y="6047.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (62 samples, 2.20%)</title><rect x="532.5" y="5781" width="26.0" height="15.0" fill="rgb(238,107,34)" rx="2" ry="2" />
+<text x="535.54" y="5791.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="282.8" y="5141" width="1.7" height="15.0" fill="rgb(215,194,33)" rx="2" ry="2" />
+<text x="285.79" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5333" width="0.4" height="15.0" fill="rgb(250,23,0)" rx="2" ry="2" />
+<text x="896.32" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.6" y="5621" width="0.5" height="15.0" fill="rgb(206,195,28)" rx="2" ry="2" />
+<text x="894.65" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="213" width="0.4" height="15.0" fill="rgb(217,10,11)" rx="2" ry="2" />
+<text x="546.43" y="223.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3493" width="0.4" height="15.0" fill="rgb(233,216,39)" rx="2" ry="2" />
+<text x="437.90" y="3503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.3" y="5829" width="0.4" height="15.0" fill="rgb(233,63,25)" rx="2" ry="2" />
+<text x="767.26" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="694.3" y="5333" width="5.0" height="15.0" fill="rgb(250,64,6)" rx="2" ry="2" />
+<text x="697.28" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="467.2" y="5269" width="1.6" height="15.0" fill="rgb(210,18,24)" rx="2" ry="2" />
+<text x="470.17" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="340.6" y="4533" width="0.4" height="15.0" fill="rgb(233,127,48)" rx="2" ry="2" />
+<text x="343.62" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="402.2" y="4869" width="0.9" height="15.0" fill="rgb(235,227,13)" rx="2" ry="2" />
+<text x="405.22" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (304 samples, 10.80%)</title><rect x="767.2" y="6421" width="127.4" height="15.0" fill="rgb(211,190,28)" rx="2" ry="2" />
+<text x="770.19" y="6431.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.07%)</title><rect x="413.9" y="4965" width="0.9" height="15.0" fill="rgb(219,89,10)" rx="2" ry="2" />
+<text x="416.95" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="435.7" y="4757" width="0.5" height="15.0" fill="rgb(230,122,44)" rx="2" ry="2" />
+<text x="438.74" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (243 samples, 8.63%)</title><rect x="574.0" y="5653" width="101.8" height="15.0" fill="rgb(243,53,0)" rx="2" ry="2" />
+<text x="577.02" y="5663.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::phpIntToWasmI32 (1 samples, 0.04%)</title><rect x="468.8" y="5301" width="0.5" height="15.0" fill="rgb(226,37,23)" rx="2" ry="2" />
+<text x="471.84" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="869.4" y="5493" width="7.2" height="15.0" fill="rgb(212,62,21)" rx="2" ry="2" />
+<text x="872.44" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="494.0" y="4965" width="0.4" height="15.0" fill="rgb(239,87,14)" rx="2" ry="2" />
+<text x="496.98" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="789" width="0.4" height="15.0" fill="rgb(208,155,26)" rx="2" ry="2" />
+<text x="546.43" y="799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (27 samples, 0.96%)</title><rect x="329.7" y="5013" width="11.3" height="15.0" fill="rgb(216,22,7)" rx="2" ry="2" />
+<text x="332.72" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5605" width="0.4" height="15.0" fill="rgb(242,89,42)" rx="2" ry="2" />
+<text x="895.49" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5285" width="0.4" height="15.0" fill="rgb(213,173,29)" rx="2" ry="2" />
+<text x="529.67" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="382.1" y="4965" width="0.4" height="15.0" fill="rgb(234,127,4)" rx="2" ry="2" />
+<text x="385.10" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5813" width="0.8" height="15.0" fill="rgb(243,62,45)" rx="2" ry="2" />
+<text x="1120.09" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="519.1" y="5461" width="0.4" height="15.0" fill="rgb(225,215,44)" rx="2" ry="2" />
+<text x="522.13" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="5125" width="0.4" height="15.0" fill="rgb(251,224,12)" rx="2" ry="2" />
+<text x="475.19" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="526.7" y="5413" width="0.4" height="15.0" fill="rgb(225,210,10)" rx="2" ry="2" />
+<text x="529.67" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4661" width="0.5" height="15.0" fill="rgb(242,116,21)" rx="2" ry="2" />
+<text x="346.13" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="800.3" y="5573" width="0.4" height="15.0" fill="rgb(224,178,39)" rx="2" ry="2" />
+<text x="803.30" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5909" width="0.4" height="15.0" fill="rgb(238,113,52)" rx="2" ry="2" />
+<text x="761.39" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5141" width="0.5" height="15.0" fill="rgb(205,83,27)" rx="2" ry="2" />
+<text x="716.14" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (45 samples, 1.60%)</title><rect x="535.5" y="5653" width="18.8" height="15.0" fill="rgb(234,118,12)" rx="2" ry="2" />
+<text x="538.47" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6405" width="1.3" height="15.0" fill="rgb(225,46,27)" rx="2" ry="2" />
+<text x="768.94" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="1070.2" y="6245" width="1.2" height="15.0" fill="rgb(210,37,7)" rx="2" ry="2" />
+<text x="1073.16" y="6255.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2773" width="0.4" height="15.0" fill="rgb(227,142,25)" rx="2" ry="2" />
+<text x="437.90" y="2783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="878.7" y="5685" width="0.4" height="15.0" fill="rgb(217,51,20)" rx="2" ry="2" />
+<text x="881.66" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5701" width="101.8" height="15.0" fill="rgb(241,126,8)" rx="2" ry="2" />
+<text x="577.02" y="5711.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="342.3" y="5205" width="1.3" height="15.0" fill="rgb(212,113,21)" rx="2" ry="2" />
+<text x="345.29" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="346.9" y="5109" width="0.4" height="15.0" fill="rgb(251,110,29)" rx="2" ry="2" />
+<text x="349.90" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1120.4" y="6501" width="0.5" height="15.0" fill="rgb(229,101,37)" rx="2" ry="2" />
+<text x="1123.44" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5589" width="0.4" height="15.0" fill="rgb(207,14,48)" rx="2" ry="2" />
+<text x="767.68" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4133" width="0.5" height="15.0" fill="rgb(217,44,45)" rx="2" ry="2" />
+<text x="480.64" y="4143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="247.6" y="6165" width="0.4" height="15.0" fill="rgb(209,65,1)" rx="2" ry="2" />
+<text x="250.59" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4741" width="0.4" height="15.0" fill="rgb(206,49,3)" rx="2" ry="2" />
+<text x="463.88" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="878.7" y="5589" width="0.4" height="15.0" fill="rgb(206,220,32)" rx="2" ry="2" />
+<text x="881.66" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="263.1" y="5109" width="0.4" height="15.0" fill="rgb(238,225,11)" rx="2" ry="2" />
+<text x="266.10" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.4" y="4981" width="0.4" height="15.0" fill="rgb(219,191,42)" rx="2" ry="2" />
+<text x="505.37" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="256.8" y="5285" width="0.4" height="15.0" fill="rgb(254,24,45)" rx="2" ry="2" />
+<text x="259.81" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3813" width="5.0" height="15.0" fill="rgb(246,156,7)" rx="2" ry="2" />
+<text x="491.12" y="3823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4997" width="0.5" height="15.0" fill="rgb(223,113,17)" rx="2" ry="2" />
+<text x="469.75" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="327.6" y="4853" width="0.4" height="15.0" fill="rgb(228,38,50)" rx="2" ry="2" />
+<text x="330.63" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="464.7" y="3877" width="0.4" height="15.0" fill="rgb(219,147,40)" rx="2" ry="2" />
+<text x="467.65" y="3887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="476.0" y="4997" width="3.3" height="15.0" fill="rgb(254,101,13)" rx="2" ry="2" />
+<text x="478.97" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (26 samples, 0.92%)</title><rect x="520.8" y="6005" width="10.9" height="15.0" fill="rgb(228,9,43)" rx="2" ry="2" />
+<text x="523.80" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.67%)</title><rect x="362.0" y="5029" width="8.0" height="15.0" fill="rgb(210,76,42)" rx="2" ry="2" />
+<text x="364.99" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="525.4" y="5573" width="0.8" height="15.0" fill="rgb(226,227,20)" rx="2" ry="2" />
+<text x="528.41" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1183.7" y="6565" width="0.4" height="15.0" fill="rgb(213,199,47)" rx="2" ry="2" />
+<text x="1186.71" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="412.7" y="4981" width="0.4" height="15.0" fill="rgb(213,71,27)" rx="2" ry="2" />
+<text x="415.69" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="416.9" y="4917" width="2.5" height="15.0" fill="rgb(245,36,26)" rx="2" ry="2" />
+<text x="419.88" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5045" width="0.4" height="15.0" fill="rgb(243,174,26)" rx="2" ry="2" />
+<text x="1073.99" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3877" width="0.4" height="15.0" fill="rgb(222,71,47)" rx="2" ry="2" />
+<text x="546.43" y="3887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5765" width="0.4" height="15.0" fill="rgb(237,98,49)" rx="2" ry="2" />
+<text x="767.26" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="799.0" y="5269" width="0.9" height="15.0" fill="rgb(234,5,27)" rx="2" ry="2" />
+<text x="802.04" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5589" width="0.4" height="15.0" fill="rgb(218,190,48)" rx="2" ry="2" />
+<text x="576.60" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="893.7" y="5797" width="0.9" height="15.0" fill="rgb(235,142,39)" rx="2" ry="2" />
+<text x="896.74" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="763.4" y="6005" width="2.1" height="15.0" fill="rgb(247,43,4)" rx="2" ry="2" />
+<text x="766.42" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="426.1" y="4725" width="1.7" height="15.0" fill="rgb(223,29,12)" rx="2" ry="2" />
+<text x="429.10" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="308.4" y="5013" width="1.6" height="15.0" fill="rgb(240,63,26)" rx="2" ry="2" />
+<text x="311.35" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5733" width="0.9" height="15.0" fill="rgb(248,134,50)" rx="2" ry="2" />
+<text x="896.74" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="378.3" y="5205" width="0.5" height="15.0" fill="rgb(215,26,13)" rx="2" ry="2" />
+<text x="381.33" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4405" width="0.9" height="15.0" fill="rgb(218,52,42)" rx="2" ry="2" />
+<text x="467.23" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="787.3" y="5285" width="8.4" height="15.0" fill="rgb(249,87,5)" rx="2" ry="2" />
+<text x="790.31" y="5295.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3669" width="0.4" height="15.0" fill="rgb(219,125,42)" rx="2" ry="2" />
+<text x="437.90" y="3679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="527.9" y="5429" width="0.9" height="15.0" fill="rgb(229,81,48)" rx="2" ry="2" />
+<text x="530.93" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="748.3" y="4981" width="0.5" height="15.0" fill="rgb(230,3,41)" rx="2" ry="2" />
+<text x="751.34" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4197" width="0.5" height="15.0" fill="rgb(220,69,43)" rx="2" ry="2" />
+<text x="480.64" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="250.9" y="5813" width="2.6" height="15.0" fill="rgb(230,176,43)" rx="2" ry="2" />
+<text x="253.94" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6165" width="2.1" height="15.0" fill="rgb(210,175,25)" rx="2" ry="2" />
+<text x="251.01" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="5029" width="0.4" height="15.0" fill="rgb(229,117,34)" rx="2" ry="2" />
+<text x="351.58" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="526.2" y="5669" width="0.9" height="15.0" fill="rgb(248,118,31)" rx="2" ry="2" />
+<text x="529.25" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="1055.5" y="6501" width="17.6" height="15.0" fill="rgb(210,228,24)" rx="2" ry="2" />
+<text x="1058.49" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="278.6" y="4789" width="0.8" height="15.0" fill="rgb(209,159,53)" rx="2" ry="2" />
+<text x="281.60" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (56 samples, 1.99%)</title><rect x="776.8" y="5573" width="23.5" height="15.0" fill="rgb(252,152,35)" rx="2" ry="2" />
+<text x="779.83" y="5583.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (9 samples, 0.32%)</title><rect x="514.5" y="5349" width="3.8" height="15.0" fill="rgb(244,221,37)" rx="2" ry="2" />
+<text x="517.52" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4789" width="0.5" height="15.0" fill="rgb(250,36,32)" rx="2" ry="2" />
+<text x="346.13" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="305.4" y="5061" width="4.6" height="15.0" fill="rgb(235,32,47)" rx="2" ry="2" />
+<text x="308.42" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5877" width="0.8" height="15.0" fill="rgb(240,32,53)" rx="2" ry="2" />
+<text x="1120.09" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4549" width="0.9" height="15.0" fill="rgb(220,211,29)" rx="2" ry="2" />
+<text x="443.35" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6037" width="0.8" height="15.0" fill="rgb(217,203,4)" rx="2" ry="2" />
+<text x="1120.09" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1070.6" y="6165" width="0.4" height="15.0" fill="rgb(240,109,41)" rx="2" ry="2" />
+<text x="1073.58" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (113 samples, 4.01%)</title><rect x="773.9" y="5845" width="47.3" height="15.0" fill="rgb(220,194,27)" rx="2" ry="2" />
+<text x="776.90" y="5855.5" >Nsfi..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2229" width="0.4" height="15.0" fill="rgb(210,168,18)" rx="2" ry="2" />
+<text x="546.43" y="2239.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3301" width="0.4" height="15.0" fill="rgb(241,53,14)" rx="2" ry="2" />
+<text x="546.43" y="3311.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3221" width="0.4" height="15.0" fill="rgb(245,100,49)" rx="2" ry="2" />
+<text x="437.90" y="3231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="338.9" y="4773" width="2.1" height="15.0" fill="rgb(244,172,16)" rx="2" ry="2" />
+<text x="341.94" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5861" width="1.3" height="15.0" fill="rgb(232,199,15)" rx="2" ry="2" />
+<text x="760.14" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="758.0" y="5349" width="0.4" height="15.0" fill="rgb(243,179,7)" rx="2" ry="2" />
+<text x="760.98" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,224 samples, 43.47%)</title><rect x="250.1" y="6181" width="512.9" height="15.0" fill="rgb(224,166,1)" rx="2" ry="2" />
+<text x="253.11" y="6191.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="349.4" y="5333" width="0.4" height="15.0" fill="rgb(222,153,7)" rx="2" ry="2" />
+<text x="352.42" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="396.3" y="4853" width="1.3" height="15.0" fill="rgb(237,36,29)" rx="2" ry="2" />
+<text x="399.35" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (17 samples, 0.60%)</title><rect x="362.0" y="4997" width="7.1" height="15.0" fill="rgb(238,199,0)" rx="2" ry="2" />
+<text x="364.99" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="5045" width="6.7" height="15.0" fill="rgb(226,138,4)" rx="2" ry="2" />
+<text x="489.86" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.75%)</title><rect x="558.5" y="5765" width="8.8" height="15.0" fill="rgb(243,179,18)" rx="2" ry="2" />
+<text x="561.52" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.4" y="5013" width="0.4" height="15.0" fill="rgb(237,222,52)" rx="2" ry="2" />
+<text x="347.39" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="307.9" y="4949" width="0.5" height="15.0" fill="rgb(238,80,38)" rx="2" ry="2" />
+<text x="310.93" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="478.5" y="4725" width="0.8" height="15.0" fill="rgb(225,154,37)" rx="2" ry="2" />
+<text x="481.48" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="331.0" y="4965" width="0.4" height="15.0" fill="rgb(214,171,53)" rx="2" ry="2" />
+<text x="333.98" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (161 samples, 5.72%)</title><rect x="379.2" y="5189" width="67.4" height="15.0" fill="rgb(238,42,45)" rx="2" ry="2" />
+<text x="382.17" y="5199.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.28%)</title><rect x="313.8" y="4981" width="15.1" height="15.0" fill="rgb(246,124,20)" rx="2" ry="2" />
+<text x="316.80" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="526.7" y="5493" width="0.4" height="15.0" fill="rgb(208,216,10)" rx="2" ry="2" />
+<text x="529.67" y="5503.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3941" width="0.4" height="15.0" fill="rgb(228,25,53)" rx="2" ry="2" />
+<text x="546.43" y="3951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="478.9" y="4661" width="0.4" height="15.0" fill="rgb(222,146,9)" rx="2" ry="2" />
+<text x="481.90" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="340.2" y="4597" width="0.8" height="15.0" fill="rgb(237,70,30)" rx="2" ry="2" />
+<text x="343.20" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="514.5" y="5269" width="3.4" height="15.0" fill="rgb(235,222,12)" rx="2" ry="2" />
+<text x="517.52" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5477" width="0.4" height="15.0" fill="rgb(221,93,9)" rx="2" ry="2" />
+<text x="563.19" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="749.2" y="5157" width="0.8" height="15.0" fill="rgb(213,175,54)" rx="2" ry="2" />
+<text x="752.18" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4661" width="0.4" height="15.0" fill="rgb(219,84,35)" rx="2" ry="2" />
+<text x="329.79" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.5" y="4965" width="0.4" height="15.0" fill="rgb(224,96,19)" rx="2" ry="2" />
+<text x="416.53" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="434.9" y="4309" width="0.4" height="15.0" fill="rgb(234,48,39)" rx="2" ry="2" />
+<text x="437.90" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="700.1" y="5397" width="0.5" height="15.0" fill="rgb(222,66,53)" rx="2" ry="2" />
+<text x="703.15" y="5407.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2197" width="0.4" height="15.0" fill="rgb(253,4,44)" rx="2" ry="2" />
+<text x="546.43" y="2207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.7" y="5477" width="0.4" height="15.0" fill="rgb(236,156,49)" rx="2" ry="2" />
+<text x="565.71" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="333.1" y="4869" width="1.2" height="15.0" fill="rgb(217,57,10)" rx="2" ry="2" />
+<text x="336.08" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6213" width="0.4" height="15.0" fill="rgb(249,137,44)" rx="2" ry="2" />
+<text x="1143.55" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="750.9" y="5269" width="0.4" height="15.0" fill="rgb(236,103,44)" rx="2" ry="2" />
+<text x="753.85" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3637" width="0.4" height="15.0" fill="rgb(213,134,54)" rx="2" ry="2" />
+<text x="437.90" y="3647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="758.4" y="5445" width="0.4" height="15.0" fill="rgb(234,197,16)" rx="2" ry="2" />
+<text x="761.39" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="5061" width="0.5" height="15.0" fill="rgb(227,162,41)" rx="2" ry="2" />
+<text x="469.75" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1145.2" y="6485" width="0.4" height="15.0" fill="rgb(217,69,49)" rx="2" ry="2" />
+<text x="1148.16" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (304 samples, 10.80%)</title><rect x="767.2" y="6453" width="127.4" height="15.0" fill="rgb(225,168,6)" rx="2" ry="2" />
+<text x="770.19" y="6463.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="4837" width="1.3" height="15.0" fill="rgb(248,35,45)" rx="2" ry="2" />
+<text x="348.65" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::loadByte (1 samples, 0.04%)</title><rect x="457.9" y="4869" width="0.5" height="15.0" fill="rgb(219,223,54)" rx="2" ry="2" />
+<text x="460.95" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="494.0" y="5093" width="0.4" height="15.0" fill="rgb(236,112,31)" rx="2" ry="2" />
+<text x="496.98" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6277" width="0.4" height="15.0" fill="rgb(209,83,43)" rx="2" ry="2" />
+<text x="1125.12" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateFrame (1 samples, 0.04%)</title><rect x="890.8" y="5653" width="0.4" height="15.0" fill="rgb(251,80,38)" rx="2" ry="2" />
+<text x="893.81" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="894.2" y="5621" width="0.4" height="15.0" fill="rgb(252,227,30)" rx="2" ry="2" />
+<text x="897.16" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="282.8" y="5061" width="0.4" height="15.0" fill="rgb(252,98,18)" rx="2" ry="2" />
+<text x="285.79" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5621" width="0.4" height="15.0" fill="rgb(240,25,0)" rx="2" ry="2" />
+<text x="895.49" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4725" width="0.4" height="15.0" fill="rgb(234,198,26)" rx="2" ry="2" />
+<text x="272.80" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.04%)</title><rect x="249.3" y="5925" width="0.4" height="15.0" fill="rgb(210,117,39)" rx="2" ry="2" />
+<text x="252.27" y="5935.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="435.7" y="4693" width="0.5" height="15.0" fill="rgb(206,89,35)" rx="2" ry="2" />
+<text x="438.74" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="530.9" y="5541" width="0.4" height="15.0" fill="rgb(250,129,20)" rx="2" ry="2" />
+<text x="533.86" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1057.2" y="6389" width="0.4" height="15.0" fill="rgb(222,182,9)" rx="2" ry="2" />
+<text x="1060.17" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.82%)</title><rect x="449.1" y="5269" width="9.7" height="15.0" fill="rgb(215,143,34)" rx="2" ry="2" />
+<text x="452.15" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5717" width="2.5" height="15.0" fill="rgb(245,63,22)" rx="2" ry="2" />
+<text x="770.19" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="757" width="0.4" height="15.0" fill="rgb(227,137,24)" rx="2" ry="2" />
+<text x="546.43" y="767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6053" width="0.4" height="15.0" fill="rgb(246,5,51)" rx="2" ry="2" />
+<text x="13.42" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.6" y="5637" width="0.5" height="15.0" fill="rgb(206,126,41)" rx="2" ry="2" />
+<text x="894.65" y="5647.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="554.7" y="5541" width="0.5" height="15.0" fill="rgb(234,128,30)" rx="2" ry="2" />
+<text x="557.74" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="362.0" y="4853" width="1.2" height="15.0" fill="rgb(218,140,4)" rx="2" ry="2" />
+<text x="364.99" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6069" width="0.4" height="15.0" fill="rgb(251,182,15)" rx="2" ry="2" />
+<text x="13.42" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="757.1" y="5893" width="1.3" height="15.0" fill="rgb(249,208,50)" rx="2" ry="2" />
+<text x="760.14" y="5903.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1797" width="0.4" height="15.0" fill="rgb(209,87,47)" rx="2" ry="2" />
+<text x="546.43" y="1807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1169.0" y="6533" width="0.5" height="15.0" fill="rgb(214,6,46)" rx="2" ry="2" />
+<text x="1172.05" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="326.4" y="4757" width="0.4" height="15.0" fill="rgb(240,109,20)" rx="2" ry="2" />
+<text x="329.37" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="472.6" y="5093" width="7.1" height="15.0" fill="rgb(230,84,26)" rx="2" ry="2" />
+<text x="475.61" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="5173" width="0.5" height="15.0" fill="rgb(214,1,5)" rx="2" ry="2" />
+<text x="489.44" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="517.0" y="4981" width="0.5" height="15.0" fill="rgb(224,142,19)" rx="2" ry="2" />
+<text x="520.03" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,546 samples, 54.90%)</title><rect x="246.8" y="6533" width="647.8" height="15.0" fill="rgb(243,147,10)" rx="2" ry="2" />
+<text x="249.75" y="6543.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="4949" width="0.4" height="15.0" fill="rgb(207,146,48)" rx="2" ry="2" />
+<text x="487.77" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="396.3" y="4901" width="1.3" height="15.0" fill="rgb(231,217,7)" rx="2" ry="2" />
+<text x="399.35" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="466.7" y="4805" width="0.5" height="15.0" fill="rgb(226,115,14)" rx="2" ry="2" />
+<text x="469.75" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="774.3" y="5605" width="2.1" height="15.0" fill="rgb(244,57,34)" rx="2" ry="2" />
+<text x="777.32" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="548.9" y="5429" width="0.4" height="15.0" fill="rgb(205,208,4)" rx="2" ry="2" />
+<text x="551.88" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (212 samples, 7.53%)</title><rect x="260.6" y="5317" width="88.8" height="15.0" fill="rgb(222,104,39)" rx="2" ry="2" />
+<text x="263.58" y="5327.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1125.0" y="6501" width="0.5" height="15.0" fill="rgb(206,208,20)" rx="2" ry="2" />
+<text x="1128.05" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4165" width="0.5" height="15.0" fill="rgb(248,128,51)" rx="2" ry="2" />
+<text x="480.64" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="390.1" y="5045" width="0.4" height="15.0" fill="rgb(228,131,26)" rx="2" ry="2" />
+<text x="393.06" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1088.6" y="6533" width="0.4" height="15.0" fill="rgb(215,66,33)" rx="2" ry="2" />
+<text x="1091.59" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="566.1" y="5253" width="0.4" height="15.0" fill="rgb(254,93,42)" rx="2" ry="2" />
+<text x="569.06" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="345.6" y="4917" width="1.3" height="15.0" fill="rgb(242,157,6)" rx="2" ry="2" />
+<text x="348.65" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.5" y="6533" width="0.4" height="15.0" fill="rgb(244,21,6)" rx="2" ry="2" />
+<text x="1141.46" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4389" width="0.4" height="15.0" fill="rgb(239,169,45)" rx="2" ry="2" />
+<text x="546.43" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6245" width="0.4" height="15.0" fill="rgb(244,194,37)" rx="2" ry="2" />
+<text x="13.42" y="6255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5957" width="0.4" height="15.0" fill="rgb(227,97,44)" rx="2" ry="2" />
+<text x="774.80" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (30 samples, 1.07%)</title><rect x="807.8" y="5733" width="12.6" height="15.0" fill="rgb(208,83,44)" rx="2" ry="2" />
+<text x="810.84" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4341" width="0.5" height="15.0" fill="rgb(220,193,16)" rx="2" ry="2" />
+<text x="480.64" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="434.5" y="4821" width="0.8" height="15.0" fill="rgb(214,185,47)" rx="2" ry="2" />
+<text x="437.48" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.2" y="4933" width="0.4" height="15.0" fill="rgb(205,130,8)" rx="2" ry="2" />
+<text x="475.19" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="511.6" y="5317" width="2.1" height="15.0" fill="rgb(229,189,26)" rx="2" ry="2" />
+<text x="514.58" y="5327.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2805" width="0.4" height="15.0" fill="rgb(230,64,16)" rx="2" ry="2" />
+<text x="437.90" y="2815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="513.7" y="5381" width="5.0" height="15.0" fill="rgb(222,223,43)" rx="2" ry="2" />
+<text x="516.68" y="5391.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1717" width="0.4" height="15.0" fill="rgb(208,168,3)" rx="2" ry="2" />
+<text x="546.43" y="1727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.4" y="5877" width="0.4" height="15.0" fill="rgb(242,223,25)" rx="2" ry="2" />
+<text x="766.42" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6165" width="0.4" height="15.0" fill="rgb(214,144,38)" rx="2" ry="2" />
+<text x="896.32" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="893.3" y="5429" width="0.4" height="15.0" fill="rgb(236,62,52)" rx="2" ry="2" />
+<text x="896.32" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="1107.9" y="6405" width="10.9" height="15.0" fill="rgb(222,39,9)" rx="2" ry="2" />
+<text x="1110.87" y="6415.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1253" width="0.4" height="15.0" fill="rgb(210,170,1)" rx="2" ry="2" />
+<text x="546.43" y="1263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5781" width="0.9" height="15.0" fill="rgb(241,193,10)" rx="2" ry="2" />
+<text x="896.74" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5029" width="1.6" height="15.0" fill="rgb(235,101,6)" rx="2" ry="2" />
+<text x="545.17" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="837" width="0.4" height="15.0" fill="rgb(219,83,20)" rx="2" ry="2" />
+<text x="546.43" y="847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::Num (7 samples, 0.25%)</title><rect x="1173.7" y="6581" width="2.9" height="15.0" fill="rgb(239,131,4)" rx="2" ry="2" />
+<text x="1176.66" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="797.4" y="5493" width="2.5" height="15.0" fill="rgb(211,82,51)" rx="2" ry="2" />
+<text x="800.37" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6037" width="0.4" height="15.0" fill="rgb(242,50,11)" rx="2" ry="2" />
+<text x="1073.99" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="509.1" y="5029" width="0.4" height="15.0" fill="rgb(226,107,48)" rx="2" ry="2" />
+<text x="512.07" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="5109" width="0.8" height="15.0" fill="rgb(209,191,27)" rx="2" ry="2" />
+<text x="512.91" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4821" width="0.4" height="15.0" fill="rgb(210,175,46)" rx="2" ry="2" />
+<text x="364.57" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5637" width="0.4" height="15.0" fill="rgb(214,13,30)" rx="2" ry="2" />
+<text x="766.00" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5733" width="0.4" height="15.0" fill="rgb(229,11,39)" rx="2" ry="2" />
+<text x="774.80" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6373" width="0.9" height="15.0" fill="rgb(252,178,16)" rx="2" ry="2" />
+<text x="896.74" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="519.1" y="5493" width="0.4" height="15.0" fill="rgb(249,103,29)" rx="2" ry="2" />
+<text x="522.13" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="457.5" y="4997" width="0.9" height="15.0" fill="rgb(228,101,39)" rx="2" ry="2" />
+<text x="460.53" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4325" width="0.4" height="15.0" fill="rgb(227,149,15)" rx="2" ry="2" />
+<text x="437.90" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="670.4" y="5221" width="0.4" height="15.0" fill="rgb(242,85,42)" rx="2" ry="2" />
+<text x="673.40" y="5231.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:673-682) (1 samples, 0.04%)</title><rect x="368.7" y="4725" width="0.4" height="15.0" fill="rgb(236,174,33)" rx="2" ry="2" />
+<text x="371.69" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="812.9" y="5605" width="4.2" height="15.0" fill="rgb(248,89,49)" rx="2" ry="2" />
+<text x="815.87" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5029" width="0.4" height="15.0" fill="rgb(232,13,1)" rx="2" ry="2" />
+<text x="1073.99" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4469" width="0.4" height="15.0" fill="rgb(238,186,14)" rx="2" ry="2" />
+<text x="496.98" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="564.4" y="5493" width="2.1" height="15.0" fill="rgb(235,190,32)" rx="2" ry="2" />
+<text x="567.38" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="306.7" y="5029" width="3.3" height="15.0" fill="rgb(229,160,3)" rx="2" ry="2" />
+<text x="309.68" y="5039.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="245" width="0.4" height="15.0" fill="rgb(219,118,2)" rx="2" ry="2" />
+<text x="546.43" y="255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (4 samples, 0.14%)</title><rect x="165.9" y="6469" width="1.7" height="15.0" fill="rgb(242,105,45)" rx="2" ry="2" />
+<text x="168.88" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5317" width="0.4" height="15.0" fill="rgb(224,178,14)" rx="2" ry="2" />
+<text x="685.13" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5253" width="0.4" height="15.0" fill="rgb(246,204,16)" rx="2" ry="2" />
+<text x="1073.99" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4133" width="0.4" height="15.0" fill="rgb(242,223,6)" rx="2" ry="2" />
+<text x="467.65" y="4143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1150.2" y="6565" width="0.4" height="15.0" fill="rgb(241,185,53)" rx="2" ry="2" />
+<text x="1153.19" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6181" width="1.3" height="15.0" fill="rgb(223,50,18)" rx="2" ry="2" />
+<text x="768.94" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="273.2" y="5013" width="1.6" height="15.0" fill="rgb(209,33,48)" rx="2" ry="2" />
+<text x="276.15" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5429" width="101.8" height="15.0" fill="rgb(240,15,10)" rx="2" ry="2" />
+<text x="577.02" y="5439.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5605" width="0.4" height="15.0" fill="rgb(254,130,38)" rx="2" ry="2" />
+<text x="768.52" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="756.7" y="5397" width="0.4" height="15.0" fill="rgb(228,158,25)" rx="2" ry="2" />
+<text x="759.72" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5845" width="81.3" height="15.0" fill="rgb(245,104,22)" rx="2" ry="2" />
+<text x="678.85" y="5855.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (20 samples, 0.71%)</title><rect x="215.3" y="6501" width="8.4" height="15.0" fill="rgb(217,7,23)" rx="2" ry="2" />
+<text x="218.33" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1141.0" y="6373" width="0.4" height="15.0" fill="rgb(206,168,24)" rx="2" ry="2" />
+<text x="1143.97" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (65 samples, 2.31%)</title><rect x="1048.4" y="6533" width="27.2" height="15.0" fill="rgb(213,95,15)" rx="2" ry="2" />
+<text x="1051.37" y="6543.5" >N..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3205" width="0.4" height="15.0" fill="rgb(241,144,54)" rx="2" ry="2" />
+<text x="437.90" y="3215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="435.3" y="4773" width="0.9" height="15.0" fill="rgb(215,216,21)" rx="2" ry="2" />
+<text x="438.32" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6229" width="1.3" height="15.0" fill="rgb(234,206,49)" rx="2" ry="2" />
+<text x="768.94" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1123.0" y="6421" width="0.4" height="15.0" fill="rgb(235,124,28)" rx="2" ry="2" />
+<text x="1125.95" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4149" width="0.4" height="15.0" fill="rgb(219,73,53)" rx="2" ry="2" />
+<text x="1120.51" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6149" width="1.3" height="15.0" fill="rgb(231,169,31)" rx="2" ry="2" />
+<text x="768.94" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="1079.0" y="6533" width="0.4" height="15.0" fill="rgb(212,190,23)" rx="2" ry="2" />
+<text x="1081.96" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="409.3" y="4821" width="1.3" height="15.0" fill="rgb(211,72,10)" rx="2" ry="2" />
+<text x="412.34" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4901" width="0.4" height="15.0" fill="rgb(225,223,26)" rx="2" ry="2" />
+<text x="546.43" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3829" width="0.4" height="15.0" fill="rgb(221,14,2)" rx="2" ry="2" />
+<text x="546.43" y="3839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5125" width="0.4" height="15.0" fill="rgb(215,47,26)" rx="2" ry="2" />
+<text x="760.98" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="542.6" y="4981" width="1.2" height="15.0" fill="rgb(226,154,39)" rx="2" ry="2" />
+<text x="545.59" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="476.4" y="4933" width="2.9" height="15.0" fill="rgb(224,221,10)" rx="2" ry="2" />
+<text x="479.38" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (636 samples, 22.59%)</title><rect x="253.5" y="5813" width="266.5" height="15.0" fill="rgb(242,198,21)" rx="2" ry="2" />
+<text x="256.46" y="5823.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1118.8" y="6421" width="0.4" height="15.0" fill="rgb(209,97,38)" rx="2" ry="2" />
+<text x="1121.76" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5669" width="0.5" height="15.0" fill="rgb(219,208,6)" rx="2" ry="2" />
+<text x="573.25" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="836.8" y="5493" width="0.4" height="15.0" fill="rgb(213,221,26)" rx="2" ry="2" />
+<text x="839.75" y="5503.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3717" width="0.4" height="15.0" fill="rgb(218,52,50)" rx="2" ry="2" />
+<text x="437.90" y="3727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="454.2" y="5125" width="0.8" height="15.0" fill="rgb(238,196,53)" rx="2" ry="2" />
+<text x="457.18" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="325.1" y="4837" width="2.5" height="15.0" fill="rgb(220,110,44)" rx="2" ry="2" />
+<text x="328.11" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="363.2" y="4853" width="5.5" height="15.0" fill="rgb(214,97,52)" rx="2" ry="2" />
+<text x="366.25" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="760.9" y="5797" width="0.4" height="15.0" fill="rgb(243,102,28)" rx="2" ry="2" />
+<text x="763.91" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (7 samples, 0.25%)</title><rect x="763.0" y="6117" width="2.9" height="15.0" fill="rgb(223,229,5)" rx="2" ry="2" />
+<text x="766.00" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="4005" width="5.0" height="15.0" fill="rgb(207,206,49)" rx="2" ry="2" />
+<text x="491.12" y="4015.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2277" width="0.4" height="15.0" fill="rgb(205,199,37)" rx="2" ry="2" />
+<text x="546.43" y="2287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (28 samples, 0.99%)</title><rect x="1107.0" y="6437" width="11.8" height="15.0" fill="rgb(215,194,49)" rx="2" ry="2" />
+<text x="1110.03" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="758.8" y="6005" width="2.9" height="15.0" fill="rgb(212,85,33)" rx="2" ry="2" />
+<text x="761.81" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="375.8" y="5077" width="2.1" height="15.0" fill="rgb(208,158,2)" rx="2" ry="2" />
+<text x="378.82" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (643 samples, 22.83%)</title><rect x="250.5" y="5893" width="269.5" height="15.0" fill="rgb(235,44,38)" rx="2" ry="2" />
+<text x="253.53" y="5903.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="745.0" y="5221" width="0.4" height="15.0" fill="rgb(225,100,0)" rx="2" ry="2" />
+<text x="747.99" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6437" width="0.4" height="15.0" fill="rgb(232,28,52)" rx="2" ry="2" />
+<text x="1125.12" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="262.3" y="5205" width="5.0" height="15.0" fill="rgb(241,154,9)" rx="2" ry="2" />
+<text x="265.26" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (4 samples, 0.14%)</title><rect x="1156.9" y="6565" width="1.7" height="15.0" fill="rgb(213,28,25)" rx="2" ry="2" />
+<text x="1159.90" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5397" width="0.4" height="15.0" fill="rgb(244,99,23)" rx="2" ry="2" />
+<text x="897.16" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="362.0" y="4837" width="1.2" height="15.0" fill="rgb(251,131,7)" rx="2" ry="2" />
+<text x="364.99" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="279.9" y="4901" width="1.2" height="15.0" fill="rgb(238,167,22)" rx="2" ry="2" />
+<text x="282.86" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3797" width="0.4" height="15.0" fill="rgb(206,220,53)" rx="2" ry="2" />
+<text x="546.43" y="3807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (12 samples, 0.43%)</title><rect x="381.3" y="5173" width="5.0" height="15.0" fill="rgb(241,47,52)" rx="2" ry="2" />
+<text x="384.26" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="396.3" y="4837" width="1.3" height="15.0" fill="rgb(232,122,24)" rx="2" ry="2" />
+<text x="399.35" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="487.7" y="4341" width="5.4" height="15.0" fill="rgb(252,29,32)" rx="2" ry="2" />
+<text x="490.70" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="5061" width="0.9" height="15.0" fill="rgb(248,53,22)" rx="2" ry="2" />
+<text x="345.71" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="413.5" y="5029" width="6.3" height="15.0" fill="rgb(247,225,8)" rx="2" ry="2" />
+<text x="416.53" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5861" width="0.4" height="15.0" fill="rgb(249,126,21)" rx="2" ry="2" />
+<text x="761.39" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="487.3" y="4677" width="6.3" height="15.0" fill="rgb(251,110,43)" rx="2" ry="2" />
+<text x="490.28" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4901" width="0.4" height="15.0" fill="rgb(226,89,29)" rx="2" ry="2" />
+<text x="487.77" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="344.4" y="5205" width="2.9" height="15.0" fill="rgb(220,29,2)" rx="2" ry="2" />
+<text x="347.39" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.9" y="5045" width="0.4" height="15.0" fill="rgb(206,12,3)" rx="2" ry="2" />
+<text x="486.93" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="798.2" y="5301" width="1.7" height="15.0" fill="rgb(216,93,30)" rx="2" ry="2" />
+<text x="801.20" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="696.4" y="5221" width="2.9" height="15.0" fill="rgb(254,182,32)" rx="2" ry="2" />
+<text x="699.38" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="836.8" y="5477" width="0.4" height="15.0" fill="rgb(239,87,24)" rx="2" ry="2" />
+<text x="839.75" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5509" width="0.5" height="15.0" fill="rgb(238,64,23)" rx="2" ry="2" />
+<text x="573.25" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1140.6" y="6181" width="0.4" height="15.0" fill="rgb(209,179,46)" rx="2" ry="2" />
+<text x="1143.55" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="6117" width="0.4" height="15.0" fill="rgb(250,67,21)" rx="2" ry="2" />
+<text x="1073.99" y="6127.5" ></text>
+</g>
+<g >
+<title>chr (1 samples, 0.04%)</title><rect x="245.1" y="6469" width="0.4" height="15.0" fill="rgb(227,194,23)" rx="2" ry="2" />
+<text x="248.08" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5829" width="81.3" height="15.0" fill="rgb(208,99,9)" rx="2" ry="2" />
+<text x="678.85" y="5839.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (12 samples, 0.43%)</title><rect x="173.0" y="6485" width="5.0" height="15.0" fill="rgb(222,199,52)" rx="2" ry="2" />
+<text x="176.00" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6005" width="0.4" height="15.0" fill="rgb(230,55,15)" rx="2" ry="2" />
+<text x="896.32" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (344 samples, 12.22%)</title><rect x="531.7" y="5957" width="144.1" height="15.0" fill="rgb(237,193,32)" rx="2" ry="2" />
+<text x="534.70" y="5967.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5701" width="2.5" height="15.0" fill="rgb(244,115,50)" rx="2" ry="2" />
+<text x="770.19" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="1066.0" y="6389" width="5.4" height="15.0" fill="rgb(243,32,32)" rx="2" ry="2" />
+<text x="1068.97" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="531.3" y="5733" width="0.4" height="15.0" fill="rgb(239,177,8)" rx="2" ry="2" />
+<text x="534.28" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="756.7" y="5445" width="0.4" height="15.0" fill="rgb(225,212,24)" rx="2" ry="2" />
+<text x="759.72" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="390.1" y="4981" width="0.4" height="15.0" fill="rgb(205,66,53)" rx="2" ry="2" />
+<text x="393.06" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="376.2" y="4997" width="1.7" height="15.0" fill="rgb(230,97,39)" rx="2" ry="2" />
+<text x="379.24" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::currentFrame (1 samples, 0.04%)</title><rect x="669.6" y="5237" width="0.4" height="15.0" fill="rgb(252,211,6)" rx="2" ry="2" />
+<text x="672.56" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5189" width="0.4" height="15.0" fill="rgb(233,13,43)" rx="2" ry="2" />
+<text x="896.32" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5797" width="0.4" height="15.0" fill="rgb(229,151,21)" rx="2" ry="2" />
+<text x="896.32" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="501.9" y="5045" width="0.9" height="15.0" fill="rgb(211,185,40)" rx="2" ry="2" />
+<text x="504.95" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4453" width="0.8" height="15.0" fill="rgb(226,66,9)" rx="2" ry="2" />
+<text x="429.10" y="4463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2341" width="0.4" height="15.0" fill="rgb(233,173,25)" rx="2" ry="2" />
+<text x="546.43" y="2351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5621" width="101.8" height="15.0" fill="rgb(227,74,12)" rx="2" ry="2" />
+<text x="577.02" y="5631.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="269.4" y="5061" width="2.9" height="15.0" fill="rgb(233,74,33)" rx="2" ry="2" />
+<text x="272.38" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="769.7" y="5813" width="0.4" height="15.0" fill="rgb(213,218,38)" rx="2" ry="2" />
+<text x="772.71" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1071.8" y="6453" width="0.5" height="15.0" fill="rgb(211,138,25)" rx="2" ry="2" />
+<text x="1074.83" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1057.2" y="6469" width="0.4" height="15.0" fill="rgb(245,99,8)" rx="2" ry="2" />
+<text x="1060.17" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="532.1" y="5813" width="0.4" height="15.0" fill="rgb(244,150,9)" rx="2" ry="2" />
+<text x="535.12" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1,546 samples, 54.90%)</title><rect x="246.8" y="6501" width="647.8" height="15.0" fill="rgb(223,216,52)" rx="2" ry="2" />
+<text x="249.75" y="6511.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstr</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4261" width="0.9" height="15.0" fill="rgb(207,170,18)" rx="2" ry="2" />
+<text x="467.23" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="368.7" y="4709" width="0.4" height="15.0" fill="rgb(242,211,9)" rx="2" ry="2" />
+<text x="371.69" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5925" width="0.4" height="15.0" fill="rgb(247,122,27)" rx="2" ry="2" />
+<text x="768.52" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.8" y="4837" width="0.4" height="15.0" fill="rgb(237,138,18)" rx="2" ry="2" />
+<text x="321.83" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="434.1" y="4869" width="2.5" height="15.0" fill="rgb(217,187,48)" rx="2" ry="2" />
+<text x="437.06" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="747.5" y="5285" width="1.3" height="15.0" fill="rgb(229,217,23)" rx="2" ry="2" />
+<text x="750.50" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="442.4" y="4629" width="3.8" height="15.0" fill="rgb(213,135,34)" rx="2" ry="2" />
+<text x="445.44" y="4639.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2789" width="0.4" height="15.0" fill="rgb(245,181,43)" rx="2" ry="2" />
+<text x="546.43" y="2799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="276.5" y="4741" width="0.4" height="15.0" fill="rgb(242,188,52)" rx="2" ry="2" />
+<text x="279.51" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="581" width="0.4" height="15.0" fill="rgb(224,174,5)" rx="2" ry="2" />
+<text x="546.43" y="591.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1749" width="0.4" height="15.0" fill="rgb(222,65,36)" rx="2" ry="2" />
+<text x="546.43" y="1759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,224 samples, 43.47%)</title><rect x="250.1" y="6165" width="512.9" height="15.0" fill="rgb(227,207,8)" rx="2" ry="2" />
+<text x="253.11" y="6175.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5845" width="0.4" height="15.0" fill="rgb(228,18,38)" rx="2" ry="2" />
+<text x="896.32" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5669" width="0.4" height="15.0" fill="rgb(242,83,51)" rx="2" ry="2" />
+<text x="896.32" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="747.5" y="5253" width="1.3" height="15.0" fill="rgb(222,221,32)" rx="2" ry="2" />
+<text x="750.50" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (73 samples, 2.59%)</title><rect x="310.4" y="5093" width="30.6" height="15.0" fill="rgb(222,151,33)" rx="2" ry="2" />
+<text x="313.45" y="5103.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4421" width="0.9" height="15.0" fill="rgb(213,114,47)" rx="2" ry="2" />
+<text x="443.35" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (291 samples, 10.33%)</title><rect x="771.4" y="5989" width="121.9" height="15.0" fill="rgb(227,197,7)" rx="2" ry="2" />
+<text x="774.38" y="5999.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (16 samples, 0.57%)</title><rect x="216.2" y="6485" width="6.7" height="15.0" fill="rgb(232,208,27)" rx="2" ry="2" />
+<text x="219.16" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5029" width="0.8" height="15.0" fill="rgb(234,149,47)" rx="2" ry="2" />
+<text x="1120.09" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="525.0" y="5781" width="1.2" height="15.0" fill="rgb(247,40,25)" rx="2" ry="2" />
+<text x="527.99" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="422.3" y="4869" width="2.1" height="15.0" fill="rgb(254,189,47)" rx="2" ry="2" />
+<text x="425.33" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="759.7" y="5861" width="2.0" height="15.0" fill="rgb(242,23,41)" rx="2" ry="2" />
+<text x="762.65" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="315.1" y="4885" width="0.4" height="15.0" fill="rgb(245,137,20)" rx="2" ry="2" />
+<text x="318.06" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4549" width="0.4" height="15.0" fill="rgb(223,133,50)" rx="2" ry="2" />
+<text x="496.98" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="750.9" y="5205" width="0.4" height="15.0" fill="rgb(246,116,36)" rx="2" ry="2" />
+<text x="753.85" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::size (1 samples, 0.04%)</title><rect x="368.7" y="4693" width="0.4" height="15.0" fill="rgb(236,215,42)" rx="2" ry="2" />
+<text x="371.69" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="472.6" y="5157" width="7.1" height="15.0" fill="rgb(243,42,19)" rx="2" ry="2" />
+<text x="475.61" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="485.6" y="5013" width="0.8" height="15.0" fill="rgb(228,187,17)" rx="2" ry="2" />
+<text x="488.60" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="344.4" y="4949" width="0.4" height="15.0" fill="rgb(209,189,38)" rx="2" ry="2" />
+<text x="347.39" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="344.4" y="5141" width="1.2" height="15.0" fill="rgb(249,51,9)" rx="2" ry="2" />
+<text x="347.39" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="331.0" y="4933" width="0.4" height="15.0" fill="rgb(208,195,51)" rx="2" ry="2" />
+<text x="333.98" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="423.2" y="4805" width="1.2" height="15.0" fill="rgb(248,165,38)" rx="2" ry="2" />
+<text x="426.17" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1183.7" y="6549" width="0.4" height="15.0" fill="rgb(222,26,48)" rx="2" ry="2" />
+<text x="1186.71" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="882.8" y="5621" width="3.0" height="15.0" fill="rgb(205,88,33)" rx="2" ry="2" />
+<text x="885.85" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4693" width="0.9" height="15.0" fill="rgb(225,219,8)" rx="2" ry="2" />
+<text x="467.23" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="422.7" y="4661" width="0.5" height="15.0" fill="rgb(208,88,28)" rx="2" ry="2" />
+<text x="425.75" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="278.6" y="4741" width="0.8" height="15.0" fill="rgb(224,66,39)" rx="2" ry="2" />
+<text x="281.60" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (302 samples, 10.72%)</title><rect x="767.2" y="6181" width="126.5" height="15.0" fill="rgb(217,51,14)" rx="2" ry="2" />
+<text x="770.19" y="6191.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3653" width="0.4" height="15.0" fill="rgb(249,37,21)" rx="2" ry="2" />
+<text x="546.43" y="3663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (144 samples, 5.11%)</title><rect x="386.3" y="5173" width="60.3" height="15.0" fill="rgb(205,3,39)" rx="2" ry="2" />
+<text x="389.29" y="5183.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="368.7" y="4837" width="0.4" height="15.0" fill="rgb(252,172,40)" rx="2" ry="2" />
+<text x="371.69" y="4847.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="565" width="0.4" height="15.0" fill="rgb(207,94,17)" rx="2" ry="2" />
+<text x="546.43" y="575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="790.7" y="5269" width="5.0" height="15.0" fill="rgb(224,44,23)" rx="2" ry="2" />
+<text x="793.66" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="512.4" y="4981" width="0.4" height="15.0" fill="rgb(228,34,34)" rx="2" ry="2" />
+<text x="515.42" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5701" width="0.8" height="15.0" fill="rgb(253,60,10)" rx="2" ry="2" />
+<text x="528.41" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6037" width="0.4" height="15.0" fill="rgb(236,71,44)" rx="2" ry="2" />
+<text x="896.32" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5509" width="0.8" height="15.0" fill="rgb(205,62,23)" rx="2" ry="2" />
+<text x="1120.09" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="493.1" y="4597" width="0.5" height="15.0" fill="rgb(218,149,8)" rx="2" ry="2" />
+<text x="496.15" y="4607.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="117" width="0.4" height="15.0" fill="rgb(251,84,28)" rx="2" ry="2" />
+<text x="546.43" y="127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="1110.8" y="6341" width="7.5" height="15.0" fill="rgb(216,19,50)" rx="2" ry="2" />
+<text x="1113.80" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.2" y="5669" width="0.4" height="15.0" fill="rgb(219,4,11)" rx="2" ry="2" />
+<text x="576.18" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5029" width="0.4" height="15.0" fill="rgb(217,4,16)" rx="2" ry="2" />
+<text x="563.19" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="519.1" y="5365" width="0.4" height="15.0" fill="rgb(242,4,23)" rx="2" ry="2" />
+<text x="522.13" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="4933" width="0.9" height="15.0" fill="rgb(222,22,39)" rx="2" ry="2" />
+<text x="746.73" y="4943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2213" width="0.4" height="15.0" fill="rgb(243,76,18)" rx="2" ry="2" />
+<text x="437.90" y="2223.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="569.8" y="5781" width="0.4" height="15.0" fill="rgb(250,139,33)" rx="2" ry="2" />
+<text x="572.83" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,242 samples, 44.11%)</title><rect x="246.8" y="6485" width="520.4" height="15.0" fill="rgb(232,29,16)" rx="2" ry="2" />
+<text x="249.75" y="6495.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="4949" width="0.4" height="15.0" fill="rgb(234,108,6)" rx="2" ry="2" />
+<text x="475.19" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="767.2" y="5573" width="2.5" height="15.0" fill="rgb(245,136,24)" rx="2" ry="2" />
+<text x="770.19" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4581" width="0.5" height="15.0" fill="rgb(213,61,23)" rx="2" ry="2" />
+<text x="346.13" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.2" y="5525" width="0.5" height="15.0" fill="rgb(214,189,29)" rx="2" ry="2" />
+<text x="529.25" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="326.0" y="4757" width="0.4" height="15.0" fill="rgb(240,181,12)" rx="2" ry="2" />
+<text x="328.95" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="761.7" y="6005" width="0.5" height="15.0" fill="rgb(245,79,35)" rx="2" ry="2" />
+<text x="764.75" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5461" width="0.8" height="15.0" fill="rgb(240,57,5)" rx="2" ry="2" />
+<text x="1120.09" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="458.4" y="5173" width="0.4" height="15.0" fill="rgb(234,30,52)" rx="2" ry="2" />
+<text x="461.37" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="894.2" y="5573" width="0.4" height="15.0" fill="rgb(205,88,18)" rx="2" ry="2" />
+<text x="897.16" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4757" width="0.8" height="15.0" fill="rgb(242,62,11)" rx="2" ry="2" />
+<text x="276.99" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="556.4" y="5525" width="0.4" height="15.0" fill="rgb(206,54,54)" rx="2" ry="2" />
+<text x="559.42" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1078.1" y="6533" width="0.4" height="15.0" fill="rgb(211,2,5)" rx="2" ry="2" />
+<text x="1081.12" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="557.3" y="5509" width="0.4" height="15.0" fill="rgb(244,17,32)" rx="2" ry="2" />
+<text x="560.26" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="776.0" y="5493" width="0.4" height="15.0" fill="rgb(206,210,22)" rx="2" ry="2" />
+<text x="778.99" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (1 samples, 0.04%)</title><rect x="520.4" y="6021" width="0.4" height="15.0" fill="rgb(225,131,13)" rx="2" ry="2" />
+<text x="523.38" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="3989" width="0.4" height="15.0" fill="rgb(218,19,37)" rx="2" ry="2" />
+<text x="1120.51" y="3999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="822.1" y="5749" width="0.4" height="15.0" fill="rgb(211,17,6)" rx="2" ry="2" />
+<text x="825.09" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="321.8" y="4805" width="0.8" height="15.0" fill="rgb(210,37,3)" rx="2" ry="2" />
+<text x="324.76" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.6" y="5653" width="0.5" height="15.0" fill="rgb(221,87,51)" rx="2" ry="2" />
+<text x="894.65" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5669" width="0.4" height="15.0" fill="rgb(212,76,9)" rx="2" ry="2" />
+<text x="524.22" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4437" width="0.4" height="15.0" fill="rgb(253,197,30)" rx="2" ry="2" />
+<text x="489.86" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (304 samples, 10.80%)</title><rect x="767.2" y="6437" width="127.4" height="15.0" fill="rgb(238,200,44)" rx="2" ry="2" />
+<text x="770.19" y="6447.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5685" width="81.3" height="15.0" fill="rgb(233,109,14)" rx="2" ry="2" />
+<text x="678.85" y="5695.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="4917" width="0.4" height="15.0" fill="rgb(246,203,13)" rx="2" ry="2" />
+<text x="416.11" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="1151.4" y="6549" width="0.5" height="15.0" fill="rgb(214,125,35)" rx="2" ry="2" />
+<text x="1154.45" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4661" width="0.4" height="15.0" fill="rgb(248,219,27)" rx="2" ry="2" />
+<text x="489.86" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5781" width="0.4" height="15.0" fill="rgb(253,122,15)" rx="2" ry="2" />
+<text x="896.32" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4549" width="0.8" height="15.0" fill="rgb(249,109,51)" rx="2" ry="2" />
+<text x="1120.09" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5045" width="0.9" height="15.0" fill="rgb(240,78,4)" rx="2" ry="2" />
+<text x="746.73" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="557.7" y="5509" width="0.8" height="15.0" fill="rgb(248,208,52)" rx="2" ry="2" />
+<text x="560.68" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5301" width="0.4" height="15.0" fill="rgb(219,106,20)" rx="2" ry="2" />
+<text x="760.98" y="5311.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1957" width="0.4" height="15.0" fill="rgb(222,4,23)" rx="2" ry="2" />
+<text x="546.43" y="1967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="368.7" y="4773" width="0.4" height="15.0" fill="rgb(252,169,52)" rx="2" ry="2" />
+<text x="371.69" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (1 samples, 0.04%)</title><rect x="520.4" y="6037" width="0.4" height="15.0" fill="rgb(206,128,2)" rx="2" ry="2" />
+<text x="523.38" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1057.2" y="6421" width="0.4" height="15.0" fill="rgb(238,128,31)" rx="2" ry="2" />
+<text x="1060.17" y="6431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="520.8" y="5957" width="10.9" height="15.0" fill="rgb(222,162,43)" rx="2" ry="2" />
+<text x="523.80" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:518-531) (2 samples, 0.07%)</title><rect x="893.7" y="6165" width="0.9" height="15.0" fill="rgb(241,226,20)" rx="2" ry="2" />
+<text x="896.74" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="538.4" y="5509" width="10.9" height="15.0" fill="rgb(251,185,16)" rx="2" ry="2" />
+<text x="541.40" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5685" width="0.4" height="15.0" fill="rgb(238,171,30)" rx="2" ry="2" />
+<text x="766.00" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="376.7" y="4917" width="1.2" height="15.0" fill="rgb(206,215,19)" rx="2" ry="2" />
+<text x="379.65" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (26 samples, 0.92%)</title><rect x="330.1" y="4997" width="10.9" height="15.0" fill="rgb(225,129,39)" rx="2" ry="2" />
+<text x="333.14" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="893.3" y="5365" width="0.4" height="15.0" fill="rgb(253,183,20)" rx="2" ry="2" />
+<text x="896.32" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4469" width="0.4" height="15.0" fill="rgb(232,13,48)" rx="2" ry="2" />
+<text x="414.02" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="560.2" y="5525" width="0.4" height="15.0" fill="rgb(229,70,10)" rx="2" ry="2" />
+<text x="563.19" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.3" y="5813" width="0.4" height="15.0" fill="rgb(218,135,45)" rx="2" ry="2" />
+<text x="764.33" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5893" width="0.4" height="15.0" fill="rgb(248,128,16)" rx="2" ry="2" />
+<text x="761.39" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="422.7" y="4725" width="0.5" height="15.0" fill="rgb(212,108,0)" rx="2" ry="2" />
+<text x="425.75" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4757" width="0.5" height="15.0" fill="rgb(220,9,26)" rx="2" ry="2" />
+<text x="489.44" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="484.8" y="5125" width="1.6" height="15.0" fill="rgb(227,185,8)" rx="2" ry="2" />
+<text x="487.77" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="338.9" y="4645" width="2.1" height="15.0" fill="rgb(219,43,38)" rx="2" ry="2" />
+<text x="341.94" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="345.6" y="4805" width="0.5" height="15.0" fill="rgb(228,206,4)" rx="2" ry="2" />
+<text x="348.65" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="5077" width="0.4" height="15.0" fill="rgb(254,15,12)" rx="2" ry="2" />
+<text x="475.19" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="801.6" y="5717" width="3.7" height="15.0" fill="rgb(209,65,47)" rx="2" ry="2" />
+<text x="804.56" y="5727.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2325" width="0.4" height="15.0" fill="rgb(221,63,8)" rx="2" ry="2" />
+<text x="546.43" y="2335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="794.9" y="5173" width="0.4" height="15.0" fill="rgb(234,124,24)" rx="2" ry="2" />
+<text x="797.85" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5781" width="0.4" height="15.0" fill="rgb(212,207,10)" rx="2" ry="2" />
+<text x="523.38" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4357" width="0.9" height="15.0" fill="rgb(240,9,10)" rx="2" ry="2" />
+<text x="467.23" y="4367.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3509" width="0.4" height="15.0" fill="rgb(207,168,20)" rx="2" ry="2" />
+<text x="546.43" y="3519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="344.4" y="5029" width="0.4" height="15.0" fill="rgb(209,205,47)" rx="2" ry="2" />
+<text x="347.39" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5813" width="0.4" height="15.0" fill="rgb(226,131,20)" rx="2" ry="2" />
+<text x="1073.99" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4709" width="0.4" height="15.0" fill="rgb(252,86,51)" rx="2" ry="2" />
+<text x="496.98" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1143.5" y="6485" width="0.4" height="15.0" fill="rgb(221,175,16)" rx="2" ry="2" />
+<text x="1146.49" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="473.0" y="5077" width="6.7" height="15.0" fill="rgb(230,26,45)" rx="2" ry="2" />
+<text x="476.03" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (635 samples, 22.55%)</title><rect x="253.5" y="5653" width="266.0" height="15.0" fill="rgb(215,117,5)" rx="2" ry="2" />
+<text x="256.46" y="5663.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="412.7" y="4965" width="0.4" height="15.0" fill="rgb(239,49,35)" rx="2" ry="2" />
+<text x="415.69" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3893" width="0.4" height="15.0" fill="rgb(222,158,42)" rx="2" ry="2" />
+<text x="546.43" y="3903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="274.4" y="4645" width="0.4" height="15.0" fill="rgb(252,229,44)" rx="2" ry="2" />
+<text x="277.41" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="893.7" y="5701" width="0.9" height="15.0" fill="rgb(219,72,49)" rx="2" ry="2" />
+<text x="896.74" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="803.2" y="5605" width="0.5" height="15.0" fill="rgb(239,192,44)" rx="2" ry="2" />
+<text x="806.23" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="397.2" y="4757" width="0.4" height="15.0" fill="rgb(213,99,21)" rx="2" ry="2" />
+<text x="400.19" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="396.3" y="4917" width="1.3" height="15.0" fill="rgb(236,98,27)" rx="2" ry="2" />
+<text x="399.35" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5877" width="0.4" height="15.0" fill="rgb(237,14,16)" rx="2" ry="2" />
+<text x="1073.99" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="458.4" y="5157" width="0.4" height="15.0" fill="rgb(240,41,47)" rx="2" ry="2" />
+<text x="461.37" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="5029" width="0.4" height="15.0" fill="rgb(235,70,10)" rx="2" ry="2" />
+<text x="496.98" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="559.8" y="5621" width="2.9" height="15.0" fill="rgb(234,179,9)" rx="2" ry="2" />
+<text x="562.77" y="5631.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4885" width="0.4" height="15.0" fill="rgb(227,190,52)" rx="2" ry="2" />
+<text x="546.43" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="333.9" y="4821" width="0.4" height="15.0" fill="rgb(233,7,27)" rx="2" ry="2" />
+<text x="336.91" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.2" y="5045" width="0.4" height="15.0" fill="rgb(242,71,25)" rx="2" ry="2" />
+<text x="348.23" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="4965" width="0.4" height="15.0" fill="rgb(215,64,20)" rx="2" ry="2" />
+<text x="520.87" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="560.6" y="5509" width="1.7" height="15.0" fill="rgb(252,131,24)" rx="2" ry="2" />
+<text x="563.61" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (169 samples, 6.00%)</title><rect x="822.5" y="5877" width="70.8" height="15.0" fill="rgb(224,59,28)" rx="2" ry="2" />
+<text x="825.51" y="5887.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="307.9" y="4965" width="0.5" height="15.0" fill="rgb(229,171,19)" rx="2" ry="2" />
+<text x="310.93" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4341" width="0.4" height="15.0" fill="rgb(250,223,27)" rx="2" ry="2" />
+<text x="546.43" y="4351.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2725" width="0.4" height="15.0" fill="rgb(253,217,9)" rx="2" ry="2" />
+<text x="546.43" y="2735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5733" width="2.5" height="15.0" fill="rgb(251,99,33)" rx="2" ry="2" />
+<text x="770.19" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5637" width="0.4" height="15.0" fill="rgb(228,210,54)" rx="2" ry="2" />
+<text x="768.52" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="683.8" y="5317" width="5.5" height="15.0" fill="rgb(215,12,46)" rx="2" ry="2" />
+<text x="686.81" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="761.7" y="5957" width="0.5" height="15.0" fill="rgb(211,2,19)" rx="2" ry="2" />
+<text x="764.75" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4933" width="0.8" height="15.0" fill="rgb(249,26,33)" rx="2" ry="2" />
+<text x="512.91" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5557" width="0.4" height="15.0" fill="rgb(237,148,15)" rx="2" ry="2" />
+<text x="895.49" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5125" width="0.4" height="15.0" fill="rgb(245,60,49)" rx="2" ry="2" />
+<text x="685.13" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5429" width="0.4" height="15.0" fill="rgb(207,58,34)" rx="2" ry="2" />
+<text x="563.19" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4485" width="0.4" height="15.0" fill="rgb(234,52,40)" rx="2" ry="2" />
+<text x="496.98" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="747.5" y="5269" width="1.3" height="15.0" fill="rgb(223,18,51)" rx="2" ry="2" />
+<text x="750.50" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3253" width="0.4" height="15.0" fill="rgb(212,139,27)" rx="2" ry="2" />
+<text x="546.43" y="3263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="714.4" y="5253" width="0.4" height="15.0" fill="rgb(223,68,40)" rx="2" ry="2" />
+<text x="717.40" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (3 samples, 0.11%)</title><rect x="745.4" y="5237" width="1.3" height="15.0" fill="rgb(232,92,19)" rx="2" ry="2" />
+<text x="748.40" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4773" width="0.4" height="15.0" fill="rgb(250,48,37)" rx="2" ry="2" />
+<text x="364.57" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (218 samples, 7.74%)</title><rect x="355.7" y="5237" width="91.4" height="15.0" fill="rgb(237,100,39)" rx="2" ry="2" />
+<text x="358.70" y="5247.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (2 samples, 0.07%)</title><rect x="1078.5" y="6549" width="0.9" height="15.0" fill="rgb(207,70,49)" rx="2" ry="2" />
+<text x="1081.54" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.1" y="5861" width="0.4" height="15.0" fill="rgb(251,130,36)" rx="2" ry="2" />
+<text x="768.10" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="442.4" y="4645" width="3.8" height="15.0" fill="rgb(245,0,54)" rx="2" ry="2" />
+<text x="445.44" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4133" width="0.4" height="15.0" fill="rgb(248,208,53)" rx="2" ry="2" />
+<text x="1120.51" y="4143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.2" y="5173" width="0.4" height="15.0" fill="rgb(254,62,37)" rx="2" ry="2" />
+<text x="475.19" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="493.1" y="4645" width="0.5" height="15.0" fill="rgb(249,57,24)" rx="2" ry="2" />
+<text x="496.15" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6069" width="0.4" height="15.0" fill="rgb(247,13,43)" rx="2" ry="2" />
+<text x="1073.99" y="6079.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="768.0" y="5221" width="0.5" height="15.0" fill="rgb(245,52,54)" rx="2" ry="2" />
+<text x="771.03" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="527.9" y="5589" width="3.4" height="15.0" fill="rgb(252,201,35)" rx="2" ry="2" />
+<text x="530.93" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5557" width="0.4" height="15.0" fill="rgb(236,133,6)" rx="2" ry="2" />
+<text x="576.60" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="696.4" y="5173" width="2.9" height="15.0" fill="rgb(249,47,7)" rx="2" ry="2" />
+<text x="699.38" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4757" width="0.8" height="15.0" fill="rgb(245,188,5)" rx="2" ry="2" />
+<text x="1120.09" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.7" y="5621" width="0.4" height="15.0" fill="rgb(213,75,37)" rx="2" ry="2" />
+<text x="767.68" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="361.6" y="4757" width="0.4" height="15.0" fill="rgb(247,77,44)" rx="2" ry="2" />
+<text x="364.57" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="518.7" y="5477" width="0.4" height="15.0" fill="rgb(225,180,46)" rx="2" ry="2" />
+<text x="521.71" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="836.8" y="5589" width="0.4" height="15.0" fill="rgb(216,49,10)" rx="2" ry="2" />
+<text x="839.75" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="457.5" y="4917" width="0.9" height="15.0" fill="rgb(235,154,51)" rx="2" ry="2" />
+<text x="460.53" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6293" width="2.1" height="15.0" fill="rgb(207,137,29)" rx="2" ry="2" />
+<text x="251.01" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5749" width="81.3" height="15.0" fill="rgb(222,153,36)" rx="2" ry="2" />
+<text x="678.85" y="5759.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="502.4" y="4965" width="0.4" height="15.0" fill="rgb(215,177,54)" rx="2" ry="2" />
+<text x="505.37" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3477" width="0.4" height="15.0" fill="rgb(247,205,9)" rx="2" ry="2" />
+<text x="546.43" y="3487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.3" y="5429" width="0.4" height="15.0" fill="rgb(216,78,10)" rx="2" ry="2" />
+<text x="565.29" y="5439.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2309" width="0.4" height="15.0" fill="rgb(222,149,26)" rx="2" ry="2" />
+<text x="437.90" y="2319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="472.6" y="5141" width="7.1" height="15.0" fill="rgb(244,55,32)" rx="2" ry="2" />
+<text x="475.61" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="338.9" y="4725" width="2.1" height="15.0" fill="rgb(211,87,17)" rx="2" ry="2" />
+<text x="341.94" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6085" width="0.8" height="15.0" fill="rgb(213,217,21)" rx="2" ry="2" />
+<text x="1120.09" y="6095.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="149" width="0.4" height="15.0" fill="rgb(237,162,14)" rx="2" ry="2" />
+<text x="546.43" y="159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6101" width="0.8" height="15.0" fill="rgb(239,111,3)" rx="2" ry="2" />
+<text x="1120.09" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="328.9" y="5013" width="0.8" height="15.0" fill="rgb(254,218,22)" rx="2" ry="2" />
+<text x="331.88" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5541" width="0.4" height="15.0" fill="rgb(230,139,41)" rx="2" ry="2" />
+<text x="767.26" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="801.6" y="5733" width="3.7" height="15.0" fill="rgb(241,165,51)" rx="2" ry="2" />
+<text x="804.56" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="357.0" y="5205" width="0.4" height="15.0" fill="rgb(208,161,49)" rx="2" ry="2" />
+<text x="359.96" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5653" width="0.9" height="15.0" fill="rgb(223,168,21)" rx="2" ry="2" />
+<text x="896.74" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4341" width="0.4" height="15.0" fill="rgb(233,75,48)" rx="2" ry="2" />
+<text x="443.77" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5669" width="81.3" height="15.0" fill="rgb(225,45,53)" rx="2" ry="2" />
+<text x="678.85" y="5679.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (193 samples, 6.85%)</title><rect x="676.3" y="5477" width="80.8" height="15.0" fill="rgb(223,73,36)" rx="2" ry="2" />
+<text x="679.26" y="5487.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="275.2" y="4789" width="0.5" height="15.0" fill="rgb(237,44,19)" rx="2" ry="2" />
+<text x="278.25" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="696.4" y="5125" width="2.9" height="15.0" fill="rgb(210,91,46)" rx="2" ry="2" />
+<text x="699.38" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="1114.2" y="6293" width="4.1" height="15.0" fill="rgb(243,121,40)" rx="2" ry="2" />
+<text x="1117.15" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (7 samples, 0.25%)</title><rect x="758.8" y="6021" width="2.9" height="15.0" fill="rgb(205,57,7)" rx="2" ry="2" />
+<text x="761.81" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="771.8" y="5813" width="0.4" height="15.0" fill="rgb(228,69,14)" rx="2" ry="2" />
+<text x="774.80" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5797" width="0.8" height="15.0" fill="rgb(234,44,9)" rx="2" ry="2" />
+<text x="1120.09" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6229" width="0.4" height="15.0" fill="rgb(221,47,47)" rx="2" ry="2" />
+<text x="1143.55" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (510 samples, 18.11%)</title><rect x="256.8" y="5413" width="213.7" height="15.0" fill="rgb(236,45,46)" rx="2" ry="2" />
+<text x="259.81" y="5423.5" >Nsfisis\Waddiwasi\Execution\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4309" width="0.4" height="15.0" fill="rgb(215,18,49)" rx="2" ry="2" />
+<text x="1120.51" y="4319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="368.7" y="4917" width="0.4" height="15.0" fill="rgb(214,138,35)" rx="2" ry="2" />
+<text x="371.69" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="247.6" y="6117" width="0.4" height="15.0" fill="rgb(231,60,10)" rx="2" ry="2" />
+<text x="250.59" y="6127.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2821" width="0.4" height="15.0" fill="rgb(243,26,36)" rx="2" ry="2" />
+<text x="437.90" y="2831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4165" width="0.4" height="15.0" fill="rgb(214,109,49)" rx="2" ry="2" />
+<text x="437.90" y="4175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="761.7" y="5877" width="0.5" height="15.0" fill="rgb(243,130,7)" rx="2" ry="2" />
+<text x="764.75" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5413" width="0.4" height="15.0" fill="rgb(226,8,41)" rx="2" ry="2" />
+<text x="761.39" y="5423.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2581" width="0.4" height="15.0" fill="rgb(207,43,31)" rx="2" ry="2" />
+<text x="437.90" y="2591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="525.0" y="5829" width="2.1" height="15.0" fill="rgb(223,13,33)" rx="2" ry="2" />
+<text x="527.99" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="670.4" y="5237" width="0.4" height="15.0" fill="rgb(216,162,24)" rx="2" ry="2" />
+<text x="673.40" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="877.8" y="5509" width="0.4" height="15.0" fill="rgb(210,118,41)" rx="2" ry="2" />
+<text x="880.82" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="275.2" y="4629" width="0.5" height="15.0" fill="rgb(218,116,53)" rx="2" ry="2" />
+<text x="278.25" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5669" width="0.4" height="15.0" fill="rgb(215,129,2)" rx="2" ry="2" />
+<text x="881.66" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="401.4" y="4949" width="1.7" height="15.0" fill="rgb(224,159,29)" rx="2" ry="2" />
+<text x="404.38" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1075.2" y="6469" width="0.4" height="15.0" fill="rgb(217,169,1)" rx="2" ry="2" />
+<text x="1078.18" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="385.5" y="4645" width="0.4" height="15.0" fill="rgb(212,78,22)" rx="2" ry="2" />
+<text x="388.45" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5525" width="101.8" height="15.0" fill="rgb(216,140,53)" rx="2" ry="2" />
+<text x="577.02" y="5535.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5525" width="0.4" height="15.0" fill="rgb(210,179,34)" rx="2" ry="2" />
+<text x="576.60" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.04%)</title><rect x="464.7" y="3893" width="0.4" height="15.0" fill="rgb(244,195,50)" rx="2" ry="2" />
+<text x="467.65" y="3903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5621" width="0.4" height="15.0" fill="rgb(250,22,29)" rx="2" ry="2" />
+<text x="761.39" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="771.8" y="5893" width="0.4" height="15.0" fill="rgb(252,108,5)" rx="2" ry="2" />
+<text x="774.80" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5061" width="0.4" height="15.0" fill="rgb(237,76,17)" rx="2" ry="2" />
+<text x="760.98" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="261" width="0.4" height="15.0" fill="rgb(224,1,18)" rx="2" ry="2" />
+<text x="546.43" y="271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="401.8" y="4885" width="0.4" height="15.0" fill="rgb(254,106,2)" rx="2" ry="2" />
+<text x="404.80" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="334.8" y="4869" width="0.4" height="15.0" fill="rgb(216,131,38)" rx="2" ry="2" />
+<text x="337.75" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::push (1 samples, 0.04%)</title><rect x="892.9" y="5797" width="0.4" height="15.0" fill="rgb(246,134,19)" rx="2" ry="2" />
+<text x="895.90" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (79 samples, 2.81%)</title><rect x="413.5" y="5093" width="33.1" height="15.0" fill="rgb(235,86,34)" rx="2" ry="2" />
+<text x="416.53" y="5103.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1121.7" y="6517" width="0.4" height="15.0" fill="rgb(249,178,0)" rx="2" ry="2" />
+<text x="1124.70" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="409.8" y="4437" width="0.4" height="15.0" fill="rgb(246,150,28)" rx="2" ry="2" />
+<text x="412.76" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="291.6" y="5141" width="0.4" height="15.0" fill="rgb(218,180,51)" rx="2" ry="2" />
+<text x="294.59" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="260.2" y="5173" width="0.4" height="15.0" fill="rgb(227,155,7)" rx="2" ry="2" />
+<text x="263.16" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="877.8" y="5541" width="0.4" height="15.0" fill="rgb(237,173,5)" rx="2" ry="2" />
+<text x="880.82" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="462.1" y="4997" width="3.8" height="15.0" fill="rgb(218,7,17)" rx="2" ry="2" />
+<text x="465.14" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="530.9" y="5429" width="0.4" height="15.0" fill="rgb(238,81,36)" rx="2" ry="2" />
+<text x="533.86" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="477.6" y="4709" width="0.5" height="15.0" fill="rgb(248,61,29)" rx="2" ry="2" />
+<text x="480.64" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5621" width="81.3" height="15.0" fill="rgb(243,87,24)" rx="2" ry="2" />
+<text x="678.85" y="5631.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (56 samples, 1.99%)</title><rect x="776.8" y="5589" width="23.5" height="15.0" fill="rgb(210,14,21)" rx="2" ry="2" />
+<text x="779.83" y="5599.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="527.5" y="5781" width="4.2" height="15.0" fill="rgb(253,176,29)" rx="2" ry="2" />
+<text x="530.51" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5253" width="0.8" height="15.0" fill="rgb(238,30,19)" rx="2" ry="2" />
+<text x="1120.09" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5093" width="1.6" height="15.0" fill="rgb(230,115,12)" rx="2" ry="2" />
+<text x="545.17" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="502.4" y="5013" width="0.4" height="15.0" fill="rgb(234,201,6)" rx="2" ry="2" />
+<text x="505.37" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="521.2" y="5605" width="0.4" height="15.0" fill="rgb(215,130,48)" rx="2" ry="2" />
+<text x="524.22" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4629" width="0.4" height="15.0" fill="rgb(215,2,42)" rx="2" ry="2" />
+<text x="437.90" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="280.3" y="4885" width="0.8" height="15.0" fill="rgb(228,45,35)" rx="2" ry="2" />
+<text x="283.28" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5973" width="0.8" height="15.0" fill="rgb(241,221,40)" rx="2" ry="2" />
+<text x="1120.09" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::activateLabel (1 samples, 0.04%)</title><rect x="768.5" y="5381" width="0.4" height="15.0" fill="rgb(246,206,12)" rx="2" ry="2" />
+<text x="771.45" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (304 samples, 10.80%)</title><rect x="767.2" y="6405" width="127.4" height="15.0" fill="rgb(247,79,48)" rx="2" ry="2" />
+<text x="770.19" y="6415.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4949" width="0.8" height="15.0" fill="rgb(221,8,51)" rx="2" ry="2" />
+<text x="1120.09" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="252.6" y="5717" width="0.9" height="15.0" fill="rgb(254,77,42)" rx="2" ry="2" />
+<text x="255.62" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="270.2" y="4981" width="2.1" height="15.0" fill="rgb(251,187,38)" rx="2" ry="2" />
+<text x="273.22" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4997" width="0.4" height="15.0" fill="rgb(242,59,44)" rx="2" ry="2" />
+<text x="1073.99" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="301.2" y="4821" width="0.4" height="15.0" fill="rgb(217,111,23)" rx="2" ry="2" />
+<text x="304.23" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.5" y="5941" width="0.4" height="15.0" fill="rgb(220,5,11)" rx="2" ry="2" />
+<text x="768.52" y="5951.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2053" width="0.4" height="15.0" fill="rgb(224,217,49)" rx="2" ry="2" />
+<text x="546.43" y="2063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (93 samples, 3.30%)</title><rect x="302.1" y="5141" width="38.9" height="15.0" fill="rgb(218,150,17)" rx="2" ry="2" />
+<text x="305.07" y="5151.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5621" width="0.5" height="15.0" fill="rgb(225,99,1)" rx="2" ry="2" />
+<text x="573.25" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.8" y="5077" width="0.4" height="15.0" fill="rgb(244,109,53)" rx="2" ry="2" />
+<text x="487.77" y="5087.5" ></text>
+</g>
+<g >
+<title>unpack (1 samples, 0.04%)</title><rect x="397.2" y="4725" width="0.4" height="15.0" fill="rgb(224,49,54)" rx="2" ry="2" />
+<text x="400.19" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5541" width="0.8" height="15.0" fill="rgb(244,38,54)" rx="2" ry="2" />
+<text x="1120.09" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="344.4" y="5173" width="2.9" height="15.0" fill="rgb(246,82,14)" rx="2" ry="2" />
+<text x="347.39" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="275.2" y="4693" width="0.5" height="15.0" fill="rgb(213,1,25)" rx="2" ry="2" />
+<text x="278.25" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (123 samples, 4.37%)</title><rect x="289.5" y="5269" width="51.5" height="15.0" fill="rgb(239,48,30)" rx="2" ry="2" />
+<text x="292.50" y="5279.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4517" width="0.4" height="15.0" fill="rgb(211,201,30)" rx="2" ry="2" />
+<text x="412.76" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="381.7" y="5109" width="4.6" height="15.0" fill="rgb(230,87,14)" rx="2" ry="2" />
+<text x="384.68" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4373" width="5.8" height="15.0" fill="rgb(225,131,18)" rx="2" ry="2" />
+<text x="490.28" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="528.8" y="5445" width="2.1" height="15.0" fill="rgb(253,6,27)" rx="2" ry="2" />
+<text x="531.76" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4197" width="0.4" height="15.0" fill="rgb(211,69,11)" rx="2" ry="2" />
+<text x="1073.99" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="509.5" y="5205" width="1.7" height="15.0" fill="rgb(243,148,51)" rx="2" ry="2" />
+<text x="512.49" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.3" y="5685" width="0.4" height="15.0" fill="rgb(231,141,45)" rx="2" ry="2" />
+<text x="767.26" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5317" width="0.4" height="15.0" fill="rgb(244,30,8)" rx="2" ry="2" />
+<text x="896.32" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="251.4" y="5765" width="0.4" height="15.0" fill="rgb(247,225,46)" rx="2" ry="2" />
+<text x="254.36" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="511.6" y="5013" width="0.8" height="15.0" fill="rgb(235,191,37)" rx="2" ry="2" />
+<text x="514.58" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4437" width="0.8" height="15.0" fill="rgb(245,98,16)" rx="2" ry="2" />
+<text x="1120.09" y="4447.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="533" width="0.4" height="15.0" fill="rgb(210,170,14)" rx="2" ry="2" />
+<text x="546.43" y="543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3813" width="0.4" height="15.0" fill="rgb(213,123,12)" rx="2" ry="2" />
+<text x="437.90" y="3823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="757.1" y="5925" width="1.7" height="15.0" fill="rgb(238,107,41)" rx="2" ry="2" />
+<text x="760.14" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6357" width="1.3" height="15.0" fill="rgb(221,133,25)" rx="2" ry="2" />
+<text x="768.94" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (344 samples, 12.22%)</title><rect x="531.7" y="5893" width="144.1" height="15.0" fill="rgb(225,211,37)" rx="2" ry="2" />
+<text x="534.70" y="5903.5" >Nsfisis\Waddiwasi\..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3925" width="0.4" height="15.0" fill="rgb(223,59,8)" rx="2" ry="2" />
+<text x="546.43" y="3935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4245" width="0.4" height="15.0" fill="rgb(211,3,37)" rx="2" ry="2" />
+<text x="443.77" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1121.7" y="6469" width="0.4" height="15.0" fill="rgb(213,139,5)" rx="2" ry="2" />
+<text x="1124.70" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="515.8" y="5205" width="2.1" height="15.0" fill="rgb(253,188,2)" rx="2" ry="2" />
+<text x="518.77" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="318.4" y="4805" width="0.4" height="15.0" fill="rgb(211,129,52)" rx="2" ry="2" />
+<text x="321.41" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="361.2" y="5045" width="0.8" height="15.0" fill="rgb(245,107,43)" rx="2" ry="2" />
+<text x="364.15" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1909" width="0.4" height="15.0" fill="rgb(237,31,7)" rx="2" ry="2" />
+<text x="546.43" y="1919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5749" width="0.8" height="15.0" fill="rgb(214,41,5)" rx="2" ry="2" />
+<text x="1120.09" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.04%)</title><rect x="544.3" y="5461" width="0.4" height="15.0" fill="rgb(239,149,41)" rx="2" ry="2" />
+<text x="547.27" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="6053" width="0.8" height="15.0" fill="rgb(250,75,46)" rx="2" ry="2" />
+<text x="1120.09" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4085" width="0.4" height="15.0" fill="rgb(233,26,8)" rx="2" ry="2" />
+<text x="467.65" y="4095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="558.1" y="5349" width="0.4" height="15.0" fill="rgb(249,20,26)" rx="2" ry="2" />
+<text x="561.10" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="283.6" y="5029" width="0.4" height="15.0" fill="rgb(205,81,34)" rx="2" ry="2" />
+<text x="286.63" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="332.2" y="4949" width="2.1" height="15.0" fill="rgb(215,149,47)" rx="2" ry="2" />
+<text x="335.24" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="260.2" y="5221" width="0.4" height="15.0" fill="rgb(207,15,18)" rx="2" ry="2" />
+<text x="263.16" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="767.2" y="6005" width="2.9" height="15.0" fill="rgb(227,125,42)" rx="2" ry="2" />
+<text x="770.19" y="6015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (13 samples, 0.46%)</title><rect x="683.8" y="5349" width="5.5" height="15.0" fill="rgb(220,190,13)" rx="2" ry="2" />
+<text x="686.81" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="376.7" y="4901" width="1.2" height="15.0" fill="rgb(252,175,3)" rx="2" ry="2" />
+<text x="379.65" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="1123.0" y="6549" width="0.4" height="15.0" fill="rgb(245,208,25)" rx="2" ry="2" />
+<text x="1125.95" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4341" width="0.4" height="15.0" fill="rgb(217,56,8)" rx="2" ry="2" />
+<text x="1073.99" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (32 samples, 1.14%)</title><rect x="315.5" y="4933" width="13.4" height="15.0" fill="rgb(212,46,12)" rx="2" ry="2" />
+<text x="318.48" y="4943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2293" width="0.4" height="15.0" fill="rgb(207,225,41)" rx="2" ry="2" />
+<text x="546.43" y="2303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="423.6" y="4709" width="0.4" height="15.0" fill="rgb(242,93,53)" rx="2" ry="2" />
+<text x="426.59" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5605" width="0.4" height="15.0" fill="rgb(240,26,28)" rx="2" ry="2" />
+<text x="767.26" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="526.2" y="5701" width="0.9" height="15.0" fill="rgb(245,143,36)" rx="2" ry="2" />
+<text x="529.25" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1145.2" y="6469" width="0.4" height="15.0" fill="rgb(217,53,36)" rx="2" ry="2" />
+<text x="1148.16" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="554.3" y="5637" width="4.2" height="15.0" fill="rgb(207,136,38)" rx="2" ry="2" />
+<text x="557.33" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="549.3" y="5557" width="5.0" height="15.0" fill="rgb(244,50,32)" rx="2" ry="2" />
+<text x="552.30" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="378.8" y="5173" width="0.4" height="15.0" fill="rgb(249,188,26)" rx="2" ry="2" />
+<text x="381.75" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (29 samples, 1.03%)</title><rect x="328.9" y="5045" width="12.1" height="15.0" fill="rgb(233,178,23)" rx="2" ry="2" />
+<text x="331.88" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="494.4" y="5269" width="0.4" height="15.0" fill="rgb(218,112,16)" rx="2" ry="2" />
+<text x="497.40" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="390.1" y="5061" width="0.4" height="15.0" fill="rgb(215,190,35)" rx="2" ry="2" />
+<text x="393.06" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4661" width="0.8" height="15.0" fill="rgb(249,100,31)" rx="2" ry="2" />
+<text x="413.60" y="4671.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3557" width="0.4" height="15.0" fill="rgb(242,67,30)" rx="2" ry="2" />
+<text x="546.43" y="3567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5173" width="0.4" height="15.0" fill="rgb(233,108,19)" rx="2" ry="2" />
+<text x="563.19" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="333.5" y="4741" width="0.4" height="15.0" fill="rgb(214,211,51)" rx="2" ry="2" />
+<text x="336.49" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="345.6" y="4869" width="1.3" height="15.0" fill="rgb(209,137,26)" rx="2" ry="2" />
+<text x="348.65" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (2 samples, 0.07%)</title><rect x="893.7" y="6181" width="0.9" height="15.0" fill="rgb(238,28,40)" rx="2" ry="2" />
+<text x="896.74" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4517" width="5.8" height="15.0" fill="rgb(210,176,7)" rx="2" ry="2" />
+<text x="490.28" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4949" width="0.4" height="15.0" fill="rgb(240,28,22)" rx="2" ry="2" />
+<text x="272.80" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="517.9" y="5061" width="0.4" height="15.0" fill="rgb(253,83,10)" rx="2" ry="2" />
+<text x="520.87" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (11 samples, 0.39%)</title><rect x="886.2" y="5573" width="4.6" height="15.0" fill="rgb(247,95,34)" rx="2" ry="2" />
+<text x="889.20" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5653" width="0.4" height="15.0" fill="rgb(229,142,25)" rx="2" ry="2" />
+<text x="576.60" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4805" width="6.7" height="15.0" fill="rgb(232,164,37)" rx="2" ry="2" />
+<text x="489.86" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.7" y="5605" width="0.5" height="15.0" fill="rgb(210,3,18)" rx="2" ry="2" />
+<text x="896.74" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="419.8" y="4997" width="1.7" height="15.0" fill="rgb(240,82,47)" rx="2" ry="2" />
+<text x="422.82" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="420.2" y="4949" width="1.3" height="15.0" fill="rgb(232,219,18)" rx="2" ry="2" />
+<text x="423.23" y="4959.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3269" width="0.4" height="15.0" fill="rgb(245,38,12)" rx="2" ry="2" />
+<text x="437.90" y="3279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4565" width="0.9" height="15.0" fill="rgb(228,42,38)" rx="2" ry="2" />
+<text x="467.23" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4837" width="0.8" height="15.0" fill="rgb(226,228,8)" rx="2" ry="2" />
+<text x="512.91" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="339.4" y="4565" width="0.4" height="15.0" fill="rgb(220,29,46)" rx="2" ry="2" />
+<text x="342.36" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (8 samples, 0.28%)</title><rect x="514.5" y="5301" width="3.4" height="15.0" fill="rgb(211,43,22)" rx="2" ry="2" />
+<text x="517.52" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1,224 samples, 43.47%)</title><rect x="250.1" y="6309" width="512.9" height="15.0" fill="rgb(236,30,51)" rx="2" ry="2" />
+<text x="253.11" y="6319.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5845" width="0.4" height="15.0" fill="rgb(211,175,23)" rx="2" ry="2" />
+<text x="761.39" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="426.1" y="4533" width="0.8" height="15.0" fill="rgb(250,121,45)" rx="2" ry="2" />
+<text x="429.10" y="4543.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="506.6" y="4997" width="0.4" height="15.0" fill="rgb(239,95,32)" rx="2" ry="2" />
+<text x="509.56" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="514.9" y="5221" width="3.0" height="15.0" fill="rgb(244,134,33)" rx="2" ry="2" />
+<text x="517.94" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="426.9" y="4645" width="0.9" height="15.0" fill="rgb(221,218,16)" rx="2" ry="2" />
+<text x="429.94" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="5029" width="0.8" height="15.0" fill="rgb(248,217,2)" rx="2" ry="2" />
+<text x="512.91" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.0" y="4709" width="0.4" height="15.0" fill="rgb(252,221,25)" rx="2" ry="2" />
+<text x="427.01" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="733.3" y="5221" width="0.4" height="15.0" fill="rgb(254,18,6)" rx="2" ry="2" />
+<text x="736.25" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1877" width="0.4" height="15.0" fill="rgb(221,85,20)" rx="2" ry="2" />
+<text x="546.43" y="1887.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3909" width="0.4" height="15.0" fill="rgb(233,134,37)" rx="2" ry="2" />
+<text x="437.90" y="3919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.0" y="6341" width="0.4" height="15.0" fill="rgb(206,152,37)" rx="2" ry="2" />
+<text x="1143.97" y="6351.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3285" width="0.4" height="15.0" fill="rgb(252,103,18)" rx="2" ry="2" />
+<text x="546.43" y="3295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="4757" width="0.4" height="15.0" fill="rgb(247,141,23)" rx="2" ry="2" />
+<text x="496.98" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="484.8" y="5141" width="1.6" height="15.0" fill="rgb(217,207,51)" rx="2" ry="2" />
+<text x="487.77" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2741" width="0.4" height="15.0" fill="rgb(251,229,6)" rx="2" ry="2" />
+<text x="546.43" y="2751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4869" width="0.4" height="15.0" fill="rgb(238,133,41)" rx="2" ry="2" />
+<text x="364.57" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (11 samples, 0.39%)</title><rect x="305.4" y="5093" width="4.6" height="15.0" fill="rgb(225,197,27)" rx="2" ry="2" />
+<text x="308.42" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5733" width="0.8" height="15.0" fill="rgb(213,217,23)" rx="2" ry="2" />
+<text x="1120.09" y="5743.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4325" width="0.4" height="15.0" fill="rgb(250,182,4)" rx="2" ry="2" />
+<text x="546.43" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5797" width="0.4" height="15.0" fill="rgb(241,156,7)" rx="2" ry="2" />
+<text x="767.26" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (83 samples, 2.95%)</title><rect x="532.5" y="5813" width="34.8" height="15.0" fill="rgb(208,84,48)" rx="2" ry="2" />
+<text x="535.54" y="5823.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5749" width="0.4" height="15.0" fill="rgb(237,95,14)" rx="2" ry="2" />
+<text x="768.10" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (43 samples, 1.53%)</title><rect x="779.3" y="5477" width="18.1" height="15.0" fill="rgb(228,116,13)" rx="2" ry="2" />
+<text x="782.35" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="812.9" y="5621" width="4.2" height="15.0" fill="rgb(251,194,12)" rx="2" ry="2" />
+<text x="815.87" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5221" width="0.8" height="15.0" fill="rgb(251,30,33)" rx="2" ry="2" />
+<text x="1120.09" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="758.4" y="5685" width="0.4" height="15.0" fill="rgb(238,49,24)" rx="2" ry="2" />
+<text x="761.39" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="265.6" y="5061" width="0.4" height="15.0" fill="rgb(238,31,14)" rx="2" ry="2" />
+<text x="268.61" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4213" width="0.4" height="15.0" fill="rgb(224,115,51)" rx="2" ry="2" />
+<text x="1120.51" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (4 samples, 0.14%)</title><rect x="426.1" y="4773" width="1.7" height="15.0" fill="rgb(245,22,2)" rx="2" ry="2" />
+<text x="429.10" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="512.8" y="5029" width="0.5" height="15.0" fill="rgb(226,40,5)" rx="2" ry="2" />
+<text x="515.84" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1065.1" y="6373" width="0.9" height="15.0" fill="rgb(214,149,39)" rx="2" ry="2" />
+<text x="1068.13" y="6383.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4853" width="0.4" height="15.0" fill="rgb(253,66,10)" rx="2" ry="2" />
+<text x="546.43" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.7" y="5493" width="0.4" height="15.0" fill="rgb(235,79,42)" rx="2" ry="2" />
+<text x="565.71" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4933" width="0.4" height="15.0" fill="rgb(222,44,41)" rx="2" ry="2" />
+<text x="1073.99" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="482.3" y="5269" width="0.8" height="15.0" fill="rgb(240,189,28)" rx="2" ry="2" />
+<text x="485.25" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="767.2" y="5589" width="2.5" height="15.0" fill="rgb(230,20,7)" rx="2" ry="2" />
+<text x="770.19" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="278.6" y="4645" width="0.4" height="15.0" fill="rgb(231,104,20)" rx="2" ry="2" />
+<text x="281.60" y="4655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="1140.6" y="6293" width="0.4" height="15.0" fill="rgb(211,218,33)" rx="2" ry="2" />
+<text x="1143.55" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (9 samples, 0.32%)</title><rect x="672.1" y="5237" width="3.7" height="15.0" fill="rgb(243,80,20)" rx="2" ry="2" />
+<text x="675.07" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="368.7" y="4933" width="0.4" height="15.0" fill="rgb(221,46,48)" rx="2" ry="2" />
+<text x="371.69" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="746.7" y="5285" width="0.4" height="15.0" fill="rgb(250,109,52)" rx="2" ry="2" />
+<text x="749.66" y="5295.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="197" width="0.4" height="15.0" fill="rgb(214,58,46)" rx="2" ry="2" />
+<text x="546.43" y="207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,239 samples, 44.00%)</title><rect x="246.8" y="6389" width="519.1" height="15.0" fill="rgb(225,183,2)" rx="2" ry="2" />
+<text x="249.75" y="6399.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.03%)</title><rect x="328.9" y="5029" width="12.1" height="15.0" fill="rgb(213,10,1)" rx="2" ry="2" />
+<text x="331.88" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="463.4" y="4805" width="1.7" height="15.0" fill="rgb(231,48,28)" rx="2" ry="2" />
+<text x="466.39" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="342.3" y="5189" width="1.3" height="15.0" fill="rgb(231,176,47)" rx="2" ry="2" />
+<text x="345.29" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="530.9" y="5557" width="0.4" height="15.0" fill="rgb(229,220,38)" rx="2" ry="2" />
+<text x="533.86" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="466.7" y="5045" width="0.5" height="15.0" fill="rgb(236,151,7)" rx="2" ry="2" />
+<text x="469.75" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.6" y="6181" width="0.4" height="15.0" fill="rgb(225,185,11)" rx="2" ry="2" />
+<text x="1073.58" y="6191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1123.0" y="6485" width="0.4" height="15.0" fill="rgb(231,207,6)" rx="2" ry="2" />
+<text x="1125.95" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5765" width="0.4" height="15.0" fill="rgb(253,211,54)" rx="2" ry="2" />
+<text x="767.68" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="347.3" y="5157" width="1.7" height="15.0" fill="rgb(250,51,12)" rx="2" ry="2" />
+<text x="350.32" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="525.0" y="5813" width="2.1" height="15.0" fill="rgb(208,225,44)" rx="2" ry="2" />
+<text x="527.99" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="287.0" y="5125" width="1.7" height="15.0" fill="rgb(238,134,48)" rx="2" ry="2" />
+<text x="289.98" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.82%)</title><rect x="449.1" y="5253" width="9.7" height="15.0" fill="rgb(236,71,45)" rx="2" ry="2" />
+<text x="452.15" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.4" y="4693" width="0.4" height="15.0" fill="rgb(210,202,9)" rx="2" ry="2" />
+<text x="329.37" y="4703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="389" width="0.4" height="15.0" fill="rgb(222,215,36)" rx="2" ry="2" />
+<text x="546.43" y="399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="368.7" y="4949" width="0.4" height="15.0" fill="rgb(243,139,17)" rx="2" ry="2" />
+<text x="371.69" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (123 samples, 4.37%)</title><rect x="289.5" y="5253" width="51.5" height="15.0" fill="rgb(232,85,6)" rx="2" ry="2" />
+<text x="292.50" y="5263.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5157" width="0.4" height="15.0" fill="rgb(241,100,3)" rx="2" ry="2" />
+<text x="357.03" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="493.1" y="4613" width="0.5" height="15.0" fill="rgb(229,215,9)" rx="2" ry="2" />
+<text x="496.15" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="484.8" y="4965" width="0.4" height="15.0" fill="rgb(221,53,40)" rx="2" ry="2" />
+<text x="487.77" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="462.6" y="4901" width="3.3" height="15.0" fill="rgb(241,79,2)" rx="2" ry="2" />
+<text x="465.56" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="4773" width="0.5" height="15.0" fill="rgb(243,150,28)" rx="2" ry="2" />
+<text x="489.44" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="281.1" y="4885" width="0.4" height="15.0" fill="rgb(242,19,17)" rx="2" ry="2" />
+<text x="284.12" y="4895.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2565" width="0.4" height="15.0" fill="rgb(220,36,6)" rx="2" ry="2" />
+<text x="437.90" y="2575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="348.6" y="5093" width="0.4" height="15.0" fill="rgb(217,185,41)" rx="2" ry="2" />
+<text x="351.58" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (22 samples, 0.78%)</title><rect x="867.3" y="5525" width="9.3" height="15.0" fill="rgb(230,148,52)" rx="2" ry="2" />
+<text x="870.34" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="281.1" y="4805" width="0.4" height="15.0" fill="rgb(222,175,49)" rx="2" ry="2" />
+<text x="284.12" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4261" width="0.4" height="15.0" fill="rgb(218,210,14)" rx="2" ry="2" />
+<text x="443.77" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (123 samples, 4.37%)</title><rect x="289.5" y="5221" width="51.5" height="15.0" fill="rgb(213,160,11)" rx="2" ry="2" />
+<text x="292.50" y="5231.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="747.5" y="5317" width="1.3" height="15.0" fill="rgb(232,97,34)" rx="2" ry="2" />
+<text x="750.50" y="5327.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4181" width="0.4" height="15.0" fill="rgb(212,158,22)" rx="2" ry="2" />
+<text x="437.90" y="4191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1176.2" y="6565" width="0.4" height="15.0" fill="rgb(243,129,38)" rx="2" ry="2" />
+<text x="1179.17" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="345.2" y="5013" width="0.4" height="15.0" fill="rgb(228,191,34)" rx="2" ry="2" />
+<text x="348.23" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="355.3" y="5221" width="0.4" height="15.0" fill="rgb(218,91,49)" rx="2" ry="2" />
+<text x="358.28" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (42 samples, 1.49%)</title><rect x="779.8" y="5429" width="17.6" height="15.0" fill="rgb(229,164,20)" rx="2" ry="2" />
+<text x="782.77" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="5045" width="0.4" height="15.0" fill="rgb(234,224,51)" rx="2" ry="2" />
+<text x="416.11" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1145.2" y="6453" width="0.4" height="15.0" fill="rgb(230,223,17)" rx="2" ry="2" />
+<text x="1148.16" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4405" width="0.9" height="15.0" fill="rgb(245,69,30)" rx="2" ry="2" />
+<text x="443.35" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4917" width="0.8" height="15.0" fill="rgb(241,77,30)" rx="2" ry="2" />
+<text x="1120.09" y="4927.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="554.7" y="5509" width="0.5" height="15.0" fill="rgb(246,30,29)" rx="2" ry="2" />
+<text x="557.74" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="282.8" y="4981" width="0.4" height="15.0" fill="rgb(218,31,36)" rx="2" ry="2" />
+<text x="285.79" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4517" width="0.5" height="15.0" fill="rgb(237,149,22)" rx="2" ry="2" />
+<text x="346.13" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (26 samples, 0.92%)</title><rect x="538.4" y="5557" width="10.9" height="15.0" fill="rgb(251,219,39)" rx="2" ry="2" />
+<text x="541.40" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="1079.4" y="6549" width="10.0" height="15.0" fill="rgb(212,187,30)" rx="2" ry="2" />
+<text x="1082.38" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5125" width="0.4" height="15.0" fill="rgb(232,195,21)" rx="2" ry="2" />
+<text x="896.32" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="468.0" y="5173" width="0.4" height="15.0" fill="rgb(236,118,3)" rx="2" ry="2" />
+<text x="471.00" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (20 samples, 0.71%)</title><rect x="458.8" y="5269" width="8.4" height="15.0" fill="rgb(224,82,3)" rx="2" ry="2" />
+<text x="461.79" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="437" width="0.4" height="15.0" fill="rgb(213,2,3)" rx="2" ry="2" />
+<text x="546.43" y="447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="516.2" y="5013" width="1.3" height="15.0" fill="rgb(252,32,1)" rx="2" ry="2" />
+<text x="519.19" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (35 samples, 1.24%)</title><rect x="1057.6" y="6485" width="14.7" height="15.0" fill="rgb(208,105,9)" rx="2" ry="2" />
+<text x="1060.59" y="6495.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:346-353) (344 samples, 12.22%)</title><rect x="531.7" y="6037" width="144.1" height="15.0" fill="rgb(224,1,20)" rx="2" ry="2" />
+<text x="534.70" y="6047.5" >{closure}(/home/ke..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="344.4" y="5125" width="1.2" height="15.0" fill="rgb(234,226,52)" rx="2" ry="2" />
+<text x="347.39" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="397.2" y="4741" width="0.4" height="15.0" fill="rgb(238,220,10)" rx="2" ry="2" />
+<text x="400.19" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.0" y="4773" width="0.4" height="15.0" fill="rgb(213,100,51)" rx="2" ry="2" />
+<text x="427.01" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4469" width="0.4" height="15.0" fill="rgb(234,46,34)" rx="2" ry="2" />
+<text x="489.86" y="4479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (302 samples, 10.72%)</title><rect x="767.2" y="6213" width="126.5" height="15.0" fill="rgb(219,163,10)" rx="2" ry="2" />
+<text x="770.19" y="6223.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (574 samples, 20.38%)</title><rect x="254.7" y="5477" width="240.5" height="15.0" fill="rgb(220,50,30)" rx="2" ry="2" />
+<text x="257.72" y="5487.5" >Nsfisis\Waddiwasi\Execution\Run..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="525.4" y="5605" width="0.8" height="15.0" fill="rgb(216,99,51)" rx="2" ry="2" />
+<text x="528.41" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.0" y="5941" width="0.4" height="15.0" fill="rgb(210,115,39)" rx="2" ry="2" />
+<text x="522.96" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="342.7" y="5109" width="0.9" height="15.0" fill="rgb(222,53,25)" rx="2" ry="2" />
+<text x="345.71" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="382.1" y="4997" width="0.4" height="15.0" fill="rgb(236,100,38)" rx="2" ry="2" />
+<text x="385.10" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4837" width="1.7" height="15.0" fill="rgb(205,2,29)" rx="2" ry="2" />
+<text x="429.10" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="472.6" y="5061" width="0.4" height="15.0" fill="rgb(207,19,30)" rx="2" ry="2" />
+<text x="475.61" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="570.7" y="5733" width="0.4" height="15.0" fill="rgb(243,88,42)" rx="2" ry="2" />
+<text x="573.67" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4261" width="5.4" height="15.0" fill="rgb(251,123,19)" rx="2" ry="2" />
+<text x="490.70" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (54 samples, 1.92%)</title><rect x="447.1" y="5333" width="22.6" height="15.0" fill="rgb(221,128,4)" rx="2" ry="2" />
+<text x="450.05" y="5343.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="563.5" y="5509" width="0.5" height="15.0" fill="rgb(242,171,15)" rx="2" ry="2" />
+<text x="566.54" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (549 samples, 19.50%)</title><rect x="16.7" y="6533" width="230.1" height="15.0" fill="rgb(227,62,49)" rx="2" ry="2" />
+<text x="19.70" y="6543.5" >Nsfisis\Waddiwasi\Execution\Ru..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="4885" width="1.3" height="15.0" fill="rgb(240,46,51)" rx="2" ry="2" />
+<text x="348.65" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (26 samples, 0.92%)</title><rect x="538.4" y="5541" width="10.9" height="15.0" fill="rgb(206,29,17)" rx="2" ry="2" />
+<text x="541.40" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5749" width="2.5" height="15.0" fill="rgb(215,28,52)" rx="2" ry="2" />
+<text x="770.19" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1138.5" y="6501" width="0.4" height="15.0" fill="rgb(211,168,24)" rx="2" ry="2" />
+<text x="1141.46" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="696.4" y="5237" width="2.9" height="15.0" fill="rgb(216,31,25)" rx="2" ry="2" />
+<text x="699.38" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4485" width="0.4" height="15.0" fill="rgb(248,114,4)" rx="2" ry="2" />
+<text x="437.90" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="479.3" y="5045" width="0.4" height="15.0" fill="rgb(205,28,52)" rx="2" ry="2" />
+<text x="482.32" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3621" width="0.4" height="15.0" fill="rgb(251,77,23)" rx="2" ry="2" />
+<text x="546.43" y="3631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="767.2" y="5413" width="1.3" height="15.0" fill="rgb(207,105,7)" rx="2" ry="2" />
+<text x="770.19" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3973" width="5.0" height="15.0" fill="rgb(230,54,2)" rx="2" ry="2" />
+<text x="491.12" y="3983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4213" width="0.4" height="15.0" fill="rgb(241,84,26)" rx="2" ry="2" />
+<text x="1073.99" y="4223.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3349" width="0.4" height="15.0" fill="rgb(245,40,9)" rx="2" ry="2" />
+<text x="437.90" y="3359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (1 samples, 0.04%)</title><rect x="10.4" y="6293" width="0.4" height="15.0" fill="rgb(210,80,20)" rx="2" ry="2" />
+<text x="13.42" y="6303.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2181" width="0.4" height="15.0" fill="rgb(238,93,35)" rx="2" ry="2" />
+<text x="437.90" y="2191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="250.5" y="5877" width="3.0" height="15.0" fill="rgb(223,151,21)" rx="2" ry="2" />
+<text x="253.53" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="515.8" y="5189" width="2.1" height="15.0" fill="rgb(246,78,0)" rx="2" ry="2" />
+<text x="518.77" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="444.5" y="4581" width="1.7" height="15.0" fill="rgb(242,101,2)" rx="2" ry="2" />
+<text x="447.54" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="411.4" y="4869" width="0.9" height="15.0" fill="rgb(247,139,38)" rx="2" ry="2" />
+<text x="414.43" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.9" y="5237" width="0.4" height="15.0" fill="rgb(243,217,33)" rx="2" ry="2" />
+<text x="486.93" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4261" width="0.4" height="15.0" fill="rgb(243,182,33)" rx="2" ry="2" />
+<text x="1073.99" y="4271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="362.0" y="4741" width="1.2" height="15.0" fill="rgb(220,166,1)" rx="2" ry="2" />
+<text x="364.99" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="460.0" y="4933" width="1.3" height="15.0" fill="rgb(212,228,11)" rx="2" ry="2" />
+<text x="463.04" y="4943.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="469.3" y="5269" width="0.4" height="15.0" fill="rgb(214,58,15)" rx="2" ry="2" />
+<text x="472.26" y="5279.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1829" width="0.4" height="15.0" fill="rgb(236,101,51)" rx="2" ry="2" />
+<text x="546.43" y="1839.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3957" width="0.4" height="15.0" fill="rgb(249,83,11)" rx="2" ry="2" />
+<text x="437.90" y="3967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (302 samples, 10.72%)</title><rect x="767.2" y="6261" width="126.5" height="15.0" fill="rgb(235,107,28)" rx="2" ry="2" />
+<text x="770.19" y="6271.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="892.1" y="5781" width="0.4" height="15.0" fill="rgb(243,126,36)" rx="2" ry="2" />
+<text x="895.07" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.0" y="4789" width="0.4" height="15.0" fill="rgb(249,5,37)" rx="2" ry="2" />
+<text x="427.01" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="1066.8" y="6357" width="4.6" height="15.0" fill="rgb(212,80,40)" rx="2" ry="2" />
+<text x="1069.80" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (2 samples, 0.07%)</title><rect x="876.6" y="5525" width="0.8" height="15.0" fill="rgb(234,137,0)" rx="2" ry="2" />
+<text x="879.56" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="440.8" y="4357" width="0.4" height="15.0" fill="rgb(234,136,17)" rx="2" ry="2" />
+<text x="443.77" y="4367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="274.8" y="4949" width="5.1" height="15.0" fill="rgb(246,53,53)" rx="2" ry="2" />
+<text x="277.83" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (635 samples, 22.55%)</title><rect x="253.5" y="5637" width="266.0" height="15.0" fill="rgb(215,119,4)" rx="2" ry="2" />
+<text x="256.46" y="5647.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (66 samples, 2.34%)</title><rect x="261.0" y="5301" width="27.7" height="15.0" fill="rgb(226,127,40)" rx="2" ry="2" />
+<text x="264.00" y="5311.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="301.6" y="4997" width="0.5" height="15.0" fill="rgb(206,73,29)" rx="2" ry="2" />
+<text x="304.65" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="699.3" y="5333" width="0.4" height="15.0" fill="rgb(218,147,38)" rx="2" ry="2" />
+<text x="702.31" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="6229" width="0.9" height="15.0" fill="rgb(213,44,51)" rx="2" ry="2" />
+<text x="896.74" y="6239.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3317" width="0.4" height="15.0" fill="rgb(239,24,19)" rx="2" ry="2" />
+<text x="437.90" y="3327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="269.8" y="4805" width="0.4" height="15.0" fill="rgb(237,182,3)" rx="2" ry="2" />
+<text x="272.80" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="440.3" y="4533" width="0.9" height="15.0" fill="rgb(222,96,43)" rx="2" ry="2" />
+<text x="443.35" y="4543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4773" width="0.4" height="15.0" fill="rgb(240,171,23)" rx="2" ry="2" />
+<text x="496.98" y="4783.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1205" width="0.4" height="15.0" fill="rgb(214,147,33)" rx="2" ry="2" />
+<text x="546.43" y="1215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4677" width="0.4" height="15.0" fill="rgb(253,16,31)" rx="2" ry="2" />
+<text x="329.79" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResults\Br::__construct (1 samples, 0.04%)</title><rect x="1043.3" y="6517" width="0.5" height="15.0" fill="rgb(212,136,24)" rx="2" ry="2" />
+<text x="1046.34" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="5093" width="0.9" height="15.0" fill="rgb(214,25,45)" rx="2" ry="2" />
+<text x="746.73" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4965" width="0.4" height="15.0" fill="rgb(238,132,38)" rx="2" ry="2" />
+<text x="364.57" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="482.7" y="5189" width="0.4" height="15.0" fill="rgb(235,41,0)" rx="2" ry="2" />
+<text x="485.67" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4709" width="0.5" height="15.0" fill="rgb(206,7,44)" rx="2" ry="2" />
+<text x="346.13" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="802.4" y="5685" width="0.4" height="15.0" fill="rgb(213,4,22)" rx="2" ry="2" />
+<text x="805.39" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (194 samples, 6.89%)</title><rect x="675.8" y="5653" width="81.3" height="15.0" fill="rgb(206,19,39)" rx="2" ry="2" />
+<text x="678.85" y="5663.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (153 samples, 5.43%)</title><rect x="828.0" y="5749" width="64.1" height="15.0" fill="rgb(246,142,38)" rx="2" ry="2" />
+<text x="830.95" y="5759.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="749.2" y="5093" width="0.8" height="15.0" fill="rgb(236,159,0)" rx="2" ry="2" />
+<text x="752.18" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5461" width="0.4" height="15.0" fill="rgb(227,80,22)" rx="2" ry="2" />
+<text x="896.32" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (45 samples, 1.60%)</title><rect x="427.8" y="4981" width="18.8" height="15.0" fill="rgb(251,172,25)" rx="2" ry="2" />
+<text x="430.78" y="4991.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2437" width="0.4" height="15.0" fill="rgb(251,156,25)" rx="2" ry="2" />
+<text x="437.90" y="2447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="464.7" y="4117" width="0.4" height="15.0" fill="rgb(216,120,19)" rx="2" ry="2" />
+<text x="467.65" y="4127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6197" width="0.4" height="15.0" fill="rgb(250,121,15)" rx="2" ry="2" />
+<text x="1073.99" y="6207.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2853" width="0.4" height="15.0" fill="rgb(205,161,41)" rx="2" ry="2" />
+<text x="437.90" y="2863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="891.2" y="5621" width="0.4" height="15.0" fill="rgb(250,177,39)" rx="2" ry="2" />
+<text x="894.23" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5157" width="0.8" height="15.0" fill="rgb(250,184,32)" rx="2" ry="2" />
+<text x="1120.09" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.0" y="5909" width="0.4" height="15.0" fill="rgb(225,210,41)" rx="2" ry="2" />
+<text x="522.96" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (43 samples, 1.53%)</title><rect x="779.3" y="5493" width="18.1" height="15.0" fill="rgb(220,214,46)" rx="2" ry="2" />
+<text x="782.35" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5013" width="0.4" height="15.0" fill="rgb(220,138,37)" rx="2" ry="2" />
+<text x="760.98" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="293" width="0.4" height="15.0" fill="rgb(215,197,23)" rx="2" ry="2" />
+<text x="546.43" y="303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="877.8" y="5525" width="0.4" height="15.0" fill="rgb(222,162,24)" rx="2" ry="2" />
+<text x="880.82" y="5535.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3413" width="0.4" height="15.0" fill="rgb(233,197,8)" rx="2" ry="2" />
+<text x="437.90" y="3423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="559.8" y="5653" width="7.5" height="15.0" fill="rgb(230,66,40)" rx="2" ry="2" />
+<text x="562.77" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1057.2" y="6405" width="0.4" height="15.0" fill="rgb(234,41,41)" rx="2" ry="2" />
+<text x="1060.17" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="468.0" y="5141" width="0.4" height="15.0" fill="rgb(210,155,15)" rx="2" ry="2" />
+<text x="471.00" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4805" width="0.4" height="15.0" fill="rgb(220,24,0)" rx="2" ry="2" />
+<text x="463.88" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="240.0" y="6485" width="0.9" height="15.0" fill="rgb(223,121,31)" rx="2" ry="2" />
+<text x="243.05" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="345.6" y="4949" width="1.3" height="15.0" fill="rgb(223,203,4)" rx="2" ry="2" />
+<text x="348.65" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="893.7" y="6053" width="0.9" height="15.0" fill="rgb(222,135,26)" rx="2" ry="2" />
+<text x="896.74" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5557" width="0.4" height="15.0" fill="rgb(254,38,45)" rx="2" ry="2" />
+<text x="761.39" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="890.8" y="5621" width="0.4" height="15.0" fill="rgb(224,201,13)" rx="2" ry="2" />
+<text x="893.81" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="765.1" y="5909" width="0.4" height="15.0" fill="rgb(211,33,45)" rx="2" ry="2" />
+<text x="768.10" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="269.4" y="5029" width="2.9" height="15.0" fill="rgb(225,32,34)" rx="2" ry="2" />
+<text x="272.38" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5765" width="0.4" height="15.0" fill="rgb(209,155,28)" rx="2" ry="2" />
+<text x="896.32" y="5775.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3989" width="0.4" height="15.0" fill="rgb(226,64,51)" rx="2" ry="2" />
+<text x="437.90" y="3999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="891.2" y="5557" width="0.4" height="15.0" fill="rgb(248,148,14)" rx="2" ry="2" />
+<text x="894.23" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (3 samples, 0.11%)</title><rect x="664.1" y="5221" width="1.3" height="15.0" fill="rgb(215,107,35)" rx="2" ry="2" />
+<text x="667.11" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4421" width="0.4" height="15.0" fill="rgb(206,7,53)" rx="2" ry="2" />
+<text x="412.76" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.5" y="5861" width="0.4" height="15.0" fill="rgb(222,212,5)" rx="2" ry="2" />
+<text x="768.52" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="275.7" y="4853" width="4.2" height="15.0" fill="rgb(244,197,20)" rx="2" ry="2" />
+<text x="278.67" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4245" width="0.4" height="15.0" fill="rgb(211,179,49)" rx="2" ry="2" />
+<text x="1073.99" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="511.6" y="5093" width="0.8" height="15.0" fill="rgb(230,193,30)" rx="2" ry="2" />
+<text x="514.58" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4629" width="5.8" height="15.0" fill="rgb(208,207,38)" rx="2" ry="2" />
+<text x="490.28" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="559.4" y="5605" width="0.4" height="15.0" fill="rgb(253,5,35)" rx="2" ry="2" />
+<text x="562.35" y="5615.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="469" width="0.4" height="15.0" fill="rgb(250,52,37)" rx="2" ry="2" />
+<text x="546.43" y="479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.4" y="4405" width="0.4" height="15.0" fill="rgb(246,171,19)" rx="2" ry="2" />
+<text x="430.36" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (34 samples, 1.21%)</title><rect x="268.5" y="5205" width="14.3" height="15.0" fill="rgb(234,111,7)" rx="2" ry="2" />
+<text x="271.54" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="802.8" y="5669" width="2.1" height="15.0" fill="rgb(251,25,9)" rx="2" ry="2" />
+<text x="805.81" y="5679.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/examples/php-on-wasm/php-wasm.php:334-343) (1 samples, 0.04%)</title><rect x="765.5" y="6101" width="0.4" height="15.0" fill="rgb(253,46,3)" rx="2" ry="2" />
+<text x="768.52" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="333.5" y="4693" width="0.4" height="15.0" fill="rgb(220,80,11)" rx="2" ry="2" />
+<text x="336.49" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5797" width="0.4" height="15.0" fill="rgb(252,150,43)" rx="2" ry="2" />
+<text x="1073.99" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4437" width="0.4" height="15.0" fill="rgb(247,88,28)" rx="2" ry="2" />
+<text x="1073.99" y="4447.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1605" width="0.4" height="15.0" fill="rgb(211,152,8)" rx="2" ry="2" />
+<text x="546.43" y="1615.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (3 samples, 0.11%)</title><rect x="304.2" y="5109" width="1.2" height="15.0" fill="rgb(242,25,38)" rx="2" ry="2" />
+<text x="307.16" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="763.0" y="6021" width="2.5" height="15.0" fill="rgb(228,101,39)" rx="2" ry="2" />
+<text x="766.00" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="525.4" y="5653" width="0.8" height="15.0" fill="rgb(252,110,34)" rx="2" ry="2" />
+<text x="528.41" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="278.6" y="4629" width="0.4" height="15.0" fill="rgb(229,216,5)" rx="2" ry="2" />
+<text x="281.60" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="6085" width="0.4" height="15.0" fill="rgb(249,225,44)" rx="2" ry="2" />
+<text x="896.32" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="456.3" y="4981" width="1.2" height="15.0" fill="rgb(211,226,47)" rx="2" ry="2" />
+<text x="459.27" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="440.3" y="4485" width="0.9" height="15.0" fill="rgb(246,44,21)" rx="2" ry="2" />
+<text x="443.35" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="348.6" y="5013" width="0.4" height="15.0" fill="rgb(223,227,1)" rx="2" ry="2" />
+<text x="351.58" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="274.8" y="4997" width="7.6" height="15.0" fill="rgb(220,33,5)" rx="2" ry="2" />
+<text x="277.83" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="338.9" y="4709" width="2.1" height="15.0" fill="rgb(209,149,9)" rx="2" ry="2" />
+<text x="341.94" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="151.6" y="6469" width="0.5" height="15.0" fill="rgb(217,223,26)" rx="2" ry="2" />
+<text x="154.63" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1,239 samples, 44.00%)</title><rect x="246.8" y="6421" width="519.1" height="15.0" fill="rgb(208,103,42)" rx="2" ry="2" />
+<text x="249.75" y="6431.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.85%)</title><rect x="484.3" y="5269" width="10.1" height="15.0" fill="rgb(214,63,27)" rx="2" ry="2" />
+<text x="487.35" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="1115.4" y="6261" width="2.5" height="15.0" fill="rgb(253,111,23)" rx="2" ry="2" />
+<text x="1118.41" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="266.4" y="5029" width="0.5" height="15.0" fill="rgb(235,121,44)" rx="2" ry="2" />
+<text x="269.45" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="3973" width="0.4" height="15.0" fill="rgb(225,25,54)" rx="2" ry="2" />
+<text x="467.65" y="3983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (36 samples, 1.28%)</title><rect x="781.0" y="5397" width="15.1" height="15.0" fill="rgb(245,183,23)" rx="2" ry="2" />
+<text x="784.02" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1057.2" y="6357" width="0.4" height="15.0" fill="rgb(225,34,44)" rx="2" ry="2" />
+<text x="1060.17" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5525" width="0.4" height="15.0" fill="rgb(235,64,20)" rx="2" ry="2" />
+<text x="1073.99" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="413.1" y="5109" width="0.4" height="15.0" fill="rgb(234,175,44)" rx="2" ry="2" />
+<text x="416.11" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4741" width="0.8" height="15.0" fill="rgb(210,179,14)" rx="2" ry="2" />
+<text x="1120.09" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="822.1" y="5797" width="0.4" height="15.0" fill="rgb(246,149,54)" rx="2" ry="2" />
+<text x="825.09" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="376.7" y="4869" width="1.2" height="15.0" fill="rgb(221,99,19)" rx="2" ry="2" />
+<text x="379.65" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.92%)</title><rect x="520.8" y="5909" width="10.9" height="15.0" fill="rgb(241,141,9)" rx="2" ry="2" />
+<text x="523.80" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (194 samples, 6.89%)</title><rect x="675.8" y="5925" width="81.3" height="15.0" fill="rgb(215,101,20)" rx="2" ry="2" />
+<text x="678.85" y="5935.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="1184.1" y="6565" width="0.5" height="15.0" fill="rgb(234,92,19)" rx="2" ry="2" />
+<text x="1187.13" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decode (13 samples, 0.46%)</title><rect x="10.4" y="6565" width="5.5" height="15.0" fill="rgb(252,103,37)" rx="2" ry="2" />
+<text x="13.42" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5173" width="0.4" height="15.0" fill="rgb(237,146,25)" rx="2" ry="2" />
+<text x="1073.99" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (636 samples, 22.59%)</title><rect x="253.5" y="5861" width="266.5" height="15.0" fill="rgb(235,48,46)" rx="2" ry="2" />
+<text x="256.46" y="5871.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (20 samples, 0.71%)</title><rect x="458.8" y="5253" width="8.4" height="15.0" fill="rgb(243,69,37)" rx="2" ry="2" />
+<text x="461.79" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5845" width="0.4" height="15.0" fill="rgb(252,165,27)" rx="2" ry="2" />
+<text x="766.00" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (105 samples, 3.73%)</title><rect x="186.0" y="6517" width="44.0" height="15.0" fill="rgb(250,19,15)" rx="2" ry="2" />
+<text x="188.99" y="6527.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="1151.4" y="6565" width="0.5" height="15.0" fill="rgb(215,112,11)" rx="2" ry="2" />
+<text x="1154.45" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="326.4" y="4741" width="0.4" height="15.0" fill="rgb(238,145,12)" rx="2" ry="2" />
+<text x="329.37" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="535.0" y="5653" width="0.5" height="15.0" fill="rgb(206,57,34)" rx="2" ry="2" />
+<text x="538.05" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="5125" width="0.4" height="15.0" fill="rgb(254,38,8)" rx="2" ry="2" />
+<text x="496.98" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="338.1" y="4853" width="2.9" height="15.0" fill="rgb(251,37,25)" rx="2" ry="2" />
+<text x="341.10" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="527.9" y="5509" width="3.0" height="15.0" fill="rgb(216,61,37)" rx="2" ry="2" />
+<text x="530.93" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5205" width="0.4" height="15.0" fill="rgb(222,119,30)" rx="2" ry="2" />
+<text x="1073.99" y="5215.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="504.9" y="5061" width="0.4" height="15.0" fill="rgb(205,70,33)" rx="2" ry="2" />
+<text x="507.88" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="761.7" y="5925" width="0.5" height="15.0" fill="rgb(253,121,19)" rx="2" ry="2" />
+<text x="764.75" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="878.7" y="5557" width="0.4" height="15.0" fill="rgb(214,69,10)" rx="2" ry="2" />
+<text x="881.66" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.0" y="4485" width="0.4" height="15.0" fill="rgb(244,7,30)" rx="2" ry="2" />
+<text x="414.02" y="4495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="765.1" y="5829" width="0.4" height="15.0" fill="rgb(222,187,21)" rx="2" ry="2" />
+<text x="768.10" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1077.3" y="6533" width="0.4" height="15.0" fill="rgb(240,41,2)" rx="2" ry="2" />
+<text x="1080.28" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="434.9" y="4389" width="0.4" height="15.0" fill="rgb(222,207,45)" rx="2" ry="2" />
+<text x="437.90" y="4399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="520.4" y="5909" width="0.4" height="15.0" fill="rgb(210,32,38)" rx="2" ry="2" />
+<text x="523.38" y="5919.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5685" width="0.4" height="15.0" fill="rgb(245,14,36)" rx="2" ry="2" />
+<text x="774.80" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="5045" width="0.5" height="15.0" fill="rgb(209,224,5)" rx="2" ry="2" />
+<text x="489.44" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="484.8" y="4917" width="0.4" height="15.0" fill="rgb(248,153,39)" rx="2" ry="2" />
+<text x="487.77" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4901" width="1.7" height="15.0" fill="rgb(240,229,26)" rx="2" ry="2" />
+<text x="429.10" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="494.0" y="4917" width="0.4" height="15.0" fill="rgb(246,53,9)" rx="2" ry="2" />
+<text x="496.98" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5285" width="0.4" height="15.0" fill="rgb(221,92,24)" rx="2" ry="2" />
+<text x="685.13" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="466.7" y="4917" width="0.5" height="15.0" fill="rgb(219,159,16)" rx="2" ry="2" />
+<text x="469.75" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="466.7" y="5029" width="0.5" height="15.0" fill="rgb(244,82,35)" rx="2" ry="2" />
+<text x="469.75" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="515.8" y="5045" width="1.7" height="15.0" fill="rgb(253,96,35)" rx="2" ry="2" />
+<text x="518.77" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5349" width="0.8" height="15.0" fill="rgb(217,148,40)" rx="2" ry="2" />
+<text x="1120.09" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="5125" width="0.5" height="15.0" fill="rgb(226,80,22)" rx="2" ry="2" />
+<text x="489.44" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="5173" width="0.9" height="15.0" fill="rgb(251,213,24)" rx="2" ry="2" />
+<text x="345.71" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="493.6" y="5173" width="0.8" height="15.0" fill="rgb(205,185,31)" rx="2" ry="2" />
+<text x="496.57" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (16 samples, 0.57%)</title><rect x="449.1" y="5237" width="6.8" height="15.0" fill="rgb(230,85,27)" rx="2" ry="2" />
+<text x="452.15" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1118.3" y="6357" width="0.5" height="15.0" fill="rgb(205,18,1)" rx="2" ry="2" />
+<text x="1121.35" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Num::I32 (1 samples, 0.04%)</title><rect x="1173.2" y="6549" width="0.5" height="15.0" fill="rgb(244,10,0)" rx="2" ry="2" />
+<text x="1176.24" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="836.8" y="5541" width="0.4" height="15.0" fill="rgb(253,27,4)" rx="2" ry="2" />
+<text x="839.75" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="275.2" y="4805" width="0.5" height="15.0" fill="rgb(231,107,13)" rx="2" ry="2" />
+<text x="278.25" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.0" y="5989" width="0.4" height="15.0" fill="rgb(254,151,26)" rx="2" ry="2" />
+<text x="766.00" y="5999.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3429" width="0.4" height="15.0" fill="rgb(240,83,36)" rx="2" ry="2" />
+<text x="546.43" y="3439.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2357" width="0.4" height="15.0" fill="rgb(205,143,21)" rx="2" ry="2" />
+<text x="437.90" y="2367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="525.4" y="5525" width="0.8" height="15.0" fill="rgb(235,57,49)" rx="2" ry="2" />
+<text x="528.41" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="764.3" y="5589" width="0.4" height="15.0" fill="rgb(211,70,45)" rx="2" ry="2" />
+<text x="767.26" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (212 samples, 7.53%)</title><rect x="260.6" y="5365" width="88.8" height="15.0" fill="rgb(230,87,49)" rx="2" ry="2" />
+<text x="263.58" y="5375.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="878.7" y="5653" width="0.4" height="15.0" fill="rgb(224,80,53)" rx="2" ry="2" />
+<text x="881.66" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="343.1" y="4405" width="0.5" height="15.0" fill="rgb(215,213,38)" rx="2" ry="2" />
+<text x="346.13" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (134 samples, 4.76%)</title><rect x="700.6" y="5445" width="56.1" height="15.0" fill="rgb(230,82,51)" rx="2" ry="2" />
+<text x="703.57" y="5455.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="494.4" y="5253" width="0.4" height="15.0" fill="rgb(216,214,20)" rx="2" ry="2" />
+<text x="497.40" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6213" width="0.4" height="15.0" fill="rgb(251,133,54)" rx="2" ry="2" />
+<text x="13.42" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="338.9" y="4613" width="0.9" height="15.0" fill="rgb(222,53,33)" rx="2" ry="2" />
+<text x="341.94" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4405" width="5.8" height="15.0" fill="rgb(241,211,29)" rx="2" ry="2" />
+<text x="490.28" y="4415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4709" width="0.4" height="15.0" fill="rgb(220,72,19)" rx="2" ry="2" />
+<text x="364.57" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="276.5" y="4725" width="0.4" height="15.0" fill="rgb(233,43,29)" rx="2" ry="2" />
+<text x="279.51" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1055.1" y="6517" width="0.4" height="15.0" fill="rgb(228,20,34)" rx="2" ry="2" />
+<text x="1058.07" y="6527.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="222.5" y="6453" width="0.4" height="15.0" fill="rgb(216,65,30)" rx="2" ry="2" />
+<text x="225.45" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="340.6" y="4517" width="0.4" height="15.0" fill="rgb(218,42,12)" rx="2" ry="2" />
+<text x="343.62" y="4527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4757" width="0.4" height="15.0" fill="rgb(242,135,40)" rx="2" ry="2" />
+<text x="463.88" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="763.0" y="6149" width="2.9" height="15.0" fill="rgb(209,151,10)" rx="2" ry="2" />
+<text x="766.00" y="6159.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (8 samples, 0.28%)</title><rect x="1085.2" y="6533" width="3.4" height="15.0" fill="rgb(237,8,45)" rx="2" ry="2" />
+<text x="1088.24" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="354.0" y="5077" width="0.4" height="15.0" fill="rgb(211,2,18)" rx="2" ry="2" />
+<text x="357.03" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3397" width="0.4" height="15.0" fill="rgb(242,62,9)" rx="2" ry="2" />
+<text x="437.90" y="3407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="560.2" y="5541" width="2.5" height="15.0" fill="rgb(252,105,36)" rx="2" ry="2" />
+<text x="563.19" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="263.5" y="5013" width="1.3" height="15.0" fill="rgb(230,27,5)" rx="2" ry="2" />
+<text x="266.52" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="6213" width="0.9" height="15.0" fill="rgb(206,170,22)" rx="2" ry="2" />
+<text x="896.74" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="488.1" y="3781" width="5.0" height="15.0" fill="rgb(206,48,51)" rx="2" ry="2" />
+<text x="491.12" y="3791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (289 samples, 10.26%)</title><rect x="772.2" y="5957" width="121.1" height="15.0" fill="rgb(253,59,44)" rx="2" ry="2" />
+<text x="775.22" y="5967.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="1075.2" y="6453" width="0.4" height="15.0" fill="rgb(212,96,29)" rx="2" ry="2" />
+<text x="1078.18" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2021" width="0.4" height="15.0" fill="rgb(208,23,20)" rx="2" ry="2" />
+<text x="546.43" y="2031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="434.9" y="4565" width="0.4" height="15.0" fill="rgb(217,128,23)" rx="2" ry="2" />
+<text x="437.90" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="465.5" y="4869" width="0.4" height="15.0" fill="rgb(249,85,9)" rx="2" ry="2" />
+<text x="468.49" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="746.7" y="5269" width="0.4" height="15.0" fill="rgb(230,75,21)" rx="2" ry="2" />
+<text x="749.66" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1141.8" y="6501" width="0.8" height="15.0" fill="rgb(250,189,15)" rx="2" ry="2" />
+<text x="1144.81" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5605" width="0.4" height="15.0" fill="rgb(229,191,1)" rx="2" ry="2" />
+<text x="896.32" y="5615.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="176.4" y="6453" width="0.4" height="15.0" fill="rgb(233,170,9)" rx="2" ry="2" />
+<text x="179.36" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3781" width="0.4" height="15.0" fill="rgb(251,170,19)" rx="2" ry="2" />
+<text x="437.90" y="3791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6101" width="1.3" height="15.0" fill="rgb(238,74,25)" rx="2" ry="2" />
+<text x="768.94" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4869" width="0.8" height="15.0" fill="rgb(237,191,4)" rx="2" ry="2" />
+<text x="276.99" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4933" width="0.8" height="15.0" fill="rgb(244,86,15)" rx="2" ry="2" />
+<text x="276.99" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4933" width="1.7" height="15.0" fill="rgb(214,222,19)" rx="2" ry="2" />
+<text x="429.10" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="378.8" y="5157" width="0.4" height="15.0" fill="rgb(236,98,13)" rx="2" ry="2" />
+<text x="381.75" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5701" width="0.4" height="15.0" fill="rgb(229,54,47)" rx="2" ry="2" />
+<text x="523.38" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.4" y="4949" width="0.4" height="15.0" fill="rgb(218,13,9)" rx="2" ry="2" />
+<text x="505.37" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (34 samples, 1.21%)</title><rect x="268.5" y="5125" width="14.3" height="15.0" fill="rgb(243,53,7)" rx="2" ry="2" />
+<text x="271.54" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1141.0" y="6309" width="0.4" height="15.0" fill="rgb(251,206,30)" rx="2" ry="2" />
+<text x="1143.97" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.0" y="4853" width="0.4" height="15.0" fill="rgb(243,81,40)" rx="2" ry="2" />
+<text x="515.00" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="527.9" y="5685" width="3.4" height="15.0" fill="rgb(214,99,44)" rx="2" ry="2" />
+<text x="530.93" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (1 samples, 0.04%)</title><rect x="670.4" y="5205" width="0.4" height="15.0" fill="rgb(209,210,49)" rx="2" ry="2" />
+<text x="673.40" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="462.6" y="4965" width="3.3" height="15.0" fill="rgb(241,81,54)" rx="2" ry="2" />
+<text x="465.56" y="4975.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2389" width="0.4" height="15.0" fill="rgb(216,150,24)" rx="2" ry="2" />
+<text x="437.90" y="2399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1076.9" y="6341" width="0.4" height="15.0" fill="rgb(238,163,26)" rx="2" ry="2" />
+<text x="1079.86" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="416.9" y="4949" width="2.5" height="15.0" fill="rgb(242,85,37)" rx="2" ry="2" />
+<text x="419.88" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4805" width="0.4" height="15.0" fill="rgb(214,95,28)" rx="2" ry="2" />
+<text x="364.57" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="794.9" y="5141" width="0.4" height="15.0" fill="rgb(211,38,18)" rx="2" ry="2" />
+<text x="797.85" y="5151.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3445" width="0.4" height="15.0" fill="rgb(252,207,53)" rx="2" ry="2" />
+<text x="437.90" y="3455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="260.2" y="5269" width="0.4" height="15.0" fill="rgb(211,122,6)" rx="2" ry="2" />
+<text x="263.16" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4389" width="0.8" height="15.0" fill="rgb(226,29,14)" rx="2" ry="2" />
+<text x="1120.09" y="4399.5" ></text>
+</g>
+<g >
+<title>array_pop (19 samples, 0.67%)</title><rect x="1176.6" y="6581" width="8.0" height="15.0" fill="rgb(230,130,17)" rx="2" ry="2" />
+<text x="1179.59" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="335.6" y="4901" width="5.4" height="15.0" fill="rgb(228,154,25)" rx="2" ry="2" />
+<text x="338.59" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1150.2" y="6581" width="0.4" height="15.0" fill="rgb(226,170,2)" rx="2" ry="2" />
+<text x="1153.19" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="422.3" y="4917" width="2.1" height="15.0" fill="rgb(214,135,29)" rx="2" ry="2" />
+<text x="425.33" y="4927.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="15.9" y="6517" width="0.4" height="15.0" fill="rgb(253,216,54)" rx="2" ry="2" />
+<text x="18.87" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="345.6" y="5109" width="1.3" height="15.0" fill="rgb(232,196,5)" rx="2" ry="2" />
+<text x="348.65" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="326.8" y="4597" width="0.4" height="15.0" fill="rgb(227,140,44)" rx="2" ry="2" />
+<text x="329.79" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="874.0" y="5445" width="2.6" height="15.0" fill="rgb(232,129,8)" rx="2" ry="2" />
+<text x="877.05" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="563.5" y="5557" width="0.5" height="15.0" fill="rgb(222,48,54)" rx="2" ry="2" />
+<text x="566.54" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="4949" width="0.9" height="15.0" fill="rgb(237,196,40)" rx="2" ry="2" />
+<text x="345.71" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (2 samples, 0.07%)</title><rect x="356.5" y="5221" width="0.9" height="15.0" fill="rgb(245,188,4)" rx="2" ry="2" />
+<text x="359.54" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="476.4" y="4901" width="2.9" height="15.0" fill="rgb(251,24,46)" rx="2" ry="2" />
+<text x="479.38" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (644 samples, 22.87%)</title><rect x="250.5" y="5989" width="269.9" height="15.0" fill="rgb(242,156,9)" rx="2" ry="2" />
+<text x="253.53" y="5999.5" >Nsfisis\Waddiwasi\Execution\Runtime:..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4373" width="0.4" height="15.0" fill="rgb(249,86,51)" rx="2" ry="2" />
+<text x="1073.99" y="4383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (34 samples, 1.21%)</title><rect x="268.5" y="5173" width="14.3" height="15.0" fill="rgb(249,200,28)" rx="2" ry="2" />
+<text x="271.54" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="509.1" y="5109" width="0.4" height="15.0" fill="rgb(223,42,36)" rx="2" ry="2" />
+<text x="512.07" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4981" width="0.8" height="15.0" fill="rgb(205,73,22)" rx="2" ry="2" />
+<text x="1120.09" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="1139.7" y="6533" width="3.8" height="15.0" fill="rgb(243,66,3)" rx="2" ry="2" />
+<text x="1142.72" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4037" width="0.4" height="15.0" fill="rgb(213,194,48)" rx="2" ry="2" />
+<text x="437.90" y="4047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="466.7" y="4837" width="0.5" height="15.0" fill="rgb(230,74,46)" rx="2" ry="2" />
+<text x="469.75" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="558.9" y="5653" width="0.9" height="15.0" fill="rgb(237,79,44)" rx="2" ry="2" />
+<text x="561.93" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="424.0" y="4677" width="0.4" height="15.0" fill="rgb(240,114,48)" rx="2" ry="2" />
+<text x="427.01" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (26 samples, 0.92%)</title><rect x="520.8" y="5973" width="10.9" height="15.0" fill="rgb(210,20,52)" rx="2" ry="2" />
+<text x="523.80" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5365" width="0.4" height="15.0" fill="rgb(221,28,3)" rx="2" ry="2" />
+<text x="897.16" y="5375.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1173" width="0.4" height="15.0" fill="rgb(252,188,5)" rx="2" ry="2" />
+<text x="546.43" y="1183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="251.4" y="5749" width="0.4" height="15.0" fill="rgb(231,195,46)" rx="2" ry="2" />
+<text x="254.36" y="5759.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="517" width="0.4" height="15.0" fill="rgb(225,73,21)" rx="2" ry="2" />
+<text x="546.43" y="527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="502.4" y="4917" width="0.4" height="15.0" fill="rgb(227,225,13)" rx="2" ry="2" />
+<text x="505.37" y="4927.5" ></text>
+</g>
+<g >
+<title>{closure}(/home/ken/src/php-waddiwasi/vendor/composer/ClassLoader.php:575-577) (1 samples, 0.04%)</title><rect x="10.0" y="6549" width="0.4" height="15.0" fill="rgb(212,119,23)" rx="2" ry="2" />
+<text x="13.00" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="409.8" y="4677" width="0.4" height="15.0" fill="rgb(242,155,40)" rx="2" ry="2" />
+<text x="412.76" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="318.0" y="4885" width="1.2" height="15.0" fill="rgb(238,42,54)" rx="2" ry="2" />
+<text x="320.99" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="836.3" y="5637" width="0.9" height="15.0" fill="rgb(225,64,24)" rx="2" ry="2" />
+<text x="839.34" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (2 samples, 0.07%)</title><rect x="1150.6" y="6581" width="0.8" height="15.0" fill="rgb(250,37,14)" rx="2" ry="2" />
+<text x="1153.61" y="6591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (24 samples, 0.85%)</title><rect x="292.0" y="5141" width="10.1" height="15.0" fill="rgb(205,176,17)" rx="2" ry="2" />
+<text x="295.01" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="345.2" y="5029" width="0.4" height="15.0" fill="rgb(212,35,52)" rx="2" ry="2" />
+<text x="348.23" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="246.8" y="6341" width="3.3" height="15.0" fill="rgb(237,63,38)" rx="2" ry="2" />
+<text x="249.75" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="682.1" y="5173" width="0.4" height="15.0" fill="rgb(225,54,35)" rx="2" ry="2" />
+<text x="685.13" y="5183.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="837.6" y="5621" width="0.4" height="15.0" fill="rgb(212,159,8)" rx="2" ry="2" />
+<text x="840.59" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (17 samples, 0.60%)</title><rect x="472.6" y="5205" width="7.1" height="15.0" fill="rgb(205,86,9)" rx="2" ry="2" />
+<text x="475.61" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4805" width="0.8" height="15.0" fill="rgb(248,138,29)" rx="2" ry="2" />
+<text x="1120.09" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (42 samples, 1.49%)</title><rect x="779.8" y="5413" width="17.6" height="15.0" fill="rgb(212,135,12)" rx="2" ry="2" />
+<text x="782.77" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="768.5" y="5429" width="1.2" height="15.0" fill="rgb(216,213,18)" rx="2" ry="2" />
+<text x="771.45" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4789" width="0.8" height="15.0" fill="rgb(210,195,30)" rx="2" ry="2" />
+<text x="1120.09" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="334.8" y="4805" width="0.4" height="15.0" fill="rgb(250,217,38)" rx="2" ry="2" />
+<text x="337.75" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="527.9" y="5413" width="0.9" height="15.0" fill="rgb(225,163,25)" rx="2" ry="2" />
+<text x="530.93" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="456.3" y="4965" width="1.2" height="15.0" fill="rgb(206,148,53)" rx="2" ry="2" />
+<text x="459.27" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="423.2" y="4773" width="0.8" height="15.0" fill="rgb(246,191,13)" rx="2" ry="2" />
+<text x="426.17" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="467.6" y="5237" width="0.8" height="15.0" fill="rgb(245,59,8)" rx="2" ry="2" />
+<text x="470.59" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.0" y="5173" width="0.4" height="15.0" fill="rgb(250,22,38)" rx="2" ry="2" />
+<text x="760.98" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.0" y="4677" width="0.4" height="15.0" fill="rgb(250,155,6)" rx="2" ry="2" />
+<text x="328.95" y="4687.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="69" width="0.4" height="15.0" fill="rgb(221,92,16)" rx="2" ry="2" />
+<text x="546.43" y="79.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI64 (2 samples, 0.07%)</title><rect x="663.3" y="5221" width="0.8" height="15.0" fill="rgb(246,139,30)" rx="2" ry="2" />
+<text x="666.27" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5829" width="1.3" height="15.0" fill="rgb(247,18,40)" rx="2" ry="2" />
+<text x="760.14" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (19 samples, 0.67%)</title><rect x="370.4" y="5109" width="7.9" height="15.0" fill="rgb(208,132,38)" rx="2" ry="2" />
+<text x="373.37" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="743.7" y="5061" width="0.9" height="15.0" fill="rgb(246,183,26)" rx="2" ry="2" />
+<text x="746.73" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.6" y="6149" width="0.4" height="15.0" fill="rgb(241,31,13)" rx="2" ry="2" />
+<text x="1073.58" y="6159.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1621" width="0.4" height="15.0" fill="rgb(243,196,44)" rx="2" ry="2" />
+<text x="546.43" y="1631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="247.2" y="6277" width="0.8" height="15.0" fill="rgb(227,167,23)" rx="2" ry="2" />
+<text x="250.17" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="472.6" y="4981" width="0.4" height="15.0" fill="rgb(205,213,46)" rx="2" ry="2" />
+<text x="475.61" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (23 samples, 0.82%)</title><rect x="319.2" y="4917" width="9.7" height="15.0" fill="rgb(220,178,45)" rx="2" ry="2" />
+<text x="322.25" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="5093" width="0.8" height="15.0" fill="rgb(232,75,1)" rx="2" ry="2" />
+<text x="512.91" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5525" width="0.4" height="15.0" fill="rgb(248,77,0)" rx="2" ry="2" />
+<text x="895.49" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="455.9" y="5237" width="2.9" height="15.0" fill="rgb(233,96,40)" rx="2" ry="2" />
+<text x="458.85" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="472.2" y="5253" width="7.5" height="15.0" fill="rgb(249,173,45)" rx="2" ry="2" />
+<text x="475.19" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5413" width="1.3" height="15.0" fill="rgb(252,171,1)" rx="2" ry="2" />
+<text x="760.14" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="401.8" y="4869" width="0.4" height="15.0" fill="rgb(240,161,40)" rx="2" ry="2" />
+<text x="404.80" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="712.7" y="5269" width="1.3" height="15.0" fill="rgb(247,79,11)" rx="2" ry="2" />
+<text x="715.72" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.4" y="5765" width="0.4" height="15.0" fill="rgb(230,55,38)" rx="2" ry="2" />
+<text x="523.38" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="530.9" y="5493" width="0.4" height="15.0" fill="rgb(229,99,31)" rx="2" ry="2" />
+<text x="533.86" y="5503.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="933" width="0.4" height="15.0" fill="rgb(220,119,32)" rx="2" ry="2" />
+<text x="546.43" y="943.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4053" width="0.4" height="15.0" fill="rgb(205,49,5)" rx="2" ry="2" />
+<text x="437.90" y="4063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="5093" width="6.7" height="15.0" fill="rgb(247,8,51)" rx="2" ry="2" />
+<text x="489.86" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="1066.4" y="6373" width="5.0" height="15.0" fill="rgb(226,39,25)" rx="2" ry="2" />
+<text x="1069.38" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="413.1" y="5061" width="0.4" height="15.0" fill="rgb(222,195,12)" rx="2" ry="2" />
+<text x="416.11" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5797" width="81.3" height="15.0" fill="rgb(222,147,11)" rx="2" ry="2" />
+<text x="678.85" y="5807.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="708.9" y="5317" width="5.9" height="15.0" fill="rgb(236,65,38)" rx="2" ry="2" />
+<text x="711.95" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (635 samples, 22.55%)</title><rect x="253.5" y="5525" width="266.0" height="15.0" fill="rgb(239,44,50)" rx="2" ry="2" />
+<text x="256.46" y="5535.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5429" width="0.8" height="15.0" fill="rgb(237,44,24)" rx="2" ry="2" />
+<text x="1120.09" y="5439.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2485" width="0.4" height="15.0" fill="rgb(230,7,2)" rx="2" ry="2" />
+<text x="437.90" y="2495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="4981" width="0.9" height="15.0" fill="rgb(215,177,27)" rx="2" ry="2" />
+<text x="746.73" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="461.7" y="5013" width="4.2" height="15.0" fill="rgb(254,126,43)" rx="2" ry="2" />
+<text x="464.72" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="301.2" y="4805" width="0.4" height="15.0" fill="rgb(229,154,11)" rx="2" ry="2" />
+<text x="304.23" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (243 samples, 8.63%)</title><rect x="574.0" y="5637" width="101.8" height="15.0" fill="rgb(220,103,11)" rx="2" ry="2" />
+<text x="577.02" y="5647.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4773" width="0.8" height="15.0" fill="rgb(232,50,3)" rx="2" ry="2" />
+<text x="1120.09" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5845" width="0.4" height="15.0" fill="rgb(216,123,25)" rx="2" ry="2" />
+<text x="1073.99" y="5855.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="344.4" y="5093" width="1.2" height="15.0" fill="rgb(212,214,25)" rx="2" ry="2" />
+<text x="347.39" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4613" width="0.4" height="15.0" fill="rgb(245,34,20)" rx="2" ry="2" />
+<text x="546.43" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="438.7" y="4661" width="2.5" height="15.0" fill="rgb(229,118,39)" rx="2" ry="2" />
+<text x="441.67" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="512.4" y="5109" width="0.9" height="15.0" fill="rgb(249,202,24)" rx="2" ry="2" />
+<text x="515.42" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5109" width="0.9" height="15.0" fill="rgb(213,92,11)" rx="2" ry="2" />
+<text x="746.73" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="512.4" y="5093" width="0.9" height="15.0" fill="rgb(252,216,1)" rx="2" ry="2" />
+<text x="515.42" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5653" width="0.4" height="15.0" fill="rgb(254,38,14)" rx="2" ry="2" />
+<text x="774.80" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.8" y="5013" width="0.5" height="15.0" fill="rgb(208,224,18)" rx="2" ry="2" />
+<text x="515.84" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.4" y="5157" width="0.4" height="15.0" fill="rgb(221,128,46)" rx="2" ry="2" />
+<text x="497.40" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="333.5" y="4805" width="0.4" height="15.0" fill="rgb(225,6,26)" rx="2" ry="2" />
+<text x="336.49" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="3925" width="0.4" height="15.0" fill="rgb(218,189,15)" rx="2" ry="2" />
+<text x="467.65" y="3935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="763.0" y="5653" width="0.4" height="15.0" fill="rgb(231,112,41)" rx="2" ry="2" />
+<text x="766.00" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="509.9" y="4901" width="0.8" height="15.0" fill="rgb(226,120,52)" rx="2" ry="2" />
+<text x="512.91" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4453" width="0.5" height="15.0" fill="rgb(234,18,42)" rx="2" ry="2" />
+<text x="346.13" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="755.9" y="5269" width="0.4" height="15.0" fill="rgb(253,178,3)" rx="2" ry="2" />
+<text x="758.88" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeByte (1 samples, 0.04%)</title><rect x="464.7" y="3861" width="0.4" height="15.0" fill="rgb(235,153,36)" rx="2" ry="2" />
+<text x="467.65" y="3871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="894.2" y="5541" width="0.4" height="15.0" fill="rgb(251,201,2)" rx="2" ry="2" />
+<text x="897.16" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1070.6" y="6101" width="0.4" height="15.0" fill="rgb(225,193,25)" rx="2" ry="2" />
+<text x="1073.58" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="368.3" y="4773" width="0.4" height="15.0" fill="rgb(210,89,53)" rx="2" ry="2" />
+<text x="371.27" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="434.9" y="4293" width="0.4" height="15.0" fill="rgb(222,99,47)" rx="2" ry="2" />
+<text x="437.90" y="4303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="456.3" y="5173" width="2.1" height="15.0" fill="rgb(228,22,4)" rx="2" ry="2" />
+<text x="459.27" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="435.7" y="4725" width="0.5" height="15.0" fill="rgb(254,105,11)" rx="2" ry="2" />
+<text x="438.74" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4789" width="0.8" height="15.0" fill="rgb(209,138,10)" rx="2" ry="2" />
+<text x="276.99" y="4799.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3365" width="0.4" height="15.0" fill="rgb(239,168,36)" rx="2" ry="2" />
+<text x="546.43" y="3375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="763.0" y="5893" width="0.4" height="15.0" fill="rgb(208,16,52)" rx="2" ry="2" />
+<text x="766.00" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5797" width="0.4" height="15.0" fill="rgb(219,205,47)" rx="2" ry="2" />
+<text x="576.60" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5269" width="101.8" height="15.0" fill="rgb(237,77,37)" rx="2" ry="2" />
+<text x="577.02" y="5279.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6341" width="0.4" height="15.0" fill="rgb(219,41,20)" rx="2" ry="2" />
+<text x="13.42" y="6351.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4245" width="0.4" height="15.0" fill="rgb(244,222,11)" rx="2" ry="2" />
+<text x="546.43" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="893.7" y="6117" width="0.9" height="15.0" fill="rgb(249,16,43)" rx="2" ry="2" />
+<text x="896.74" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="326.4" y="4805" width="0.8" height="15.0" fill="rgb(212,89,45)" rx="2" ry="2" />
+<text x="329.37" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="464.2" y="4581" width="0.9" height="15.0" fill="rgb(238,210,28)" rx="2" ry="2" />
+<text x="467.23" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4597" width="0.4" height="15.0" fill="rgb(228,43,30)" rx="2" ry="2" />
+<text x="463.88" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5445" width="1.3" height="15.0" fill="rgb(240,90,32)" rx="2" ry="2" />
+<text x="760.14" y="5455.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2613" width="0.4" height="15.0" fill="rgb(242,103,22)" rx="2" ry="2" />
+<text x="546.43" y="2623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="281.1" y="4773" width="0.4" height="15.0" fill="rgb(246,13,48)" rx="2" ry="2" />
+<text x="284.12" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="560.2" y="5333" width="0.4" height="15.0" fill="rgb(230,160,26)" rx="2" ry="2" />
+<text x="563.19" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="762.6" y="6037" width="0.4" height="15.0" fill="rgb(222,80,16)" rx="2" ry="2" />
+<text x="765.59" y="6047.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (636 samples, 22.59%)</title><rect x="253.5" y="5829" width="266.5" height="15.0" fill="rgb(209,42,5)" rx="2" ry="2" />
+<text x="256.46" y="5839.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1047.9" y="6389" width="0.5" height="15.0" fill="rgb(227,29,54)" rx="2" ry="2" />
+<text x="1050.95" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4677" width="0.5" height="15.0" fill="rgb(210,191,22)" rx="2" ry="2" />
+<text x="346.13" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="747.9" y="5093" width="0.9" height="15.0" fill="rgb(251,20,36)" rx="2" ry="2" />
+<text x="750.92" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="331.0" y="4901" width="0.4" height="15.0" fill="rgb(238,77,48)" rx="2" ry="2" />
+<text x="333.98" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="519.1" y="5429" width="0.4" height="15.0" fill="rgb(232,115,46)" rx="2" ry="2" />
+<text x="522.13" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5477" width="0.4" height="15.0" fill="rgb(212,162,36)" rx="2" ry="2" />
+<text x="1073.99" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (58 samples, 2.06%)</title><rect x="776.4" y="5685" width="24.3" height="15.0" fill="rgb(252,195,40)" rx="2" ry="2" />
+<text x="779.41" y="5695.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="733.3" y="5237" width="0.4" height="15.0" fill="rgb(247,104,40)" rx="2" ry="2" />
+<text x="736.25" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="767.2" y="5829" width="2.5" height="15.0" fill="rgb(225,73,25)" rx="2" ry="2" />
+<text x="770.19" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5989" width="0.8" height="15.0" fill="rgb(251,49,42)" rx="2" ry="2" />
+<text x="1120.09" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6341" width="0.4" height="15.0" fill="rgb(242,127,15)" rx="2" ry="2" />
+<text x="1125.12" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.6" y="4757" width="0.5" height="15.0" fill="rgb(241,183,14)" rx="2" ry="2" />
+<text x="348.65" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (53 samples, 1.88%)</title><rect x="390.9" y="5045" width="22.2" height="15.0" fill="rgb(252,99,8)" rx="2" ry="2" />
+<text x="393.90" y="5055.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="343.1" y="4805" width="0.5" height="15.0" fill="rgb(210,187,7)" rx="2" ry="2" />
+<text x="346.13" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="566.1" y="5237" width="0.4" height="15.0" fill="rgb(205,6,18)" rx="2" ry="2" />
+<text x="569.06" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5781" width="0.4" height="15.0" fill="rgb(208,173,15)" rx="2" ry="2" />
+<text x="761.39" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5237" width="0.5" height="15.0" fill="rgb(252,12,26)" rx="2" ry="2" />
+<text x="716.14" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="559.8" y="5669" width="7.5" height="15.0" fill="rgb(243,101,42)" rx="2" ry="2" />
+<text x="562.77" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="361.6" y="4741" width="0.4" height="15.0" fill="rgb(225,203,11)" rx="2" ry="2" />
+<text x="364.57" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (48 samples, 1.70%)</title><rect x="801.1" y="5797" width="20.1" height="15.0" fill="rgb(219,161,5)" rx="2" ry="2" />
+<text x="804.14" y="5807.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="5141" width="0.5" height="15.0" fill="rgb(236,21,8)" rx="2" ry="2" />
+<text x="469.75" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (162 samples, 5.75%)</title><rect x="378.8" y="5205" width="67.8" height="15.0" fill="rgb(241,97,9)" rx="2" ry="2" />
+<text x="381.75" y="5215.5" >Nsfisis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.9" y="4677" width="0.9" height="15.0" fill="rgb(242,103,8)" rx="2" ry="2" />
+<text x="429.94" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="520.0" y="5861" width="0.4" height="15.0" fill="rgb(227,74,29)" rx="2" ry="2" />
+<text x="522.96" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="518.7" y="5461" width="0.4" height="15.0" fill="rgb(223,127,45)" rx="2" ry="2" />
+<text x="521.71" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="349.0" y="5253" width="0.4" height="15.0" fill="rgb(254,55,54)" rx="2" ry="2" />
+<text x="352.00" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (11 samples, 0.39%)</title><rect x="305.4" y="5109" width="4.6" height="15.0" fill="rgb(235,169,31)" rx="2" ry="2" />
+<text x="308.42" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4613" width="0.4" height="15.0" fill="rgb(241,90,33)" rx="2" ry="2" />
+<text x="1073.99" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="426.1" y="4869" width="1.7" height="15.0" fill="rgb(245,94,13)" rx="2" ry="2" />
+<text x="429.10" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5077" width="1.6" height="15.0" fill="rgb(251,92,30)" rx="2" ry="2" />
+<text x="545.17" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (60 samples, 2.13%)</title><rect x="421.5" y="5029" width="25.1" height="15.0" fill="rgb(234,159,16)" rx="2" ry="2" />
+<text x="424.49" y="5039.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="878.7" y="5525" width="0.4" height="15.0" fill="rgb(208,46,29)" rx="2" ry="2" />
+<text x="881.66" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="573.6" y="5701" width="0.4" height="15.0" fill="rgb(210,55,34)" rx="2" ry="2" />
+<text x="576.60" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="476.4" y="4917" width="2.9" height="15.0" fill="rgb(254,52,14)" rx="2" ry="2" />
+<text x="479.38" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="482.3" y="5253" width="0.8" height="15.0" fill="rgb(210,137,23)" rx="2" ry="2" />
+<text x="485.25" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (302 samples, 10.72%)</title><rect x="767.2" y="6389" width="126.5" height="15.0" fill="rgb(235,115,3)" rx="2" ry="2" />
+<text x="770.19" y="6399.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (59 samples, 2.10%)</title><rect x="470.5" y="5413" width="24.7" height="15.0" fill="rgb(205,84,47)" rx="2" ry="2" />
+<text x="473.52" y="5423.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5509" width="1.3" height="15.0" fill="rgb(217,207,32)" rx="2" ry="2" />
+<text x="760.14" y="5519.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4229" width="0.4" height="15.0" fill="rgb(209,43,37)" rx="2" ry="2" />
+<text x="437.90" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="481.8" y="5349" width="1.3" height="15.0" fill="rgb(226,199,38)" rx="2" ry="2" />
+<text x="484.83" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5445" width="101.8" height="15.0" fill="rgb(229,138,32)" rx="2" ry="2" />
+<text x="577.02" y="5455.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5829" width="0.4" height="15.0" fill="rgb(236,49,5)" rx="2" ry="2" />
+<text x="1073.99" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="767.2" y="5493" width="2.5" height="15.0" fill="rgb(223,76,14)" rx="2" ry="2" />
+<text x="770.19" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="420.2" y="4901" width="1.3" height="15.0" fill="rgb(243,130,27)" rx="2" ry="2" />
+<text x="423.23" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="260.2" y="5141" width="0.4" height="15.0" fill="rgb(234,10,29)" rx="2" ry="2" />
+<text x="263.16" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="541.8" y="5381" width="2.0" height="15.0" fill="rgb(253,104,9)" rx="2" ry="2" />
+<text x="544.75" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="509.1" y="5045" width="0.4" height="15.0" fill="rgb(211,10,30)" rx="2" ry="2" />
+<text x="512.07" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5093" width="0.8" height="15.0" fill="rgb(232,78,40)" rx="2" ry="2" />
+<text x="1120.09" y="5103.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4005" width="0.4" height="15.0" fill="rgb(250,30,44)" rx="2" ry="2" />
+<text x="546.43" y="4015.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="345.6" y="4725" width="0.5" height="15.0" fill="rgb(208,82,22)" rx="2" ry="2" />
+<text x="348.65" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="525.0" y="5765" width="1.2" height="15.0" fill="rgb(216,181,52)" rx="2" ry="2" />
+<text x="527.99" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5717" width="0.4" height="15.0" fill="rgb(230,26,29)" rx="2" ry="2" />
+<text x="895.49" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="424.0" y="4693" width="0.4" height="15.0" fill="rgb(217,205,31)" rx="2" ry="2" />
+<text x="427.01" y="4703.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2421" width="0.4" height="15.0" fill="rgb(250,229,4)" rx="2" ry="2" />
+<text x="546.43" y="2431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="266.0" y="5077" width="1.3" height="15.0" fill="rgb(205,178,49)" rx="2" ry="2" />
+<text x="269.03" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (21 samples, 0.75%)</title><rect x="320.1" y="4901" width="8.8" height="15.0" fill="rgb(253,187,53)" rx="2" ry="2" />
+<text x="323.09" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstr (2 samples, 0.07%)</title><rect x="10.4" y="6357" width="0.9" height="15.0" fill="rgb(218,17,48)" rx="2" ry="2" />
+<text x="13.42" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4501" width="0.8" height="15.0" fill="rgb(237,90,39)" rx="2" ry="2" />
+<text x="429.10" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="435.3" y="4837" width="1.3" height="15.0" fill="rgb(220,118,53)" rx="2" ry="2" />
+<text x="438.32" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (4 samples, 0.14%)</title><rect x="1123.8" y="6549" width="1.7" height="15.0" fill="rgb(226,72,12)" rx="2" ry="2" />
+<text x="1126.79" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1123.0" y="6501" width="0.4" height="15.0" fill="rgb(216,80,0)" rx="2" ry="2" />
+<text x="1125.95" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (2 samples, 0.07%)</title><rect x="10.4" y="6373" width="0.9" height="15.0" fill="rgb(237,169,43)" rx="2" ry="2" />
+<text x="13.42" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.6" y="4997" width="0.4" height="15.0" fill="rgb(212,146,28)" rx="2" ry="2" />
+<text x="294.59" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (26 samples, 0.92%)</title><rect x="520.8" y="5989" width="10.9" height="15.0" fill="rgb(210,89,2)" rx="2" ry="2" />
+<text x="523.80" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="1054.7" y="6517" width="0.4" height="15.0" fill="rgb(221,42,42)" rx="2" ry="2" />
+<text x="1057.65" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4437" width="0.8" height="15.0" fill="rgb(219,136,46)" rx="2" ry="2" />
+<text x="429.10" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="756.3" y="5349" width="0.4" height="15.0" fill="rgb(209,57,22)" rx="2" ry="2" />
+<text x="759.30" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="6101" width="0.4" height="15.0" fill="rgb(205,49,13)" rx="2" ry="2" />
+<text x="1073.99" y="6111.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="457.5" y="5109" width="0.9" height="15.0" fill="rgb(251,61,18)" rx="2" ry="2" />
+<text x="460.53" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (64 samples, 2.27%)</title><rect x="419.8" y="5061" width="26.8" height="15.0" fill="rgb(232,84,16)" rx="2" ry="2" />
+<text x="422.82" y="5071.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.3" y="5445" width="0.4" height="15.0" fill="rgb(241,24,42)" rx="2" ry="2" />
+<text x="565.29" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="466.7" y="5077" width="0.5" height="15.0" fill="rgb(252,114,51)" rx="2" ry="2" />
+<text x="469.75" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1141.0" y="6325" width="0.4" height="15.0" fill="rgb(216,34,36)" rx="2" ry="2" />
+<text x="1143.97" y="6335.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="661" width="0.4" height="15.0" fill="rgb(227,1,36)" rx="2" ry="2" />
+<text x="546.43" y="671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (84 samples, 2.98%)</title><rect x="532.1" y="5877" width="35.2" height="15.0" fill="rgb(233,219,4)" rx="2" ry="2" />
+<text x="535.12" y="5887.5" >Ns..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2469" width="0.4" height="15.0" fill="rgb(233,124,46)" rx="2" ry="2" />
+<text x="546.43" y="2479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5253" width="1.6" height="15.0" fill="rgb(217,146,5)" rx="2" ry="2" />
+<text x="545.17" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="427.4" y="4437" width="0.4" height="15.0" fill="rgb(209,118,29)" rx="2" ry="2" />
+<text x="430.36" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="509.9" y="5061" width="0.8" height="15.0" fill="rgb(216,157,37)" rx="2" ry="2" />
+<text x="512.91" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4341" width="0.9" height="15.0" fill="rgb(229,148,10)" rx="2" ry="2" />
+<text x="467.23" y="4351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="342.7" y="5093" width="0.9" height="15.0" fill="rgb(215,45,52)" rx="2" ry="2" />
+<text x="345.71" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4917" width="0.5" height="15.0" fill="rgb(228,191,36)" rx="2" ry="2" />
+<text x="489.44" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="542.2" y="5189" width="1.6" height="15.0" fill="rgb(235,208,33)" rx="2" ry="2" />
+<text x="545.17" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (9 samples, 0.32%)</title><rect x="514.5" y="5365" width="3.8" height="15.0" fill="rgb(225,203,26)" rx="2" ry="2" />
+<text x="517.52" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (212 samples, 7.53%)</title><rect x="260.6" y="5349" width="88.8" height="15.0" fill="rgb(248,201,14)" rx="2" ry="2" />
+<text x="263.58" y="5359.5" >Nsfisis\Wa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="326.8" y="4709" width="0.4" height="15.0" fill="rgb(248,18,36)" rx="2" ry="2" />
+<text x="329.79" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5237" width="0.4" height="15.0" fill="rgb(240,19,12)" rx="2" ry="2" />
+<text x="497.40" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (23 samples, 0.82%)</title><rect x="705.2" y="5381" width="9.6" height="15.0" fill="rgb(209,179,11)" rx="2" ry="2" />
+<text x="708.18" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5781" width="1.3" height="15.0" fill="rgb(246,61,53)" rx="2" ry="2" />
+<text x="760.14" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="506.6" y="5013" width="0.4" height="15.0" fill="rgb(236,11,36)" rx="2" ry="2" />
+<text x="509.56" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="362.0" y="4789" width="1.2" height="15.0" fill="rgb(252,48,5)" rx="2" ry="2" />
+<text x="364.99" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="521.2" y="5653" width="0.4" height="15.0" fill="rgb(209,138,5)" rx="2" ry="2" />
+<text x="524.22" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.2" y="5573" width="0.5" height="15.0" fill="rgb(232,80,5)" rx="2" ry="2" />
+<text x="881.24" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="878.7" y="5541" width="0.4" height="15.0" fill="rgb(211,160,36)" rx="2" ry="2" />
+<text x="881.66" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5301" width="0.4" height="15.0" fill="rgb(216,76,26)" rx="2" ry="2" />
+<text x="1073.99" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4677" width="0.4" height="15.0" fill="rgb(249,106,0)" rx="2" ry="2" />
+<text x="1073.99" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="4693" width="0.8" height="15.0" fill="rgb(216,115,39)" rx="2" ry="2" />
+<text x="1120.09" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="263.5" y="4997" width="1.3" height="15.0" fill="rgb(208,190,10)" rx="2" ry="2" />
+<text x="266.52" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (65 samples, 2.31%)</title><rect x="773.9" y="5781" width="27.2" height="15.0" fill="rgb(222,214,36)" rx="2" ry="2" />
+<text x="776.90" y="5791.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1183.3" y="6565" width="0.4" height="15.0" fill="rgb(230,63,34)" rx="2" ry="2" />
+<text x="1186.30" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (8 samples, 0.28%)</title><rect x="564.0" y="5557" width="3.3" height="15.0" fill="rgb(238,27,15)" rx="2" ry="2" />
+<text x="566.96" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="835.5" y="5621" width="0.8" height="15.0" fill="rgb(223,138,0)" rx="2" ry="2" />
+<text x="838.50" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="751.7" y="5189" width="4.2" height="15.0" fill="rgb(253,39,14)" rx="2" ry="2" />
+<text x="754.69" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="893.7" y="6133" width="0.9" height="15.0" fill="rgb(236,65,32)" rx="2" ry="2" />
+<text x="896.74" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (17 samples, 0.60%)</title><rect x="472.6" y="5125" width="7.1" height="15.0" fill="rgb(234,14,30)" rx="2" ry="2" />
+<text x="475.61" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="774.3" y="5669" width="2.1" height="15.0" fill="rgb(228,178,52)" rx="2" ry="2" />
+<text x="777.32" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (302 samples, 10.72%)</title><rect x="767.2" y="6245" width="126.5" height="15.0" fill="rgb(232,171,10)" rx="2" ry="2" />
+<text x="770.19" y="6255.5" >Nsfisis\Waddiwa..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="276.9" y="4821" width="3.0" height="15.0" fill="rgb(241,196,2)" rx="2" ry="2" />
+<text x="279.92" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5349" width="0.5" height="15.0" fill="rgb(248,151,9)" rx="2" ry="2" />
+<text x="879.14" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="248.4" y="5973" width="1.3" height="15.0" fill="rgb(222,185,4)" rx="2" ry="2" />
+<text x="251.43" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="768.5" y="5445" width="1.2" height="15.0" fill="rgb(207,154,39)" rx="2" ry="2" />
+<text x="771.45" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.0" y="5813" width="0.4" height="15.0" fill="rgb(207,126,11)" rx="2" ry="2" />
+<text x="766.00" y="5823.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (2 samples, 0.07%)</title><rect x="1145.2" y="6549" width="0.8" height="15.0" fill="rgb(244,14,52)" rx="2" ry="2" />
+<text x="1148.16" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="484.8" y="4789" width="0.4" height="15.0" fill="rgb(253,143,54)" rx="2" ry="2" />
+<text x="487.77" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5765" width="1.3" height="15.0" fill="rgb(236,165,19)" rx="2" ry="2" />
+<text x="760.14" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="765.5" y="5669" width="0.4" height="15.0" fill="rgb(214,165,5)" rx="2" ry="2" />
+<text x="768.52" y="5679.5" ></text>
+</g>
+<g >
+<title>print_r (13 samples, 0.46%)</title><rect x="1126.3" y="6549" width="5.5" height="15.0" fill="rgb(207,6,45)" rx="2" ry="2" />
+<text x="1129.31" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="426.1" y="4421" width="0.8" height="15.0" fill="rgb(221,177,53)" rx="2" ry="2" />
+<text x="429.10" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,546 samples, 54.90%)</title><rect x="246.8" y="6517" width="647.8" height="15.0" fill="rgb(241,114,51)" rx="2" ry="2" />
+<text x="249.75" y="6527.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (198 samples, 7.03%)</title><rect x="675.8" y="5989" width="83.0" height="15.0" fill="rgb(213,46,18)" rx="2" ry="2" />
+<text x="678.85" y="5999.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4677" width="0.4" height="15.0" fill="rgb(252,44,42)" rx="2" ry="2" />
+<text x="463.88" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="464.7" y="4181" width="0.4" height="15.0" fill="rgb(225,134,43)" rx="2" ry="2" />
+<text x="467.65" y="4191.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="493.1" y="4501" width="0.5" height="15.0" fill="rgb(226,174,25)" rx="2" ry="2" />
+<text x="496.15" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="334.8" y="4821" width="0.4" height="15.0" fill="rgb(250,1,3)" rx="2" ry="2" />
+<text x="337.75" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="500.7" y="5141" width="0.4" height="15.0" fill="rgb(207,77,40)" rx="2" ry="2" />
+<text x="503.69" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (19 samples, 0.67%)</title><rect x="370.4" y="5093" width="7.9" height="15.0" fill="rgb(209,154,17)" rx="2" ry="2" />
+<text x="373.37" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="799.0" y="5173" width="0.9" height="15.0" fill="rgb(236,6,29)" rx="2" ry="2" />
+<text x="802.04" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="763.0" y="5701" width="0.4" height="15.0" fill="rgb(248,47,5)" rx="2" ry="2" />
+<text x="766.00" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="754.6" y="5125" width="1.3" height="15.0" fill="rgb(224,171,33)" rx="2" ry="2" />
+<text x="757.62" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="6197" width="0.8" height="15.0" fill="rgb(213,139,35)" rx="2" ry="2" />
+<text x="1120.09" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5861" width="81.3" height="15.0" fill="rgb(227,107,12)" rx="2" ry="2" />
+<text x="678.85" y="5871.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (37 samples, 1.31%)</title><rect x="1103.7" y="6469" width="15.5" height="15.0" fill="rgb(223,34,22)" rx="2" ry="2" />
+<text x="1106.68" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4805" width="0.9" height="15.0" fill="rgb(253,71,37)" rx="2" ry="2" />
+<text x="388.04" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="248.0" y="6277" width="2.1" height="15.0" fill="rgb(213,154,32)" rx="2" ry="2" />
+<text x="251.01" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="558.1" y="5333" width="0.4" height="15.0" fill="rgb(212,177,27)" rx="2" ry="2" />
+<text x="561.10" y="5343.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2453" width="0.4" height="15.0" fill="rgb(221,72,15)" rx="2" ry="2" />
+<text x="437.90" y="2463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="291.6" y="5093" width="0.4" height="15.0" fill="rgb(254,225,19)" rx="2" ry="2" />
+<text x="294.59" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="377.9" y="5077" width="0.4" height="15.0" fill="rgb(212,58,40)" rx="2" ry="2" />
+<text x="380.91" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1076.9" y="6357" width="0.4" height="15.0" fill="rgb(220,83,33)" rx="2" ry="2" />
+<text x="1079.86" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="755.5" y="5077" width="0.4" height="15.0" fill="rgb(253,114,13)" rx="2" ry="2" />
+<text x="758.46" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="477.2" y="4741" width="0.9" height="15.0" fill="rgb(227,148,53)" rx="2" ry="2" />
+<text x="480.22" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4085" width="0.4" height="15.0" fill="rgb(212,187,15)" rx="2" ry="2" />
+<text x="437.90" y="4095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.3" y="5701" width="0.4" height="15.0" fill="rgb(214,73,12)" rx="2" ry="2" />
+<text x="767.26" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5509" width="0.4" height="15.0" fill="rgb(217,9,37)" rx="2" ry="2" />
+<text x="896.32" y="5519.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI64 (1 samples, 0.04%)</title><rect x="526.7" y="5269" width="0.4" height="15.0" fill="rgb(206,89,14)" rx="2" ry="2" />
+<text x="529.67" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="459.2" y="5093" width="6.7" height="15.0" fill="rgb(216,67,24)" rx="2" ry="2" />
+<text x="462.20" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="247.2" y="6229" width="0.8" height="15.0" fill="rgb(235,125,18)" rx="2" ry="2" />
+<text x="250.17" y="6239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="470.1" y="5349" width="0.4" height="15.0" fill="rgb(253,54,30)" rx="2" ry="2" />
+<text x="473.10" y="5359.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3013" width="0.4" height="15.0" fill="rgb(253,72,24)" rx="2" ry="2" />
+<text x="546.43" y="3023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4325" width="0.8" height="15.0" fill="rgb(240,143,49)" rx="2" ry="2" />
+<text x="1120.09" y="4335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="761.3" y="5733" width="0.4" height="15.0" fill="rgb(232,73,4)" rx="2" ry="2" />
+<text x="764.33" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="700.1" y="5445" width="0.5" height="15.0" fill="rgb(219,224,27)" rx="2" ry="2" />
+<text x="703.15" y="5455.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="385.0" y="4933" width="0.9" height="15.0" fill="rgb(226,18,4)" rx="2" ry="2" />
+<text x="388.04" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="878.7" y="5461" width="0.4" height="15.0" fill="rgb(241,190,32)" rx="2" ry="2" />
+<text x="881.66" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1098.7" y="6389" width="0.4" height="15.0" fill="rgb(222,166,0)" rx="2" ry="2" />
+<text x="1101.65" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="410.6" y="4789" width="0.8" height="15.0" fill="rgb(230,52,7)" rx="2" ry="2" />
+<text x="413.60" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="460.9" y="4709" width="0.4" height="15.0" fill="rgb(210,48,23)" rx="2" ry="2" />
+<text x="463.88" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-waddiwasi/src/BinaryFormat/Decoder.php:264-267) (1,239 samples, 44.00%)</title><rect x="246.8" y="6453" width="519.1" height="15.0" fill="rgb(205,202,7)" rx="2" ry="2" />
+<text x="249.75" y="6463.5" >Nsfisis\Waddiwasi\BinaryFormat\Decoder::{closure}(/home/ken/src/php-wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (64 samples, 2.27%)</title><rect x="774.3" y="5765" width="26.8" height="15.0" fill="rgb(232,106,17)" rx="2" ry="2" />
+<text x="777.32" y="5775.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="417.3" y="4789" width="2.1" height="15.0" fill="rgb(234,65,29)" rx="2" ry="2" />
+<text x="420.30" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="869.0" y="5493" width="0.4" height="15.0" fill="rgb(248,103,23)" rx="2" ry="2" />
+<text x="872.02" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (29 samples, 1.03%)</title><rect x="499.0" y="5253" width="12.2" height="15.0" fill="rgb(243,31,2)" rx="2" ry="2" />
+<text x="502.01" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="750.0" y="5285" width="6.3" height="15.0" fill="rgb(218,226,31)" rx="2" ry="2" />
+<text x="753.01" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (9 samples, 0.32%)</title><rect x="801.6" y="5749" width="3.7" height="15.0" fill="rgb(230,149,50)" rx="2" ry="2" />
+<text x="804.56" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="540.9" y="5461" width="2.9" height="15.0" fill="rgb(229,97,22)" rx="2" ry="2" />
+<text x="543.92" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="522.5" y="5717" width="1.7" height="15.0" fill="rgb(224,158,35)" rx="2" ry="2" />
+<text x="525.48" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6133" width="0.4" height="15.0" fill="rgb(228,218,22)" rx="2" ry="2" />
+<text x="896.32" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4453" width="0.8" height="15.0" fill="rgb(238,48,37)" rx="2" ry="2" />
+<text x="1120.09" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="481.8" y="5301" width="1.3" height="15.0" fill="rgb(211,139,31)" rx="2" ry="2" />
+<text x="484.83" y="5311.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3141" width="0.4" height="15.0" fill="rgb(254,126,35)" rx="2" ry="2" />
+<text x="437.90" y="3151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1117.5" y="4229" width="0.4" height="15.0" fill="rgb(221,51,4)" rx="2" ry="2" />
+<text x="1120.51" y="4239.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="346.9" y="4997" width="0.4" height="15.0" fill="rgb(232,64,24)" rx="2" ry="2" />
+<text x="349.90" y="5007.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="3381" width="0.4" height="15.0" fill="rgb(226,41,15)" rx="2" ry="2" />
+<text x="546.43" y="3391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="459.2" y="5077" width="6.7" height="15.0" fill="rgb(220,139,5)" rx="2" ry="2" />
+<text x="462.20" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="423.2" y="4821" width="1.2" height="15.0" fill="rgb(228,33,28)" rx="2" ry="2" />
+<text x="426.17" y="4831.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2645" width="0.4" height="15.0" fill="rgb(212,165,1)" rx="2" ry="2" />
+<text x="546.43" y="2655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="424.0" y="4741" width="0.4" height="15.0" fill="rgb(240,56,23)" rx="2" ry="2" />
+<text x="427.01" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntries\Value::__construct (3 samples, 0.11%)</title><rect x="666.2" y="5205" width="1.3" height="15.0" fill="rgb(246,10,47)" rx="2" ry="2" />
+<text x="669.21" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.9" y="4597" width="0.4" height="15.0" fill="rgb(208,134,46)" rx="2" ry="2" />
+<text x="489.86" y="4607.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4213" width="0.4" height="15.0" fill="rgb(225,53,4)" rx="2" ry="2" />
+<text x="546.43" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="486.9" y="4757" width="0.4" height="15.0" fill="rgb(222,181,32)" rx="2" ry="2" />
+<text x="489.86" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="767.2" y="5861" width="2.9" height="15.0" fill="rgb(229,69,23)" rx="2" ry="2" />
+<text x="770.19" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.92%)</title><rect x="496.1" y="5413" width="22.6" height="15.0" fill="rgb(232,125,27)" rx="2" ry="2" />
+<text x="499.08" y="5423.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="342.3" y="5077" width="0.4" height="15.0" fill="rgb(254,39,34)" rx="2" ry="2" />
+<text x="345.29" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5845" width="101.8" height="15.0" fill="rgb(219,88,42)" rx="2" ry="2" />
+<text x="577.02" y="5855.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.4" y="5221" width="0.4" height="15.0" fill="rgb(211,150,39)" rx="2" ry="2" />
+<text x="471.42" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (169 samples, 6.00%)</title><rect x="822.5" y="5845" width="70.8" height="15.0" fill="rgb(236,183,38)" rx="2" ry="2" />
+<text x="825.51" y="5855.5" >Nsfisis\..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="487.7" y="4133" width="5.4" height="15.0" fill="rgb(241,135,11)" rx="2" ry="2" />
+<text x="490.70" y="4143.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2405" width="0.4" height="15.0" fill="rgb(231,19,31)" rx="2" ry="2" />
+<text x="546.43" y="2415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="562.7" y="5573" width="0.4" height="15.0" fill="rgb(208,35,43)" rx="2" ry="2" />
+<text x="565.71" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="5077" width="0.4" height="15.0" fill="rgb(235,118,45)" rx="2" ry="2" />
+<text x="496.98" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1076.4" y="6437" width="0.9" height="15.0" fill="rgb(213,194,6)" rx="2" ry="2" />
+<text x="1079.44" y="6447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="679.6" y="5445" width="0.4" height="15.0" fill="rgb(220,47,15)" rx="2" ry="2" />
+<text x="682.62" y="5455.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4021" width="0.4" height="15.0" fill="rgb(238,92,38)" rx="2" ry="2" />
+<text x="546.43" y="4031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (36 samples, 1.28%)</title><rect x="781.0" y="5333" width="15.1" height="15.0" fill="rgb(243,137,45)" rx="2" ry="2" />
+<text x="784.02" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="514.5" y="5317" width="3.8" height="15.0" fill="rgb(210,30,29)" rx="2" ry="2" />
+<text x="517.52" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.0" y="4885" width="0.4" height="15.0" fill="rgb(206,132,17)" rx="2" ry="2" />
+<text x="333.98" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="525.4" y="5637" width="0.8" height="15.0" fill="rgb(241,12,42)" rx="2" ry="2" />
+<text x="528.41" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6357" width="0.4" height="15.0" fill="rgb(246,108,30)" rx="2" ry="2" />
+<text x="1143.55" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6117" width="0.4" height="15.0" fill="rgb(247,145,16)" rx="2" ry="2" />
+<text x="13.42" y="6127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1117.9" y="6261" width="0.4" height="15.0" fill="rgb(245,59,52)" rx="2" ry="2" />
+<text x="1120.93" y="6271.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="485.2" y="5077" width="1.2" height="15.0" fill="rgb(221,209,39)" rx="2" ry="2" />
+<text x="488.18" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (144 samples, 5.11%)</title><rect x="288.7" y="5285" width="60.3" height="15.0" fill="rgb(211,217,9)" rx="2" ry="2" />
+<text x="291.66" y="5295.5" >Nsfisi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Instructions\Instr::F64CopySign (1 samples, 0.04%)</title><rect x="11.3" y="6405" width="0.4" height="15.0" fill="rgb(243,132,24)" rx="2" ry="2" />
+<text x="14.26" y="6415.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Val::NumI32 (1 samples, 0.04%)</title><rect x="483.9" y="4997" width="0.4" height="15.0" fill="rgb(238,57,24)" rx="2" ry="2" />
+<text x="486.93" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="291.6" y="5109" width="0.4" height="15.0" fill="rgb(211,189,54)" rx="2" ry="2" />
+<text x="294.59" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="767.2" y="5461" width="1.3" height="15.0" fill="rgb(229,105,38)" rx="2" ry="2" />
+<text x="770.19" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (5 samples, 0.18%)</title><rect x="248.0" y="6197" width="2.1" height="15.0" fill="rgb(220,195,39)" rx="2" ry="2" />
+<text x="251.01" y="6207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Structure\Instructions\Instrs\Memory\I32Store8::__construct (1 samples, 0.04%)</title><rect x="246.3" y="6501" width="0.5" height="15.0" fill="rgb(244,129,25)" rx="2" ry="2" />
+<text x="249.34" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (59 samples, 2.10%)</title><rect x="470.5" y="5429" width="24.7" height="15.0" fill="rgb(212,173,39)" rx="2" ry="2" />
+<text x="473.52" y="5439.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (6 samples, 0.21%)</title><rect x="763.0" y="6037" width="2.5" height="15.0" fill="rgb(220,227,45)" rx="2" ry="2" />
+<text x="766.00" y="6047.5" ></text>
+</g>
+<g >
+<title>assert (1 samples, 0.04%)</title><rect x="228.3" y="6469" width="0.4" height="15.0" fill="rgb(239,29,15)" rx="2" ry="2" />
+<text x="231.32" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="757.6" y="5381" width="0.8" height="15.0" fill="rgb(205,224,40)" rx="2" ry="2" />
+<text x="760.56" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="334.3" y="4949" width="6.7" height="15.0" fill="rgb(251,157,51)" rx="2" ry="2" />
+<text x="337.33" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (198 samples, 7.03%)</title><rect x="675.8" y="6021" width="83.0" height="15.0" fill="rgb(214,69,52)" rx="2" ry="2" />
+<text x="678.85" y="6031.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="527.9" y="5733" width="3.4" height="15.0" fill="rgb(232,47,21)" rx="2" ry="2" />
+<text x="530.93" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="382.1" y="5013" width="0.4" height="15.0" fill="rgb(245,152,2)" rx="2" ry="2" />
+<text x="385.10" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="427.4" y="4453" width="0.4" height="15.0" fill="rgb(230,56,13)" rx="2" ry="2" />
+<text x="430.36" y="4463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5077" width="0.4" height="15.0" fill="rgb(238,26,32)" rx="2" ry="2" />
+<text x="1073.99" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="530.9" y="5413" width="0.4" height="15.0" fill="rgb(206,63,10)" rx="2" ry="2" />
+<text x="533.86" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (635 samples, 22.55%)</title><rect x="253.5" y="5621" width="266.0" height="15.0" fill="rgb(211,150,16)" rx="2" ry="2" />
+<text x="256.46" y="5631.5" >Nsfisis\Waddiwasi\Execution\Runtime..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2629" width="0.4" height="15.0" fill="rgb(233,113,11)" rx="2" ry="2" />
+<text x="437.90" y="2639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="434.5" y="4805" width="0.8" height="15.0" fill="rgb(235,148,4)" rx="2" ry="2" />
+<text x="437.48" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (123 samples, 4.37%)</title><rect x="289.5" y="5157" width="51.5" height="15.0" fill="rgb(206,92,10)" rx="2" ry="2" />
+<text x="292.50" y="5167.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="5045" width="0.4" height="15.0" fill="rgb(214,86,38)" rx="2" ry="2" />
+<text x="896.32" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="573.6" y="5813" width="0.4" height="15.0" fill="rgb(214,98,52)" rx="2" ry="2" />
+<text x="576.60" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="558.1" y="5269" width="0.4" height="15.0" fill="rgb(212,159,53)" rx="2" ry="2" />
+<text x="561.10" y="5279.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="6053" width="0.4" height="15.0" fill="rgb(225,146,20)" rx="2" ry="2" />
+<text x="896.32" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="326.0" y="4741" width="0.4" height="15.0" fill="rgb(209,174,47)" rx="2" ry="2" />
+<text x="328.95" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="263.5" y="5125" width="3.8" height="15.0" fill="rgb(238,186,40)" rx="2" ry="2" />
+<text x="266.52" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5125" width="0.5" height="15.0" fill="rgb(212,103,37)" rx="2" ry="2" />
+<text x="716.14" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="460.0" y="4965" width="1.3" height="15.0" fill="rgb(245,114,22)" rx="2" ry="2" />
+<text x="463.04" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="517.9" y="5205" width="0.4" height="15.0" fill="rgb(253,201,39)" rx="2" ry="2" />
+<text x="520.87" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.0" y="5717" width="0.4" height="15.0" fill="rgb(253,189,5)" rx="2" ry="2" />
+<text x="766.00" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4565" width="0.4" height="15.0" fill="rgb(245,97,52)" rx="2" ry="2" />
+<text x="1073.99" y="4575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="184.3" y="6469" width="0.4" height="15.0" fill="rgb(242,106,40)" rx="2" ry="2" />
+<text x="187.32" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="326.4" y="4789" width="0.8" height="15.0" fill="rgb(239,125,18)" rx="2" ry="2" />
+<text x="329.37" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="763.8" y="5941" width="1.7" height="15.0" fill="rgb(250,53,47)" rx="2" ry="2" />
+<text x="766.84" y="5951.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5061" width="0.8" height="15.0" fill="rgb(234,110,33)" rx="2" ry="2" />
+<text x="1120.09" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5541" width="81.3" height="15.0" fill="rgb(249,103,39)" rx="2" ry="2" />
+<text x="678.85" y="5551.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="338.9" y="4597" width="0.9" height="15.0" fill="rgb(220,217,10)" rx="2" ry="2" />
+<text x="341.94" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1,221 samples, 43.36%)</title><rect x="250.5" y="6053" width="511.7" height="15.0" fill="rgb(230,186,2)" rx="2" ry="2" />
+<text x="253.53" y="6063.5" >Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1140.6" y="6389" width="0.4" height="15.0" fill="rgb(252,81,4)" rx="2" ry="2" />
+<text x="1143.55" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="1098.7" y="6501" width="0.4" height="15.0" fill="rgb(230,47,16)" rx="2" ry="2" />
+<text x="1101.65" y="6511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="411.9" y="4837" width="0.4" height="15.0" fill="rgb(222,17,15)" rx="2" ry="2" />
+<text x="414.85" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Vals\Num::__construct (1 samples, 0.04%)</title><rect x="670.4" y="5189" width="0.4" height="15.0" fill="rgb(242,213,8)" rx="2" ry="2" />
+<text x="673.40" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="247.2" y="6293" width="0.8" height="15.0" fill="rgb(236,139,9)" rx="2" ry="2" />
+<text x="250.17" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="511.6" y="5173" width="1.7" height="15.0" fill="rgb(232,97,42)" rx="2" ry="2" />
+<text x="514.58" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="757.1" y="5701" width="1.3" height="15.0" fill="rgb(227,143,42)" rx="2" ry="2" />
+<text x="760.14" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (54 samples, 1.92%)</title><rect x="447.1" y="5317" width="22.6" height="15.0" fill="rgb(215,100,44)" rx="2" ry="2" />
+<text x="450.05" y="5327.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="525.0" y="5749" width="1.2" height="15.0" fill="rgb(212,214,12)" rx="2" ry="2" />
+<text x="527.99" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::invokeByFuncAddr (6 samples, 0.21%)</title><rect x="763.0" y="6085" width="2.5" height="15.0" fill="rgb(219,170,21)" rx="2" ry="2" />
+<text x="766.00" y="6095.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="891.2" y="5605" width="0.4" height="15.0" fill="rgb(227,66,50)" rx="2" ry="2" />
+<text x="894.23" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="334.8" y="4917" width="0.4" height="15.0" fill="rgb(244,227,4)" rx="2" ry="2" />
+<text x="337.75" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="558.1" y="5317" width="0.4" height="15.0" fill="rgb(243,133,26)" rx="2" ry="2" />
+<text x="561.10" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="878.7" y="5605" width="0.4" height="15.0" fill="rgb(246,112,18)" rx="2" ry="2" />
+<text x="881.66" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="524.2" y="5749" width="0.4" height="15.0" fill="rgb(214,200,0)" rx="2" ry="2" />
+<text x="527.15" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="743.7" y="5013" width="0.9" height="15.0" fill="rgb(250,6,29)" rx="2" ry="2" />
+<text x="746.73" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="486.4" y="4821" width="0.5" height="15.0" fill="rgb(233,115,27)" rx="2" ry="2" />
+<text x="489.44" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="765.9" y="6469" width="1.3" height="15.0" fill="rgb(213,115,34)" rx="2" ry="2" />
+<text x="768.94" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="269.4" y="5013" width="2.9" height="15.0" fill="rgb(223,176,34)" rx="2" ry="2" />
+<text x="272.38" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="464.2" y="4661" width="0.9" height="15.0" fill="rgb(231,174,4)" rx="2" ry="2" />
+<text x="467.23" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="566.1" y="5221" width="0.4" height="15.0" fill="rgb(211,43,38)" rx="2" ry="2" />
+<text x="569.06" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="511.2" y="5221" width="0.4" height="15.0" fill="rgb(221,71,14)" rx="2" ry="2" />
+<text x="514.16" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1,224 samples, 43.47%)</title><rect x="250.1" y="6293" width="512.9" height="15.0" fill="rgb(226,3,18)" rx="2" ry="2" />
+<text x="253.11" y="6303.5" >Nsfisis\Waddiwasi\Execution\Runtime::execInstrs</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="645" width="0.4" height="15.0" fill="rgb(215,5,35)" rx="2" ry="2" />
+<text x="546.43" y="655.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="1069.7" y="6277" width="1.7" height="15.0" fill="rgb(213,219,19)" rx="2" ry="2" />
+<text x="1072.74" y="6287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="385.9" y="5013" width="0.4" height="15.0" fill="rgb(230,162,37)" rx="2" ry="2" />
+<text x="388.87" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="510.7" y="5077" width="0.5" height="15.0" fill="rgb(236,43,38)" rx="2" ry="2" />
+<text x="513.75" y="5087.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (62 samples, 2.20%)</title><rect x="532.5" y="5717" width="26.0" height="15.0" fill="rgb(218,74,1)" rx="2" ry="2" />
+<text x="535.54" y="5727.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="460.5" y="4901" width="0.4" height="15.0" fill="rgb(207,116,39)" rx="2" ry="2" />
+<text x="463.46" y="4911.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4069" width="0.4" height="15.0" fill="rgb(253,213,9)" rx="2" ry="2" />
+<text x="546.43" y="4079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="894.2" y="5605" width="0.4" height="15.0" fill="rgb(251,83,19)" rx="2" ry="2" />
+<text x="897.16" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="346.9" y="5093" width="0.4" height="15.0" fill="rgb(245,44,12)" rx="2" ry="2" />
+<text x="349.90" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="276.5" y="4773" width="0.4" height="15.0" fill="rgb(250,37,52)" rx="2" ry="2" />
+<text x="279.51" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="475.5" y="5013" width="0.5" height="15.0" fill="rgb(222,229,10)" rx="2" ry="2" />
+<text x="478.55" y="5023.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="665.8" y="5205" width="0.4" height="15.0" fill="rgb(237,106,9)" rx="2" ry="2" />
+<text x="668.79" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="410.6" y="4613" width="0.8" height="15.0" fill="rgb(250,219,9)" rx="2" ry="2" />
+<text x="413.60" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushValue (1 samples, 0.04%)</title><rect x="1143.5" y="6549" width="0.4" height="15.0" fill="rgb(213,23,26)" rx="2" ry="2" />
+<text x="1146.49" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="877.8" y="5493" width="0.4" height="15.0" fill="rgb(238,135,52)" rx="2" ry="2" />
+<text x="880.82" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="397.2" y="4821" width="0.4" height="15.0" fill="rgb(222,216,13)" rx="2" ry="2" />
+<text x="400.19" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="318.4" y="4757" width="0.4" height="15.0" fill="rgb(215,168,25)" rx="2" ry="2" />
+<text x="321.41" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="511.2" y="5237" width="0.4" height="15.0" fill="rgb(228,21,35)" rx="2" ry="2" />
+<text x="514.16" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5061" width="0.4" height="15.0" fill="rgb(217,141,22)" rx="2" ry="2" />
+<text x="357.03" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (37 samples, 1.31%)</title><rect x="805.7" y="5765" width="15.5" height="15.0" fill="rgb(246,63,29)" rx="2" ry="2" />
+<text x="808.75" y="5775.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1349" width="0.4" height="15.0" fill="rgb(230,116,26)" rx="2" ry="2" />
+<text x="546.43" y="1359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="434.5" y="4725" width="0.8" height="15.0" fill="rgb(234,182,42)" rx="2" ry="2" />
+<text x="437.48" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5125" width="0.4" height="15.0" fill="rgb(229,146,53)" rx="2" ry="2" />
+<text x="357.03" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="521.2" y="5829" width="3.8" height="15.0" fill="rgb(243,135,46)" rx="2" ry="2" />
+<text x="524.22" y="5839.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1397" width="0.4" height="15.0" fill="rgb(238,132,24)" rx="2" ry="2" />
+<text x="546.43" y="1407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1117.5" y="4277" width="0.4" height="15.0" fill="rgb(219,73,19)" rx="2" ry="2" />
+<text x="1120.51" y="4287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="876.1" y="5317" width="0.5" height="15.0" fill="rgb(211,223,48)" rx="2" ry="2" />
+<text x="879.14" y="5327.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1493" width="0.4" height="15.0" fill="rgb(232,32,27)" rx="2" ry="2" />
+<text x="546.43" y="1503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="1109.5" y="6357" width="0.5" height="15.0" fill="rgb(235,164,30)" rx="2" ry="2" />
+<text x="1112.55" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="272.3" y="5061" width="10.1" height="15.0" fill="rgb(231,143,14)" rx="2" ry="2" />
+<text x="275.32" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="499.4" y="5221" width="3.4" height="15.0" fill="rgb(217,38,24)" rx="2" ry="2" />
+<text x="502.43" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="527.9" y="5381" width="0.9" height="15.0" fill="rgb(251,86,32)" rx="2" ry="2" />
+<text x="530.93" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="562.7" y="5621" width="0.4" height="15.0" fill="rgb(227,194,41)" rx="2" ry="2" />
+<text x="565.71" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="763.0" y="6261" width="2.9" height="15.0" fill="rgb(208,222,13)" rx="2" ry="2" />
+<text x="766.00" y="6271.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4117" width="0.4" height="15.0" fill="rgb(218,16,35)" rx="2" ry="2" />
+<text x="546.43" y="4127.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (194 samples, 6.89%)</title><rect x="675.8" y="5509" width="81.3" height="15.0" fill="rgb(226,81,23)" rx="2" ry="2" />
+<text x="678.85" y="5519.5" >Nsfisis\W..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (12 samples, 0.43%)</title><rect x="274.8" y="4901" width="5.1" height="15.0" fill="rgb(214,119,5)" rx="2" ry="2" />
+<text x="277.83" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="331.0" y="4789" width="0.4" height="15.0" fill="rgb(238,128,40)" rx="2" ry="2" />
+<text x="333.98" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (90 samples, 3.20%)</title><rect x="303.3" y="5125" width="37.7" height="15.0" fill="rgb(233,166,51)" rx="2" ry="2" />
+<text x="306.32" y="5135.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="369.5" y="4981" width="0.5" height="15.0" fill="rgb(231,36,30)" rx="2" ry="2" />
+<text x="372.53" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="469.7" y="5333" width="0.4" height="15.0" fill="rgb(230,64,47)" rx="2" ry="2" />
+<text x="472.68" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (43 samples, 1.53%)</title><rect x="360.3" y="5205" width="18.0" height="15.0" fill="rgb(222,166,41)" rx="2" ry="2" />
+<text x="363.31" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="543.4" y="4949" width="0.4" height="15.0" fill="rgb(233,104,52)" rx="2" ry="2" />
+<text x="546.43" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="355.3" y="5125" width="0.4" height="15.0" fill="rgb(213,226,49)" rx="2" ry="2" />
+<text x="358.28" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (6 samples, 0.21%)</title><rect x="438.7" y="4693" width="2.5" height="15.0" fill="rgb(226,202,8)" rx="2" ry="2" />
+<text x="441.67" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="276.5" y="4757" width="0.4" height="15.0" fill="rgb(221,27,19)" rx="2" ry="2" />
+<text x="279.51" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5317" width="0.8" height="15.0" fill="rgb(248,180,49)" rx="2" ry="2" />
+<text x="1120.09" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="5109" width="6.7" height="15.0" fill="rgb(245,74,52)" rx="2" ry="2" />
+<text x="489.86" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doStoreI32 (1 samples, 0.04%)</title><rect x="511.2" y="5333" width="0.4" height="15.0" fill="rgb(239,95,21)" rx="2" ry="2" />
+<text x="514.16" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5285" width="0.4" height="15.0" fill="rgb(247,202,36)" rx="2" ry="2" />
+<text x="563.19" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (32 samples, 1.14%)</title><rect x="497.8" y="5317" width="13.4" height="15.0" fill="rgb(219,184,27)" rx="2" ry="2" />
+<text x="500.76" y="5327.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1070.6" y="6213" width="0.8" height="15.0" fill="rgb(232,166,18)" rx="2" ry="2" />
+<text x="1073.58" y="6223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="519.5" y="5669" width="0.5" height="15.0" fill="rgb(234,171,36)" rx="2" ry="2" />
+<text x="522.55" y="5679.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (9 samples, 0.32%)</title><rect x="442.4" y="4613" width="3.8" height="15.0" fill="rgb(208,49,32)" rx="2" ry="2" />
+<text x="445.44" y="4623.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="422.3" y="4821" width="0.9" height="15.0" fill="rgb(234,23,36)" rx="2" ry="2" />
+<text x="425.33" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4757" width="0.4" height="15.0" fill="rgb(244,218,43)" rx="2" ry="2" />
+<text x="1073.99" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="508.7" y="5141" width="0.4" height="15.0" fill="rgb(242,64,38)" rx="2" ry="2" />
+<text x="511.65" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="396.8" y="4789" width="0.4" height="15.0" fill="rgb(227,227,14)" rx="2" ry="2" />
+<text x="399.77" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="5141" width="0.4" height="15.0" fill="rgb(218,60,53)" rx="2" ry="2" />
+<text x="496.98" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="892.5" y="5685" width="0.4" height="15.0" fill="rgb(246,159,49)" rx="2" ry="2" />
+<text x="895.49" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="769.7" y="5573" width="0.4" height="15.0" fill="rgb(254,110,42)" rx="2" ry="2" />
+<text x="772.71" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="422.7" y="4741" width="0.5" height="15.0" fill="rgb(232,214,43)" rx="2" ry="2" />
+<text x="425.75" y="4751.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="901" width="0.4" height="15.0" fill="rgb(237,216,28)" rx="2" ry="2" />
+<text x="546.43" y="911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1076.4" y="6453" width="0.9" height="15.0" fill="rgb(206,58,21)" rx="2" ry="2" />
+<text x="1079.44" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1077.3" y="6469" width="0.4" height="15.0" fill="rgb(216,115,3)" rx="2" ry="2" />
+<text x="1080.28" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (6 samples, 0.21%)</title><rect x="767.2" y="5605" width="2.5" height="15.0" fill="rgb(222,189,15)" rx="2" ry="2" />
+<text x="770.19" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (25 samples, 0.89%)</title><rect x="483.9" y="5285" width="10.5" height="15.0" fill="rgb(254,112,29)" rx="2" ry="2" />
+<text x="486.93" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (14 samples, 0.50%)</title><rect x="487.3" y="4661" width="5.8" height="15.0" fill="rgb(234,86,13)" rx="2" ry="2" />
+<text x="490.28" y="4671.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushBool (1 samples, 0.04%)</title><rect x="877.4" y="5557" width="0.4" height="15.0" fill="rgb(248,93,51)" rx="2" ry="2" />
+<text x="880.40" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="524.2" y="5781" width="0.8" height="15.0" fill="rgb(226,14,17)" rx="2" ry="2" />
+<text x="527.15" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5029" width="0.4" height="15.0" fill="rgb(248,115,26)" rx="2" ry="2" />
+<text x="896.32" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="5029" width="0.4" height="15.0" fill="rgb(234,225,11)" rx="2" ry="2" />
+<text x="760.98" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (20 samples, 0.71%)</title><rect x="558.9" y="5701" width="8.4" height="15.0" fill="rgb(212,219,10)" rx="2" ry="2" />
+<text x="561.93" y="5711.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2677" width="0.4" height="15.0" fill="rgb(218,1,23)" rx="2" ry="2" />
+<text x="437.90" y="2687.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1301" width="0.4" height="15.0" fill="rgb(209,65,7)" rx="2" ry="2" />
+<text x="546.43" y="1311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.0" y="5045" width="0.4" height="15.0" fill="rgb(210,130,17)" rx="2" ry="2" />
+<text x="496.98" y="5055.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4581" width="0.4" height="15.0" fill="rgb(234,205,3)" rx="2" ry="2" />
+<text x="546.43" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5621" width="0.4" height="15.0" fill="rgb(235,155,32)" rx="2" ry="2" />
+<text x="767.26" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="882.8" y="5589" width="3.0" height="15.0" fill="rgb(248,52,2)" rx="2" ry="2" />
+<text x="885.85" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="747.9" y="5173" width="0.9" height="15.0" fill="rgb(222,67,40)" rx="2" ry="2" />
+<text x="750.92" y="5183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (8 samples, 0.28%)</title><rect x="514.5" y="5285" width="3.4" height="15.0" fill="rgb(247,73,23)" rx="2" ry="2" />
+<text x="517.52" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (20 samples, 0.71%)</title><rect x="1110.0" y="6357" width="8.3" height="15.0" fill="rgb(245,148,41)" rx="2" ry="2" />
+<text x="1112.96" y="6367.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::evalInstrsForInit (2 samples, 0.07%)</title><rect x="15.9" y="6549" width="0.8" height="15.0" fill="rgb(252,30,1)" rx="2" ry="2" />
+<text x="18.87" y="6559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="483.9" y="5141" width="0.4" height="15.0" fill="rgb(216,155,2)" rx="2" ry="2" />
+<text x="486.93" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="488.1" y="3957" width="5.0" height="15.0" fill="rgb(233,11,11)" rx="2" ry="2" />
+<text x="491.12" y="3967.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="263.1" y="5077" width="0.4" height="15.0" fill="rgb(243,177,40)" rx="2" ry="2" />
+<text x="266.10" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="393.0" y="5013" width="0.4" height="15.0" fill="rgb(243,200,29)" rx="2" ry="2" />
+<text x="396.00" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="413.1" y="4949" width="0.4" height="15.0" fill="rgb(224,5,49)" rx="2" ry="2" />
+<text x="416.11" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5045" width="1.6" height="15.0" fill="rgb(217,100,27)" rx="2" ry="2" />
+<text x="545.17" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5413" width="0.4" height="15.0" fill="rgb(209,6,12)" rx="2" ry="2" />
+<text x="563.19" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (2 samples, 0.07%)</title><rect x="509.9" y="5125" width="0.8" height="15.0" fill="rgb(254,134,43)" rx="2" ry="2" />
+<text x="512.91" y="5135.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="837.6" y="5589" width="0.4" height="15.0" fill="rgb(249,13,24)" rx="2" ry="2" />
+<text x="840.59" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (6 samples, 0.21%)</title><rect x="767.2" y="5637" width="2.5" height="15.0" fill="rgb(219,1,2)" rx="2" ry="2" />
+<text x="770.19" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4917" width="0.8" height="15.0" fill="rgb(211,174,54)" rx="2" ry="2" />
+<text x="276.99" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4741" width="0.8" height="15.0" fill="rgb(219,24,40)" rx="2" ry="2" />
+<text x="276.99" y="4751.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="565.2" y="5413" width="1.3" height="15.0" fill="rgb(214,122,46)" rx="2" ry="2" />
+<text x="568.22" y="5423.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4277" width="0.4" height="15.0" fill="rgb(206,161,23)" rx="2" ry="2" />
+<text x="443.77" y="4287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="426.1" y="4629" width="0.8" height="15.0" fill="rgb(242,46,12)" rx="2" ry="2" />
+<text x="429.10" y="4639.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (45 samples, 1.60%)</title><rect x="535.5" y="5637" width="18.8" height="15.0" fill="rgb(216,134,12)" rx="2" ry="2" />
+<text x="538.47" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="554.3" y="5589" width="4.2" height="15.0" fill="rgb(221,164,12)" rx="2" ry="2" />
+<text x="557.33" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4597" width="0.5" height="15.0" fill="rgb(207,128,30)" rx="2" ry="2" />
+<text x="480.64" y="4607.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3525" width="0.4" height="15.0" fill="rgb(248,17,21)" rx="2" ry="2" />
+<text x="437.90" y="3535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="696.4" y="5157" width="2.9" height="15.0" fill="rgb(205,90,32)" rx="2" ry="2" />
+<text x="699.38" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5477" width="0.4" height="15.0" fill="rgb(236,9,3)" rx="2" ry="2" />
+<text x="896.32" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (4 samples, 0.14%)</title><rect x="273.2" y="5045" width="1.6" height="15.0" fill="rgb(206,95,49)" rx="2" ry="2" />
+<text x="276.15" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="274.0" y="4805" width="0.8" height="15.0" fill="rgb(246,229,8)" rx="2" ry="2" />
+<text x="276.99" y="4815.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (610 samples, 21.66%)</title><rect x="894.6" y="6581" width="255.6" height="15.0" fill="rgb(236,15,47)" rx="2" ry="2" />
+<text x="897.58" y="6591.5" >&lt;unknown&gt;</text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="548.5" y="5397" width="0.4" height="15.0" fill="rgb(226,137,32)" rx="2" ry="2" />
+<text x="551.46" y="5407.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="528.3" y="5349" width="0.5" height="15.0" fill="rgb(244,18,5)" rx="2" ry="2" />
+<text x="531.35" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="420.2" y="4837" width="1.3" height="15.0" fill="rgb(250,196,18)" rx="2" ry="2" />
+<text x="423.23" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="869.4" y="5477" width="0.5" height="15.0" fill="rgb(252,114,43)" rx="2" ry="2" />
+<text x="872.44" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="509.9" y="4885" width="0.8" height="15.0" fill="rgb(241,48,2)" rx="2" ry="2" />
+<text x="512.91" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="890.8" y="5685" width="0.4" height="15.0" fill="rgb(209,158,20)" rx="2" ry="2" />
+<text x="893.81" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="512.4" y="5045" width="0.4" height="15.0" fill="rgb(237,189,11)" rx="2" ry="2" />
+<text x="515.42" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="456.3" y="5109" width="1.2" height="15.0" fill="rgb(235,21,39)" rx="2" ry="2" />
+<text x="459.27" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="344.4" y="5061" width="0.4" height="15.0" fill="rgb(224,204,0)" rx="2" ry="2" />
+<text x="347.39" y="5071.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2709" width="0.4" height="15.0" fill="rgb(217,137,22)" rx="2" ry="2" />
+<text x="437.90" y="2719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4805" width="0.4" height="15.0" fill="rgb(216,32,49)" rx="2" ry="2" />
+<text x="496.98" y="4815.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="769.7" y="5637" width="0.4" height="15.0" fill="rgb(225,117,6)" rx="2" ry="2" />
+<text x="772.71" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\StackEntry::Value (1 samples, 0.04%)</title><rect x="800.3" y="5557" width="0.4" height="15.0" fill="rgb(252,187,42)" rx="2" ry="2" />
+<text x="803.30" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="771.8" y="5861" width="0.4" height="15.0" fill="rgb(225,49,21)" rx="2" ry="2" />
+<text x="774.80" y="5871.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="893.3" y="5893" width="0.4" height="15.0" fill="rgb(250,5,29)" rx="2" ry="2" />
+<text x="896.32" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.04%)</title><rect x="816.6" y="5525" width="0.5" height="15.0" fill="rgb(213,157,43)" rx="2" ry="2" />
+<text x="819.64" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="563.1" y="5605" width="4.2" height="15.0" fill="rgb(239,190,39)" rx="2" ry="2" />
+<text x="566.12" y="5615.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="510.7" y="5109" width="0.5" height="15.0" fill="rgb(216,53,12)" rx="2" ry="2" />
+<text x="513.75" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5653" width="0.4" height="15.0" fill="rgb(212,146,50)" rx="2" ry="2" />
+<text x="761.39" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (18 samples, 0.64%)</title><rect x="274.8" y="5045" width="7.6" height="15.0" fill="rgb(249,166,8)" rx="2" ry="2" />
+<text x="277.83" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.0" y="4997" width="0.4" height="15.0" fill="rgb(231,145,46)" rx="2" ry="2" />
+<text x="760.98" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="483.9" y="5093" width="0.4" height="15.0" fill="rgb(222,34,34)" rx="2" ry="2" />
+<text x="486.93" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="494.0" y="4421" width="0.4" height="15.0" fill="rgb(236,125,14)" rx="2" ry="2" />
+<text x="496.98" y="4431.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="763.0" y="6165" width="2.9" height="15.0" fill="rgb(211,8,17)" rx="2" ry="2" />
+<text x="766.00" y="6175.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="890.8" y="5637" width="0.4" height="15.0" fill="rgb(219,92,48)" rx="2" ry="2" />
+<text x="893.81" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.6" y="5029" width="0.4" height="15.0" fill="rgb(224,94,1)" rx="2" ry="2" />
+<text x="475.61" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="828.4" y="5653" width="2.9" height="15.0" fill="rgb(214,109,33)" rx="2" ry="2" />
+<text x="831.37" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="274.0" y="4725" width="0.8" height="15.0" fill="rgb(219,174,21)" rx="2" ry="2" />
+<text x="276.99" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="343.1" y="4757" width="0.5" height="15.0" fill="rgb(219,53,50)" rx="2" ry="2" />
+<text x="346.13" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="747.5" y="5205" width="1.3" height="15.0" fill="rgb(239,65,28)" rx="2" ry="2" />
+<text x="750.50" y="5215.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5493" width="0.4" height="15.0" fill="rgb(226,224,15)" rx="2" ry="2" />
+<text x="761.39" y="5503.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (99 samples, 3.52%)</title><rect x="715.2" y="5413" width="41.5" height="15.0" fill="rgb(241,125,19)" rx="2" ry="2" />
+<text x="718.23" y="5423.5" >Nsf..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="494.4" y="5077" width="0.4" height="15.0" fill="rgb(225,151,7)" rx="2" ry="2" />
+<text x="497.40" y="5087.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4149" width="0.4" height="15.0" fill="rgb(249,154,8)" rx="2" ry="2" />
+<text x="546.43" y="4159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="228.7" y="6485" width="0.5" height="15.0" fill="rgb(239,16,42)" rx="2" ry="2" />
+<text x="231.74" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (8 samples, 0.28%)</title><rect x="564.0" y="5541" width="3.3" height="15.0" fill="rgb(208,149,11)" rx="2" ry="2" />
+<text x="566.96" y="5551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="273.2" y="4997" width="1.6" height="15.0" fill="rgb(229,12,28)" rx="2" ry="2" />
+<text x="276.15" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5653" width="0.4" height="15.0" fill="rgb(220,164,2)" rx="2" ry="2" />
+<text x="523.38" y="5663.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="325.5" y="4789" width="0.9" height="15.0" fill="rgb(210,168,51)" rx="2" ry="2" />
+<text x="328.53" y="4799.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="338.9" y="4821" width="2.1" height="15.0" fill="rgb(209,47,52)" rx="2" ry="2" />
+<text x="341.94" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1047.9" y="6341" width="0.5" height="15.0" fill="rgb(224,174,26)" rx="2" ry="2" />
+<text x="1050.95" y="6351.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="791.5" y="5221" width="4.2" height="15.0" fill="rgb(208,83,39)" rx="2" ry="2" />
+<text x="794.50" y="5231.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1429" width="0.4" height="15.0" fill="rgb(250,68,17)" rx="2" ry="2" />
+<text x="546.43" y="1439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="368.7" y="4853" width="0.4" height="15.0" fill="rgb(229,51,24)" rx="2" ry="2" />
+<text x="371.69" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="468.0" y="5221" width="0.4" height="15.0" fill="rgb(213,27,9)" rx="2" ry="2" />
+<text x="471.00" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="354.0" y="5029" width="0.4" height="15.0" fill="rgb(229,100,42)" rx="2" ry="2" />
+<text x="357.03" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="4965" width="0.5" height="15.0" fill="rgb(222,159,46)" rx="2" ry="2" />
+<text x="716.14" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.5" y="4885" width="0.4" height="15.0" fill="rgb(211,69,12)" rx="2" ry="2" />
+<text x="463.46" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="411.0" y="4501" width="0.4" height="15.0" fill="rgb(231,160,30)" rx="2" ry="2" />
+<text x="414.02" y="4511.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popI32 (1 samples, 0.04%)</title><rect x="469.3" y="5301" width="0.4" height="15.0" fill="rgb(211,32,35)" rx="2" ry="2" />
+<text x="472.26" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="457.5" y="5029" width="0.9" height="15.0" fill="rgb(231,226,30)" rx="2" ry="2" />
+<text x="460.53" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.7" y="5301" width="0.4" height="15.0" fill="rgb(237,19,41)" rx="2" ry="2" />
+<text x="529.67" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="464.7" y="4069" width="0.4" height="15.0" fill="rgb(210,220,10)" rx="2" ry="2" />
+<text x="467.65" y="4079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (3 samples, 0.11%)</title><rect x="1157.3" y="6549" width="1.3" height="15.0" fill="rgb(230,107,27)" rx="2" ry="2" />
+<text x="1160.32" y="6559.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2597" width="0.4" height="15.0" fill="rgb(239,35,37)" rx="2" ry="2" />
+<text x="546.43" y="2607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="542.2" y="5237" width="1.6" height="15.0" fill="rgb(248,67,48)" rx="2" ry="2" />
+<text x="545.17" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeHostFunc (1 samples, 0.04%)</title><rect x="762.6" y="6021" width="0.4" height="15.0" fill="rgb(232,86,2)" rx="2" ry="2" />
+<text x="765.59" y="6031.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (74 samples, 2.63%)</title><rect x="310.0" y="5109" width="31.0" height="15.0" fill="rgb(217,164,15)" rx="2" ry="2" />
+<text x="313.03" y="5119.5" >Ns..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (38 samples, 1.35%)</title><rect x="313.0" y="5029" width="15.9" height="15.0" fill="rgb(221,169,30)" rx="2" ry="2" />
+<text x="315.96" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="266.9" y="5045" width="0.4" height="15.0" fill="rgb(245,222,13)" rx="2" ry="2" />
+<text x="269.87" y="5055.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5733" width="0.5" height="15.0" fill="rgb(237,145,41)" rx="2" ry="2" />
+<text x="573.25" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (5 samples, 0.18%)</title><rect x="571.5" y="5733" width="2.1" height="15.0" fill="rgb(222,102,51)" rx="2" ry="2" />
+<text x="574.51" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (15 samples, 0.53%)</title><rect x="413.5" y="4997" width="6.3" height="15.0" fill="rgb(235,55,47)" rx="2" ry="2" />
+<text x="416.53" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5461" width="1.3" height="15.0" fill="rgb(215,157,8)" rx="2" ry="2" />
+<text x="760.14" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="487.3" y="4549" width="5.8" height="15.0" fill="rgb(212,229,35)" rx="2" ry="2" />
+<text x="490.28" y="4559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="758.4" y="5733" width="0.4" height="15.0" fill="rgb(226,54,52)" rx="2" ry="2" />
+<text x="761.39" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="1068.5" y="6309" width="2.9" height="15.0" fill="rgb(235,173,39)" rx="2" ry="2" />
+<text x="1071.48" y="6319.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\MemInst::storeI32 (1 samples, 0.04%)</title><rect x="412.3" y="4901" width="0.4" height="15.0" fill="rgb(217,178,19)" rx="2" ry="2" />
+<text x="415.27" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (3 samples, 0.11%)</title><rect x="748.8" y="5301" width="1.2" height="15.0" fill="rgb(233,93,38)" rx="2" ry="2" />
+<text x="751.76" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="274.4" y="4677" width="0.4" height="15.0" fill="rgb(237,36,14)" rx="2" ry="2" />
+<text x="277.41" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="746.7" y="5333" width="0.4" height="15.0" fill="rgb(206,165,24)" rx="2" ry="2" />
+<text x="749.66" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4965" width="6.7" height="15.0" fill="rgb(219,105,41)" rx="2" ry="2" />
+<text x="489.86" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 1.81%)</title><rect x="391.7" y="5029" width="21.4" height="15.0" fill="rgb(218,221,26)" rx="2" ry="2" />
+<text x="394.74" y="5039.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="1076.4" y="6517" width="0.9" height="15.0" fill="rgb(242,97,38)" rx="2" ry="2" />
+<text x="1079.44" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (7 samples, 0.25%)</title><rect x="763.0" y="6133" width="2.9" height="15.0" fill="rgb(245,77,37)" rx="2" ry="2" />
+<text x="766.00" y="6143.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="764.3" y="5813" width="0.4" height="15.0" fill="rgb(242,170,32)" rx="2" ry="2" />
+<text x="767.26" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (2 samples, 0.07%)</title><rect x="1065.1" y="6389" width="0.9" height="15.0" fill="rgb(222,119,9)" rx="2" ry="2" />
+<text x="1068.13" y="6399.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="893.3" y="6069" width="0.4" height="15.0" fill="rgb(221,197,18)" rx="2" ry="2" />
+<text x="896.32" y="6079.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="572.8" y="5717" width="0.8" height="15.0" fill="rgb(219,40,45)" rx="2" ry="2" />
+<text x="575.76" y="5727.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="422.7" y="4757" width="0.5" height="15.0" fill="rgb(222,33,11)" rx="2" ry="2" />
+<text x="425.75" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="524.2" y="5765" width="0.8" height="15.0" fill="rgb(252,41,19)" rx="2" ry="2" />
+<text x="527.15" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="893.7" y="5989" width="0.9" height="15.0" fill="rgb(209,110,21)" rx="2" ry="2" />
+<text x="896.74" y="5999.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4949" width="6.7" height="15.0" fill="rgb(224,72,45)" rx="2" ry="2" />
+<text x="489.86" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="482.7" y="5125" width="0.4" height="15.0" fill="rgb(243,124,50)" rx="2" ry="2" />
+<text x="485.67" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="530.9" y="5477" width="0.4" height="15.0" fill="rgb(242,82,9)" rx="2" ry="2" />
+<text x="533.86" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (243 samples, 8.63%)</title><rect x="574.0" y="5509" width="101.8" height="15.0" fill="rgb(247,211,43)" rx="2" ry="2" />
+<text x="577.02" y="5519.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (10 samples, 0.36%)</title><rect x="791.5" y="5237" width="4.2" height="15.0" fill="rgb(219,60,29)" rx="2" ry="2" />
+<text x="794.50" y="5247.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="1161.5" y="6565" width="1.7" height="15.0" fill="rgb(208,28,32)" rx="2" ry="2" />
+<text x="1164.51" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="342.3" y="5173" width="0.4" height="15.0" fill="rgb(219,60,7)" rx="2" ry="2" />
+<text x="345.29" y="5183.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3173" width="0.4" height="15.0" fill="rgb(230,11,7)" rx="2" ry="2" />
+<text x="437.90" y="3183.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (4 samples, 0.14%)</title><rect x="444.5" y="4597" width="1.7" height="15.0" fill="rgb(237,152,43)" rx="2" ry="2" />
+<text x="447.54" y="4607.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="4981" width="0.4" height="15.0" fill="rgb(233,176,54)" rx="2" ry="2" />
+<text x="1073.99" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="771.8" y="5877" width="0.4" height="15.0" fill="rgb(206,196,12)" rx="2" ry="2" />
+<text x="774.80" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="526.2" y="5557" width="0.5" height="15.0" fill="rgb(211,31,37)" rx="2" ry="2" />
+<text x="529.25" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (3 samples, 0.11%)</title><rect x="763.8" y="5893" width="1.3" height="15.0" fill="rgb(226,190,44)" rx="2" ry="2" />
+<text x="766.84" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="440.8" y="4373" width="0.4" height="15.0" fill="rgb(225,206,32)" rx="2" ry="2" />
+<text x="443.77" y="4383.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2517" width="0.4" height="15.0" fill="rgb(244,80,3)" rx="2" ry="2" />
+<text x="546.43" y="2527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="449.1" y="5189" width="6.8" height="15.0" fill="rgb(208,80,17)" rx="2" ry="2" />
+<text x="452.15" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="521.2" y="5813" width="0.4" height="15.0" fill="rgb(214,206,35)" rx="2" ry="2" />
+<text x="524.22" y="5823.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (123 samples, 4.37%)</title><rect x="289.5" y="5205" width="51.5" height="15.0" fill="rgb(224,101,51)" rx="2" ry="2" />
+<text x="292.50" y="5215.5" >Nsfis..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (24 samples, 0.85%)</title><rect x="458.8" y="5301" width="10.0" height="15.0" fill="rgb(225,50,5)" rx="2" ry="2" />
+<text x="461.79" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="269.8" y="4757" width="0.4" height="15.0" fill="rgb(227,147,26)" rx="2" ry="2" />
+<text x="272.80" y="4767.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1525" width="0.4" height="15.0" fill="rgb(221,40,31)" rx="2" ry="2" />
+<text x="546.43" y="1535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4277" width="0.5" height="15.0" fill="rgb(248,82,44)" rx="2" ry="2" />
+<text x="480.64" y="4287.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (13 samples, 0.46%)</title><rect x="543.8" y="5477" width="5.5" height="15.0" fill="rgb(213,61,0)" rx="2" ry="2" />
+<text x="546.85" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::instantiate (551 samples, 19.57%)</title><rect x="15.9" y="6565" width="230.9" height="15.0" fill="rgb(235,10,53)" rx="2" ry="2" />
+<text x="18.87" y="6575.5" >Nsfisis\Waddiwasi\Execution\Ru..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (16 samples, 0.57%)</title><rect x="486.9" y="4981" width="6.7" height="15.0" fill="rgb(236,9,0)" rx="2" ry="2" />
+<text x="489.86" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (12 samples, 0.43%)</title><rect x="262.3" y="5221" width="5.0" height="15.0" fill="rgb(240,115,21)" rx="2" ry="2" />
+<text x="265.26" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="472.6" y="4997" width="0.4" height="15.0" fill="rgb(246,223,9)" rx="2" ry="2" />
+<text x="475.61" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.7" y="5733" width="0.4" height="15.0" fill="rgb(231,105,2)" rx="2" ry="2" />
+<text x="767.68" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (15 samples, 0.53%)</title><rect x="413.5" y="5013" width="6.3" height="15.0" fill="rgb(254,0,54)" rx="2" ry="2" />
+<text x="416.53" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="570.2" y="5525" width="0.5" height="15.0" fill="rgb(217,187,33)" rx="2" ry="2" />
+<text x="573.25" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="409.3" y="4773" width="1.3" height="15.0" fill="rgb(207,90,52)" rx="2" ry="2" />
+<text x="412.34" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="894.2" y="5429" width="0.4" height="15.0" fill="rgb(211,158,16)" rx="2" ry="2" />
+<text x="897.16" y="5439.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="4773" width="0.4" height="15.0" fill="rgb(249,12,9)" rx="2" ry="2" />
+<text x="1073.99" y="4783.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="342.7" y="4933" width="0.9" height="15.0" fill="rgb(208,219,0)" rx="2" ry="2" />
+<text x="345.71" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (14 samples, 0.50%)</title><rect x="487.3" y="4437" width="5.8" height="15.0" fill="rgb(215,2,27)" rx="2" ry="2" />
+<text x="490.28" y="4447.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="361.2" y="4981" width="0.8" height="15.0" fill="rgb(236,138,17)" rx="2" ry="2" />
+<text x="364.15" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="767.2" y="5989" width="2.9" height="15.0" fill="rgb(254,183,45)" rx="2" ry="2" />
+<text x="770.19" y="5999.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="3541" width="0.4" height="15.0" fill="rgb(246,122,32)" rx="2" ry="2" />
+<text x="437.90" y="3551.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5781" width="0.8" height="15.0" fill="rgb(242,18,22)" rx="2" ry="2" />
+<text x="1120.09" y="5791.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="566.1" y="5333" width="0.4" height="15.0" fill="rgb(244,210,1)" rx="2" ry="2" />
+<text x="569.06" y="5343.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="682.1" y="5349" width="0.4" height="15.0" fill="rgb(232,158,47)" rx="2" ry="2" />
+<text x="685.13" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="794.9" y="5157" width="0.4" height="15.0" fill="rgb(205,140,48)" rx="2" ry="2" />
+<text x="797.85" y="5167.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1285" width="0.4" height="15.0" fill="rgb(210,176,27)" rx="2" ry="2" />
+<text x="546.43" y="1295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="737.0" y="5221" width="7.6" height="15.0" fill="rgb(226,185,16)" rx="2" ry="2" />
+<text x="740.02" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="420.2" y="4933" width="1.3" height="15.0" fill="rgb(254,148,35)" rx="2" ry="2" />
+<text x="423.23" y="4943.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (57 samples, 2.02%)</title><rect x="722.8" y="5317" width="23.9" height="15.0" fill="rgb(207,9,6)" rx="2" ry="2" />
+<text x="725.78" y="5327.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1071.0" y="5109" width="0.4" height="15.0" fill="rgb(243,124,39)" rx="2" ry="2" />
+<text x="1073.99" y="5119.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5733" width="0.4" height="15.0" fill="rgb(253,31,50)" rx="2" ry="2" />
+<text x="1073.99" y="5743.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4213" width="0.5" height="15.0" fill="rgb(242,6,54)" rx="2" ry="2" />
+<text x="480.64" y="4223.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (243 samples, 8.63%)</title><rect x="574.0" y="5333" width="101.8" height="15.0" fill="rgb(217,131,27)" rx="2" ry="2" />
+<text x="577.02" y="5343.5" >Nsfisis\Wadd..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="279.0" y="4677" width="0.4" height="15.0" fill="rgb(208,180,15)" rx="2" ry="2" />
+<text x="282.02" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="281.1" y="4869" width="0.4" height="15.0" fill="rgb(234,2,21)" rx="2" ry="2" />
+<text x="284.12" y="4879.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (7 samples, 0.25%)</title><rect x="1068.5" y="6325" width="2.9" height="15.0" fill="rgb(247,188,18)" rx="2" ry="2" />
+<text x="1071.48" y="6335.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="4277" width="0.4" height="15.0" fill="rgb(247,17,18)" rx="2" ry="2" />
+<text x="437.90" y="4287.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2981" width="0.4" height="15.0" fill="rgb(233,225,35)" rx="2" ry="2" />
+<text x="546.43" y="2991.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="1106.2" y="6453" width="0.4" height="15.0" fill="rgb(210,32,34)" rx="2" ry="2" />
+<text x="1109.19" y="6463.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="401.4" y="4901" width="1.7" height="15.0" fill="rgb(219,175,48)" rx="2" ry="2" />
+<text x="404.38" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (16 samples, 0.57%)</title><rect x="486.9" y="4869" width="6.7" height="15.0" fill="rgb(224,131,41)" rx="2" ry="2" />
+<text x="489.86" y="4879.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="400.5" y="4949" width="0.5" height="15.0" fill="rgb(228,124,5)" rx="2" ry="2" />
+<text x="403.54" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="520.4" y="5621" width="0.4" height="15.0" fill="rgb(225,49,47)" rx="2" ry="2" />
+<text x="523.38" y="5631.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="755.9" y="5253" width="0.4" height="15.0" fill="rgb(253,73,45)" rx="2" ry="2" />
+<text x="758.88" y="5263.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="747.5" y="5221" width="1.3" height="15.0" fill="rgb(238,48,26)" rx="2" ry="2" />
+<text x="750.50" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="562.3" y="5461" width="0.4" height="15.0" fill="rgb(235,80,30)" rx="2" ry="2" />
+<text x="565.29" y="5471.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="835.5" y="5589" width="0.8" height="15.0" fill="rgb(215,118,29)" rx="2" ry="2" />
+<text x="838.50" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="764.7" y="5701" width="0.4" height="15.0" fill="rgb(218,110,34)" rx="2" ry="2" />
+<text x="767.68" y="5711.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="458.8" y="5285" width="10.0" height="15.0" fill="rgb(230,77,15)" rx="2" ry="2" />
+<text x="461.79" y="5295.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="465.1" y="4885" width="0.4" height="15.0" fill="rgb(214,84,52)" rx="2" ry="2" />
+<text x="468.07" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="526.7" y="5557" width="0.4" height="15.0" fill="rgb(217,100,50)" rx="2" ry="2" />
+<text x="529.67" y="5567.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="342.7" y="5077" width="0.9" height="15.0" fill="rgb(233,30,22)" rx="2" ry="2" />
+<text x="345.71" y="5087.5" ></text>
+</g>
+<g >
+<title>print_r (1 samples, 0.04%)</title><rect x="1157.7" y="6517" width="0.5" height="15.0" fill="rgb(234,120,3)" rx="2" ry="2" />
+<text x="1160.73" y="6527.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (92 samples, 3.27%)</title><rect x="718.2" y="5397" width="38.5" height="15.0" fill="rgb(238,82,34)" rx="2" ry="2" />
+<text x="721.17" y="5407.5" >Nsf..</text>
+</g>
+<g >
+<title>&lt;unknown&gt; (6 samples, 0.21%)</title><rect x="1166.1" y="6565" width="2.5" height="15.0" fill="rgb(240,195,50)" rx="2" ry="2" />
+<text x="1169.12" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="468.0" y="5125" width="0.4" height="15.0" fill="rgb(246,37,14)" rx="2" ry="2" />
+<text x="471.00" y="5135.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="1121.7" y="6485" width="0.4" height="15.0" fill="rgb(251,138,2)" rx="2" ry="2" />
+<text x="1124.70" y="6495.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="434.9" y="2757" width="0.4" height="15.0" fill="rgb(231,19,19)" rx="2" ry="2" />
+<text x="437.90" y="2767.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (5 samples, 0.18%)</title><rect x="1154.8" y="6565" width="2.1" height="15.0" fill="rgb(252,49,28)" rx="2" ry="2" />
+<text x="1157.80" y="6575.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (224 samples, 7.95%)</title><rect x="353.2" y="5285" width="93.9" height="15.0" fill="rgb(219,140,36)" rx="2" ry="2" />
+<text x="356.19" y="5295.5" >Nsfisis\Wad..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="177.2" y="6469" width="0.4" height="15.0" fill="rgb(230,144,39)" rx="2" ry="2" />
+<text x="180.19" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (11 samples, 0.39%)</title><rect x="381.7" y="5141" width="4.6" height="15.0" fill="rgb(232,88,18)" rx="2" ry="2" />
+<text x="384.68" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="385.0" y="4981" width="0.9" height="15.0" fill="rgb(230,76,16)" rx="2" ry="2" />
+<text x="388.04" y="4991.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="460.9" y="4901" width="0.4" height="15.0" fill="rgb(224,12,31)" rx="2" ry="2" />
+<text x="463.88" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="420.2" y="4885" width="1.3" height="15.0" fill="rgb(252,44,4)" rx="2" ry="2" />
+<text x="423.23" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (10 samples, 0.36%)</title><rect x="263.1" y="5157" width="4.2" height="15.0" fill="rgb(246,102,23)" rx="2" ry="2" />
+<text x="266.10" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="749.6" y="5061" width="0.4" height="15.0" fill="rgb(245,93,4)" rx="2" ry="2" />
+<text x="752.60" y="5071.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (19 samples, 0.67%)</title><rect x="438.3" y="4757" width="7.9" height="15.0" fill="rgb(230,198,27)" rx="2" ry="2" />
+<text x="441.25" y="4767.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="368.7" y="4901" width="0.4" height="15.0" fill="rgb(218,44,51)" rx="2" ry="2" />
+<text x="371.69" y="4911.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (41 samples, 1.46%)</title><rect x="496.5" y="5349" width="17.2" height="15.0" fill="rgb(210,143,29)" rx="2" ry="2" />
+<text x="499.50" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (114 samples, 4.05%)</title><rect x="773.5" y="5877" width="47.7" height="15.0" fill="rgb(212,114,32)" rx="2" ry="2" />
+<text x="776.48" y="5887.5" >Nsfi..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="713.1" y="5013" width="0.5" height="15.0" fill="rgb(219,3,32)" rx="2" ry="2" />
+<text x="716.14" y="5023.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (16 samples, 0.57%)</title><rect x="362.0" y="4949" width="6.7" height="15.0" fill="rgb(237,208,50)" rx="2" ry="2" />
+<text x="364.99" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (5 samples, 0.18%)</title><rect x="564.4" y="5525" width="2.1" height="15.0" fill="rgb(224,162,38)" rx="2" ry="2" />
+<text x="567.38" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="275.2" y="4853" width="0.5" height="15.0" fill="rgb(225,212,1)" rx="2" ry="2" />
+<text x="278.25" y="4863.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="570.2" y="5573" width="0.5" height="15.0" fill="rgb(245,176,16)" rx="2" ry="2" />
+<text x="573.25" y="5583.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="764.7" y="5637" width="0.4" height="15.0" fill="rgb(228,206,30)" rx="2" ry="2" />
+<text x="767.68" y="5647.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="760.1" y="5765" width="0.4" height="15.0" fill="rgb(224,79,2)" rx="2" ry="2" />
+<text x="763.07" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="4581" width="0.8" height="15.0" fill="rgb(205,190,45)" rx="2" ry="2" />
+<text x="1120.09" y="4591.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (13 samples, 0.46%)</title><rect x="709.4" y="5301" width="5.4" height="15.0" fill="rgb(233,87,16)" rx="2" ry="2" />
+<text x="712.37" y="5311.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="256.8" y="5365" width="0.4" height="15.0" fill="rgb(210,33,45)" rx="2" ry="2" />
+<text x="259.81" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="765.9" y="6389" width="1.3" height="15.0" fill="rgb(227,126,12)" rx="2" ry="2" />
+<text x="768.94" y="6399.5" ></text>
+</g>
+<g >
+<title>print_r (2 samples, 0.07%)</title><rect x="1075.6" y="6533" width="0.8" height="15.0" fill="rgb(217,137,43)" rx="2" ry="2" />
+<text x="1078.60" y="6543.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="893.7" y="5973" width="0.9" height="15.0" fill="rgb(219,116,31)" rx="2" ry="2" />
+<text x="896.74" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1122.1" y="6469" width="0.4" height="15.0" fill="rgb(238,43,18)" rx="2" ry="2" />
+<text x="1125.12" y="6479.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (7 samples, 0.25%)</title><rect x="767.2" y="5925" width="2.9" height="15.0" fill="rgb(219,45,32)" rx="2" ry="2" />
+<text x="770.19" y="5935.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (5 samples, 0.18%)</title><rect x="338.9" y="4677" width="2.1" height="15.0" fill="rgb(232,42,3)" rx="2" ry="2" />
+<text x="341.94" y="4687.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (14 samples, 0.50%)</title><rect x="473.5" y="5029" width="5.8" height="15.0" fill="rgb(249,43,51)" rx="2" ry="2" />
+<text x="476.45" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (1 samples, 0.04%)</title><rect x="763.0" y="5877" width="0.4" height="15.0" fill="rgb(205,91,37)" rx="2" ry="2" />
+<text x="766.00" y="5887.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1076.4" y="6373" width="0.9" height="15.0" fill="rgb(245,69,42)" rx="2" ry="2" />
+<text x="1079.44" y="6383.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="512.0" y="4885" width="0.4" height="15.0" fill="rgb(244,69,23)" rx="2" ry="2" />
+<text x="515.00" y="4895.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="149.1" y="6453" width="0.4" height="15.0" fill="rgb(208,44,45)" rx="2" ry="2" />
+<text x="152.12" y="6463.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="4197" width="0.4" height="15.0" fill="rgb(213,167,19)" rx="2" ry="2" />
+<text x="546.43" y="4207.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="263.1" y="5093" width="0.4" height="15.0" fill="rgb(236,89,13)" rx="2" ry="2" />
+<text x="266.10" y="5103.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doLoadI32 (1 samples, 0.04%)</title><rect x="436.6" y="4917" width="0.4" height="15.0" fill="rgb(247,50,25)" rx="2" ry="2" />
+<text x="439.58" y="4927.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (18 samples, 0.64%)</title><rect x="274.8" y="5029" width="7.6" height="15.0" fill="rgb(221,116,22)" rx="2" ry="2" />
+<text x="277.83" y="5039.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="758.4" y="5749" width="0.4" height="15.0" fill="rgb(228,148,12)" rx="2" ry="2" />
+<text x="761.39" y="5759.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="822.1" y="5829" width="0.4" height="15.0" fill="rgb(250,131,44)" rx="2" ry="2" />
+<text x="825.09" y="5839.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="1071.0" y="5221" width="0.4" height="15.0" fill="rgb(247,90,18)" rx="2" ry="2" />
+<text x="1073.99" y="5231.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="333.5" y="4709" width="0.4" height="15.0" fill="rgb(227,110,21)" rx="2" ry="2" />
+<text x="336.49" y="4719.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="463.4" y="4837" width="1.7" height="15.0" fill="rgb(248,122,4)" rx="2" ry="2" />
+<text x="466.39" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::deactivateLabel (1 samples, 0.04%)</title><rect x="1068.1" y="6293" width="0.4" height="15.0" fill="rgb(216,56,51)" rx="2" ry="2" />
+<text x="1071.06" y="6303.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1157.7" y="6533" width="0.5" height="15.0" fill="rgb(232,75,31)" rx="2" ry="2" />
+<text x="1160.73" y="6543.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="1477" width="0.4" height="15.0" fill="rgb(225,87,29)" rx="2" ry="2" />
+<text x="546.43" y="1487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="516.2" y="4997" width="1.3" height="15.0" fill="rgb(219,82,24)" rx="2" ry="2" />
+<text x="519.19" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (51 samples, 1.81%)</title><rect x="725.3" y="5285" width="21.4" height="15.0" fill="rgb(243,184,49)" rx="2" ry="2" />
+<text x="728.29" y="5295.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Br (1 samples, 0.04%)</title><rect x="1068.1" y="6325" width="0.4" height="15.0" fill="rgb(226,111,14)" rx="2" ry="2" />
+<text x="1071.06" y="6335.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (3 samples, 0.11%)</title><rect x="765.9" y="6053" width="1.3" height="15.0" fill="rgb(251,138,36)" rx="2" ry="2" />
+<text x="768.94" y="6063.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\BinaryFormat\Decoder::decodeInstrsUntil (1 samples, 0.04%)</title><rect x="10.4" y="6149" width="0.4" height="15.0" fill="rgb(236,222,16)" rx="2" ry="2" />
+<text x="13.42" y="6159.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\ControlFlowResult::Return (1 samples, 0.04%)</title><rect x="891.6" y="5685" width="0.5" height="15.0" fill="rgb(229,199,33)" rx="2" ry="2" />
+<text x="894.65" y="5695.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (12 samples, 0.43%)</title><rect x="885.8" y="5589" width="5.0" height="15.0" fill="rgb(233,21,10)" rx="2" ry="2" />
+<text x="888.78" y="5599.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="486.4" y="4837" width="0.5" height="15.0" fill="rgb(230,177,35)" rx="2" ry="2" />
+<text x="489.44" y="4847.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="519.1" y="5477" width="0.4" height="15.0" fill="rgb(235,163,50)" rx="2" ry="2" />
+<text x="522.13" y="5487.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="477.2" y="4725" width="0.9" height="15.0" fill="rgb(248,168,24)" rx="2" ry="2" />
+<text x="480.22" y="4735.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="256.8" y="5381" width="0.4" height="15.0" fill="rgb(231,177,27)" rx="2" ry="2" />
+<text x="259.81" y="5391.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (4 samples, 0.14%)</title><rect x="763.8" y="5957" width="1.7" height="15.0" fill="rgb(235,101,24)" rx="2" ry="2" />
+<text x="766.84" y="5967.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (2 samples, 0.07%)</title><rect x="1117.1" y="5365" width="0.8" height="15.0" fill="rgb(239,152,37)" rx="2" ry="2" />
+<text x="1120.09" y="5375.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="573.6" y="5765" width="0.4" height="15.0" fill="rgb(241,169,1)" rx="2" ry="2" />
+<text x="576.60" y="5775.5" ></text>
+</g>
+<g >
+<title>&lt;unknown&gt; (1 samples, 0.04%)</title><rect x="543.4" y="2549" width="0.4" height="15.0" fill="rgb(251,180,53)" rx="2" ry="2" />
+<text x="546.43" y="2559.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (2 samples, 0.07%)</title><rect x="1117.1" y="5893" width="0.8" height="15.0" fill="rgb(239,104,8)" rx="2" ry="2" />
+<text x="1120.09" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="560.2" y="5189" width="0.4" height="15.0" fill="rgb(229,165,29)" rx="2" ry="2" />
+<text x="563.19" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (24 samples, 0.85%)</title><rect x="689.7" y="5349" width="10.0" height="15.0" fill="rgb(243,115,39)" rx="2" ry="2" />
+<text x="692.67" y="5359.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="348.6" y="4965" width="0.4" height="15.0" fill="rgb(226,65,26)" rx="2" ry="2" />
+<text x="351.58" y="4975.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="329.3" y="4949" width="0.4" height="15.0" fill="rgb(220,219,7)" rx="2" ry="2" />
+<text x="332.30" y="4959.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (7 samples, 0.25%)</title><rect x="421.5" y="4997" width="2.9" height="15.0" fill="rgb(245,29,22)" rx="2" ry="2" />
+<text x="424.49" y="5007.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::popValue (1 samples, 0.04%)</title><rect x="1125.0" y="6485" width="0.5" height="15.0" fill="rgb(251,178,26)" rx="2" ry="2" />
+<text x="1128.05" y="6495.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="279.0" y="4693" width="0.4" height="15.0" fill="rgb(242,11,25)" rx="2" ry="2" />
+<text x="282.02" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="477.6" y="4245" width="0.5" height="15.0" fill="rgb(215,158,39)" rx="2" ry="2" />
+<text x="480.64" y="4255.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="713.1" y="5157" width="0.5" height="15.0" fill="rgb(250,149,31)" rx="2" ry="2" />
+<text x="716.14" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (3 samples, 0.11%)</title><rect x="757.1" y="5525" width="1.3" height="15.0" fill="rgb(234,56,48)" rx="2" ry="2" />
+<text x="760.14" y="5535.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (1 samples, 0.04%)</title><rect x="762.6" y="5893" width="0.4" height="15.0" fill="rgb(215,172,20)" rx="2" ry="2" />
+<text x="765.59" y="5903.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (58 samples, 2.06%)</title><rect x="776.4" y="5605" width="24.3" height="15.0" fill="rgb(225,32,18)" rx="2" ry="2" />
+<text x="779.41" y="5615.5" >N..</text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Stack::pushI32 (1 samples, 0.04%)</title><rect x="770.1" y="5973" width="0.4" height="15.0" fill="rgb(238,136,49)" rx="2" ry="2" />
+<text x="773.13" y="5983.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeFunc (2 samples, 0.07%)</title><rect x="435.3" y="4821" width="0.9" height="15.0" fill="rgb(228,217,51)" rx="2" ry="2" />
+<text x="438.32" y="4831.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="892.5" y="5765" width="0.4" height="15.0" fill="rgb(219,153,51)" rx="2" ry="2" />
+<text x="895.49" y="5775.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstr (1 samples, 0.04%)</title><rect x="486.4" y="5157" width="0.5" height="15.0" fill="rgb(205,41,39)" rx="2" ry="2" />
+<text x="489.44" y="5167.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="460.9" y="4693" width="0.4" height="15.0" fill="rgb(246,224,10)" rx="2" ry="2" />
+<text x="463.88" y="4703.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::execInstrs (1 samples, 0.04%)</title><rect x="355.3" y="5141" width="0.4" height="15.0" fill="rgb(251,21,13)" rx="2" ry="2" />
+<text x="358.28" y="5151.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Nums\I32::__construct (1 samples, 0.04%)</title><rect x="667.0" y="5189" width="0.5" height="15.0" fill="rgb(232,45,17)" rx="2" ry="2" />
+<text x="670.05" y="5199.5" ></text>
+</g>
+<g >
+<title>Nsfisis\Waddiwasi\Execution\Runtime::doInvokeWasmFunc (56 samples, 1.99%)</title><rect x="389.6" y="5093" width="23.5" height="15.0" fill="rgb(233,115,29)" rx="2" ry="2" />
+<text x="392.64" y="5103.5" >N..</text>
+</g>
+</g>
+</svg>