491 lines
104 KiB
XML
491 lines
104 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="662" onload="init(evt)" viewBox="0 0 1200 662" 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="662" 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="645.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="645.00"> </text><svg id="frames" x="10" width="1180" total_samples="768"><g><title>[libm.so.6] (2 samples, 0.26%)</title><rect x="0.0000%" y="581" width="0.2604%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="2"/><text x="0.2500%" y="591.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (2 samples, 0.26%)</title><rect x="0.0000%" y="565" width="0.2604%" height="15" fill="rgb(217,0,24)" fg:x="0" fg:w="2"/><text x="0.2500%" y="575.50"></text></g><g><title>[unknown] (52 samples, 6.77%)</title><rect x="0.2604%" y="565" width="6.7708%" height="15" fill="rgb(221,193,54)" fg:x="2" fg:w="52"/><text x="0.5104%" y="575.50">[unknown]</text></g><g><title>[unknown] (52 samples, 6.77%)</title><rect x="0.2604%" y="549" width="6.7708%" height="15" fill="rgb(248,212,6)" fg:x="2" fg:w="52"/><text x="0.5104%" y="559.50">[unknown]</text></g><g><title>[unknown] (51 samples, 6.64%)</title><rect x="0.3906%" y="533" width="6.6406%" height="15" fill="rgb(208,68,35)" fg:x="3" fg:w="51"/><text x="0.6406%" y="543.50">[unknown]</text></g><g><title>[unknown] (49 samples, 6.38%)</title><rect x="0.6510%" y="517" width="6.3802%" height="15" fill="rgb(232,128,0)" fg:x="5" fg:w="49"/><text x="0.9010%" y="527.50">[unknown]</text></g><g><title>[unknown] (47 samples, 6.12%)</title><rect x="0.9115%" y="501" width="6.1198%" height="15" fill="rgb(207,160,47)" fg:x="7" fg:w="47"/><text x="1.1615%" y="511.50">[unknown]</text></g><g><title>[unknown] (47 samples, 6.12%)</title><rect x="0.9115%" y="485" width="6.1198%" height="15" fill="rgb(228,23,34)" fg:x="7" fg:w="47"/><text x="1.1615%" y="495.50">[unknown]</text></g><g><title>[unknown] (47 samples, 6.12%)</title><rect x="0.9115%" y="469" width="6.1198%" height="15" fill="rgb(218,30,26)" fg:x="7" fg:w="47"/><text x="1.1615%" y="479.50">[unknown]</text></g><g><title>[unknown] (47 samples, 6.12%)</title><rect x="0.9115%" y="453" width="6.1198%" height="15" fill="rgb(220,122,19)" fg:x="7" fg:w="47"/><text x="1.1615%" y="463.50">[unknown]</text></g><g><title>[unknown] (4 samples, 0.52%)</title><rect x="6.5104%" y="437" width="0.5208%" height="15" fill="rgb(250,228,42)" fg:x="50" fg:w="4"/><text x="6.7604%" y="447.50"></text></g><g><title>[unknown] (4 samples, 0.52%)</title><rect x="6.5104%" y="421" width="0.5208%" height="15" fill="rgb(240,193,28)" fg:x="50" fg:w="4"/><text x="6.7604%" y="431.50"></text></g><g><title>[unknown] (3 samples, 0.39%)</title><rect x="6.6406%" y="405" width="0.3906%" height="15" fill="rgb(216,20,37)" fg:x="51" fg:w="3"/><text x="6.8906%" y="415.50"></text></g><g><title>[unknown] (3 samples, 0.39%)</title><rect x="6.6406%" y="389" width="0.3906%" height="15" fill="rgb(206,188,39)" fg:x="51" fg:w="3"/><text x="6.8906%" y="399.50"></text></g><g><title>[unknown] (3 samples, 0.39%)</title><rect x="6.6406%" y="373" width="0.3906%" height="15" fill="rgb(217,207,13)" fg:x="51" fg:w="3"/><text x="6.8906%" y="383.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="6.7708%" y="357" width="0.2604%" height="15" fill="rgb(231,73,38)" fg:x="52" fg:w="2"/><text x="7.0208%" y="367.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="6.7708%" y="341" width="0.2604%" height="15" fill="rgb(225,20,46)" fg:x="52" fg:w="2"/><text x="7.0208%" y="351.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="6.7708%" y="325" width="0.2604%" height="15" fill="rgb(210,31,41)" fg:x="52" fg:w="2"/><text x="7.0208%" y="335.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="6.7708%" y="309" width="0.2604%" height="15" fill="rgb(221,200,47)" fg:x="52" fg:w="2"/><text x="7.0208%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="6.9010%" y="293" width="0.1302%" height="15" fill="rgb(226,26,5)" fg:x="53" fg:w="1"/><text x="7.1510%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="6.9010%" y="277" width="0.1302%" height="15" fill="rgb(249,33,26)" fg:x="53" fg:w="1"/><text x="7.1510%" y="287.50"></text></g><g><title>__cos_fma (2 samples, 0.26%)</title><rect x="7.0313%" y="565" width="0.2604%" height="15" fill="rgb(235,183,28)" fg:x="54" fg:w="2"/><text x="7.2813%" y="575.50"></text></g><g><title>__tan_fma (5 samples, 0.65%)</title><rect x="7.2917%" y="565" width="0.6510%" height="15" fill="rgb(221,5,38)" fg:x="56" fg:w="5"/><text x="7.5417%" y="575.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (6 samples, 0.78%)</title><rect x="7.9427%" y="565" width="0.7812%" height="15" fill="rgb(247,18,42)" fg:x="61" fg:w="6"/><text x="8.1927%" y="575.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.13%)</title><rect x="8.7240%" y="565" width="0.1302%" height="15" fill="rgb(241,131,45)" fg:x="67" fg:w="1"/><text x="8.9740%" y="575.50"></text></g><g><title>crossbeam_epoch::default::with_handle (1 samples, 0.13%)</title><rect x="8.8542%" y="565" width="0.1302%" height="15" fill="rgb(249,31,29)" fg:x="68" fg:w="1"/><text x="9.1042%" y="575.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (1 samples, 0.13%)</title><rect x="8.9844%" y="565" width="0.1302%" height="15" fill="rgb(225,111,53)" fg:x="69" fg:w="1"/><text x="9.2344%" y="575.50"></text></g><g><title>indicatif::draw_target::ProgressDrawTarget::width (1 samples, 0.13%)</title><rect x="9.1146%" y="565" width="0.1302%" height="15" fill="rgb(238,160,17)" fg:x="70" fg:w="1"/><text x="9.3646%" y="575.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="9.2448%" y="565" width="0.1302%" height="15" fill="rgb(214,148,48)" fg:x="71" fg:w="1"/><text x="9.4948%" y="575.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1 samples, 0.13%)</title><rect x="9.2448%" y="549" width="0.1302%" height="15" fill="rgb(232,36,49)" fg:x="71" fg:w="1"/><text x="9.4948%" y="559.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="9.2448%" y="533" width="0.1302%" height="15" fill="rgb(209,103,24)" fg:x="71" fg:w="1"/><text x="9.4948%" y="543.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1 samples, 0.13%)</title><rect x="9.2448%" y="517" width="0.1302%" height="15" fill="rgb(229,88,8)" fg:x="71" fg:w="1"/><text x="9.4948%" y="527.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="9.2448%" y="501" width="0.1302%" height="15" fill="rgb(213,181,19)" fg:x="71" fg:w="1"/><text x="9.4948%" y="511.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1 samples, 0.13%)</title><rect x="9.2448%" y="485" width="0.1302%" height="15" fill="rgb(254,191,54)" fg:x="71" fg:w="1"/><text x="9.4948%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="9.2448%" y="469" width="0.1302%" height="15" fill="rgb(241,83,37)" fg:x="71" fg:w="1"/><text x="9.4948%" y="479.50"></text></g><g><title>indicatif::state::BarState::draw (1 samples, 0.13%)</title><rect x="9.2448%" y="453" width="0.1302%" height="15" fill="rgb(233,36,39)" fg:x="71" fg:w="1"/><text x="9.4948%" y="463.50"></text></g><g><title>indicatif::style::ProgressStyle::push_line (1 samples, 0.13%)</title><rect x="9.2448%" y="437" width="0.1302%" height="15" fill="rgb(226,3,54)" fg:x="71" fg:w="1"/><text x="9.4948%" y="447.50"></text></g><g><title>indicatif::style::ProgressStyle::format_bar (1 samples, 0.13%)</title><rect x="9.2448%" y="421" width="0.1302%" height="15" fill="rgb(245,192,40)" fg:x="71" fg:w="1"/><text x="9.4948%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="421" width="0.1302%" height="15" fill="rgb(238,167,29)" fg:x="88" fg:w="1"/><text x="11.7083%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="405" width="0.1302%" height="15" fill="rgb(232,182,51)" fg:x="88" fg:w="1"/><text x="11.7083%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="389" width="0.1302%" height="15" fill="rgb(231,60,39)" fg:x="88" fg:w="1"/><text x="11.7083%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="373" width="0.1302%" height="15" fill="rgb(208,69,12)" fg:x="88" fg:w="1"/><text x="11.7083%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="357" width="0.1302%" height="15" fill="rgb(235,93,37)" fg:x="88" fg:w="1"/><text x="11.7083%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="341" width="0.1302%" height="15" fill="rgb(213,116,39)" fg:x="88" fg:w="1"/><text x="11.7083%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="325" width="0.1302%" height="15" fill="rgb(222,207,29)" fg:x="88" fg:w="1"/><text x="11.7083%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="309" width="0.1302%" height="15" fill="rgb(206,96,30)" fg:x="88" fg:w="1"/><text x="11.7083%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="293" width="0.1302%" height="15" fill="rgb(218,138,4)" fg:x="88" fg:w="1"/><text x="11.7083%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="277" width="0.1302%" height="15" fill="rgb(250,191,14)" fg:x="88" fg:w="1"/><text x="11.7083%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="261" width="0.1302%" height="15" fill="rgb(239,60,40)" fg:x="88" fg:w="1"/><text x="11.7083%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="11.4583%" y="245" width="0.1302%" height="15" fill="rgb(206,27,48)" fg:x="88" fg:w="1"/><text x="11.7083%" y="255.50"></text></g><g><title>do_cos (4 samples, 0.52%)</title><rect x="11.9792%" y="405" width="0.5208%" height="15" fill="rgb(225,35,8)" fg:x="92" fg:w="4"/><text x="12.2292%" y="415.50"></text></g><g><title>do_sin (9 samples, 1.17%)</title><rect x="12.5000%" y="405" width="1.1719%" height="15" fill="rgb(250,213,24)" fg:x="96" fg:w="9"/><text x="12.7500%" y="415.50"></text></g><g><title>libc_feholdsetround_sse_ctx (1 samples, 0.13%)</title><rect x="13.6719%" y="405" width="0.1302%" height="15" fill="rgb(247,123,22)" fg:x="105" fg:w="1"/><text x="13.9219%" y="415.50"></text></g><g><title>__cos_fma (18 samples, 2.34%)</title><rect x="11.5885%" y="421" width="2.3438%" height="15" fill="rgb(231,138,38)" fg:x="89" fg:w="18"/><text x="11.8385%" y="431.50">_..</text></g><g><title>libc_feresetround_sse_ctx (1 samples, 0.13%)</title><rect x="13.8021%" y="405" width="0.1302%" height="15" fill="rgb(231,145,46)" fg:x="106" fg:w="1"/><text x="14.0521%" y="415.50"></text></g><g><title>__tan_fma (31 samples, 4.04%)</title><rect x="13.9323%" y="421" width="4.0365%" height="15" fill="rgb(251,118,11)" fg:x="107" fg:w="31"/><text x="14.1823%" y="431.50">__ta..</text></g><g><title>libc_feholdsetround_sse_ctx (1 samples, 0.13%)</title><rect x="17.8385%" y="405" width="0.1302%" height="15" fill="rgb(217,147,25)" fg:x="137" fg:w="1"/><text x="18.0885%" y="415.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="405" width="0.2604%" height="15" fill="rgb(247,81,37)" fg:x="399" fg:w="2"/><text x="52.2031%" y="415.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="389" width="0.2604%" height="15" fill="rgb(209,12,38)" fg:x="399" fg:w="2"/><text x="52.2031%" y="399.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="373" width="0.2604%" height="15" fill="rgb(227,1,9)" fg:x="399" fg:w="2"/><text x="52.2031%" y="383.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="357" width="0.2604%" height="15" fill="rgb(248,47,43)" fg:x="399" fg:w="2"/><text x="52.2031%" y="367.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="341" width="0.2604%" height="15" fill="rgb(221,10,30)" fg:x="399" fg:w="2"/><text x="52.2031%" y="351.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="325" width="0.2604%" height="15" fill="rgb(210,229,1)" fg:x="399" fg:w="2"/><text x="52.2031%" y="335.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="309" width="0.2604%" height="15" fill="rgb(222,148,37)" fg:x="399" fg:w="2"/><text x="52.2031%" y="319.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="293" width="0.2604%" height="15" fill="rgb(234,67,33)" fg:x="399" fg:w="2"/><text x="52.2031%" y="303.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="51.9531%" y="277" width="0.2604%" height="15" fill="rgb(247,98,35)" fg:x="399" fg:w="2"/><text x="52.2031%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="261" width="0.1302%" height="15" fill="rgb(247,138,52)" fg:x="400" fg:w="1"/><text x="52.3333%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="245" width="0.1302%" height="15" fill="rgb(213,79,30)" fg:x="400" fg:w="1"/><text x="52.3333%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="229" width="0.1302%" height="15" fill="rgb(246,177,23)" fg:x="400" fg:w="1"/><text x="52.3333%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="213" width="0.1302%" height="15" fill="rgb(230,62,27)" fg:x="400" fg:w="1"/><text x="52.3333%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="197" width="0.1302%" height="15" fill="rgb(216,154,8)" fg:x="400" fg:w="1"/><text x="52.3333%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="181" width="0.1302%" height="15" fill="rgb(244,35,45)" fg:x="400" fg:w="1"/><text x="52.3333%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="165" width="0.1302%" height="15" fill="rgb(251,115,12)" fg:x="400" fg:w="1"/><text x="52.3333%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="149" width="0.1302%" height="15" fill="rgb(240,54,50)" fg:x="400" fg:w="1"/><text x="52.3333%" y="159.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="133" width="0.1302%" height="15" fill="rgb(233,84,52)" fg:x="400" fg:w="1"/><text x="52.3333%" y="143.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="117" width="0.1302%" height="15" fill="rgb(207,117,47)" fg:x="400" fg:w="1"/><text x="52.3333%" y="127.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="101" width="0.1302%" height="15" fill="rgb(249,43,39)" fg:x="400" fg:w="1"/><text x="52.3333%" y="111.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="85" width="0.1302%" height="15" fill="rgb(209,38,44)" fg:x="400" fg:w="1"/><text x="52.3333%" y="95.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="69" width="0.1302%" height="15" fill="rgb(236,212,23)" fg:x="400" fg:w="1"/><text x="52.3333%" y="79.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="53" width="0.1302%" height="15" fill="rgb(242,79,21)" fg:x="400" fg:w="1"/><text x="52.3333%" y="63.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="52.0833%" y="37" width="0.1302%" height="15" fill="rgb(211,96,35)" fg:x="400" fg:w="1"/><text x="52.3333%" y="47.50"></text></g><g><title>__GI___sched_yield (7 samples, 0.91%)</title><rect x="52.2135%" y="389" width="0.9115%" height="15" fill="rgb(253,215,40)" fg:x="401" fg:w="7"/><text x="52.4635%" y="399.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="373" width="0.9115%" height="15" fill="rgb(211,81,21)" fg:x="401" fg:w="7"/><text x="52.4635%" y="383.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="357" width="0.9115%" height="15" fill="rgb(208,190,38)" fg:x="401" fg:w="7"/><text x="52.4635%" y="367.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="341" width="0.9115%" height="15" fill="rgb(235,213,38)" fg:x="401" fg:w="7"/><text x="52.4635%" y="351.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="325" width="0.9115%" height="15" fill="rgb(237,122,38)" fg:x="401" fg:w="7"/><text x="52.4635%" y="335.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="309" width="0.9115%" height="15" fill="rgb(244,218,35)" fg:x="401" fg:w="7"/><text x="52.4635%" y="319.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="293" width="0.9115%" height="15" fill="rgb(240,68,47)" fg:x="401" fg:w="7"/><text x="52.4635%" y="303.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="277" width="0.9115%" height="15" fill="rgb(210,16,53)" fg:x="401" fg:w="7"/><text x="52.4635%" y="287.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="261" width="0.9115%" height="15" fill="rgb(235,124,12)" fg:x="401" fg:w="7"/><text x="52.4635%" y="271.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="245" width="0.9115%" height="15" fill="rgb(224,169,11)" fg:x="401" fg:w="7"/><text x="52.4635%" y="255.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="229" width="0.9115%" height="15" fill="rgb(250,166,2)" fg:x="401" fg:w="7"/><text x="52.4635%" y="239.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="213" width="0.9115%" height="15" fill="rgb(242,216,29)" fg:x="401" fg:w="7"/><text x="52.4635%" y="223.50"></text></g><g><title>[unknown] (7 samples, 0.91%)</title><rect x="52.2135%" y="197" width="0.9115%" height="15" fill="rgb(230,116,27)" fg:x="401" fg:w="7"/><text x="52.4635%" y="207.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="52.3438%" y="181" width="0.7812%" height="15" fill="rgb(228,99,48)" fg:x="402" fg:w="6"/><text x="52.5938%" y="191.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_exclusive_slow (8 samples, 1.04%)</title><rect x="52.2135%" y="405" width="1.0417%" height="15" fill="rgb(253,11,6)" fg:x="401" fg:w="8"/><text x="52.4635%" y="415.50"></text></g><g><title>syscall (1 samples, 0.13%)</title><rect x="53.1250%" y="389" width="0.1302%" height="15" fill="rgb(247,143,39)" fg:x="408" fg:w="1"/><text x="53.3750%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="373" width="0.1302%" height="15" fill="rgb(236,97,10)" fg:x="408" fg:w="1"/><text x="53.3750%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="357" width="0.1302%" height="15" fill="rgb(233,208,19)" fg:x="408" fg:w="1"/><text x="53.3750%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="341" width="0.1302%" height="15" fill="rgb(216,164,2)" fg:x="408" fg:w="1"/><text x="53.3750%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="325" width="0.1302%" height="15" fill="rgb(220,129,5)" fg:x="408" fg:w="1"/><text x="53.3750%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="309" width="0.1302%" height="15" fill="rgb(242,17,10)" fg:x="408" fg:w="1"/><text x="53.3750%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="293" width="0.1302%" height="15" fill="rgb(242,107,0)" fg:x="408" fg:w="1"/><text x="53.3750%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="277" width="0.1302%" height="15" fill="rgb(251,28,31)" fg:x="408" fg:w="1"/><text x="53.3750%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="53.1250%" y="261" width="0.1302%" height="15" fill="rgb(233,223,10)" fg:x="408" fg:w="1"/><text x="53.3750%" y="271.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (155 samples, 20.18%)</title><rect x="53.2552%" y="405" width="20.1823%" height="15" fill="rgb(215,21,27)" fg:x="409" fg:w="155"/><text x="53.5052%" y="415.50">dashmap::lock::RawRwLock::lock_s..</text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="73.1771%" y="389" width="0.2604%" height="15" fill="rgb(232,23,21)" fg:x="562" fg:w="2"/><text x="73.4271%" y="399.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="73.1771%" y="373" width="0.2604%" height="15" fill="rgb(244,5,23)" fg:x="562" fg:w="2"/><text x="73.4271%" y="383.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="73.1771%" y="357" width="0.2604%" height="15" fill="rgb(226,81,46)" fg:x="562" fg:w="2"/><text x="73.4271%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="341" width="0.1302%" height="15" fill="rgb(247,70,30)" fg:x="563" fg:w="1"/><text x="73.5573%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="325" width="0.1302%" height="15" fill="rgb(212,68,19)" fg:x="563" fg:w="1"/><text x="73.5573%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="309" width="0.1302%" height="15" fill="rgb(240,187,13)" fg:x="563" fg:w="1"/><text x="73.5573%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="293" width="0.1302%" height="15" fill="rgb(223,113,26)" fg:x="563" fg:w="1"/><text x="73.5573%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="277" width="0.1302%" height="15" fill="rgb(206,192,2)" fg:x="563" fg:w="1"/><text x="73.5573%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.3073%" y="261" width="0.1302%" height="15" fill="rgb(241,108,4)" fg:x="563" fg:w="1"/><text x="73.5573%" y="271.50"></text></g><g><title>bachelorarbeit::calc::omnes (492 samples, 64.06%)</title><rect x="9.5052%" y="437" width="64.0625%" height="15" fill="rgb(247,173,49)" fg:x="73" fg:w="492"/><text x="9.7552%" y="447.50">bachelorarbeit::calc::omnes</text></g><g><title>bachelorarbeit::calc::delta_with_lut (427 samples, 55.60%)</title><rect x="17.9688%" y="421" width="55.5990%" height="15" fill="rgb(224,114,35)" fg:x="138" fg:w="427"/><text x="18.2188%" y="431.50">bachelorarbeit::calc::delta_with_lut</text></g><g><title>hashbrown::raw::inner::RawTable<T,A>::reserve_rehash (1 samples, 0.13%)</title><rect x="73.4375%" y="405" width="0.1302%" height="15" fill="rgb(245,159,27)" fg:x="564" fg:w="1"/><text x="73.6875%" y="415.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.13%)</title><rect x="73.4375%" y="389" width="0.1302%" height="15" fill="rgb(245,172,44)" fg:x="564" fg:w="1"/><text x="73.6875%" y="399.50"></text></g><g><title>_int_malloc (1 samples, 0.13%)</title><rect x="73.4375%" y="373" width="0.1302%" height="15" fill="rgb(236,23,11)" fg:x="564" fg:w="1"/><text x="73.6875%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="357" width="0.1302%" height="15" fill="rgb(205,117,38)" fg:x="564" fg:w="1"/><text x="73.6875%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="341" width="0.1302%" height="15" fill="rgb(237,72,25)" fg:x="564" fg:w="1"/><text x="73.6875%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="325" width="0.1302%" height="15" fill="rgb(244,70,9)" fg:x="564" fg:w="1"/><text x="73.6875%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="309" width="0.1302%" height="15" fill="rgb(217,125,39)" fg:x="564" fg:w="1"/><text x="73.6875%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="293" width="0.1302%" height="15" fill="rgb(235,36,10)" fg:x="564" fg:w="1"/><text x="73.6875%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.4375%" y="277" width="0.1302%" height="15" fill="rgb(251,123,47)" fg:x="564" fg:w="1"/><text x="73.6875%" y="287.50"></text></g><g><title>indicatif::state::BarState::draw (1 samples, 0.13%)</title><rect x="73.5677%" y="437" width="0.1302%" height="15" fill="rgb(221,13,13)" fg:x="565" fg:w="1"/><text x="73.8177%" y="447.50"></text></g><g><title>indicatif::draw_target::ProgressDrawTarget::width (1 samples, 0.13%)</title><rect x="73.5677%" y="421" width="0.1302%" height="15" fill="rgb(238,131,9)" fg:x="565" fg:w="1"/><text x="73.8177%" y="431.50"></text></g><g><title>__isatty (1 samples, 0.13%)</title><rect x="73.5677%" y="405" width="0.1302%" height="15" fill="rgb(211,50,8)" fg:x="565" fg:w="1"/><text x="73.8177%" y="415.50"></text></g><g><title>__GI___tcgetattr (1 samples, 0.13%)</title><rect x="73.5677%" y="389" width="0.1302%" height="15" fill="rgb(245,182,24)" fg:x="565" fg:w="1"/><text x="73.8177%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="373" width="0.1302%" height="15" fill="rgb(242,14,37)" fg:x="565" fg:w="1"/><text x="73.8177%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="357" width="0.1302%" height="15" fill="rgb(246,228,12)" fg:x="565" fg:w="1"/><text x="73.8177%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="341" width="0.1302%" height="15" fill="rgb(213,55,15)" fg:x="565" fg:w="1"/><text x="73.8177%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="325" width="0.1302%" height="15" fill="rgb(209,9,3)" fg:x="565" fg:w="1"/><text x="73.8177%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="309" width="0.1302%" height="15" fill="rgb(230,59,30)" fg:x="565" fg:w="1"/><text x="73.8177%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="293" width="0.1302%" height="15" fill="rgb(209,121,21)" fg:x="565" fg:w="1"/><text x="73.8177%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="277" width="0.1302%" height="15" fill="rgb(220,109,13)" fg:x="565" fg:w="1"/><text x="73.8177%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="261" width="0.1302%" height="15" fill="rgb(232,18,1)" fg:x="565" fg:w="1"/><text x="73.8177%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="245" width="0.1302%" height="15" fill="rgb(215,41,42)" fg:x="565" fg:w="1"/><text x="73.8177%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="73.5677%" y="229" width="0.1302%" height="15" fill="rgb(224,123,36)" fg:x="565" fg:w="1"/><text x="73.8177%" y="239.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (500 samples, 65.10%)</title><rect x="9.3750%" y="485" width="65.1042%" height="15" fill="rgb(240,125,3)" fg:x="72" fg:w="500"/><text x="9.6250%" y="495.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context::_{{closure}} (500 samples, 65.10%)</title><rect x="9.3750%" y="469" width="65.1042%" height="15" fill="rgb(205,98,50)" fg:x="72" fg:w="500"/><text x="9.6250%" y="479.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (500 samples, 65.10%)</title><rect x="9.3750%" y="453" width="65.1042%" height="15" fill="rgb(205,185,37)" fg:x="72" fg:w="500"/><text x="9.6250%" y="463.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>std::sys::unix::locks::futex_mutex::Mutex::lock_contended (6 samples, 0.78%)</title><rect x="73.6979%" y="437" width="0.7812%" height="15" fill="rgb(238,207,15)" fg:x="566" fg:w="6"/><text x="73.9479%" y="447.50"></text></g><g><title>syscall (6 samples, 0.78%)</title><rect x="73.6979%" y="421" width="0.7812%" height="15" fill="rgb(213,199,42)" fg:x="566" fg:w="6"/><text x="73.9479%" y="431.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="405" width="0.7812%" height="15" fill="rgb(235,201,11)" fg:x="566" fg:w="6"/><text x="73.9479%" y="415.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="389" width="0.7812%" height="15" fill="rgb(207,46,11)" fg:x="566" fg:w="6"/><text x="73.9479%" y="399.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="373" width="0.7812%" height="15" fill="rgb(241,35,35)" fg:x="566" fg:w="6"/><text x="73.9479%" y="383.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="357" width="0.7812%" height="15" fill="rgb(243,32,47)" fg:x="566" fg:w="6"/><text x="73.9479%" y="367.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="341" width="0.7812%" height="15" fill="rgb(247,202,23)" fg:x="566" fg:w="6"/><text x="73.9479%" y="351.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="325" width="0.7812%" height="15" fill="rgb(219,102,11)" fg:x="566" fg:w="6"/><text x="73.9479%" y="335.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="309" width="0.7812%" height="15" fill="rgb(243,110,44)" fg:x="566" fg:w="6"/><text x="73.9479%" y="319.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="293" width="0.7812%" height="15" fill="rgb(222,74,54)" fg:x="566" fg:w="6"/><text x="73.9479%" y="303.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="277" width="0.7812%" height="15" fill="rgb(216,99,12)" fg:x="566" fg:w="6"/><text x="73.9479%" y="287.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="261" width="0.7812%" height="15" fill="rgb(226,22,26)" fg:x="566" fg:w="6"/><text x="73.9479%" y="271.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="73.6979%" y="245" width="0.7812%" height="15" fill="rgb(217,163,10)" fg:x="566" fg:w="6"/><text x="73.9479%" y="255.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="73.8281%" y="229" width="0.6510%" height="15" fill="rgb(213,25,53)" fg:x="567" fg:w="5"/><text x="74.0781%" y="239.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="73.8281%" y="213" width="0.6510%" height="15" fill="rgb(252,105,26)" fg:x="567" fg:w="5"/><text x="74.0781%" y="223.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="73.8281%" y="197" width="0.6510%" height="15" fill="rgb(220,39,43)" fg:x="567" fg:w="5"/><text x="74.0781%" y="207.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="73.8281%" y="181" width="0.6510%" height="15" fill="rgb(229,68,48)" fg:x="567" fg:w="5"/><text x="74.0781%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (504 samples, 65.62%)</title><rect x="9.3750%" y="517" width="65.6250%" height="15" fill="rgb(252,8,32)" fg:x="72" fg:w="504"/><text x="9.6250%" y="527.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context::_{{closure}} (504 samples, 65.62%)</title><rect x="9.3750%" y="501" width="65.6250%" height="15" fill="rgb(223,20,43)" fg:x="72" fg:w="504"/><text x="9.6250%" y="511.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (4 samples, 0.52%)</title><rect x="74.4792%" y="485" width="0.5208%" height="15" fill="rgb(229,81,49)" fg:x="572" fg:w="4"/><text x="74.7292%" y="495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (4 samples, 0.52%)</title><rect x="74.4792%" y="469" width="0.5208%" height="15" fill="rgb(236,28,36)" fg:x="572" fg:w="4"/><text x="74.7292%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (4 samples, 0.52%)</title><rect x="74.4792%" y="453" width="0.5208%" height="15" fill="rgb(249,185,26)" fg:x="572" fg:w="4"/><text x="74.7292%" y="463.50"></text></g><g><title>bachelorarbeit::calc::omnes (4 samples, 0.52%)</title><rect x="74.4792%" y="437" width="0.5208%" height="15" fill="rgb(249,174,33)" fg:x="572" fg:w="4"/><text x="74.7292%" y="447.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (4 samples, 0.52%)</title><rect x="74.4792%" y="421" width="0.5208%" height="15" fill="rgb(233,201,37)" fg:x="572" fg:w="4"/><text x="74.7292%" y="431.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (1 samples, 0.13%)</title><rect x="74.8698%" y="405" width="0.1302%" height="15" fill="rgb(221,78,26)" fg:x="575" fg:w="1"/><text x="75.1198%" y="415.50"></text></g><g><title>__tan_fma (1 samples, 0.13%)</title><rect x="75.1302%" y="421" width="0.1302%" height="15" fill="rgb(250,127,30)" fg:x="577" fg:w="1"/><text x="75.3802%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (519 samples, 67.58%)</title><rect x="9.3750%" y="549" width="67.5781%" height="15" fill="rgb(230,49,44)" fg:x="72" fg:w="519"/><text x="9.6250%" y="559.50">rayon::iter::plumbing::bridge_producer_consumer::helper</text></g><g><title>rayon_core::join::join_context::_{{closure}} (519 samples, 67.58%)</title><rect x="9.3750%" y="533" width="67.5781%" height="15" fill="rgb(229,67,23)" fg:x="72" fg:w="519"/><text x="9.6250%" y="543.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 1.95%)</title><rect x="75.0000%" y="517" width="1.9531%" height="15" fill="rgb(249,83,47)" fg:x="576" fg:w="15"/><text x="75.2500%" y="527.50">r..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (15 samples, 1.95%)</title><rect x="75.0000%" y="501" width="1.9531%" height="15" fill="rgb(215,43,3)" fg:x="576" fg:w="15"/><text x="75.2500%" y="511.50"><..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 1.95%)</title><rect x="75.0000%" y="485" width="1.9531%" height="15" fill="rgb(238,154,13)" fg:x="576" fg:w="15"/><text x="75.2500%" y="495.50">r..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (15 samples, 1.95%)</title><rect x="75.0000%" y="469" width="1.9531%" height="15" fill="rgb(219,56,2)" fg:x="576" fg:w="15"/><text x="75.2500%" y="479.50">r..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (15 samples, 1.95%)</title><rect x="75.0000%" y="453" width="1.9531%" height="15" fill="rgb(233,0,4)" fg:x="576" fg:w="15"/><text x="75.2500%" y="463.50">r..</text></g><g><title>bachelorarbeit::calc::omnes (15 samples, 1.95%)</title><rect x="75.0000%" y="437" width="1.9531%" height="15" fill="rgb(235,30,7)" fg:x="576" fg:w="15"/><text x="75.2500%" y="447.50">b..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (13 samples, 1.69%)</title><rect x="75.2604%" y="421" width="1.6927%" height="15" fill="rgb(250,79,13)" fg:x="578" fg:w="13"/><text x="75.5104%" y="431.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (9 samples, 1.17%)</title><rect x="75.7812%" y="405" width="1.1719%" height="15" fill="rgb(211,146,34)" fg:x="582" fg:w="9"/><text x="76.0312%" y="415.50"></text></g><g><title>__cos_fma (1 samples, 0.13%)</title><rect x="77.4740%" y="421" width="0.1302%" height="15" fill="rgb(228,22,38)" fg:x="595" fg:w="1"/><text x="77.7240%" y="431.50"></text></g><g><title>do_sin (1 samples, 0.13%)</title><rect x="77.4740%" y="405" width="0.1302%" height="15" fill="rgb(235,168,5)" fg:x="595" fg:w="1"/><text x="77.7240%" y="415.50"></text></g><g><title>__tan_fma (1 samples, 0.13%)</title><rect x="77.6042%" y="421" width="0.1302%" height="15" fill="rgb(221,155,16)" fg:x="596" fg:w="1"/><text x="77.8542%" y="431.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 6.25%)</title><rect x="76.9531%" y="485" width="6.2500%" height="15" fill="rgb(215,215,53)" fg:x="591" fg:w="48"/><text x="77.2031%" y="495.50">rayon::i..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (48 samples, 6.25%)</title><rect x="76.9531%" y="469" width="6.2500%" height="15" fill="rgb(223,4,10)" fg:x="591" fg:w="48"/><text x="77.2031%" y="479.50">rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (48 samples, 6.25%)</title><rect x="76.9531%" y="453" width="6.2500%" height="15" fill="rgb(234,103,6)" fg:x="591" fg:w="48"/><text x="77.2031%" y="463.50">rayon::i..</text></g><g><title>bachelorarbeit::calc::omnes (48 samples, 6.25%)</title><rect x="76.9531%" y="437" width="6.2500%" height="15" fill="rgb(227,97,0)" fg:x="591" fg:w="48"/><text x="77.2031%" y="447.50">bachelor..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (42 samples, 5.47%)</title><rect x="77.7344%" y="421" width="5.4688%" height="15" fill="rgb(234,150,53)" fg:x="597" fg:w="42"/><text x="77.9844%" y="431.50">bachelo..</text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (29 samples, 3.78%)</title><rect x="79.4271%" y="405" width="3.7760%" height="15" fill="rgb(228,201,54)" fg:x="610" fg:w="29"/><text x="79.6771%" y="415.50">dash..</text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="389" width="0.1302%" height="15" fill="rgb(222,22,37)" fg:x="638" fg:w="1"/><text x="83.3229%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="373" width="0.1302%" height="15" fill="rgb(237,53,32)" fg:x="638" fg:w="1"/><text x="83.3229%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="357" width="0.1302%" height="15" fill="rgb(233,25,53)" fg:x="638" fg:w="1"/><text x="83.3229%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="341" width="0.1302%" height="15" fill="rgb(210,40,34)" fg:x="638" fg:w="1"/><text x="83.3229%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="325" width="0.1302%" height="15" fill="rgb(241,220,44)" fg:x="638" fg:w="1"/><text x="83.3229%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="83.0729%" y="309" width="0.1302%" height="15" fill="rgb(235,28,35)" fg:x="638" fg:w="1"/><text x="83.3229%" y="319.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (570 samples, 74.22%)</title><rect x="9.3750%" y="565" width="74.2188%" height="15" fill="rgb(210,56,17)" fg:x="72" fg:w="570"/><text x="9.6250%" y="575.50">rayon_core::join::join_context::_{{closure}}</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (51 samples, 6.64%)</title><rect x="76.9531%" y="549" width="6.6406%" height="15" fill="rgb(224,130,29)" fg:x="591" fg:w="51"/><text x="77.2031%" y="559.50">rayon_cor..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (51 samples, 6.64%)</title><rect x="76.9531%" y="533" width="6.6406%" height="15" fill="rgb(235,212,8)" fg:x="591" fg:w="51"/><text x="77.2031%" y="543.50"><rayon_co..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (51 samples, 6.64%)</title><rect x="76.9531%" y="517" width="6.6406%" height="15" fill="rgb(223,33,50)" fg:x="591" fg:w="51"/><text x="77.2031%" y="527.50">rayon::it..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (51 samples, 6.64%)</title><rect x="76.9531%" y="501" width="6.6406%" height="15" fill="rgb(219,149,13)" fg:x="591" fg:w="51"/><text x="77.2031%" y="511.50">rayon_cor..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (3 samples, 0.39%)</title><rect x="83.2031%" y="485" width="0.3906%" height="15" fill="rgb(250,156,29)" fg:x="639" fg:w="3"/><text x="83.4531%" y="495.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (3 samples, 0.39%)</title><rect x="83.2031%" y="469" width="0.3906%" height="15" fill="rgb(216,193,19)" fg:x="639" fg:w="3"/><text x="83.4531%" y="479.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (3 samples, 0.39%)</title><rect x="83.2031%" y="453" width="0.3906%" height="15" fill="rgb(216,135,14)" fg:x="639" fg:w="3"/><text x="83.4531%" y="463.50"></text></g><g><title>bachelorarbeit::calc::omnes (3 samples, 0.39%)</title><rect x="83.2031%" y="437" width="0.3906%" height="15" fill="rgb(241,47,5)" fg:x="639" fg:w="3"/><text x="83.4531%" y="447.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (3 samples, 0.39%)</title><rect x="83.2031%" y="421" width="0.3906%" height="15" fill="rgb(233,42,35)" fg:x="639" fg:w="3"/><text x="83.4531%" y="431.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (1 samples, 0.13%)</title><rect x="83.4635%" y="405" width="0.1302%" height="15" fill="rgb(231,13,6)" fg:x="641" fg:w="1"/><text x="83.7135%" y="415.50"></text></g><g><title>__cos_fma (2 samples, 0.26%)</title><rect x="83.9844%" y="405" width="0.2604%" height="15" fill="rgb(207,181,40)" fg:x="645" fg:w="2"/><text x="84.2344%" y="415.50"></text></g><g><title>do_sin (1 samples, 0.13%)</title><rect x="84.1146%" y="389" width="0.1302%" height="15" fill="rgb(254,173,49)" fg:x="646" fg:w="1"/><text x="84.3646%" y="399.50"></text></g><g><title>__tan_fma (5 samples, 0.65%)</title><rect x="84.2448%" y="405" width="0.6510%" height="15" fill="rgb(221,1,38)" fg:x="647" fg:w="5"/><text x="84.4948%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="389" width="0.1302%" height="15" fill="rgb(206,124,46)" fg:x="651" fg:w="1"/><text x="85.0156%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="373" width="0.1302%" height="15" fill="rgb(249,21,11)" fg:x="651" fg:w="1"/><text x="85.0156%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="357" width="0.1302%" height="15" fill="rgb(222,201,40)" fg:x="651" fg:w="1"/><text x="85.0156%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="341" width="0.1302%" height="15" fill="rgb(235,61,29)" fg:x="651" fg:w="1"/><text x="85.0156%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="325" width="0.1302%" height="15" fill="rgb(219,207,3)" fg:x="651" fg:w="1"/><text x="85.0156%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="309" width="0.1302%" height="15" fill="rgb(222,56,46)" fg:x="651" fg:w="1"/><text x="85.0156%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="293" width="0.1302%" height="15" fill="rgb(239,76,54)" fg:x="651" fg:w="1"/><text x="85.0156%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="277" width="0.1302%" height="15" fill="rgb(231,124,27)" fg:x="651" fg:w="1"/><text x="85.0156%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="261" width="0.1302%" height="15" fill="rgb(249,195,6)" fg:x="651" fg:w="1"/><text x="85.0156%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="245" width="0.1302%" height="15" fill="rgb(237,174,47)" fg:x="651" fg:w="1"/><text x="85.0156%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="229" width="0.1302%" height="15" fill="rgb(206,201,31)" fg:x="651" fg:w="1"/><text x="85.0156%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="213" width="0.1302%" height="15" fill="rgb(231,57,52)" fg:x="651" fg:w="1"/><text x="85.0156%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="197" width="0.1302%" height="15" fill="rgb(248,177,22)" fg:x="651" fg:w="1"/><text x="85.0156%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="84.7656%" y="181" width="0.1302%" height="15" fill="rgb(215,211,37)" fg:x="651" fg:w="1"/><text x="85.0156%" y="191.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (65 samples, 8.46%)</title><rect x="83.5938%" y="469" width="8.4635%" height="15" fill="rgb(241,128,51)" fg:x="642" fg:w="65"/><text x="83.8438%" y="479.50">rayon::iter:..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (65 samples, 8.46%)</title><rect x="83.5938%" y="453" width="8.4635%" height="15" fill="rgb(227,165,31)" fg:x="642" fg:w="65"/><text x="83.8438%" y="463.50">rayon_core::..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (64 samples, 8.33%)</title><rect x="83.7240%" y="437" width="8.3333%" height="15" fill="rgb(228,167,24)" fg:x="643" fg:w="64"/><text x="83.9740%" y="447.50">rayon::iter:..</text></g><g><title>bachelorarbeit::calc::omnes (64 samples, 8.33%)</title><rect x="83.7240%" y="421" width="8.3333%" height="15" fill="rgb(228,143,12)" fg:x="643" fg:w="64"/><text x="83.9740%" y="431.50">bachelorarbe..</text></g><g><title>bachelorarbeit::calc::delta_with_lut (55 samples, 7.16%)</title><rect x="84.8958%" y="405" width="7.1615%" height="15" fill="rgb(249,149,8)" fg:x="652" fg:w="55"/><text x="85.1458%" y="415.50">bachelorar..</text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (29 samples, 3.78%)</title><rect x="88.2812%" y="389" width="3.7760%" height="15" fill="rgb(243,35,44)" fg:x="678" fg:w="29"/><text x="88.5312%" y="399.50">dash..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (66 samples, 8.59%)</title><rect x="83.5938%" y="501" width="8.5938%" height="15" fill="rgb(246,89,9)" fg:x="642" fg:w="66"/><text x="83.8438%" y="511.50">rayon::iter:..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (66 samples, 8.59%)</title><rect x="83.5938%" y="485" width="8.5938%" height="15" fill="rgb(233,213,13)" fg:x="642" fg:w="66"/><text x="83.8438%" y="495.50">rayon_core::..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (1 samples, 0.13%)</title><rect x="92.0573%" y="469" width="0.1302%" height="15" fill="rgb(233,141,41)" fg:x="707" fg:w="1"/><text x="92.3073%" y="479.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (1 samples, 0.13%)</title><rect x="92.0573%" y="453" width="0.1302%" height="15" fill="rgb(239,167,4)" fg:x="707" fg:w="1"/><text x="92.3073%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="92.0573%" y="437" width="0.1302%" height="15" fill="rgb(209,217,16)" fg:x="707" fg:w="1"/><text x="92.3073%" y="447.50"></text></g><g><title>bachelorarbeit::calc::omnes (1 samples, 0.13%)</title><rect x="92.0573%" y="421" width="0.1302%" height="15" fill="rgb(219,88,35)" fg:x="707" fg:w="1"/><text x="92.3073%" y="431.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (1 samples, 0.13%)</title><rect x="92.0573%" y="405" width="0.1302%" height="15" fill="rgb(220,193,23)" fg:x="707" fg:w="1"/><text x="92.3073%" y="415.50"></text></g><g><title>[unknown] (718 samples, 93.49%)</title><rect x="0.2604%" y="581" width="93.4896%" height="15" fill="rgb(230,90,52)" fg:x="2" fg:w="718"/><text x="0.5104%" y="591.50">[unknown]</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (78 samples, 10.16%)</title><rect x="83.5938%" y="565" width="10.1562%" height="15" fill="rgb(252,106,19)" fg:x="642" fg:w="78"/><text x="83.8438%" y="575.50">rayon_core::reg..</text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (78 samples, 10.16%)</title><rect x="83.5938%" y="549" width="10.1562%" height="15" fill="rgb(206,74,20)" fg:x="642" fg:w="78"/><text x="83.8438%" y="559.50"><rayon_core::jo..</text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (78 samples, 10.16%)</title><rect x="83.5938%" y="533" width="10.1562%" height="15" fill="rgb(230,138,44)" fg:x="642" fg:w="78"/><text x="83.8438%" y="543.50">rayon::iter::pl..</text></g><g><title>rayon_core::join::join_context::_{{closure}} (78 samples, 10.16%)</title><rect x="83.5938%" y="517" width="10.1562%" height="15" fill="rgb(235,182,43)" fg:x="642" fg:w="78"/><text x="83.8438%" y="527.50">rayon_core::joi..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (12 samples, 1.56%)</title><rect x="92.1875%" y="501" width="1.5625%" height="15" fill="rgb(242,16,51)" fg:x="708" fg:w="12"/><text x="92.4375%" y="511.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (12 samples, 1.56%)</title><rect x="92.1875%" y="485" width="1.5625%" height="15" fill="rgb(248,9,4)" fg:x="708" fg:w="12"/><text x="92.4375%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 1.56%)</title><rect x="92.1875%" y="469" width="1.5625%" height="15" fill="rgb(210,31,22)" fg:x="708" fg:w="12"/><text x="92.4375%" y="479.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (12 samples, 1.56%)</title><rect x="92.1875%" y="453" width="1.5625%" height="15" fill="rgb(239,54,39)" fg:x="708" fg:w="12"/><text x="92.4375%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (12 samples, 1.56%)</title><rect x="92.1875%" y="437" width="1.5625%" height="15" fill="rgb(230,99,41)" fg:x="708" fg:w="12"/><text x="92.4375%" y="447.50"></text></g><g><title>bachelorarbeit::calc::omnes (12 samples, 1.56%)</title><rect x="92.1875%" y="421" width="1.5625%" height="15" fill="rgb(253,106,12)" fg:x="708" fg:w="12"/><text x="92.4375%" y="431.50"></text></g><g><title>bachelorarbeit::calc::delta_with_lut (12 samples, 1.56%)</title><rect x="92.1875%" y="405" width="1.5625%" height="15" fill="rgb(213,46,41)" fg:x="708" fg:w="12"/><text x="92.4375%" y="415.50"></text></g><g><title>dashmap::lock::RawRwLock::lock_shared_slow (9 samples, 1.17%)</title><rect x="92.5781%" y="389" width="1.1719%" height="15" fill="rgb(215,133,35)" fg:x="711" fg:w="9"/><text x="92.8281%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="565" width="0.1302%" height="15" fill="rgb(213,28,5)" fg:x="720" fg:w="1"/><text x="94.0000%" y="575.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="549" width="0.1302%" height="15" fill="rgb(215,77,49)" fg:x="720" fg:w="1"/><text x="94.0000%" y="559.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="533" width="0.1302%" height="15" fill="rgb(248,100,22)" fg:x="720" fg:w="1"/><text x="94.0000%" y="543.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="517" width="0.1302%" height="15" fill="rgb(208,67,9)" fg:x="720" fg:w="1"/><text x="94.0000%" y="527.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="501" width="0.1302%" height="15" fill="rgb(219,133,21)" fg:x="720" fg:w="1"/><text x="94.0000%" y="511.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="485" width="0.1302%" height="15" fill="rgb(246,46,29)" fg:x="720" fg:w="1"/><text x="94.0000%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.7500%" y="469" width="0.1302%" height="15" fill="rgb(246,185,52)" fg:x="720" fg:w="1"/><text x="94.0000%" y="479.50"></text></g><g><title>__pthread_getattr_np (1 samples, 0.13%)</title><rect x="93.8802%" y="517" width="0.1302%" height="15" fill="rgb(252,136,11)" fg:x="721" fg:w="1"/><text x="94.1302%" y="527.50"></text></g><g><title>__GI___libc_malloc (1 samples, 0.13%)</title><rect x="93.8802%" y="501" width="0.1302%" height="15" fill="rgb(219,138,53)" fg:x="721" fg:w="1"/><text x="94.1302%" y="511.50"></text></g><g><title>tcache_init (1 samples, 0.13%)</title><rect x="93.8802%" y="485" width="0.1302%" height="15" fill="rgb(211,51,23)" fg:x="721" fg:w="1"/><text x="94.1302%" y="495.50"></text></g><g><title>tcache_init (1 samples, 0.13%)</title><rect x="93.8802%" y="469" width="0.1302%" height="15" fill="rgb(247,221,28)" fg:x="721" fg:w="1"/><text x="94.1302%" y="479.50"></text></g><g><title>arena_get2 (1 samples, 0.13%)</title><rect x="93.8802%" y="453" width="0.1302%" height="15" fill="rgb(251,222,45)" fg:x="721" fg:w="1"/><text x="94.1302%" y="463.50"></text></g><g><title>arena_get2 (1 samples, 0.13%)</title><rect x="93.8802%" y="437" width="0.1302%" height="15" fill="rgb(217,162,53)" fg:x="721" fg:w="1"/><text x="94.1302%" y="447.50"></text></g><g><title>_int_new_arena (1 samples, 0.13%)</title><rect x="93.8802%" y="421" width="0.1302%" height="15" fill="rgb(229,93,14)" fg:x="721" fg:w="1"/><text x="94.1302%" y="431.50"></text></g><g><title>new_heap (1 samples, 0.13%)</title><rect x="93.8802%" y="405" width="0.1302%" height="15" fill="rgb(209,67,49)" fg:x="721" fg:w="1"/><text x="94.1302%" y="415.50"></text></g><g><title>alloc_new_heap (1 samples, 0.13%)</title><rect x="93.8802%" y="389" width="0.1302%" height="15" fill="rgb(213,87,29)" fg:x="721" fg:w="1"/><text x="94.1302%" y="399.50"></text></g><g><title>__GI___munmap (1 samples, 0.13%)</title><rect x="93.8802%" y="373" width="0.1302%" height="15" fill="rgb(205,151,52)" fg:x="721" fg:w="1"/><text x="94.1302%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="357" width="0.1302%" height="15" fill="rgb(253,215,39)" fg:x="721" fg:w="1"/><text x="94.1302%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="341" width="0.1302%" height="15" fill="rgb(221,220,41)" fg:x="721" fg:w="1"/><text x="94.1302%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="325" width="0.1302%" height="15" fill="rgb(218,133,21)" fg:x="721" fg:w="1"/><text x="94.1302%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="309" width="0.1302%" height="15" fill="rgb(221,193,43)" fg:x="721" fg:w="1"/><text x="94.1302%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="293" width="0.1302%" height="15" fill="rgb(240,128,52)" fg:x="721" fg:w="1"/><text x="94.1302%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="277" width="0.1302%" height="15" fill="rgb(253,114,12)" fg:x="721" fg:w="1"/><text x="94.1302%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="261" width="0.1302%" height="15" fill="rgb(215,223,47)" fg:x="721" fg:w="1"/><text x="94.1302%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="245" width="0.1302%" height="15" fill="rgb(248,225,23)" fg:x="721" fg:w="1"/><text x="94.1302%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="229" width="0.1302%" height="15" fill="rgb(250,108,0)" fg:x="721" fg:w="1"/><text x="94.1302%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="93.8802%" y="213" width="0.1302%" height="15" fill="rgb(228,208,7)" fg:x="721" fg:w="1"/><text x="94.1302%" y="223.50"></text></g><g><title><rayon_core::job::StackJob<L,F,R> as rayon_core::job::Job>::execute (1 samples, 0.13%)</title><rect x="94.0104%" y="485" width="0.1302%" height="15" fill="rgb(244,45,10)" fg:x="722" fg:w="1"/><text x="94.2604%" y="495.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="94.0104%" y="469" width="0.1302%" height="15" fill="rgb(207,125,25)" fg:x="722" fg:w="1"/><text x="94.2604%" y="479.50"></text></g><g><title>rayon_core::join::join_context::_{{closure}} (1 samples, 0.13%)</title><rect x="94.0104%" y="453" width="0.1302%" height="15" fill="rgb(210,195,18)" fg:x="722" fg:w="1"/><text x="94.2604%" y="463.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (1 samples, 0.13%)</title><rect x="94.0104%" y="437" width="0.1302%" height="15" fill="rgb(249,80,12)" fg:x="722" fg:w="1"/><text x="94.2604%" y="447.50"></text></g><g><title>__GI___sched_yield (2 samples, 0.26%)</title><rect x="94.1406%" y="485" width="0.2604%" height="15" fill="rgb(221,65,9)" fg:x="723" fg:w="2"/><text x="94.3906%" y="495.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="94.1406%" y="469" width="0.2604%" height="15" fill="rgb(235,49,36)" fg:x="723" fg:w="2"/><text x="94.3906%" y="479.50"></text></g><g><title>core::ops::function::FnOnce::call_once{{vtable.shim}} (16 samples, 2.08%)</title><rect x="93.8802%" y="533" width="2.0833%" height="15" fill="rgb(225,32,20)" fg:x="721" fg:w="16"/><text x="94.1302%" y="543.50">c..</text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (15 samples, 1.95%)</title><rect x="94.0104%" y="517" width="1.9531%" height="15" fill="rgb(215,141,46)" fg:x="722" fg:w="15"/><text x="94.2604%" y="527.50">s..</text></g><g><title>rayon_core::registry::WorkerThread::wait_until_cold (15 samples, 1.95%)</title><rect x="94.0104%" y="501" width="1.9531%" height="15" fill="rgb(250,160,47)" fg:x="722" fg:w="15"/><text x="94.2604%" y="511.50">r..</text></g><g><title>rayon_core::sleep::Sleep::sleep (12 samples, 1.56%)</title><rect x="94.4010%" y="485" width="1.5625%" height="15" fill="rgb(216,222,40)" fg:x="725" fg:w="12"/><text x="94.6510%" y="495.50"></text></g><g><title>syscall (12 samples, 1.56%)</title><rect x="94.4010%" y="469" width="1.5625%" height="15" fill="rgb(234,217,39)" fg:x="725" fg:w="12"/><text x="94.6510%" y="479.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="453" width="1.5625%" height="15" fill="rgb(207,178,40)" fg:x="725" fg:w="12"/><text x="94.6510%" y="463.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="437" width="1.5625%" height="15" fill="rgb(221,136,13)" fg:x="725" fg:w="12"/><text x="94.6510%" y="447.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="421" width="1.5625%" height="15" fill="rgb(249,199,10)" fg:x="725" fg:w="12"/><text x="94.6510%" y="431.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="405" width="1.5625%" height="15" fill="rgb(249,222,13)" fg:x="725" fg:w="12"/><text x="94.6510%" y="415.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="389" width="1.5625%" height="15" fill="rgb(244,185,38)" fg:x="725" fg:w="12"/><text x="94.6510%" y="399.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="373" width="1.5625%" height="15" fill="rgb(236,202,9)" fg:x="725" fg:w="12"/><text x="94.6510%" y="383.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="357" width="1.5625%" height="15" fill="rgb(250,229,37)" fg:x="725" fg:w="12"/><text x="94.6510%" y="367.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="341" width="1.5625%" height="15" fill="rgb(206,174,23)" fg:x="725" fg:w="12"/><text x="94.6510%" y="351.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="325" width="1.5625%" height="15" fill="rgb(211,33,43)" fg:x="725" fg:w="12"/><text x="94.6510%" y="335.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="309" width="1.5625%" height="15" fill="rgb(245,58,50)" fg:x="725" fg:w="12"/><text x="94.6510%" y="319.50"></text></g><g><title>[unknown] (12 samples, 1.56%)</title><rect x="94.4010%" y="293" width="1.5625%" height="15" fill="rgb(244,68,36)" fg:x="725" fg:w="12"/><text x="94.6510%" y="303.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="94.5312%" y="277" width="1.4323%" height="15" fill="rgb(232,229,15)" fg:x="726" fg:w="11"/><text x="94.7812%" y="287.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="94.5312%" y="261" width="1.4323%" height="15" fill="rgb(254,30,23)" fg:x="726" fg:w="11"/><text x="94.7812%" y="271.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="94.5312%" y="245" width="1.4323%" height="15" fill="rgb(235,160,14)" fg:x="726" fg:w="11"/><text x="94.7812%" y="255.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="94.5312%" y="229" width="1.4323%" height="15" fill="rgb(212,155,44)" fg:x="726" fg:w="11"/><text x="94.7812%" y="239.50"></text></g><g><title>__GI___mmap64 (11 samples, 1.43%)</title><rect x="95.9635%" y="517" width="1.4323%" height="15" fill="rgb(226,2,50)" fg:x="737" fg:w="11"/><text x="96.2135%" y="527.50"></text></g><g><title>__GI___mmap64 (11 samples, 1.43%)</title><rect x="95.9635%" y="501" width="1.4323%" height="15" fill="rgb(234,177,6)" fg:x="737" fg:w="11"/><text x="96.2135%" y="511.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="485" width="1.4323%" height="15" fill="rgb(217,24,9)" fg:x="737" fg:w="11"/><text x="96.2135%" y="495.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="469" width="1.4323%" height="15" fill="rgb(220,13,46)" fg:x="737" fg:w="11"/><text x="96.2135%" y="479.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="453" width="1.4323%" height="15" fill="rgb(239,221,27)" fg:x="737" fg:w="11"/><text x="96.2135%" y="463.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="437" width="1.4323%" height="15" fill="rgb(222,198,25)" fg:x="737" fg:w="11"/><text x="96.2135%" y="447.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="421" width="1.4323%" height="15" fill="rgb(211,99,13)" fg:x="737" fg:w="11"/><text x="96.2135%" y="431.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="405" width="1.4323%" height="15" fill="rgb(232,111,31)" fg:x="737" fg:w="11"/><text x="96.2135%" y="415.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="389" width="1.4323%" height="15" fill="rgb(245,82,37)" fg:x="737" fg:w="11"/><text x="96.2135%" y="399.50"></text></g><g><title>[unknown] (11 samples, 1.43%)</title><rect x="95.9635%" y="373" width="1.4323%" height="15" fill="rgb(227,149,46)" fg:x="737" fg:w="11"/><text x="96.2135%" y="383.50"></text></g><g><title>[unknown] (10 samples, 1.30%)</title><rect x="96.0938%" y="357" width="1.3021%" height="15" fill="rgb(218,36,50)" fg:x="738" fg:w="10"/><text x="96.3438%" y="367.50"></text></g><g><title>[unknown] (9 samples, 1.17%)</title><rect x="96.2240%" y="341" width="1.1719%" height="15" fill="rgb(226,80,48)" fg:x="739" fg:w="9"/><text x="96.4740%" y="351.50"></text></g><g><title>[unknown] (8 samples, 1.04%)</title><rect x="96.3542%" y="325" width="1.0417%" height="15" fill="rgb(238,224,15)" fg:x="740" fg:w="8"/><text x="96.6042%" y="335.50"></text></g><g><title>[unknown] (8 samples, 1.04%)</title><rect x="96.3542%" y="309" width="1.0417%" height="15" fill="rgb(241,136,10)" fg:x="740" fg:w="8"/><text x="96.6042%" y="319.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="96.6146%" y="293" width="0.7812%" height="15" fill="rgb(208,32,45)" fg:x="742" fg:w="6"/><text x="96.8646%" y="303.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="96.6146%" y="277" width="0.7812%" height="15" fill="rgb(207,135,9)" fg:x="742" fg:w="6"/><text x="96.8646%" y="287.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="96.6146%" y="261" width="0.7812%" height="15" fill="rgb(206,86,44)" fg:x="742" fg:w="6"/><text x="96.8646%" y="271.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="96.6146%" y="245" width="0.7812%" height="15" fill="rgb(245,177,15)" fg:x="742" fg:w="6"/><text x="96.8646%" y="255.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="96.6146%" y="229" width="0.7812%" height="15" fill="rgb(206,64,50)" fg:x="742" fg:w="6"/><text x="96.8646%" y="239.50"></text></g><g><title>__clone3 (30 samples, 3.91%)</title><rect x="93.7500%" y="581" width="3.9062%" height="15" fill="rgb(234,36,40)" fg:x="720" fg:w="30"/><text x="94.0000%" y="591.50">__cl..</text></g><g><title>start_thread (29 samples, 3.78%)</title><rect x="93.8802%" y="565" width="3.7760%" height="15" fill="rgb(213,64,8)" fg:x="721" fg:w="29"/><text x="94.1302%" y="575.50">star..</text></g><g><title>std::sys::unix::thread::Thread::new::thread_start (29 samples, 3.78%)</title><rect x="93.8802%" y="549" width="3.7760%" height="15" fill="rgb(210,75,36)" fg:x="721" fg:w="29"/><text x="94.1302%" y="559.50">std:..</text></g><g><title>std::sys::unix::stack_overflow::imp::make_handler (13 samples, 1.69%)</title><rect x="95.9635%" y="533" width="1.6927%" height="15" fill="rgb(229,88,21)" fg:x="737" fg:w="13"/><text x="96.2135%" y="543.50"></text></g><g><title>__GI___mprotect (2 samples, 0.26%)</title><rect x="97.3958%" y="517" width="0.2604%" height="15" fill="rgb(252,204,47)" fg:x="748" fg:w="2"/><text x="97.6458%" y="527.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="501" width="0.2604%" height="15" fill="rgb(208,77,27)" fg:x="748" fg:w="2"/><text x="97.6458%" y="511.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="485" width="0.2604%" height="15" fill="rgb(221,76,26)" fg:x="748" fg:w="2"/><text x="97.6458%" y="495.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="469" width="0.2604%" height="15" fill="rgb(225,139,18)" fg:x="748" fg:w="2"/><text x="97.6458%" y="479.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="453" width="0.2604%" height="15" fill="rgb(230,137,11)" fg:x="748" fg:w="2"/><text x="97.6458%" y="463.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="437" width="0.2604%" height="15" fill="rgb(212,28,1)" fg:x="748" fg:w="2"/><text x="97.6458%" y="447.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="421" width="0.2604%" height="15" fill="rgb(248,164,17)" fg:x="748" fg:w="2"/><text x="97.6458%" y="431.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="405" width="0.2604%" height="15" fill="rgb(222,171,42)" fg:x="748" fg:w="2"/><text x="97.6458%" y="415.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="389" width="0.2604%" height="15" fill="rgb(243,84,45)" fg:x="748" fg:w="2"/><text x="97.6458%" y="399.50"></text></g><g><title>[unknown] (2 samples, 0.26%)</title><rect x="97.3958%" y="373" width="0.2604%" height="15" fill="rgb(252,49,23)" fg:x="748" fg:w="2"/><text x="97.6458%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.5260%" y="357" width="0.1302%" height="15" fill="rgb(215,19,7)" fg:x="749" fg:w="1"/><text x="97.7760%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.5260%" y="341" width="0.1302%" height="15" fill="rgb(238,81,41)" fg:x="749" fg:w="1"/><text x="97.7760%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.5260%" y="325" width="0.1302%" height="15" fill="rgb(210,199,37)" fg:x="749" fg:w="1"/><text x="97.7760%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.5260%" y="309" width="0.1302%" height="15" fill="rgb(244,192,49)" fg:x="749" fg:w="1"/><text x="97.7760%" y="319.50"></text></g><g><title>__GI___libc_read (1 samples, 0.13%)</title><rect x="97.7865%" y="485" width="0.1302%" height="15" fill="rgb(226,211,11)" fg:x="751" fg:w="1"/><text x="98.0365%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="469" width="0.1302%" height="15" fill="rgb(236,162,54)" fg:x="751" fg:w="1"/><text x="98.0365%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="453" width="0.1302%" height="15" fill="rgb(220,229,9)" fg:x="751" fg:w="1"/><text x="98.0365%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="437" width="0.1302%" height="15" fill="rgb(250,87,22)" fg:x="751" fg:w="1"/><text x="98.0365%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="421" width="0.1302%" height="15" fill="rgb(239,43,17)" fg:x="751" fg:w="1"/><text x="98.0365%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="405" width="0.1302%" height="15" fill="rgb(231,177,25)" fg:x="751" fg:w="1"/><text x="98.0365%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="97.7865%" y="389" width="0.1302%" height="15" fill="rgb(219,179,1)" fg:x="751" fg:w="1"/><text x="98.0365%" y="399.50"></text></g><g><title>__memcpy_avx_unaligned_erms (2 samples, 0.26%)</title><rect x="97.9167%" y="485" width="0.2604%" height="15" fill="rgb(238,219,53)" fg:x="752" fg:w="2"/><text x="98.1667%" y="495.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="469" width="0.1302%" height="15" fill="rgb(232,167,36)" fg:x="753" fg:w="1"/><text x="98.2969%" y="479.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="453" width="0.1302%" height="15" fill="rgb(244,19,51)" fg:x="753" fg:w="1"/><text x="98.2969%" y="463.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="437" width="0.1302%" height="15" fill="rgb(224,6,22)" fg:x="753" fg:w="1"/><text x="98.2969%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="421" width="0.1302%" height="15" fill="rgb(224,145,5)" fg:x="753" fg:w="1"/><text x="98.2969%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="405" width="0.1302%" height="15" fill="rgb(234,130,49)" fg:x="753" fg:w="1"/><text x="98.2969%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="389" width="0.1302%" height="15" fill="rgb(254,6,2)" fg:x="753" fg:w="1"/><text x="98.2969%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="373" width="0.1302%" height="15" fill="rgb(208,96,46)" fg:x="753" fg:w="1"/><text x="98.2969%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="357" width="0.1302%" height="15" fill="rgb(239,3,39)" fg:x="753" fg:w="1"/><text x="98.2969%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="341" width="0.1302%" height="15" fill="rgb(233,210,1)" fg:x="753" fg:w="1"/><text x="98.2969%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="325" width="0.1302%" height="15" fill="rgb(244,137,37)" fg:x="753" fg:w="1"/><text x="98.2969%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="309" width="0.1302%" height="15" fill="rgb(240,136,2)" fg:x="753" fg:w="1"/><text x="98.2969%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.0469%" y="293" width="0.1302%" height="15" fill="rgb(239,18,37)" fg:x="753" fg:w="1"/><text x="98.2969%" y="303.50"></text></g><g><title>core::ptr::drop_in_place<bachelorarbeit::App> (1 samples, 0.13%)</title><rect x="98.1771%" y="485" width="0.1302%" height="15" fill="rgb(218,185,22)" fg:x="754" fg:w="1"/><text x="98.4271%" y="495.50"></text></g><g><title>core::ptr::drop_in_place<dashmap::DashMap<u32,(alloc::sync::Arc<[f64]>,alloc::sync::Arc<[f64]>),core::hash::BuildHasherDefault<nohash_hasher::NoHashHasher<u32>>>> (1 samples, 0.13%)</title><rect x="98.1771%" y="469" width="0.1302%" height="15" fill="rgb(225,218,4)" fg:x="754" fg:w="1"/><text x="98.4271%" y="479.50"></text></g><g><title>__GI___libc_free (1 samples, 0.13%)</title><rect x="98.1771%" y="453" width="0.1302%" height="15" fill="rgb(230,182,32)" fg:x="754" fg:w="1"/><text x="98.4271%" y="463.50"></text></g><g><title>__GI___munmap (1 samples, 0.13%)</title><rect x="98.1771%" y="437" width="0.1302%" height="15" fill="rgb(242,56,43)" fg:x="754" fg:w="1"/><text x="98.4271%" y="447.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="421" width="0.1302%" height="15" fill="rgb(233,99,24)" fg:x="754" fg:w="1"/><text x="98.4271%" y="431.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="405" width="0.1302%" height="15" fill="rgb(234,209,42)" fg:x="754" fg:w="1"/><text x="98.4271%" y="415.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="389" width="0.1302%" height="15" fill="rgb(227,7,12)" fg:x="754" fg:w="1"/><text x="98.4271%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="373" width="0.1302%" height="15" fill="rgb(245,203,43)" fg:x="754" fg:w="1"/><text x="98.4271%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="357" width="0.1302%" height="15" fill="rgb(238,205,33)" fg:x="754" fg:w="1"/><text x="98.4271%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="341" width="0.1302%" height="15" fill="rgb(231,56,7)" fg:x="754" fg:w="1"/><text x="98.4271%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="325" width="0.1302%" height="15" fill="rgb(244,186,29)" fg:x="754" fg:w="1"/><text x="98.4271%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="309" width="0.1302%" height="15" fill="rgb(234,111,31)" fg:x="754" fg:w="1"/><text x="98.4271%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="293" width="0.1302%" height="15" fill="rgb(241,149,10)" fg:x="754" fg:w="1"/><text x="98.4271%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="277" width="0.1302%" height="15" fill="rgb(249,206,44)" fg:x="754" fg:w="1"/><text x="98.4271%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="261" width="0.1302%" height="15" fill="rgb(251,153,30)" fg:x="754" fg:w="1"/><text x="98.4271%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="245" width="0.1302%" height="15" fill="rgb(239,152,38)" fg:x="754" fg:w="1"/><text x="98.4271%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="229" width="0.1302%" height="15" fill="rgb(249,139,47)" fg:x="754" fg:w="1"/><text x="98.4271%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="213" width="0.1302%" height="15" fill="rgb(244,64,35)" fg:x="754" fg:w="1"/><text x="98.4271%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="98.1771%" y="197" width="0.1302%" height="15" fill="rgb(216,46,15)" fg:x="754" fg:w="1"/><text x="98.4271%" y="207.50"></text></g><g><title>__libc_start_main_impl (11 samples, 1.43%)</title><rect x="97.6562%" y="565" width="1.4323%" height="15" fill="rgb(250,74,19)" fg:x="750" fg:w="11"/><text x="97.9062%" y="575.50"></text></g><g><title>__libc_start_call_main (11 samples, 1.43%)</title><rect x="97.6562%" y="549" width="1.4323%" height="15" fill="rgb(249,42,33)" fg:x="750" fg:w="11"/><text x="97.9062%" y="559.50"></text></g><g><title>std::rt::lang_start (11 samples, 1.43%)</title><rect x="97.6562%" y="533" width="1.4323%" height="15" fill="rgb(242,149,17)" fg:x="750" fg:w="11"/><text x="97.9062%" y="543.50"></text></g><g><title>std::sys_common::backtrace::__rust_begin_short_backtrace (11 samples, 1.43%)</title><rect x="97.6562%" y="517" width="1.4323%" height="15" fill="rgb(244,29,21)" fg:x="750" fg:w="11"/><text x="97.9062%" y="527.50"></text></g><g><title>bachelorarbeit::main (11 samples, 1.43%)</title><rect x="97.6562%" y="501" width="1.4323%" height="15" fill="rgb(220,130,37)" fg:x="750" fg:w="11"/><text x="97.9062%" y="511.50"></text></g><g><title>rayon::iter::plumbing::bridge_producer_consumer::helper (6 samples, 0.78%)</title><rect x="98.3073%" y="485" width="0.7812%" height="15" fill="rgb(211,67,2)" fg:x="755" fg:w="6"/><text x="98.5573%" y="495.50"></text></g><g><title>rayon_core::registry::Registry::in_worker_cold (6 samples, 0.78%)</title><rect x="98.3073%" y="469" width="0.7812%" height="15" fill="rgb(235,68,52)" fg:x="755" fg:w="6"/><text x="98.5573%" y="479.50"></text></g><g><title>syscall (6 samples, 0.78%)</title><rect x="98.3073%" y="453" width="0.7812%" height="15" fill="rgb(246,142,3)" fg:x="755" fg:w="6"/><text x="98.5573%" y="463.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="437" width="0.7812%" height="15" fill="rgb(241,25,7)" fg:x="755" fg:w="6"/><text x="98.5573%" y="447.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="421" width="0.7812%" height="15" fill="rgb(242,119,39)" fg:x="755" fg:w="6"/><text x="98.5573%" y="431.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="405" width="0.7812%" height="15" fill="rgb(241,98,45)" fg:x="755" fg:w="6"/><text x="98.5573%" y="415.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="389" width="0.7812%" height="15" fill="rgb(254,28,30)" fg:x="755" fg:w="6"/><text x="98.5573%" y="399.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="373" width="0.7812%" height="15" fill="rgb(241,142,54)" fg:x="755" fg:w="6"/><text x="98.5573%" y="383.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="357" width="0.7812%" height="15" fill="rgb(222,85,15)" fg:x="755" fg:w="6"/><text x="98.5573%" y="367.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="341" width="0.7812%" height="15" fill="rgb(210,85,47)" fg:x="755" fg:w="6"/><text x="98.5573%" y="351.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="325" width="0.7812%" height="15" fill="rgb(224,206,25)" fg:x="755" fg:w="6"/><text x="98.5573%" y="335.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="309" width="0.7812%" height="15" fill="rgb(243,201,19)" fg:x="755" fg:w="6"/><text x="98.5573%" y="319.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="293" width="0.7812%" height="15" fill="rgb(236,59,4)" fg:x="755" fg:w="6"/><text x="98.5573%" y="303.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="277" width="0.7812%" height="15" fill="rgb(254,179,45)" fg:x="755" fg:w="6"/><text x="98.5573%" y="287.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="261" width="0.7812%" height="15" fill="rgb(226,14,10)" fg:x="755" fg:w="6"/><text x="98.5573%" y="271.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="245" width="0.7812%" height="15" fill="rgb(244,27,41)" fg:x="755" fg:w="6"/><text x="98.5573%" y="255.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="229" width="0.7812%" height="15" fill="rgb(235,35,32)" fg:x="755" fg:w="6"/><text x="98.5573%" y="239.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="98.3073%" y="213" width="0.7812%" height="15" fill="rgb(218,68,31)" fg:x="755" fg:w="6"/><text x="98.5573%" y="223.50"></text></g><g><title>bachelorarbeit (762 samples, 99.22%)</title><rect x="0.0000%" y="597" width="99.2188%" height="15" fill="rgb(207,120,37)" fg:x="0" fg:w="762"/><text x="0.2500%" y="607.50">bachelorarbeit</text></g><g><title>_start (12 samples, 1.56%)</title><rect x="97.6562%" y="581" width="1.5625%" height="15" fill="rgb(227,98,0)" fg:x="750" fg:w="12"/><text x="97.9062%" y="591.50"></text></g><g><title>_dl_start (1 samples, 0.13%)</title><rect x="99.0885%" y="565" width="0.1302%" height="15" fill="rgb(207,7,3)" fg:x="761" fg:w="1"/><text x="99.3385%" y="575.50"></text></g><g><title>_dl_start_final (1 samples, 0.13%)</title><rect x="99.0885%" y="549" width="0.1302%" height="15" fill="rgb(206,98,19)" fg:x="761" fg:w="1"/><text x="99.3385%" y="559.50"></text></g><g><title>_dl_sysdep_start (1 samples, 0.13%)</title><rect x="99.0885%" y="533" width="0.1302%" height="15" fill="rgb(217,5,26)" fg:x="761" fg:w="1"/><text x="99.3385%" y="543.50"></text></g><g><title>dl_main (1 samples, 0.13%)</title><rect x="99.0885%" y="517" width="0.1302%" height="15" fill="rgb(235,190,38)" fg:x="761" fg:w="1"/><text x="99.3385%" y="527.50"></text></g><g><title>_dl_map_object_deps (1 samples, 0.13%)</title><rect x="99.0885%" y="501" width="0.1302%" height="15" fill="rgb(247,86,24)" fg:x="761" fg:w="1"/><text x="99.3385%" y="511.50"></text></g><g><title>_dl_catch_exception (1 samples, 0.13%)</title><rect x="99.0885%" y="485" width="0.1302%" height="15" fill="rgb(205,101,16)" fg:x="761" fg:w="1"/><text x="99.3385%" y="495.50"></text></g><g><title>openaux (1 samples, 0.13%)</title><rect x="99.0885%" y="469" width="0.1302%" height="15" fill="rgb(246,168,33)" fg:x="761" fg:w="1"/><text x="99.3385%" y="479.50"></text></g><g><title>_dl_map_object (1 samples, 0.13%)</title><rect x="99.0885%" y="453" width="0.1302%" height="15" fill="rgb(231,114,1)" fg:x="761" fg:w="1"/><text x="99.3385%" y="463.50"></text></g><g><title>_dl_map_object_from_fd (1 samples, 0.13%)</title><rect x="99.0885%" y="437" width="0.1302%" height="15" fill="rgb(207,184,53)" fg:x="761" fg:w="1"/><text x="99.3385%" y="447.50"></text></g><g><title>_dl_map_segments (1 samples, 0.13%)</title><rect x="99.0885%" y="421" width="0.1302%" height="15" fill="rgb(224,95,51)" fg:x="761" fg:w="1"/><text x="99.3385%" y="431.50"></text></g><g><title>__mmap64 (1 samples, 0.13%)</title><rect x="99.0885%" y="405" width="0.1302%" height="15" fill="rgb(212,188,45)" fg:x="761" fg:w="1"/><text x="99.3385%" y="415.50"></text></g><g><title>__mmap64 (1 samples, 0.13%)</title><rect x="99.0885%" y="389" width="0.1302%" height="15" fill="rgb(223,154,38)" fg:x="761" fg:w="1"/><text x="99.3385%" y="399.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="373" width="0.1302%" height="15" fill="rgb(251,22,52)" fg:x="761" fg:w="1"/><text x="99.3385%" y="383.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="357" width="0.1302%" height="15" fill="rgb(229,209,22)" fg:x="761" fg:w="1"/><text x="99.3385%" y="367.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="341" width="0.1302%" height="15" fill="rgb(234,138,34)" fg:x="761" fg:w="1"/><text x="99.3385%" y="351.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="325" width="0.1302%" height="15" fill="rgb(212,95,11)" fg:x="761" fg:w="1"/><text x="99.3385%" y="335.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="309" width="0.1302%" height="15" fill="rgb(240,179,47)" fg:x="761" fg:w="1"/><text x="99.3385%" y="319.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="293" width="0.1302%" height="15" fill="rgb(240,163,11)" fg:x="761" fg:w="1"/><text x="99.3385%" y="303.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="277" width="0.1302%" height="15" fill="rgb(236,37,12)" fg:x="761" fg:w="1"/><text x="99.3385%" y="287.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="261" width="0.1302%" height="15" fill="rgb(232,164,16)" fg:x="761" fg:w="1"/><text x="99.3385%" y="271.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="245" width="0.1302%" height="15" fill="rgb(244,205,15)" fg:x="761" fg:w="1"/><text x="99.3385%" y="255.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="229" width="0.1302%" height="15" fill="rgb(223,117,47)" fg:x="761" fg:w="1"/><text x="99.3385%" y="239.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="213" width="0.1302%" height="15" fill="rgb(244,107,35)" fg:x="761" fg:w="1"/><text x="99.3385%" y="223.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="197" width="0.1302%" height="15" fill="rgb(205,140,8)" fg:x="761" fg:w="1"/><text x="99.3385%" y="207.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="181" width="0.1302%" height="15" fill="rgb(228,84,46)" fg:x="761" fg:w="1"/><text x="99.3385%" y="191.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="165" width="0.1302%" height="15" fill="rgb(254,188,9)" fg:x="761" fg:w="1"/><text x="99.3385%" y="175.50"></text></g><g><title>[unknown] (1 samples, 0.13%)</title><rect x="99.0885%" y="149" width="0.1302%" height="15" fill="rgb(206,112,54)" fg:x="761" fg:w="1"/><text x="99.3385%" y="159.50"></text></g><g><title>all (768 samples, 100%)</title><rect x="0.0000%" y="613" width="100.0000%" height="15" fill="rgb(216,84,49)" fg:x="0" fg:w="768"/><text x="0.2500%" y="623.50"></text></g><g><title>perf-exec (6 samples, 0.78%)</title><rect x="99.2188%" y="597" width="0.7812%" height="15" fill="rgb(214,194,35)" fg:x="762" fg:w="6"/><text x="99.4688%" y="607.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="581" width="0.7812%" height="15" fill="rgb(249,28,3)" fg:x="762" fg:w="6"/><text x="99.4688%" y="591.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="565" width="0.7812%" height="15" fill="rgb(222,56,52)" fg:x="762" fg:w="6"/><text x="99.4688%" y="575.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="549" width="0.7812%" height="15" fill="rgb(245,217,50)" fg:x="762" fg:w="6"/><text x="99.4688%" y="559.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="533" width="0.7812%" height="15" fill="rgb(213,201,24)" fg:x="762" fg:w="6"/><text x="99.4688%" y="543.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="517" width="0.7812%" height="15" fill="rgb(248,116,28)" fg:x="762" fg:w="6"/><text x="99.4688%" y="527.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="501" width="0.7812%" height="15" fill="rgb(219,72,43)" fg:x="762" fg:w="6"/><text x="99.4688%" y="511.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="485" width="0.7812%" height="15" fill="rgb(209,138,14)" fg:x="762" fg:w="6"/><text x="99.4688%" y="495.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="469" width="0.7812%" height="15" fill="rgb(222,18,33)" fg:x="762" fg:w="6"/><text x="99.4688%" y="479.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="453" width="0.7812%" height="15" fill="rgb(213,199,7)" fg:x="762" fg:w="6"/><text x="99.4688%" y="463.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="437" width="0.7812%" height="15" fill="rgb(250,110,10)" fg:x="762" fg:w="6"/><text x="99.4688%" y="447.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="421" width="0.7812%" height="15" fill="rgb(248,123,6)" fg:x="762" fg:w="6"/><text x="99.4688%" y="431.50"></text></g><g><title>[unknown] (6 samples, 0.78%)</title><rect x="99.2188%" y="405" width="0.7812%" height="15" fill="rgb(206,91,31)" fg:x="762" fg:w="6"/><text x="99.4688%" y="415.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="389" width="0.6510%" height="15" fill="rgb(211,154,13)" fg:x="763" fg:w="5"/><text x="99.5990%" y="399.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="373" width="0.6510%" height="15" fill="rgb(225,148,7)" fg:x="763" fg:w="5"/><text x="99.5990%" y="383.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="357" width="0.6510%" height="15" fill="rgb(220,160,43)" fg:x="763" fg:w="5"/><text x="99.5990%" y="367.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="341" width="0.6510%" height="15" fill="rgb(213,52,39)" fg:x="763" fg:w="5"/><text x="99.5990%" y="351.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="325" width="0.6510%" height="15" fill="rgb(243,137,7)" fg:x="763" fg:w="5"/><text x="99.5990%" y="335.50"></text></g><g><title>[unknown] (5 samples, 0.65%)</title><rect x="99.3490%" y="309" width="0.6510%" height="15" fill="rgb(230,79,13)" fg:x="763" fg:w="5"/><text x="99.5990%" y="319.50"></text></g></svg></svg> |