491 lines
79 KiB
XML
491 lines
79 KiB
XML
<?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="886" onload="init(evt)" viewBox="0 0 1200 886" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
|
|
text { font-family:monospace; font-size:12px }
|
|
#title { text-anchor:middle; font-size:17px; }
|
|
#matched { text-anchor:end; }
|
|
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
|
|
#search:hover, #search.show { opacity:1; }
|
|
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
|
|
#unzoom { cursor:pointer; }
|
|
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
|
|
.hide { display:none; }
|
|
.parent { opacity:0.5; }
|
|
</style><script type="text/ecmascript"><![CDATA[
|
|
var nametype = 'Function:';
|
|
var fontsize = 12;
|
|
var fontwidth = 0.59;
|
|
var xpad = 10;
|
|
var inverted = false;
|
|
var searchcolor = 'rgb(230,0,230)';
|
|
var fluiddrawing = true;
|
|
var truncate_text_right = false;
|
|
]]><![CDATA["use strict";
|
|
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
|
|
function init(evt) {
|
|
details = document.getElementById("details").firstChild;
|
|
searchbtn = document.getElementById("search");
|
|
unzoombtn = document.getElementById("unzoom");
|
|
matchedtxt = document.getElementById("matched");
|
|
svg = document.getElementsByTagName("svg")[0];
|
|
frames = document.getElementById("frames");
|
|
known_font_width = get_monospace_width(frames);
|
|
total_samples = parseInt(frames.attributes.total_samples.value);
|
|
searching = 0;
|
|
|
|
// Use GET parameters to restore a flamegraph's state.
|
|
var restore_state = function() {
|
|
var params = get_params();
|
|
if (params.x && params.y)
|
|
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
|
|
if (params.s)
|
|
search(params.s);
|
|
};
|
|
|
|
if (fluiddrawing) {
|
|
// Make width dynamic so the SVG fits its parent's width.
|
|
svg.removeAttribute("width");
|
|
// Edge requires us to have a viewBox that gets updated with size changes.
|
|
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
|
|
if (!isEdge) {
|
|
svg.removeAttribute("viewBox");
|
|
}
|
|
var update_for_width_change = function() {
|
|
if (isEdge) {
|
|
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
|
|
}
|
|
|
|
// Keep consistent padding on left and right of frames container.
|
|
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
|
|
|
|
// Text truncation needs to be adjusted for the current width.
|
|
update_text_for_elements(frames.children);
|
|
|
|
// Keep search elements at a fixed distance from right edge.
|
|
var svgWidth = svg.width.baseVal.value;
|
|
searchbtn.attributes.x.value = svgWidth - xpad;
|
|
matchedtxt.attributes.x.value = svgWidth - xpad;
|
|
};
|
|
window.addEventListener('resize', function() {
|
|
update_for_width_change();
|
|
});
|
|
// This needs to be done asynchronously for Safari to work.
|
|
setTimeout(function() {
|
|
unzoom();
|
|
update_for_width_change();
|
|
restore_state();
|
|
}, 0);
|
|
} else {
|
|
restore_state();
|
|
}
|
|
}
|
|
// event listeners
|
|
window.addEventListener("click", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) {
|
|
if (target.nodeName == "a") {
|
|
if (e.ctrlKey === false) return;
|
|
e.preventDefault();
|
|
}
|
|
if (target.classList.contains("parent")) unzoom();
|
|
zoom(target);
|
|
|
|
// set parameters for zoom state
|
|
var el = target.querySelector("rect");
|
|
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
|
|
var params = get_params()
|
|
params.x = el.attributes["fg:x"].value;
|
|
params.y = el.attributes.y.value;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
}
|
|
else if (e.target.id == "unzoom") {
|
|
unzoom();
|
|
|
|
// remove zoom state
|
|
var params = get_params();
|
|
if (params.x) delete params.x;
|
|
if (params.y) delete params.y;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
else if (e.target.id == "search") search_prompt();
|
|
}, false)
|
|
// mouse-over for info
|
|
// show
|
|
window.addEventListener("mouseover", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = nametype + " " + g_to_text(target);
|
|
}, false)
|
|
// clear
|
|
window.addEventListener("mouseout", function(e) {
|
|
var target = find_group(e.target);
|
|
if (target) details.nodeValue = ' ';
|
|
}, false)
|
|
// ctrl-F for search
|
|
window.addEventListener("keydown",function (e) {
|
|
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
|
|
e.preventDefault();
|
|
search_prompt();
|
|
}
|
|
}, false)
|
|
// functions
|
|
function get_params() {
|
|
var params = {};
|
|
var paramsarr = window.location.search.substr(1).split('&');
|
|
for (var i = 0; i < paramsarr.length; ++i) {
|
|
var tmp = paramsarr[i].split("=");
|
|
if (!tmp[0] || !tmp[1]) continue;
|
|
params[tmp[0]] = decodeURIComponent(tmp[1]);
|
|
}
|
|
return params;
|
|
}
|
|
function parse_params(params) {
|
|
var uri = "?";
|
|
for (var key in params) {
|
|
uri += key + '=' + encodeURIComponent(params[key]) + '&';
|
|
}
|
|
if (uri.slice(-1) == "&")
|
|
uri = uri.substring(0, uri.length - 1);
|
|
if (uri == '?')
|
|
uri = window.location.href.split('?')[0];
|
|
return uri;
|
|
}
|
|
function find_child(node, selector) {
|
|
var children = node.querySelectorAll(selector);
|
|
if (children.length) return children[0];
|
|
return;
|
|
}
|
|
function find_group(node) {
|
|
var parent = node.parentElement;
|
|
if (!parent) return;
|
|
if (parent.id == "frames") return node;
|
|
return find_group(parent);
|
|
}
|
|
function orig_save(e, attr, val) {
|
|
if (e.attributes["fg:orig_" + attr] != undefined) return;
|
|
if (e.attributes[attr] == undefined) return;
|
|
if (val == undefined) val = e.attributes[attr].value;
|
|
e.setAttribute("fg:orig_" + attr, val);
|
|
}
|
|
function orig_load(e, attr) {
|
|
if (e.attributes["fg:orig_"+attr] == undefined) return;
|
|
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
|
|
e.removeAttribute("fg:orig_" + attr);
|
|
}
|
|
function g_to_text(e) {
|
|
var text = find_child(e, "title").firstChild.nodeValue;
|
|
return (text)
|
|
}
|
|
function g_to_func(e) {
|
|
var func = g_to_text(e);
|
|
// if there's any manipulation we want to do to the function
|
|
// name before it's searched, do it here before returning.
|
|
return (func);
|
|
}
|
|
function get_monospace_width(frames) {
|
|
// Given the id="frames" element, return the width of text characters if
|
|
// this is a monospace font, otherwise return 0.
|
|
text = find_child(frames.children[0], "text");
|
|
originalContent = text.textContent;
|
|
text.textContent = "!";
|
|
bangWidth = text.getComputedTextLength();
|
|
text.textContent = "W";
|
|
wWidth = text.getComputedTextLength();
|
|
text.textContent = originalContent;
|
|
if (bangWidth === wWidth) {
|
|
return bangWidth;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
function update_text_for_elements(elements) {
|
|
// In order to render quickly in the browser, you want to do one pass of
|
|
// reading attributes, and one pass of mutating attributes. See
|
|
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
|
|
|
|
// Fall back to inefficient calculation, if we're variable-width font.
|
|
// TODO This should be optimized somehow too.
|
|
if (known_font_width === 0) {
|
|
for (var i = 0; i < elements.length; i++) {
|
|
update_text(elements[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
var textElemNewAttributes = [];
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * known_font_width) {
|
|
textElemNewAttributes.push([newX, ""]);
|
|
continue;
|
|
}
|
|
|
|
// Fit in full text width
|
|
if (txt.length * known_font_width < w) {
|
|
textElemNewAttributes.push([newX, txt]);
|
|
continue;
|
|
}
|
|
|
|
var substringLength = Math.floor(w / known_font_width) - 2;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
|
|
continue;
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
|
|
continue;
|
|
}
|
|
}
|
|
|
|
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
|
|
|
|
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
|
|
for (var i = 0; i < elements.length; i++) {
|
|
var e = elements[i];
|
|
var values = textElemNewAttributes[i];
|
|
var t = find_child(e, "text");
|
|
t.attributes.x.value = values[0];
|
|
t.textContent = values[1];
|
|
}
|
|
}
|
|
|
|
function update_text(e) {
|
|
var r = find_child(e, "rect");
|
|
var t = find_child(e, "text");
|
|
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
|
|
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
|
|
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
|
|
|
|
// Smaller than this size won't fit anything
|
|
if (w < 2 * fontsize * fontwidth) {
|
|
t.textContent = "";
|
|
return;
|
|
}
|
|
t.textContent = txt;
|
|
// Fit in full text width
|
|
if (t.getComputedTextLength() < w)
|
|
return;
|
|
if (truncate_text_right) {
|
|
// Truncate the right side of the text.
|
|
for (var x = txt.length - 2; x > 0; x--) {
|
|
if (t.getSubStringLength(0, x + 2) <= w) {
|
|
t.textContent = txt.substring(0, x) + "..";
|
|
return;
|
|
}
|
|
}
|
|
} else {
|
|
// Truncate the left side of the text.
|
|
for (var x = 2; x < txt.length; x++) {
|
|
if (t.getSubStringLength(x - 2, txt.length) <= w) {
|
|
t.textContent = ".." + txt.substring(x, txt.length);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
t.textContent = "";
|
|
}
|
|
// zoom
|
|
function zoom_reset(e) {
|
|
if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_reset(c[i]);
|
|
}
|
|
}
|
|
function zoom_child(e, x, zoomed_width_samples) {
|
|
if (e.tagName == "text") {
|
|
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
|
|
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
|
|
} else if (e.tagName == "rect") {
|
|
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
|
|
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_child(c[i], x, zoomed_width_samples);
|
|
}
|
|
}
|
|
function zoom_parent(e) {
|
|
if (e.attributes) {
|
|
if (e.attributes.x != undefined) {
|
|
e.attributes.x.value = "0.0%";
|
|
}
|
|
if (e.attributes.width != undefined) {
|
|
e.attributes.width.value = "100.0%";
|
|
}
|
|
}
|
|
if (e.childNodes == undefined) return;
|
|
for(var i = 0, c = e.childNodes; i < c.length; i++) {
|
|
zoom_parent(c[i]);
|
|
}
|
|
}
|
|
function zoom(node) {
|
|
var attr = find_child(node, "rect").attributes;
|
|
var width = parseInt(attr["fg:w"].value);
|
|
var xmin = parseInt(attr["fg:x"].value);
|
|
var xmax = xmin + width;
|
|
var ymin = parseFloat(attr.y.value);
|
|
unzoombtn.classList.remove("hide");
|
|
var el = frames.children;
|
|
var to_update_text = [];
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
var a = find_child(e, "rect").attributes;
|
|
var ex = parseInt(a["fg:x"].value);
|
|
var ew = parseInt(a["fg:w"].value);
|
|
// Is it an ancestor
|
|
if (!inverted) {
|
|
var upstack = parseFloat(a.y.value) > ymin;
|
|
} else {
|
|
var upstack = parseFloat(a.y.value) < ymin;
|
|
}
|
|
if (upstack) {
|
|
// Direct ancestor
|
|
if (ex <= xmin && (ex+ew) >= xmax) {
|
|
e.classList.add("parent");
|
|
zoom_parent(e);
|
|
to_update_text.push(e);
|
|
}
|
|
// not in current path
|
|
else
|
|
e.classList.add("hide");
|
|
}
|
|
// Children maybe
|
|
else {
|
|
// no common path
|
|
if (ex < xmin || ex >= xmax) {
|
|
e.classList.add("hide");
|
|
}
|
|
else {
|
|
zoom_child(e, xmin, width);
|
|
to_update_text.push(e);
|
|
}
|
|
}
|
|
}
|
|
update_text_for_elements(to_update_text);
|
|
}
|
|
function unzoom() {
|
|
unzoombtn.classList.add("hide");
|
|
var el = frames.children;
|
|
for(var i = 0; i < el.length; i++) {
|
|
el[i].classList.remove("parent");
|
|
el[i].classList.remove("hide");
|
|
zoom_reset(el[i]);
|
|
}
|
|
update_text_for_elements(el);
|
|
}
|
|
// search
|
|
function reset_search() {
|
|
var el = document.querySelectorAll("#frames rect");
|
|
for (var i = 0; i < el.length; i++) {
|
|
orig_load(el[i], "fill")
|
|
}
|
|
var params = get_params();
|
|
delete params.s;
|
|
history.replaceState(null, null, parse_params(params));
|
|
}
|
|
function search_prompt() {
|
|
if (!searching) {
|
|
var term = prompt("Enter a search term (regexp " +
|
|
"allowed, eg: ^ext4_)", "");
|
|
if (term != null) {
|
|
search(term)
|
|
}
|
|
} else {
|
|
reset_search();
|
|
searching = 0;
|
|
searchbtn.classList.remove("show");
|
|
searchbtn.firstChild.nodeValue = "Search"
|
|
matchedtxt.classList.add("hide");
|
|
matchedtxt.firstChild.nodeValue = ""
|
|
}
|
|
}
|
|
function search(term) {
|
|
var re = new RegExp(term);
|
|
var el = frames.children;
|
|
var matches = new Object();
|
|
var maxwidth = 0;
|
|
for (var i = 0; i < el.length; i++) {
|
|
var e = el[i];
|
|
// Skip over frames which are either not visible, or below the zoomed-to frame
|
|
if (e.classList.contains("hide") || e.classList.contains("parent")) {
|
|
continue;
|
|
}
|
|
var func = g_to_func(e);
|
|
var rect = find_child(e, "rect");
|
|
if (func == null || rect == null)
|
|
continue;
|
|
// Save max width. Only works as we have a root frame
|
|
var w = parseInt(rect.attributes["fg:w"].value);
|
|
if (w > maxwidth)
|
|
maxwidth = w;
|
|
if (func.match(re)) {
|
|
// highlight
|
|
var x = parseInt(rect.attributes["fg:x"].value);
|
|
orig_save(rect, "fill");
|
|
rect.attributes.fill.value = searchcolor;
|
|
// remember matches
|
|
if (matches[x] == undefined) {
|
|
matches[x] = w;
|
|
} else {
|
|
if (w > matches[x]) {
|
|
// overwrite with parent
|
|
matches[x] = w;
|
|
}
|
|
}
|
|
searching = 1;
|
|
}
|
|
}
|
|
if (!searching)
|
|
return;
|
|
var params = get_params();
|
|
params.s = term;
|
|
history.replaceState(null, null, parse_params(params));
|
|
|
|
searchbtn.classList.add("show");
|
|
searchbtn.firstChild.nodeValue = "Reset Search";
|
|
// calculate percent matched, excluding vertical overlap
|
|
var count = 0;
|
|
var lastx = -1;
|
|
var lastw = 0;
|
|
var keys = Array();
|
|
for (k in matches) {
|
|
if (matches.hasOwnProperty(k))
|
|
keys.push(k);
|
|
}
|
|
// sort the matched frames by their x location
|
|
// ascending, then width descending
|
|
keys.sort(function(a, b){
|
|
return a - b;
|
|
});
|
|
// Step through frames saving only the biggest bottom-up frames
|
|
// thanks to the sort order. This relies on the tree property
|
|
// where children are always smaller than their parents.
|
|
for (var k in keys) {
|
|
var x = parseInt(keys[k]);
|
|
var w = matches[keys[k]];
|
|
if (x >= lastx + lastw) {
|
|
count += w;
|
|
lastx = x;
|
|
lastw = w;
|
|
}
|
|
}
|
|
// display matched percent
|
|
matchedtxt.classList.remove("hide");
|
|
var pct = 100 * count / maxwidth;
|
|
if (pct != 100) pct = pct.toFixed(1);
|
|
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
|
|
}
|
|
function format_percent(n) {
|
|
return n.toFixed(4) + "%";
|
|
}
|
|
]]></script><rect x="0" y="0" width="100%" height="886" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="869.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="869.00"> </text><svg id="frames" x="10" width="1180" total_samples="564"><g><title>__cos_fma (1 samples, 0.18%)</title><rect x="0.0000%" y="789" width="0.1773%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="1"/><text x="0.2500%" y="799.50"></text></g><g><title>[[heap]] (3 samples, 0.53%)</title><rect x="0.0000%" y="805" width="0.5319%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="3"/><text x="0.2500%" y="815.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (2 samples, 0.35%)</title><rect x="0.1773%" y="789" width="0.3546%" height="15" fill="rgb(221,193,54)" fg:x="1" fg:w="2"/><text x="0.4273%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="789" width="0.1773%" height="15" fill="rgb(248,212,6)" fg:x="3" fg:w="1"/><text x="0.7819%" y="799.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="773" width="0.1773%" height="15" fill="rgb(208,68,35)" fg:x="3" fg:w="1"/><text x="0.7819%" y="783.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="757" width="0.1773%" height="15" fill="rgb(232,128,0)" fg:x="3" fg:w="1"/><text x="0.7819%" y="767.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="741" width="0.1773%" height="15" fill="rgb(207,160,47)" fg:x="3" fg:w="1"/><text x="0.7819%" y="751.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="725" width="0.1773%" height="15" fill="rgb(228,23,34)" fg:x="3" fg:w="1"/><text x="0.7819%" y="735.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="709" width="0.1773%" height="15" fill="rgb(218,30,26)" fg:x="3" fg:w="1"/><text x="0.7819%" y="719.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="693" width="0.1773%" height="15" fill="rgb(220,122,19)" fg:x="3" fg:w="1"/><text x="0.7819%" y="703.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="677" width="0.1773%" height="15" fill="rgb(250,228,42)" fg:x="3" fg:w="1"/><text x="0.7819%" y="687.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="661" width="0.1773%" height="15" fill="rgb(240,193,28)" fg:x="3" fg:w="1"/><text x="0.7819%" y="671.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="645" width="0.1773%" height="15" fill="rgb(216,20,37)" fg:x="3" fg:w="1"/><text x="0.7819%" y="655.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="629" width="0.1773%" height="15" fill="rgb(206,188,39)" fg:x="3" fg:w="1"/><text x="0.7819%" y="639.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="613" width="0.1773%" height="15" fill="rgb(217,207,13)" fg:x="3" fg:w="1"/><text x="0.7819%" y="623.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="597" width="0.1773%" height="15" fill="rgb(231,73,38)" fg:x="3" fg:w="1"/><text x="0.7819%" y="607.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="581" width="0.1773%" height="15" fill="rgb(225,20,46)" fg:x="3" fg:w="1"/><text x="0.7819%" y="591.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="0.5319%" y="565" width="0.1773%" height="15" fill="rgb(210,31,41)" fg:x="3" fg:w="1"/><text x="0.7819%" y="575.50"></text></g><g><title>__tan_fma (7 samples, 1.24%)</title><rect x="0.7092%" y="789" width="1.2411%" height="15" fill="rgb(221,200,47)" fg:x="4" fg:w="7"/><text x="0.9592%" y="799.50"></text></g><g><title>bachelorarbeit::calc::omnes (17 samples, 3.01%)</title><rect x="1.9504%" y="789" width="3.0142%" height="15" fill="rgb(226,26,5)" fg:x="11" fg:w="17"/><text x="2.2004%" y="799.50">bac..</text></g><g><title>bachelorarbeit::calc::integrate_complex (2 samples, 0.35%)</title><rect x="4.6099%" y="773" width="0.3546%" height="15" fill="rgb(249,33,26)" fg:x="26" fg:w="2"/><text x="4.8599%" y="783.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (2 samples, 0.35%)</title><rect x="4.6099%" y="757" width="0.3546%" height="15" fill="rgb(235,183,28)" fg:x="26" fg:w="2"/><text x="4.8599%" y="767.50"></text></g><g><title>bachelorarbeit::calc::omnes_integrand (2 samples, 0.35%)</title><rect x="4.6099%" y="741" width="0.3546%" height="15" fill="rgb(221,5,38)" fg:x="26" fg:w="2"/><text x="4.8599%" y="751.50"></text></g><g><title>std::f64::<impl f64>::cos (2 samples, 0.35%)</title><rect x="5.3191%" y="725" width="0.3546%" height="15" fill="rgb(247,18,42)" fg:x="30" fg:w="2"/><text x="5.5691%" y="735.50"></text></g><g><title>bachelorarbeit::calc::phi0 (6 samples, 1.06%)</title><rect x="4.9645%" y="789" width="1.0638%" height="15" fill="rgb(241,131,45)" fg:x="28" fg:w="6"/><text x="5.2145%" y="799.50"></text></g><g><title>bachelorarbeit::calc::integrate (6 samples, 1.06%)</title><rect x="4.9645%" y="773" width="1.0638%" height="15" fill="rgb(249,31,29)" fg:x="28" fg:w="6"/><text x="5.2145%" y="783.50"></text></g><g><title>bachelorarbeit::calc::phi0::_{{closure}} (6 samples, 1.06%)</title><rect x="4.9645%" y="757" width="1.0638%" height="15" fill="rgb(225,111,53)" fg:x="28" fg:w="6"/><text x="5.2145%" y="767.50"></text></g><g><title>bachelorarbeit::calc::phi0_integrand (6 samples, 1.06%)</title><rect x="4.9645%" y="741" width="1.0638%" height="15" fill="rgb(238,160,17)" fg:x="28" fg:w="6"/><text x="5.2145%" y="751.50"></text></g><g><title>std::f64::<impl f64>::tan (2 samples, 0.35%)</title><rect x="5.6738%" y="725" width="0.3546%" height="15" fill="rgb(214,148,48)" fg:x="32" fg:w="2"/><text x="5.9238%" y="735.50"></text></g><g><title>[unknown] (35 samples, 6.21%)</title><rect x="0.5319%" y="805" width="6.2057%" height="15" fill="rgb(232,36,49)" fg:x="3" fg:w="35"/><text x="0.7819%" y="815.50">[unknown]</text></g><g><title>main_arena (4 samples, 0.71%)</title><rect x="6.0284%" y="789" width="0.7092%" height="15" fill="rgb(209,103,24)" fg:x="34" fg:w="4"/><text x="6.2784%" y="799.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (4 samples, 0.71%)</title><rect x="6.0284%" y="773" width="0.7092%" height="15" fill="rgb(229,88,8)" fg:x="34" fg:w="4"/><text x="6.2784%" y="783.50"></text></g><g><title>bachelorarbeit::calc::Cache::from_file (1 samples, 0.18%)</title><rect x="6.7376%" y="661" width="0.1773%" height="15" fill="rgb(213,181,19)" fg:x="38" fg:w="1"/><text x="6.9876%" y="671.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (1 samples, 0.18%)</title><rect x="6.7376%" y="645" width="0.1773%" height="15" fill="rgb(254,191,54)" fg:x="38" fg:w="1"/><text x="6.9876%" y="655.50"></text></g><g><title><std::collections::hash::map::HashMap<K,V,S> as core::iter::traits::collect::FromIterator<(K,V)>>::from_iter (1 samples, 0.18%)</title><rect x="6.7376%" y="629" width="0.1773%" height="15" fill="rgb(241,83,37)" fg:x="38" fg:w="1"/><text x="6.9876%" y="639.50"></text></g><g><title><std::collections::hash::map::HashMap<K,V,S> as core::iter::traits::collect::Extend<(K,V)>>::extend (1 samples, 0.18%)</title><rect x="6.7376%" y="613" width="0.1773%" height="15" fill="rgb(233,36,39)" fg:x="38" fg:w="1"/><text x="6.9876%" y="623.50"></text></g><g><title><hashbrown::map::HashMap<K,V,S,A> as core::iter::traits::collect::Extend<(K,V)>>::extend (1 samples, 0.18%)</title><rect x="6.7376%" y="597" width="0.1773%" height="15" fill="rgb(226,3,54)" fg:x="38" fg:w="1"/><text x="6.9876%" y="607.50"></text></g><g><title>core::iter::traits::iterator::Iterator::for_each (1 samples, 0.18%)</title><rect x="6.7376%" y="581" width="0.1773%" height="15" fill="rgb(245,192,40)" fg:x="38" fg:w="1"/><text x="6.9876%" y="591.50"></text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (1 samples, 0.18%)</title><rect x="6.7376%" y="565" width="0.1773%" height="15" fill="rgb(238,167,29)" fg:x="38" fg:w="1"/><text x="6.9876%" y="575.50"></text></g><g><title>core::iter::traits::iterator::Iterator::fold (1 samples, 0.18%)</title><rect x="6.7376%" y="549" width="0.1773%" height="15" fill="rgb(232,182,51)" fg:x="38" fg:w="1"/><text x="6.9876%" y="559.50"></text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (1 samples, 0.18%)</title><rect x="6.7376%" y="533" width="0.1773%" height="15" fill="rgb(231,60,39)" fg:x="38" fg:w="1"/><text x="6.9876%" y="543.50"></text></g><g><title>bachelorarbeit::calc::Cache::from_file::_{{closure}} (1 samples, 0.18%)</title><rect x="6.7376%" y="517" width="0.1773%" height="15" fill="rgb(208,69,12)" fg:x="38" fg:w="1"/><text x="6.9876%" y="527.50"></text></g><g><title><alloc::rc::Rc<[T],A> as core::convert::From<alloc::vec::Vec<T,A>>>::from (1 samples, 0.18%)</title><rect x="6.7376%" y="501" width="0.1773%" height="15" fill="rgb(235,93,37)" fg:x="38" fg:w="1"/><text x="6.9876%" y="511.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (1 samples, 0.18%)</title><rect x="6.7376%" y="485" width="0.1773%" height="15" fill="rgb(213,116,39)" fg:x="38" fg:w="1"/><text x="6.9876%" y="495.50"></text></g><g><title>__memcpy_avx_unaligned_erms (1 samples, 0.18%)</title><rect x="6.7376%" y="469" width="0.1773%" height="15" fill="rgb(222,207,29)" fg:x="38" fg:w="1"/><text x="6.9876%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="6.7376%" y="453" width="0.1773%" height="15" fill="rgb(206,96,30)" fg:x="38" fg:w="1"/><text x="6.9876%" y="463.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (5 samples, 0.89%)</title><rect x="15.2482%" y="405" width="0.8865%" height="15" fill="rgb(218,138,4)" fg:x="86" fg:w="5"/><text x="15.4982%" y="415.50"></text></g><g><title><f64 as core::ops::arith::Div>::div (20 samples, 3.55%)</title><rect x="16.1348%" y="405" width="3.5461%" height="15" fill="rgb(250,191,14)" fg:x="91" fg:w="20"/><text x="16.3848%" y="415.50"><f64..</text></g><g><title><f64 as core::ops::arith::Mul>::mul (7 samples, 1.24%)</title><rect x="19.6809%" y="405" width="1.2411%" height="15" fill="rgb(239,60,40)" fg:x="111" fg:w="7"/><text x="19.9309%" y="415.50"></text></g><g><title><num_complex::Complex<T> as core::ops::arith::Div>::div (35 samples, 6.21%)</title><rect x="15.2482%" y="421" width="6.2057%" height="15" fill="rgb(206,27,48)" fg:x="86" fg:w="35"/><text x="15.4982%" y="431.50"><num_com..</text></g><g><title>num_complex::Complex<T>::norm_sqr (3 samples, 0.53%)</title><rect x="20.9220%" y="405" width="0.5319%" height="15" fill="rgb(225,35,8)" fg:x="118" fg:w="3"/><text x="21.1720%" y="415.50"></text></g><g><title><f64 as core::ops::arith::Mul>::mul (3 samples, 0.53%)</title><rect x="20.9220%" y="389" width="0.5319%" height="15" fill="rgb(250,213,24)" fg:x="118" fg:w="3"/><text x="21.1720%" y="399.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (1 samples, 0.18%)</title><rect x="22.8723%" y="277" width="0.1773%" height="15" fill="rgb(247,123,22)" fg:x="129" fg:w="1"/><text x="23.1223%" y="287.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::lowest_set_bit (1 samples, 0.18%)</title><rect x="23.5816%" y="229" width="0.1773%" height="15" fill="rgb(231,138,38)" fg:x="133" fg:w="1"/><text x="23.8316%" y="239.50"></text></g><g><title><hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next (2 samples, 0.35%)</title><rect x="23.5816%" y="245" width="0.3546%" height="15" fill="rgb(231,145,46)" fg:x="133" fg:w="2"/><text x="23.8316%" y="255.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::remove_lowest_bit (1 samples, 0.18%)</title><rect x="23.7589%" y="229" width="0.1773%" height="15" fill="rgb(251,118,11)" fg:x="134" fg:w="1"/><text x="24.0089%" y="239.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::find::_{{closure}} (1 samples, 0.18%)</title><rect x="23.9362%" y="245" width="0.1773%" height="15" fill="rgb(217,147,25)" fg:x="135" fg:w="1"/><text x="24.1862%" y="255.50"></text></g><g><title>hashbrown::raw::Bucket<T>::as_ref (1 samples, 0.18%)</title><rect x="23.9362%" y="229" width="0.1773%" height="15" fill="rgb(247,81,37)" fg:x="135" fg:w="1"/><text x="24.1862%" y="239.50"></text></g><g><title>hashbrown::raw::Bucket<T>::as_ptr (1 samples, 0.18%)</title><rect x="23.9362%" y="213" width="0.1773%" height="15" fill="rgb(209,12,38)" fg:x="135" fg:w="1"/><text x="24.1862%" y="223.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::sub (1 samples, 0.18%)</title><rect x="23.9362%" y="197" width="0.1773%" height="15" fill="rgb(227,1,9)" fg:x="135" fg:w="1"/><text x="24.1862%" y="207.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::offset (1 samples, 0.18%)</title><rect x="23.9362%" y="181" width="0.1773%" height="15" fill="rgb(248,47,43)" fg:x="135" fg:w="1"/><text x="24.1862%" y="191.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (9 samples, 1.60%)</title><rect x="22.6950%" y="357" width="1.5957%" height="15" fill="rgb(221,10,30)" fg:x="128" fg:w="9"/><text x="22.9450%" y="367.50"></text></g><g><title>std::collections::hash::map::HashMap<K,V,S>::get (9 samples, 1.60%)</title><rect x="22.6950%" y="341" width="1.5957%" height="15" fill="rgb(210,229,1)" fg:x="128" fg:w="9"/><text x="22.9450%" y="351.50"></text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get (9 samples, 1.60%)</title><rect x="22.6950%" y="325" width="1.5957%" height="15" fill="rgb(222,148,37)" fg:x="128" fg:w="9"/><text x="22.9450%" y="335.50"></text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get_inner (9 samples, 1.60%)</title><rect x="22.6950%" y="309" width="1.5957%" height="15" fill="rgb(234,67,33)" fg:x="128" fg:w="9"/><text x="22.9450%" y="319.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::get (8 samples, 1.42%)</title><rect x="22.8723%" y="293" width="1.4184%" height="15" fill="rgb(247,98,35)" fg:x="129" fg:w="8"/><text x="23.1223%" y="303.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::find (7 samples, 1.24%)</title><rect x="23.0496%" y="277" width="1.2411%" height="15" fill="rgb(247,138,52)" fg:x="130" fg:w="7"/><text x="23.2996%" y="287.50"></text></g><g><title>hashbrown::raw::RawTableInner::find_inner (7 samples, 1.24%)</title><rect x="23.0496%" y="261" width="1.2411%" height="15" fill="rgb(213,79,30)" fg:x="130" fg:w="7"/><text x="23.2996%" y="271.50"></text></g><g><title>hashbrown::raw::h2 (1 samples, 0.18%)</title><rect x="24.1135%" y="245" width="0.1773%" height="15" fill="rgb(246,177,23)" fg:x="136" fg:w="1"/><text x="24.3635%" y="255.50"></text></g><g><title>num_complex::<impl core::ops::arith::Div<num_complex::Complex<f64>> for f64>::div (1 samples, 0.18%)</title><rect x="24.2908%" y="357" width="0.1773%" height="15" fill="rgb(230,62,27)" fg:x="137" fg:w="1"/><text x="24.5408%" y="367.50"></text></g><g><title>num_complex::Complex<T>::norm_sqr (1 samples, 0.18%)</title><rect x="24.2908%" y="341" width="0.1773%" height="15" fill="rgb(216,154,8)" fg:x="137" fg:w="1"/><text x="24.5408%" y="351.50"></text></g><g><title><f64 as core::ops::arith::Mul>::mul (1 samples, 0.18%)</title><rect x="24.2908%" y="325" width="0.1773%" height="15" fill="rgb(244,35,45)" fg:x="137" fg:w="1"/><text x="24.5408%" y="335.50"></text></g><g><title>std::f64::<impl f64>::cos (6 samples, 1.06%)</title><rect x="24.4681%" y="357" width="1.0638%" height="15" fill="rgb(251,115,12)" fg:x="138" fg:w="6"/><text x="24.7181%" y="367.50"></text></g><g><title>__cos_fma (6 samples, 1.06%)</title><rect x="24.4681%" y="341" width="1.0638%" height="15" fill="rgb(240,54,50)" fg:x="138" fg:w="6"/><text x="24.7181%" y="351.50"></text></g><g><title>do_sin (1 samples, 0.18%)</title><rect x="25.3546%" y="325" width="0.1773%" height="15" fill="rgb(233,84,52)" fg:x="143" fg:w="1"/><text x="25.6046%" y="335.50"></text></g><g><title>std::f64::<impl f64>::powi (1 samples, 0.18%)</title><rect x="25.5319%" y="357" width="0.1773%" height="15" fill="rgb(207,117,47)" fg:x="144" fg:w="1"/><text x="25.7819%" y="367.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (20 samples, 3.55%)</title><rect x="22.6950%" y="389" width="3.5461%" height="15" fill="rgb(249,43,39)" fg:x="128" fg:w="20"/><text x="22.9450%" y="399.50">bach..</text></g><g><title>bachelorarbeit::calc::omnes_integrand (20 samples, 3.55%)</title><rect x="22.6950%" y="373" width="3.5461%" height="15" fill="rgb(209,38,44)" fg:x="128" fg:w="20"/><text x="22.9450%" y="383.50">bach..</text></g><g><title>std::f64::<impl f64>::tan (3 samples, 0.53%)</title><rect x="25.7092%" y="357" width="0.5319%" height="15" fill="rgb(236,212,23)" fg:x="145" fg:w="3"/><text x="25.9592%" y="367.50"></text></g><g><title>__tan_fma (3 samples, 0.53%)</title><rect x="25.7092%" y="341" width="0.5319%" height="15" fill="rgb(242,79,21)" fg:x="145" fg:w="3"/><text x="25.9592%" y="351.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (22 samples, 3.90%)</title><rect x="22.5177%" y="405" width="3.9007%" height="15" fill="rgb(211,96,35)" fg:x="127" fg:w="22"/><text x="22.7677%" y="415.50">bach..</text></g><g><title>num_complex::<impl core::ops::arith::Mul<num_complex::Complex<f64>> for f64>::mul (1 samples, 0.18%)</title><rect x="26.2411%" y="389" width="0.1773%" height="15" fill="rgb(253,215,40)" fg:x="148" fg:w="1"/><text x="26.4911%" y="399.50"></text></g><g><title>num_complex::<impl core::ops::arith::Div<num_complex::Complex<f64>> for f64>::div (2 samples, 0.35%)</title><rect x="26.4184%" y="405" width="0.3546%" height="15" fill="rgb(211,81,21)" fg:x="149" fg:w="2"/><text x="26.6684%" y="415.50"></text></g><g><title>bachelorarbeit::calc::omnes (6 samples, 1.06%)</title><rect x="26.7730%" y="373" width="1.0638%" height="15" fill="rgb(208,190,38)" fg:x="151" fg:w="6"/><text x="27.0230%" y="383.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::lowest_set_bit (5 samples, 0.89%)</title><rect x="30.6738%" y="293" width="0.8865%" height="15" fill="rgb(235,213,38)" fg:x="173" fg:w="5"/><text x="30.9238%" y="303.50"></text></g><g><title><hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next (14 samples, 2.48%)</title><rect x="30.6738%" y="309" width="2.4823%" height="15" fill="rgb(237,122,38)" fg:x="173" fg:w="14"/><text x="30.9238%" y="319.50"><h..</text></g><g><title>hashbrown::raw::bitmask::BitMask::remove_lowest_bit (9 samples, 1.60%)</title><rect x="31.5603%" y="293" width="1.5957%" height="15" fill="rgb(244,218,35)" fg:x="178" fg:w="9"/><text x="31.8103%" y="303.50"></text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq for u32>::eq (3 samples, 0.53%)</title><rect x="33.1560%" y="245" width="0.5319%" height="15" fill="rgb(240,68,47)" fg:x="187" fg:w="3"/><text x="33.4060%" y="255.50"></text></g><g><title>hashbrown::map::equivalent_key::_{{closure}} (20 samples, 3.55%)</title><rect x="33.1560%" y="293" width="3.5461%" height="15" fill="rgb(210,16,53)" fg:x="187" fg:w="20"/><text x="33.4060%" y="303.50">hash..</text></g><g><title><Q as hashbrown::Equivalent<K>>::equivalent (20 samples, 3.55%)</title><rect x="33.1560%" y="277" width="3.5461%" height="15" fill="rgb(235,124,12)" fg:x="187" fg:w="20"/><text x="33.4060%" y="287.50"><Q a..</text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq (20 samples, 3.55%)</title><rect x="33.1560%" y="261" width="3.5461%" height="15" fill="rgb(224,169,11)" fg:x="187" fg:w="20"/><text x="33.4060%" y="271.50">core..</text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq for u64>::eq (17 samples, 3.01%)</title><rect x="33.6879%" y="245" width="3.0142%" height="15" fill="rgb(250,166,2)" fg:x="190" fg:w="17"/><text x="33.9379%" y="255.50">cor..</text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.18%)</title><rect x="36.7021%" y="245" width="0.1773%" height="15" fill="rgb(242,216,29)" fg:x="207" fg:w="1"/><text x="36.9521%" y="255.50"></text></g><g><title>hashbrown::raw::Bucket<T>::as_ref (4 samples, 0.71%)</title><rect x="36.7021%" y="293" width="0.7092%" height="15" fill="rgb(230,116,27)" fg:x="207" fg:w="4"/><text x="36.9521%" y="303.50"></text></g><g><title>hashbrown::raw::Bucket<T>::as_ptr (4 samples, 0.71%)</title><rect x="36.7021%" y="277" width="0.7092%" height="15" fill="rgb(228,99,48)" fg:x="207" fg:w="4"/><text x="36.9521%" y="287.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::sub (4 samples, 0.71%)</title><rect x="36.7021%" y="261" width="0.7092%" height="15" fill="rgb(253,11,6)" fg:x="207" fg:w="4"/><text x="36.9521%" y="271.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::offset (3 samples, 0.53%)</title><rect x="36.8794%" y="245" width="0.5319%" height="15" fill="rgb(247,143,39)" fg:x="208" fg:w="3"/><text x="37.1294%" y="255.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::find::_{{closure}} (25 samples, 4.43%)</title><rect x="33.1560%" y="309" width="4.4326%" height="15" fill="rgb(236,97,10)" fg:x="187" fg:w="25"/><text x="33.4060%" y="319.50">hashb..</text></g><g><title>hashbrown::raw::RawTable<T,A>::bucket (1 samples, 0.18%)</title><rect x="37.4113%" y="293" width="0.1773%" height="15" fill="rgb(233,208,19)" fg:x="211" fg:w="1"/><text x="37.6613%" y="303.50"></text></g><g><title>hashbrown::raw::Bucket<T>::from_base_index (1 samples, 0.18%)</title><rect x="37.4113%" y="277" width="0.1773%" height="15" fill="rgb(216,164,2)" fg:x="211" fg:w="1"/><text x="37.6613%" y="287.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::sub (1 samples, 0.18%)</title><rect x="37.4113%" y="261" width="0.1773%" height="15" fill="rgb(220,129,5)" fg:x="211" fg:w="1"/><text x="37.6613%" y="271.50"></text></g><g><title>hashbrown::raw::h2 (5 samples, 0.89%)</title><rect x="37.5887%" y="309" width="0.8865%" height="15" fill="rgb(242,17,10)" fg:x="212" fg:w="5"/><text x="37.8387%" y="319.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (2 samples, 0.35%)</title><rect x="38.4752%" y="309" width="0.3546%" height="15" fill="rgb(242,107,0)" fg:x="217" fg:w="2"/><text x="38.7252%" y="319.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (2 samples, 0.35%)</title><rect x="38.4752%" y="293" width="0.3546%" height="15" fill="rgb(251,28,31)" fg:x="217" fg:w="2"/><text x="38.7252%" y="303.50"></text></g><g><title>core::intrinsics::copy_nonoverlapping (2 samples, 0.35%)</title><rect x="38.4752%" y="277" width="0.3546%" height="15" fill="rgb(233,223,10)" fg:x="217" fg:w="2"/><text x="38.7252%" y="287.50"></text></g><g><title>bachelorarbeit::calc::omnes (101 samples, 17.91%)</title><rect x="21.4539%" y="421" width="17.9078%" height="15" fill="rgb(215,21,27)" fg:x="121" fg:w="101"/><text x="21.7039%" y="431.50">bachelorarbeit::calc::omnes</text></g><g><title>std::collections::hash::map::HashMap<K,V,S>::get (71 samples, 12.59%)</title><rect x="26.7730%" y="405" width="12.5887%" height="15" fill="rgb(232,23,21)" fg:x="151" fg:w="71"/><text x="27.0230%" y="415.50">std::collections::h..</text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get (71 samples, 12.59%)</title><rect x="26.7730%" y="389" width="12.5887%" height="15" fill="rgb(244,5,23)" fg:x="151" fg:w="71"/><text x="27.0230%" y="399.50">hashbrown::map::Has..</text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get_inner (65 samples, 11.52%)</title><rect x="27.8369%" y="373" width="11.5248%" height="15" fill="rgb(226,81,46)" fg:x="157" fg:w="65"/><text x="28.0869%" y="383.50">hashbrown::map::H..</text></g><g><title>hashbrown::raw::RawTable<T,A>::get (61 samples, 10.82%)</title><rect x="28.5461%" y="357" width="10.8156%" height="15" fill="rgb(247,70,30)" fg:x="161" fg:w="61"/><text x="28.7961%" y="367.50">hashbrown::raw::..</text></g><g><title>hashbrown::raw::RawTable<T,A>::find (61 samples, 10.82%)</title><rect x="28.5461%" y="341" width="10.8156%" height="15" fill="rgb(212,68,19)" fg:x="161" fg:w="61"/><text x="28.7961%" y="351.50">hashbrown::raw::..</text></g><g><title>hashbrown::raw::RawTableInner::find_inner (61 samples, 10.82%)</title><rect x="28.5461%" y="325" width="10.8156%" height="15" fill="rgb(240,187,13)" fg:x="161" fg:w="61"/><text x="28.7961%" y="335.50">hashbrown::raw::..</text></g><g><title>hashbrown::raw::sse2::Group::match_byte (3 samples, 0.53%)</title><rect x="38.8298%" y="309" width="0.5319%" height="15" fill="rgb(223,113,26)" fg:x="219" fg:w="3"/><text x="39.0798%" y="319.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (3 samples, 0.53%)</title><rect x="38.8298%" y="293" width="0.5319%" height="15" fill="rgb(206,192,2)" fg:x="219" fg:w="3"/><text x="39.0798%" y="303.50"></text></g><g><title><f64 as core::ops::arith::Add>::add (4 samples, 0.71%)</title><rect x="39.3617%" y="405" width="0.7092%" height="15" fill="rgb(241,108,4)" fg:x="222" fg:w="4"/><text x="39.6117%" y="415.50"></text></g><g><title>num_complex::Complex<T>::norm_sqr (10 samples, 1.77%)</title><rect x="39.3617%" y="421" width="1.7730%" height="15" fill="rgb(247,173,49)" fg:x="222" fg:w="10"/><text x="39.6117%" y="431.50">n..</text></g><g><title><f64 as core::ops::arith::Mul>::mul (6 samples, 1.06%)</title><rect x="40.0709%" y="405" width="1.0638%" height="15" fill="rgb(224,114,35)" fg:x="226" fg:w="6"/><text x="40.3209%" y="415.50"></text></g><g><title>do_cos (6 samples, 1.06%)</title><rect x="42.5532%" y="389" width="1.0638%" height="15" fill="rgb(245,159,27)" fg:x="240" fg:w="6"/><text x="42.8032%" y="399.50"></text></g><g><title>do_sin (2 samples, 0.35%)</title><rect x="43.6170%" y="389" width="0.3546%" height="15" fill="rgb(245,172,44)" fg:x="246" fg:w="2"/><text x="43.8670%" y="399.50"></text></g><g><title>libc_feholdsetround_sse_ctx (1 samples, 0.18%)</title><rect x="43.9716%" y="389" width="0.1773%" height="15" fill="rgb(236,23,11)" fg:x="248" fg:w="1"/><text x="44.2216%" y="399.50"></text></g><g><title>std::f64::<impl f64>::cos (19 samples, 3.37%)</title><rect x="41.1348%" y="421" width="3.3688%" height="15" fill="rgb(205,117,38)" fg:x="232" fg:w="19"/><text x="41.3848%" y="431.50">std..</text></g><g><title>__cos_fma (19 samples, 3.37%)</title><rect x="41.1348%" y="405" width="3.3688%" height="15" fill="rgb(237,72,25)" fg:x="232" fg:w="19"/><text x="41.3848%" y="415.50">__c..</text></g><g><title>libc_feresetround_sse_ctx (2 samples, 0.35%)</title><rect x="44.1489%" y="389" width="0.3546%" height="15" fill="rgb(244,70,9)" fg:x="249" fg:w="2"/><text x="44.3989%" y="399.50"></text></g><g><title>__ieee754_log_fma (64 samples, 11.35%)</title><rect x="44.5035%" y="373" width="11.3475%" height="15" fill="rgb(217,125,39)" fg:x="251" fg:w="64"/><text x="44.7535%" y="383.50">__ieee754_log_fma</text></g><g><title>__log (5 samples, 0.89%)</title><rect x="55.8511%" y="373" width="0.8865%" height="15" fill="rgb(235,36,10)" fg:x="315" fg:w="5"/><text x="56.1011%" y="383.50"></text></g><g><title>std::f64::<impl f64>::ln (70 samples, 12.41%)</title><rect x="44.5035%" y="421" width="12.4113%" height="15" fill="rgb(251,123,47)" fg:x="251" fg:w="70"/><text x="44.7535%" y="431.50">std::f64::<impl f64..</text></g><g><title>std::sys::log_wrapper (70 samples, 12.41%)</title><rect x="44.5035%" y="405" width="12.4113%" height="15" fill="rgb(221,13,13)" fg:x="251" fg:w="70"/><text x="44.7535%" y="415.50">std::sys::log_wrapp..</text></g><g><title>std::f64::_<impl f64>::ln::_{{closure}} (70 samples, 12.41%)</title><rect x="44.5035%" y="389" width="12.4113%" height="15" fill="rgb(238,131,9)" fg:x="251" fg:w="70"/><text x="44.7535%" y="399.50">std::f64::_<impl f6..</text></g><g><title>__log_finite@GLIBC_2.15@plt (1 samples, 0.18%)</title><rect x="56.7376%" y="373" width="0.1773%" height="15" fill="rgb(211,50,8)" fg:x="320" fg:w="1"/><text x="56.9876%" y="383.50"></text></g><g><title>std::f64::<impl f64>::powi (3 samples, 0.53%)</title><rect x="56.9149%" y="421" width="0.5319%" height="15" fill="rgb(245,182,24)" fg:x="321" fg:w="3"/><text x="57.1649%" y="431.50"></text></g><g><title>bachelorarbeit::calc::integrate (314 samples, 55.67%)</title><rect x="6.9149%" y="469" width="55.6738%" height="15" fill="rgb(242,14,37)" fg:x="39" fg:w="314"/><text x="7.1649%" y="479.50">bachelorarbeit::calc::integrate</text></g><g><title>bachelorarbeit::calc::phi0::_{{closure}} (304 samples, 53.90%)</title><rect x="8.6879%" y="453" width="53.9007%" height="15" fill="rgb(246,228,12)" fg:x="49" fg:w="304"/><text x="8.9379%" y="463.50">bachelorarbeit::calc::phi0::_{{closure}}</text></g><g><title>bachelorarbeit::calc::phi0_integrand (304 samples, 53.90%)</title><rect x="8.6879%" y="437" width="53.9007%" height="15" fill="rgb(213,55,15)" fg:x="49" fg:w="304"/><text x="8.9379%" y="447.50">bachelorarbeit::calc::phi0_integrand</text></g><g><title>std::f64::<impl f64>::tan (29 samples, 5.14%)</title><rect x="57.4468%" y="421" width="5.1418%" height="15" fill="rgb(209,9,3)" fg:x="324" fg:w="29"/><text x="57.6968%" y="431.50">std::f..</text></g><g><title>__tan_fma (29 samples, 5.14%)</title><rect x="57.4468%" y="405" width="5.1418%" height="15" fill="rgb(230,59,30)" fg:x="324" fg:w="29"/><text x="57.6968%" y="415.50">__tan_..</text></g><g><title>libc_feholdsetround_sse_ctx (3 samples, 0.53%)</title><rect x="62.0567%" y="389" width="0.5319%" height="15" fill="rgb(209,121,21)" fg:x="350" fg:w="3"/><text x="62.3067%" y="399.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (2 samples, 0.35%)</title><rect x="64.5390%" y="325" width="0.3546%" height="15" fill="rgb(220,109,13)" fg:x="364" fg:w="2"/><text x="64.7890%" y="335.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (1 samples, 0.18%)</title><rect x="64.8936%" y="309" width="0.1773%" height="15" fill="rgb(232,18,1)" fg:x="366" fg:w="1"/><text x="65.1436%" y="319.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::lowest_set_bit (1 samples, 0.18%)</title><rect x="67.0213%" y="277" width="0.1773%" height="15" fill="rgb(215,41,42)" fg:x="378" fg:w="1"/><text x="67.2713%" y="287.50"></text></g><g><title><hashbrown::raw::bitmask::BitMaskIter as core::iter::traits::iterator::Iterator>::next (6 samples, 1.06%)</title><rect x="67.0213%" y="293" width="1.0638%" height="15" fill="rgb(224,123,36)" fg:x="378" fg:w="6"/><text x="67.2713%" y="303.50"></text></g><g><title>hashbrown::raw::bitmask::BitMask::remove_lowest_bit (5 samples, 0.89%)</title><rect x="67.1986%" y="277" width="0.8865%" height="15" fill="rgb(240,125,3)" fg:x="379" fg:w="5"/><text x="67.4486%" y="287.50"></text></g><g><title>hashbrown::map::equivalent_key::_{{closure}} (22 samples, 3.90%)</title><rect x="68.0851%" y="277" width="3.9007%" height="15" fill="rgb(205,98,50)" fg:x="384" fg:w="22"/><text x="68.3351%" y="287.50">hash..</text></g><g><title><Q as hashbrown::Equivalent<K>>::equivalent (22 samples, 3.90%)</title><rect x="68.0851%" y="261" width="3.9007%" height="15" fill="rgb(205,185,37)" fg:x="384" fg:w="22"/><text x="68.3351%" y="271.50"><Q a..</text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq<&B> for &A>::eq (22 samples, 3.90%)</title><rect x="68.0851%" y="245" width="3.9007%" height="15" fill="rgb(238,207,15)" fg:x="384" fg:w="22"/><text x="68.3351%" y="255.50">core..</text></g><g><title>core::cmp::impls::<impl core::cmp::PartialEq for u64>::eq (22 samples, 3.90%)</title><rect x="68.0851%" y="229" width="3.9007%" height="15" fill="rgb(213,199,42)" fg:x="384" fg:w="22"/><text x="68.3351%" y="239.50">core..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (4 samples, 0.71%)</title><rect x="71.9858%" y="229" width="0.7092%" height="15" fill="rgb(235,201,11)" fg:x="406" fg:w="4"/><text x="72.2358%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="213" width="0.1773%" height="15" fill="rgb(207,46,11)" fg:x="409" fg:w="1"/><text x="72.7677%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="197" width="0.1773%" height="15" fill="rgb(241,35,35)" fg:x="409" fg:w="1"/><text x="72.7677%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="181" width="0.1773%" height="15" fill="rgb(243,32,47)" fg:x="409" fg:w="1"/><text x="72.7677%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="165" width="0.1773%" height="15" fill="rgb(247,202,23)" fg:x="409" fg:w="1"/><text x="72.7677%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="149" width="0.1773%" height="15" fill="rgb(219,102,11)" fg:x="409" fg:w="1"/><text x="72.7677%" y="159.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="133" width="0.1773%" height="15" fill="rgb(243,110,44)" fg:x="409" fg:w="1"/><text x="72.7677%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="117" width="0.1773%" height="15" fill="rgb(222,74,54)" fg:x="409" fg:w="1"/><text x="72.7677%" y="127.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="101" width="0.1773%" height="15" fill="rgb(216,99,12)" fg:x="409" fg:w="1"/><text x="72.7677%" y="111.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="85" width="0.1773%" height="15" fill="rgb(226,22,26)" fg:x="409" fg:w="1"/><text x="72.7677%" y="95.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="69" width="0.1773%" height="15" fill="rgb(217,163,10)" fg:x="409" fg:w="1"/><text x="72.7677%" y="79.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="53" width="0.1773%" height="15" fill="rgb(213,25,53)" fg:x="409" fg:w="1"/><text x="72.7677%" y="63.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="72.5177%" y="37" width="0.1773%" height="15" fill="rgb(252,105,26)" fg:x="409" fg:w="1"/><text x="72.7677%" y="47.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::find::_{{closure}} (33 samples, 5.85%)</title><rect x="68.0851%" y="293" width="5.8511%" height="15" fill="rgb(220,39,43)" fg:x="384" fg:w="33"/><text x="68.3351%" y="303.50">hashbro..</text></g><g><title>hashbrown::raw::Bucket<T>::as_ref (11 samples, 1.95%)</title><rect x="71.9858%" y="277" width="1.9504%" height="15" fill="rgb(229,68,48)" fg:x="406" fg:w="11"/><text x="72.2358%" y="287.50">h..</text></g><g><title>hashbrown::raw::Bucket<T>::as_ptr (11 samples, 1.95%)</title><rect x="71.9858%" y="261" width="1.9504%" height="15" fill="rgb(252,8,32)" fg:x="406" fg:w="11"/><text x="72.2358%" y="271.50">h..</text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::sub (11 samples, 1.95%)</title><rect x="71.9858%" y="245" width="1.9504%" height="15" fill="rgb(223,20,43)" fg:x="406" fg:w="11"/><text x="72.2358%" y="255.50">c..</text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::offset (7 samples, 1.24%)</title><rect x="72.6950%" y="229" width="1.2411%" height="15" fill="rgb(229,81,49)" fg:x="410" fg:w="7"/><text x="72.9450%" y="239.50"></text></g><g><title>hashbrown::raw::h2 (7 samples, 1.24%)</title><rect x="73.9362%" y="293" width="1.2411%" height="15" fill="rgb(236,28,36)" fg:x="417" fg:w="7"/><text x="74.1862%" y="303.50"></text></g><g><title>hashbrown::raw::sse2::Group::load (10 samples, 1.77%)</title><rect x="75.1773%" y="293" width="1.7730%" height="15" fill="rgb(249,185,26)" fg:x="424" fg:w="10"/><text x="75.4273%" y="303.50">h..</text></g><g><title>core::core_arch::x86::sse2::_mm_loadu_si128 (10 samples, 1.77%)</title><rect x="75.1773%" y="277" width="1.7730%" height="15" fill="rgb(249,174,33)" fg:x="424" fg:w="10"/><text x="75.4273%" y="287.50">c..</text></g><g><title>core::intrinsics::copy_nonoverlapping (10 samples, 1.77%)</title><rect x="75.1773%" y="261" width="1.7730%" height="15" fill="rgb(233,201,37)" fg:x="424" fg:w="10"/><text x="75.4273%" y="271.50">c..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (83 samples, 14.72%)</title><rect x="63.4752%" y="405" width="14.7163%" height="15" fill="rgb(221,78,26)" fg:x="358" fg:w="83"/><text x="63.7252%" y="415.50">bachelorarbeit::calc::..</text></g><g><title>std::collections::hash::map::HashMap<K,V,S>::get (79 samples, 14.01%)</title><rect x="64.1844%" y="389" width="14.0071%" height="15" fill="rgb(250,127,30)" fg:x="362" fg:w="79"/><text x="64.4344%" y="399.50">std::collections::has..</text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get (79 samples, 14.01%)</title><rect x="64.1844%" y="373" width="14.0071%" height="15" fill="rgb(230,49,44)" fg:x="362" fg:w="79"/><text x="64.4344%" y="383.50">hashbrown::map::HashM..</text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::get_inner (79 samples, 14.01%)</title><rect x="64.1844%" y="357" width="14.0071%" height="15" fill="rgb(229,67,23)" fg:x="362" fg:w="79"/><text x="64.4344%" y="367.50">hashbrown::map::HashM..</text></g><g><title>hashbrown::raw::RawTable<T,A>::get (77 samples, 13.65%)</title><rect x="64.5390%" y="341" width="13.6525%" height="15" fill="rgb(249,83,47)" fg:x="364" fg:w="77"/><text x="64.7890%" y="351.50">hashbrown::raw::RawTa..</text></g><g><title>hashbrown::raw::RawTable<T,A>::find (75 samples, 13.30%)</title><rect x="64.8936%" y="325" width="13.2979%" height="15" fill="rgb(215,43,3)" fg:x="366" fg:w="75"/><text x="65.1436%" y="335.50">hashbrown::raw::RawT..</text></g><g><title>hashbrown::raw::RawTableInner::find_inner (74 samples, 13.12%)</title><rect x="65.0709%" y="309" width="13.1206%" height="15" fill="rgb(238,154,13)" fg:x="367" fg:w="74"/><text x="65.3209%" y="319.50">hashbrown::raw::RawT..</text></g><g><title>hashbrown::raw::sse2::Group::match_byte (7 samples, 1.24%)</title><rect x="76.9504%" y="293" width="1.2411%" height="15" fill="rgb(219,56,2)" fg:x="434" fg:w="7"/><text x="77.2004%" y="303.50"></text></g><g><title>core::core_arch::x86::sse2::_mm_movemask_epi8 (7 samples, 1.24%)</title><rect x="76.9504%" y="277" width="1.2411%" height="15" fill="rgb(233,0,4)" fg:x="434" fg:w="7"/><text x="77.2004%" y="287.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.18%)</title><rect x="78.1915%" y="405" width="0.1773%" height="15" fill="rgb(235,30,7)" fg:x="441" fg:w="1"/><text x="78.4415%" y="415.50"></text></g><g><title>num_complex::<impl core::ops::arith::Add<num_complex::Complex<f64>> for f64>::add (1 samples, 0.18%)</title><rect x="78.3688%" y="405" width="0.1773%" height="15" fill="rgb(250,79,13)" fg:x="442" fg:w="1"/><text x="78.6188%" y="415.50"></text></g><g><title>num_complex::<impl core::ops::arith::Div<num_complex::Complex<f64>> for f64>::div (9 samples, 1.60%)</title><rect x="78.5461%" y="405" width="1.5957%" height="15" fill="rgb(211,146,34)" fg:x="443" fg:w="9"/><text x="78.7961%" y="415.50"></text></g><g><title>num_complex::<impl core::ops::arith::Mul<num_complex::Complex<f64>> for f64>::mul (1 samples, 0.18%)</title><rect x="80.1418%" y="405" width="0.1773%" height="15" fill="rgb(228,22,38)" fg:x="452" fg:w="1"/><text x="80.3918%" y="415.50"></text></g><g><title>do_cos (9 samples, 1.60%)</title><rect x="81.9149%" y="373" width="1.5957%" height="15" fill="rgb(235,168,5)" fg:x="462" fg:w="9"/><text x="82.1649%" y="383.50"></text></g><g><title>do_sin (4 samples, 0.71%)</title><rect x="83.5106%" y="373" width="0.7092%" height="15" fill="rgb(221,155,16)" fg:x="471" fg:w="4"/><text x="83.7606%" y="383.50"></text></g><g><title>libc_feholdsetround_sse_ctx (2 samples, 0.35%)</title><rect x="84.2199%" y="373" width="0.3546%" height="15" fill="rgb(215,215,53)" fg:x="475" fg:w="2"/><text x="84.4699%" y="383.50"></text></g><g><title>std::f64::<impl f64>::cos (27 samples, 4.79%)</title><rect x="80.3191%" y="405" width="4.7872%" height="15" fill="rgb(223,4,10)" fg:x="453" fg:w="27"/><text x="80.5691%" y="415.50">std::f..</text></g><g><title>__cos_fma (27 samples, 4.79%)</title><rect x="80.3191%" y="389" width="4.7872%" height="15" fill="rgb(234,103,6)" fg:x="453" fg:w="27"/><text x="80.5691%" y="399.50">__cos_..</text></g><g><title>libc_feresetround_sse_ctx (3 samples, 0.53%)</title><rect x="84.5745%" y="373" width="0.5319%" height="15" fill="rgb(227,97,0)" fg:x="477" fg:w="3"/><text x="84.8245%" y="383.50"></text></g><g><title>bachelorarbeit::calc::omnes::_{{closure}} (185 samples, 32.80%)</title><rect x="62.7660%" y="437" width="32.8014%" height="15" fill="rgb(234,150,53)" fg:x="354" fg:w="185"/><text x="63.0160%" y="447.50">bachelorarbeit::calc::omnes::_{{closure}}</text></g><g><title>bachelorarbeit::calc::omnes_integrand (185 samples, 32.80%)</title><rect x="62.7660%" y="421" width="32.8014%" height="15" fill="rgb(228,201,54)" fg:x="354" fg:w="185"/><text x="63.0160%" y="431.50">bachelorarbeit::calc::omnes_integrand</text></g><g><title>std::f64::<impl f64>::tan (59 samples, 10.46%)</title><rect x="85.1064%" y="405" width="10.4610%" height="15" fill="rgb(222,22,37)" fg:x="480" fg:w="59"/><text x="85.3564%" y="415.50">std::f64::<impl..</text></g><g><title>__tan_fma (59 samples, 10.46%)</title><rect x="85.1064%" y="389" width="10.4610%" height="15" fill="rgb(237,53,32)" fg:x="480" fg:w="59"/><text x="85.3564%" y="399.50">__tan_fma</text></g><g><title>libc_feholdsetround_sse_ctx (7 samples, 1.24%)</title><rect x="94.3262%" y="373" width="1.2411%" height="15" fill="rgb(233,25,53)" fg:x="532" fg:w="7"/><text x="94.5762%" y="383.50"></text></g><g><title>num_complex::<impl core::ops::arith::Mul<num_complex::Complex<f64>> for f64>::mul (2 samples, 0.35%)</title><rect x="95.5674%" y="437" width="0.3546%" height="15" fill="rgb(210,40,34)" fg:x="539" fg:w="2"/><text x="95.8174%" y="447.50"></text></g><g><title>bachelorarbeit::calc::integrate_complex (196 samples, 34.75%)</title><rect x="62.5887%" y="453" width="34.7518%" height="15" fill="rgb(241,220,44)" fg:x="353" fg:w="196"/><text x="62.8387%" y="463.50">bachelorarbeit::calc::integrate_complex</text></g><g><title>num_complex::opassign::<impl core::ops::arith::AddAssign for num_complex::Complex<T>>::add_assign (8 samples, 1.42%)</title><rect x="95.9220%" y="437" width="1.4184%" height="15" fill="rgb(235,28,35)" fg:x="541" fg:w="8"/><text x="96.1720%" y="447.50"></text></g><g><title><f64 as core::ops::arith::AddAssign>::add_assign (8 samples, 1.42%)</title><rect x="95.9220%" y="421" width="1.4184%" height="15" fill="rgb(210,56,17)" fg:x="541" fg:w="8"/><text x="96.1720%" y="431.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.18%)</title><rect x="97.3404%" y="453" width="0.1773%" height="15" fill="rgb(224,130,29)" fg:x="549" fg:w="1"/><text x="97.5904%" y="463.50"></text></g><g><title>bachelorarbeit::calc::omnes (198 samples, 35.11%)</title><rect x="62.5887%" y="469" width="35.1064%" height="15" fill="rgb(235,212,8)" fg:x="353" fg:w="198"/><text x="62.8387%" y="479.50">bachelorarbeit::calc::omnes</text></g><g><title>std::collections::hash::map::HashMap<K,V,S>::insert (1 samples, 0.18%)</title><rect x="97.5177%" y="453" width="0.1773%" height="15" fill="rgb(223,33,50)" fg:x="550" fg:w="1"/><text x="97.7677%" y="463.50"></text></g><g><title>hashbrown::map::HashMap<K,V,S,A>::insert (1 samples, 0.18%)</title><rect x="97.5177%" y="437" width="0.1773%" height="15" fill="rgb(219,149,13)" fg:x="550" fg:w="1"/><text x="97.7677%" y="447.50"></text></g><g><title>hashbrown::raw::RawTable<T,A>::find_or_find_insert_slot (1 samples, 0.18%)</title><rect x="97.5177%" y="421" width="0.1773%" height="15" fill="rgb(250,156,29)" fg:x="550" fg:w="1"/><text x="97.7677%" y="431.50"></text></g><g><title>hashbrown::raw::RawTableInner::find_or_find_insert_slot_inner (1 samples, 0.18%)</title><rect x="97.5177%" y="405" width="0.1773%" height="15" fill="rgb(216,193,19)" fg:x="550" fg:w="1"/><text x="97.7677%" y="415.50"></text></g><g><title>hashbrown::raw::RawTableInner::fix_insert_slot (1 samples, 0.18%)</title><rect x="97.5177%" y="389" width="0.1773%" height="15" fill="rgb(216,135,14)" fg:x="550" fg:w="1"/><text x="97.7677%" y="399.50"></text></g><g><title>hashbrown::raw::RawTableInner::is_bucket_full (1 samples, 0.18%)</title><rect x="97.5177%" y="373" width="0.1773%" height="15" fill="rgb(241,47,5)" fg:x="550" fg:w="1"/><text x="97.7677%" y="383.50"></text></g><g><title>core::iter::traits::iterator::Iterator::collect (515 samples, 91.31%)</title><rect x="6.9149%" y="661" width="91.3121%" height="15" fill="rgb(233,42,35)" fg:x="39" fg:w="515"/><text x="7.1649%" y="671.50">core::iter::traits::iterator::Iterator::collect</text></g><g><title><alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter (515 samples, 91.31%)</title><rect x="6.9149%" y="645" width="91.3121%" height="15" fill="rgb(231,13,6)" fg:x="39" fg:w="515"/><text x="7.1649%" y="655.50"><alloc::vec::Vec<T> as core::iter::traits::collect::FromIterator<T>>::from_iter</text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter (515 samples, 91.31%)</title><rect x="6.9149%" y="629" width="91.3121%" height="15" fill="rgb(207,181,40)" fg:x="39" fg:w="515"/><text x="7.1649%" y="639.50"><alloc::vec::Vec<T> as alloc::vec::spec_from_iter::SpecFromIter<T,I>>::from_iter</text></g><g><title><alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter (515 samples, 91.31%)</title><rect x="6.9149%" y="613" width="91.3121%" height="15" fill="rgb(254,173,49)" fg:x="39" fg:w="515"/><text x="7.1649%" y="623.50"><alloc::vec::Vec<T> as alloc::vec::spec_from_iter_nested::SpecFromIterNested<T,I>>::from_iter</text></g><g><title><alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend (515 samples, 91.31%)</title><rect x="6.9149%" y="597" width="91.3121%" height="15" fill="rgb(221,1,38)" fg:x="39" fg:w="515"/><text x="7.1649%" y="607.50"><alloc::vec::Vec<T,A> as alloc::vec::spec_extend::SpecExtend<T,I>>::spec_extend</text></g><g><title>alloc::vec::Vec<T,A>::extend_trusted (515 samples, 91.31%)</title><rect x="6.9149%" y="581" width="91.3121%" height="15" fill="rgb(206,124,46)" fg:x="39" fg:w="515"/><text x="7.1649%" y="591.50">alloc::vec::Vec<T,A>::extend_trusted</text></g><g><title>core::iter::traits::iterator::Iterator::for_each (515 samples, 91.31%)</title><rect x="6.9149%" y="565" width="91.3121%" height="15" fill="rgb(249,21,11)" fg:x="39" fg:w="515"/><text x="7.1649%" y="575.50">core::iter::traits::iterator::Iterator::for_each</text></g><g><title><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold (515 samples, 91.31%)</title><rect x="6.9149%" y="549" width="91.3121%" height="15" fill="rgb(222,201,40)" fg:x="39" fg:w="515"/><text x="7.1649%" y="559.50"><core::iter::adapters::map::Map<I,F> as core::iter::traits::iterator::Iterator>::fold</text></g><g><title><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold (515 samples, 91.31%)</title><rect x="6.9149%" y="533" width="91.3121%" height="15" fill="rgb(235,61,29)" fg:x="39" fg:w="515"/><text x="7.1649%" y="543.50"><core::slice::iter::Iter<T> as core::iter::traits::iterator::Iterator>::fold</text></g><g><title>core::iter::adapters::map::map_fold::_{{closure}} (515 samples, 91.31%)</title><rect x="6.9149%" y="517" width="91.3121%" height="15" fill="rgb(219,207,3)" fg:x="39" fg:w="515"/><text x="7.1649%" y="527.50">core::iter::adapters::map::map_fold::_{{closure}}</text></g><g><title>bachelorarbeit::main::_{{closure}} (515 samples, 91.31%)</title><rect x="6.9149%" y="501" width="91.3121%" height="15" fill="rgb(222,56,46)" fg:x="39" fg:w="515"/><text x="7.1649%" y="511.50">bachelorarbeit::main::_{{closure}}</text></g><g><title>bachelorarbeit::calc::phi0 (515 samples, 91.31%)</title><rect x="6.9149%" y="485" width="91.3121%" height="15" fill="rgb(239,76,54)" fg:x="39" fg:w="515"/><text x="7.1649%" y="495.50">bachelorarbeit::calc::phi0</text></g><g><title>bachelorarbeit::calc::phi0 (3 samples, 0.53%)</title><rect x="97.6950%" y="469" width="0.5319%" height="15" fill="rgb(231,124,27)" fg:x="551" fg:w="3"/><text x="97.9450%" y="479.50"></text></g><g><title>__libc_start_main_impl (517 samples, 91.67%)</title><rect x="6.7376%" y="789" width="91.6667%" height="15" fill="rgb(249,195,6)" fg:x="38" fg:w="517"/><text x="6.9876%" y="799.50">__libc_start_main_impl</text></g><g><title>__libc_start_call_main (517 samples, 91.67%)</title><rect x="6.7376%" y="773" width="91.6667%" height="15" fill="rgb(237,174,47)" fg:x="38" fg:w="517"/><text x="6.9876%" y="783.50">__libc_start_call_main</text></g><g><title>std::rt::lang_start (517 samples, 91.67%)</title><rect x="6.7376%" y="757" width="91.6667%" height="15" fill="rgb(206,201,31)" fg:x="38" fg:w="517"/><text x="6.9876%" y="767.50">std::rt::lang_start</text></g><g><title>std::rt::lang_start_internal (517 samples, 91.67%)</title><rect x="6.7376%" y="741" width="91.6667%" height="15" fill="rgb(231,57,52)" fg:x="38" fg:w="517"/><text x="6.9876%" y="751.50">std::rt::lang_start_internal</text></g><g><title>std::rt::lang_start::_{{closure}} (517 samples, 91.67%)</title><rect x="6.7376%" y="725" width="91.6667%" height="15" fill="rgb(248,177,22)" fg:x="38" fg:w="517"/><text x="6.9876%" y="735.50">std::rt::lang_start::_{{closure}}</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (517 samples, 91.67%)</title><rect x="6.7376%" y="709" width="91.6667%" height="15" fill="rgb(215,211,37)" fg:x="38" fg:w="517"/><text x="6.9876%" y="719.50">std::sys_common::backtrace::__rust_begin_short_backtrace</text></g><g><title>core::ops::function::FnOnce::call_once (517 samples, 91.67%)</title><rect x="6.7376%" y="693" width="91.6667%" height="15" fill="rgb(241,128,51)" fg:x="38" fg:w="517"/><text x="6.9876%" y="703.50">core::ops::function::FnOnce::call_once</text></g><g><title>bachelorarbeit::main (517 samples, 91.67%)</title><rect x="6.7376%" y="677" width="91.6667%" height="15" fill="rgb(227,165,31)" fg:x="38" fg:w="517"/><text x="6.9876%" y="687.50">bachelorarbeit::main</text></g><g><title>core::ptr::drop_in_place<bachelorarbeit::App> (1 samples, 0.18%)</title><rect x="98.2270%" y="661" width="0.1773%" height="15" fill="rgb(228,167,24)" fg:x="554" fg:w="1"/><text x="98.4770%" y="671.50"></text></g><g><title>core::ptr::drop_in_place<bachelorarbeit::calc::Cache> (1 samples, 0.18%)</title><rect x="98.2270%" y="645" width="0.1773%" height="15" fill="rgb(228,143,12)" fg:x="554" fg:w="1"/><text x="98.4770%" y="655.50"></text></g><g><title>core::ptr::drop_in_place<std::collections::hash::map::HashMap<u32,(alloc::rc::Rc<[f64]>,alloc::rc::Rc<[f64]>),core::hash::BuildHasherDefault<nohash_hasher::NoHashHasher<u32>>>> (1 samples, 0.18%)</title><rect x="98.2270%" y="629" width="0.1773%" height="15" fill="rgb(249,149,8)" fg:x="554" fg:w="1"/><text x="98.4770%" y="639.50"></text></g><g><title>core::ptr::drop_in_place<hashbrown::map::HashMap<u32,(alloc::rc::Rc<[f64]>,alloc::rc::Rc<[f64]>),core::hash::BuildHasherDefault<nohash_hasher::NoHashHasher<u32>>>> (1 samples, 0.18%)</title><rect x="98.2270%" y="613" width="0.1773%" height="15" fill="rgb(243,35,44)" fg:x="554" fg:w="1"/><text x="98.4770%" y="623.50"></text></g><g><title>core::ptr::drop_in_place<hashbrown::raw::RawTable<(u32,(alloc::rc::Rc<[f64]>,alloc::rc::Rc<[f64]>))>> (1 samples, 0.18%)</title><rect x="98.2270%" y="597" width="0.1773%" height="15" fill="rgb(246,89,9)" fg:x="554" fg:w="1"/><text x="98.4770%" y="607.50"></text></g><g><title><hashbrown::raw::RawTable<T,A> as core::ops::drop::Drop>::drop (1 samples, 0.18%)</title><rect x="98.2270%" y="581" width="0.1773%" height="15" fill="rgb(233,213,13)" fg:x="554" fg:w="1"/><text x="98.4770%" y="591.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_inner_table (1 samples, 0.18%)</title><rect x="98.2270%" y="565" width="0.1773%" height="15" fill="rgb(233,141,41)" fg:x="554" fg:w="1"/><text x="98.4770%" y="575.50"></text></g><g><title>hashbrown::raw::RawTableInner::drop_elements (1 samples, 0.18%)</title><rect x="98.2270%" y="549" width="0.1773%" height="15" fill="rgb(239,167,4)" fg:x="554" fg:w="1"/><text x="98.4770%" y="559.50"></text></g><g><title>hashbrown::raw::Bucket<T>::drop (1 samples, 0.18%)</title><rect x="98.2270%" y="533" width="0.1773%" height="15" fill="rgb(209,217,16)" fg:x="554" fg:w="1"/><text x="98.4770%" y="543.50"></text></g><g><title>core::ptr::mut_ptr::<impl *mut T>::drop_in_place (1 samples, 0.18%)</title><rect x="98.2270%" y="517" width="0.1773%" height="15" fill="rgb(219,88,35)" fg:x="554" fg:w="1"/><text x="98.4770%" y="527.50"></text></g><g><title>core::ptr::drop_in_place<(u32,(alloc::rc::Rc<[f64]>,alloc::rc::Rc<[f64]>))> (1 samples, 0.18%)</title><rect x="98.2270%" y="501" width="0.1773%" height="15" fill="rgb(220,193,23)" fg:x="554" fg:w="1"/><text x="98.4770%" y="511.50"></text></g><g><title>core::ptr::drop_in_place<(alloc::rc::Rc<[f64]>,alloc::rc::Rc<[f64]>)> (1 samples, 0.18%)</title><rect x="98.2270%" y="485" width="0.1773%" height="15" fill="rgb(230,90,52)" fg:x="554" fg:w="1"/><text x="98.4770%" y="495.50"></text></g><g><title>core::ptr::drop_in_place<alloc::rc::Rc<[f64]>> (1 samples, 0.18%)</title><rect x="98.2270%" y="469" width="0.1773%" height="15" fill="rgb(252,106,19)" fg:x="554" fg:w="1"/><text x="98.4770%" y="479.50"></text></g><g><title><alloc::rc::Rc<T,A> as core::ops::drop::Drop>::drop (1 samples, 0.18%)</title><rect x="98.2270%" y="453" width="0.1773%" height="15" fill="rgb(206,74,20)" fg:x="554" fg:w="1"/><text x="98.4770%" y="463.50"></text></g><g><title><alloc::alloc::Global as core::alloc::Allocator>::deallocate (1 samples, 0.18%)</title><rect x="98.2270%" y="437" width="0.1773%" height="15" fill="rgb(230,138,44)" fg:x="554" fg:w="1"/><text x="98.4770%" y="447.50"></text></g><g><title>alloc::alloc::dealloc (1 samples, 0.18%)</title><rect x="98.2270%" y="421" width="0.1773%" height="15" fill="rgb(235,182,43)" fg:x="554" fg:w="1"/><text x="98.4770%" y="431.50"></text></g><g><title>__GI___libc_free (1 samples, 0.18%)</title><rect x="98.2270%" y="405" width="0.1773%" height="15" fill="rgb(242,16,51)" fg:x="554" fg:w="1"/><text x="98.4770%" y="415.50"></text></g><g><title>__GI___munmap (1 samples, 0.18%)</title><rect x="98.2270%" y="389" width="0.1773%" height="15" fill="rgb(248,9,4)" fg:x="554" fg:w="1"/><text x="98.4770%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="373" width="0.1773%" height="15" fill="rgb(210,31,22)" fg:x="554" fg:w="1"/><text x="98.4770%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="357" width="0.1773%" height="15" fill="rgb(239,54,39)" fg:x="554" fg:w="1"/><text x="98.4770%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="341" width="0.1773%" height="15" fill="rgb(230,99,41)" fg:x="554" fg:w="1"/><text x="98.4770%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="325" width="0.1773%" height="15" fill="rgb(253,106,12)" fg:x="554" fg:w="1"/><text x="98.4770%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="309" width="0.1773%" height="15" fill="rgb(213,46,41)" fg:x="554" fg:w="1"/><text x="98.4770%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="293" width="0.1773%" height="15" fill="rgb(215,133,35)" fg:x="554" fg:w="1"/><text x="98.4770%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="277" width="0.1773%" height="15" fill="rgb(213,28,5)" fg:x="554" fg:w="1"/><text x="98.4770%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.18%)</title><rect x="98.2270%" y="261" width="0.1773%" height="15" fill="rgb(215,77,49)" fg:x="554" fg:w="1"/><text x="98.4770%" y="271.50"></text></g><g><title>_start (518 samples, 91.84%)</title><rect x="6.7376%" y="805" width="91.8440%" height="15" fill="rgb(248,100,22)" fg:x="38" fg:w="518"/><text x="6.9876%" y="815.50">_start</text></g><g><title>_dl_start (1 samples, 0.18%)</title><rect x="98.4043%" y="789" width="0.1773%" height="15" fill="rgb(208,67,9)" fg:x="555" fg:w="1"/><text x="98.6543%" y="799.50"></text></g><g><title>_dl_start_final (1 samples, 0.18%)</title><rect x="98.4043%" y="773" width="0.1773%" height="15" fill="rgb(219,133,21)" fg:x="555" fg:w="1"/><text x="98.6543%" y="783.50"></text></g><g><title>_dl_sysdep_start (1 samples, 0.18%)</title><rect x="98.4043%" y="757" width="0.1773%" height="15" fill="rgb(246,46,29)" fg:x="555" fg:w="1"/><text x="98.6543%" y="767.50"></text></g><g><title>dl_main (1 samples, 0.18%)</title><rect x="98.4043%" y="741" width="0.1773%" height="15" fill="rgb(246,185,52)" fg:x="555" fg:w="1"/><text x="98.6543%" y="751.50"></text></g><g><title>_dl_map_object_deps (1 samples, 0.18%)</title><rect x="98.4043%" y="725" width="0.1773%" height="15" fill="rgb(252,136,11)" fg:x="555" fg:w="1"/><text x="98.6543%" y="735.50"></text></g><g><title>_dl_catch_exception (1 samples, 0.18%)</title><rect x="98.4043%" y="709" width="0.1773%" height="15" fill="rgb(219,138,53)" fg:x="555" fg:w="1"/><text x="98.6543%" y="719.50"></text></g><g><title>openaux (1 samples, 0.18%)</title><rect x="98.4043%" y="693" width="0.1773%" height="15" fill="rgb(211,51,23)" fg:x="555" fg:w="1"/><text x="98.6543%" y="703.50"></text></g><g><title>_dl_map_object (1 samples, 0.18%)</title><rect x="98.4043%" y="677" width="0.1773%" height="15" fill="rgb(247,221,28)" fg:x="555" fg:w="1"/><text x="98.6543%" y="687.50"></text></g><g><title>_dl_load_cache_lookup (1 samples, 0.18%)</title><rect x="98.4043%" y="661" width="0.1773%" height="15" fill="rgb(251,222,45)" fg:x="555" fg:w="1"/><text x="98.6543%" y="671.50"></text></g><g><title>search_cache (1 samples, 0.18%)</title><rect x="98.4043%" y="645" width="0.1773%" height="15" fill="rgb(217,162,53)" fg:x="555" fg:w="1"/><text x="98.6543%" y="655.50"></text></g><g><title>__cos_fma (1 samples, 0.18%)</title><rect x="98.5816%" y="789" width="0.1773%" height="15" fill="rgb(229,93,14)" fg:x="556" fg:w="1"/><text x="98.8316%" y="799.50"></text></g><g><title>bachelorarbeit (559 samples, 99.11%)</title><rect x="0.0000%" y="821" width="99.1135%" height="15" fill="rgb(209,67,49)" fg:x="0" fg:w="559"/><text x="0.2500%" y="831.50">bachelorarbeit</text></g><g><title>main_arena (3 samples, 0.53%)</title><rect x="98.5816%" y="805" width="0.5319%" height="15" fill="rgb(213,87,29)" fg:x="556" fg:w="3"/><text x="98.8316%" y="815.50"></text></g><g><title>__tan_fma (2 samples, 0.35%)</title><rect x="98.7589%" y="789" width="0.3546%" height="15" fill="rgb(205,151,52)" fg:x="557" fg:w="2"/><text x="99.0089%" y="799.50"></text></g><g><title>all (564 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(253,215,39)" fg:x="0" fg:w="564"/><text x="0.2500%" y="847.50"></text></g><g><title>perf-exec (5 samples, 0.89%)</title><rect x="99.1135%" y="821" width="0.8865%" height="15" fill="rgb(221,220,41)" fg:x="559" fg:w="5"/><text x="99.3635%" y="831.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="805" width="0.8865%" height="15" fill="rgb(218,133,21)" fg:x="559" fg:w="5"/><text x="99.3635%" y="815.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="789" width="0.8865%" height="15" fill="rgb(221,193,43)" fg:x="559" fg:w="5"/><text x="99.3635%" y="799.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="773" width="0.8865%" height="15" fill="rgb(240,128,52)" fg:x="559" fg:w="5"/><text x="99.3635%" y="783.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="757" width="0.8865%" height="15" fill="rgb(253,114,12)" fg:x="559" fg:w="5"/><text x="99.3635%" y="767.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="741" width="0.8865%" height="15" fill="rgb(215,223,47)" fg:x="559" fg:w="5"/><text x="99.3635%" y="751.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="725" width="0.8865%" height="15" fill="rgb(248,225,23)" fg:x="559" fg:w="5"/><text x="99.3635%" y="735.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="709" width="0.8865%" height="15" fill="rgb(250,108,0)" fg:x="559" fg:w="5"/><text x="99.3635%" y="719.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="693" width="0.8865%" height="15" fill="rgb(228,208,7)" fg:x="559" fg:w="5"/><text x="99.3635%" y="703.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="677" width="0.8865%" height="15" fill="rgb(244,45,10)" fg:x="559" fg:w="5"/><text x="99.3635%" y="687.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="661" width="0.8865%" height="15" fill="rgb(207,125,25)" fg:x="559" fg:w="5"/><text x="99.3635%" y="671.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="645" width="0.8865%" height="15" fill="rgb(210,195,18)" fg:x="559" fg:w="5"/><text x="99.3635%" y="655.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="629" width="0.8865%" height="15" fill="rgb(249,80,12)" fg:x="559" fg:w="5"/><text x="99.3635%" y="639.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="613" width="0.8865%" height="15" fill="rgb(221,65,9)" fg:x="559" fg:w="5"/><text x="99.3635%" y="623.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="597" width="0.8865%" height="15" fill="rgb(235,49,36)" fg:x="559" fg:w="5"/><text x="99.3635%" y="607.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="581" width="0.8865%" height="15" fill="rgb(225,32,20)" fg:x="559" fg:w="5"/><text x="99.3635%" y="591.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="565" width="0.8865%" height="15" fill="rgb(215,141,46)" fg:x="559" fg:w="5"/><text x="99.3635%" y="575.50"></text></g><g><title>[unknown] (5 samples, 0.89%)</title><rect x="99.1135%" y="549" width="0.8865%" height="15" fill="rgb(250,160,47)" fg:x="559" fg:w="5"/><text x="99.3635%" y="559.50"></text></g></svg></svg> |